
  /* 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: 2rem; }
  .hero-sub:last-child { margin-bottom: 0; }

  /* INTEGRATION CARD (white bg, border, orange hover) */
  .integration-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 12px; padding: 1.5rem; transition: border-color 0.15s, box-shadow 0.15s; }
  .integration-card:hover { border-color: var(--orange); box-shadow: 0 2px 12px rgba(255,153,51,0.10); }
  .integration-card h3 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
  .integration-card p { font-size: 13px; color: var(--text-mid); line-height: 1.7; margin-bottom: 0; }

  /* PROSE SECTIONS */
  .prose-section { margin-bottom: 3rem; }
  .prose-section h2 { font-size: 28px; font-weight: 700; margin-bottom: 1rem; color: var(--navy); letter-spacing: -0.5px; }
  .prose-section p { font-size: 16px; color: var(--text-mid); line-height: 1.85; margin-bottom: 0.875rem; }
  .prose-section p:last-child { margin-bottom: 0; }
  .prose-section p strong { color: var(--navy); }

  /* DETAIL CARDS (for structured list sections only) */
  .section { margin-bottom: 3.5rem; }
  .section h2 { font-size: 28px; font-weight: 700; margin-bottom: 1.75rem; color: var(--navy); letter-spacing: -0.5px; }
  .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; }

  /* CTA BAR */
  .cta-bar { background: var(--orange-dim); border: 1.5px solid var(--orange-border); border-radius: 16px; padding: 2.5rem; text-align: center; margin-bottom: 3.5rem; }
  .cta-bar h3 { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 6px; letter-spacing: -0.3px; }
  .cta-bar p { font-size: 15px; color: var(--text-mid); margin-bottom: 1.75rem; }
  .btn-primary { display: inline-block; background: var(--orange); color: var(--navy); text-decoration: none; border: none; padding: 14px 32px; border-radius: 50px; font-size: 15px; font-weight: 700; cursor: pointer; font-family: inherit; transition: opacity 0.15s; }
  .btn-primary:hover { opacity: 0.88; }

  @media (max-width: 720px) {
    .hero h1 { font-size: 34px; }
    .short-grid { grid-template-columns: 1fr !important; }
  }