
  /* HERO */
  .hero { padding: 1rem 0 3rem; border-bottom: 1px solid var(--border); margin-bottom: 3rem; }
  .hero-badge { display: inline-block; background: var(--orange-dim); border: 1px solid var(--orange-border); color: var(--orange); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 14px; border-radius: 20px; margin-bottom: 1.5rem; font-weight: 600; }
  .hero h1 { font-size: 48px; font-weight: 700; line-height: 1.08; margin-bottom: 1.25rem; color: var(--navy); letter-spacing: -1px; }
  .hero h1 span { color: var(--orange); }
  .hero-sub { font-size: 17px; color: var(--text-mid); line-height: 1.85; max-width: 580px; margin-bottom: 0; }

  /* SECTIONS */
  .section { margin-bottom: 3.5rem; }
  .section h2 { font-size: 28px; font-weight: 700; margin-bottom: 1.75rem; color: var(--navy); letter-spacing: -0.5px; }
  .section-intro { font-size: 15px; color: var(--text-mid); line-height: 1.85; margin-bottom: 1.5rem; max-width: 720px; }

  /* DETAIL CARD */
  .detail-card { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 1.75rem; margin-bottom: 16px; }
  .detail-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 10px; }
  .app-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--orange-dim); border: 1px solid var(--orange-border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .app-icon svg { width: 16px; height: 16px; stroke: var(--orange); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
  .detail-card .intro { font-size: 14px; color: var(--text-mid); line-height: 1.85; margin-bottom: 1.25rem; }
  .detail-card .intro:last-child { margin-bottom: 0; }
  .detail-card ul { list-style: none; }
  .detail-card ul li { font-size: 14px; color: var(--text-mid); padding: 8px 0; display: flex; align-items: flex-start; gap: 10px; line-height: 1.7; }
  .detail-card ul li::before { content: ''; width: 5px; height: 5px; background: var(--orange); border-radius: 50%; flex-shrink: 0; margin-top: 9px; }
  .detail-card ul li .li-content { display: flex; flex-direction: column; }
  .detail-card ul li strong { color: var(--navy); font-weight: 600; display: block; line-height: 1.4; }
  .detail-card a { color: var(--orange); text-decoration: none; font-weight: 500; }
  .detail-card a:hover { text-decoration: underline; }

  /* TWO-COLUMN SCOPE GRID */
  .scope-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .scope-grid .detail-card { margin-bottom: 0; }

  /* CONTACT INLINE */
  .contact-inline { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 1.25rem 1.5rem; margin-top: 1rem; }
  .contact-inline .ci-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); font-weight: 600; margin-bottom: 6px; }
  .contact-inline .ci-value { font-size: 15px; color: var(--navy); font-weight: 600; }
  .contact-inline .ci-value a { color: var(--orange); text-decoration: none; }
  .contact-inline .ci-value a:hover { text-decoration: underline; }
  .contact-inline .ci-note { font-size: 13px; color: var(--text-mid); margin-top: 6px; line-height: 1.6; }

  /* SLA GRID */
  .sla-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 1rem; }
  .sla-item { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 1.25rem; text-align: center; }
  .sla-item .sla-value { font-size: 22px; font-weight: 700; color: var(--orange); letter-spacing: -0.5px; margin-bottom: 4px; }
  .sla-item .sla-label { font-size: 12px; color: var(--text-mid); line-height: 1.5; }

  /* HALL OF FAME EMPTY STATE */
  .hof-empty { background: #fff; border: 1px dashed var(--border-med); border-radius: 10px; padding: 2rem 1.5rem; text-align: center; }
  .hof-empty .hof-title { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
  .hof-empty .hof-text { font-size: 13px; color: var(--text-mid); line-height: 1.7; max-width: 480px; margin: 0 auto; }

  /* CTA BAR (orange variant per design system) */
  .cta-bar { background: var(--orange-dim); border: 1.5px solid var(--orange-border); border-radius: 16px; padding: 3rem 2.5rem; text-align: center; margin-bottom: 3.5rem; }
  .cta-bar h2 { font-size: 28px; font-weight: 700; color: var(--navy); margin-bottom: 1rem; letter-spacing: -0.5px; }
  .cta-bar .cta-body { font-size: 15px; color: var(--text-mid); line-height: 1.8; max-width: 580px; margin: 0 auto 2rem; }
  .btn-cta { border: none;
    cursor: pointer;display: inline-block; background: var(--orange); color: var(--navy); text-decoration: none; padding: 14px 36px; border-radius: 50px; font-size: 15px; font-weight: 700; font-family: inherit; transition: opacity 0.15s; }
  .btn-cta:hover { opacity: 0.88; }

  /* META LINE (last updated) */
  .meta-line { font-size: 13px; color: var(--text-light); text-align: center; margin-top: 1rem; }

  @media (max-width: 720px) {
    .hero h1 { font-size: 34px; letter-spacing: -1px; }
    .scope-grid { grid-template-columns: 1fr; }
    .sla-grid { grid-template-columns: 1fr; }
  }