/*
 * ============================================================
 * CORAL WEBSITE — style.css
 * ============================================================
 * Main stylesheet for the Coral homepage.
 *
 * FONTS USED:
 *   - Nunito (400, 600, 700, 800, 900) — all headlines & body
 *   - DM Mono (400, 500) — labels, tags, eyebrows
 *   Loaded via Google Fonts in index.html <head>
 *
 * BRAND COLORS (exact values from Coral logo PNG):
 *   --coral:      #FA6E5A  (coral salmon — primary accent)
 *   --navy:       #46505A  (slate navy — primary dark background)
 *   --navy-dark:  #2E3840  (darker navy — section backgrounds)
 *
 * HOW TO USE IN WORDPRESS:
 *   Option A (Elementor / Divi):
 *     Paste this file's contents into your page builder's
 *     Custom CSS panel, or enqueue via functions.php.
 *   Option B (Theme):
 *     Add to your child theme's style.css, or enqueue as
 *     a separate stylesheet in functions.php:
 *       wp_enqueue_style('coral', get_stylesheet_directory_uri().'/coral.css');
 *
 * SECTIONS IN ORDER:
 *   1. CSS Variables & Reset
 *   2. Animations
 *   3. Navigation
 *   4. Hero
 *   5. Partners Strip
 *   6. Shared Section Styles
 *   7. Problem Section
 *   8. Disciplines (What Coral Does)
 *   9. Managed Service Bridge
 *  10. Platform (Technology)
 *  11. Payer Solutions
 *  12. Who We Serve
 *  13. Ecosystem
 *  14. Leadership
 *  15. CTA
 *  16. Footer
 *  17. Responsive / Mobile
 * ============================================================
 */

:root {
    --coral:       #FA6E5A;
    --coral-light: #FB8876;
    --coral-dark:  #E05540;
    --coral-pale:  #FEF0ED;
    --navy:        #46505A;
    --navy-mid:    #3A4450;
    --navy-dark:   #2E3840;
    --navy-light:  #5A6470;
    --slate:       #8899A8;
    --slate-light: #AEBDCA;
    --off-white:   #F6F5F3;
    --white:       #FFFFFF;
    --green:       #2ECC9A;
    --mono:        'DM Mono', monospace;
    --head:        'Nunito', sans-serif;
    --sans:        'Nunito', sans-serif;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--sans);
    background: var(--navy-dark);
    color: var(--white);
    overflow-x: hidden;
  }

  /* ── FADE-UP ANIMATIONS ── */
  .fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .fade-up.visible { opacity: 1; transform: none; }
  .fade-up-1 { transition-delay: 0.05s; }
  .fade-up-2 { transition-delay: 0.15s; }
  .fade-up-3 { transition-delay: 0.25s; }
  .fade-up-4 { transition-delay: 0.35s; }
  .fade-up-5 { transition-delay: 0.45s; }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 60px;
    background: rgba(46,56,64,0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .nav-logo { display: flex; align-items: center; text-decoration: none; }
  .nav-logo img { height: 30px; width: auto; filter: brightness(0) invert(1); }
  .nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
  .nav-links a {
    font-family: var(--sans); font-size: 13px; font-weight: 600;
    color: rgba(255,255,255,0.7); text-decoration: none;
    letter-spacing: 0.03em; transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--white); }
  .nav-cta { display: flex; align-items: center; gap: 14px; }
  .btn-ghost {
    font-family: var(--sans); font-size: 13px; font-weight: 600;
    color: rgba(255,255,255,0.65); text-decoration: none;
    letter-spacing: 0.04em; transition: color 0.2s;
  }
  .btn-ghost:hover { color: var(--white); }
  .btn-primary {
    font-family: var(--sans); font-size: 13px; font-weight: 700;
    letter-spacing: 0.03em; color: var(--white);
    background: var(--coral); padding: 9px 20px;
    border-radius: 6px; text-decoration: none;
    border: none; cursor: pointer;
    transition: background 0.2s, transform 0.1s;
  }
  .btn-primary:hover { background: var(--coral-light); transform: translateY(-1px); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex; flex-direction: column; justify-content: center;
    padding: 120px 80px 80px;
    position: relative; overflow: hidden;
    background: var(--navy-dark);
  }
  .hero-bg-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px; pointer-events: none;
  }
  /* Brand signature wave */
  .brand-wave {
    position: absolute; top: 0; right: 0; bottom: 0; width: 52%;
    pointer-events: none; z-index: 0;
  }
  .brand-wave svg { width: 100%; height: 100%; }

  .hero-inner {
    position: relative; z-index: 2;
    max-width: 760px;
  }
  .hero-eyebrow {
    display: flex; align-items: center; gap: 12px; margin-bottom: 36px;
  }
  .eyebrow-line { width: 28px; height: 2px; background: var(--coral); border-radius: 1px; }
  .eyebrow-text {
    font-family: var(--mono); font-size: 11px; color: var(--coral);
    letter-spacing: 0.18em; text-transform: uppercase;
  }
  .hero-headline {
    font-family: var(--head);
    font-size: clamp(40px, 4.8vw, 70px);
    font-weight: 800; line-height: 1.08;
    color: var(--white); margin-bottom: 28px;
  }
  .hero-headline em { font-style: italic; color: var(--coral); }
  .hero-sub {
    font-size: clamp(16px, 1.4vw, 19px); font-weight: 400;
    color: rgba(255,255,255,0.72); line-height: 1.65;
    max-width: 620px; margin-bottom: 44px;
  }
  .hero-sub strong { color: var(--white); font-weight: 700; }
  .hero-actions { display: flex; align-items: center; gap: 20px; margin-bottom: 64px; }
  .btn-hero {
    font-family: var(--sans); font-size: 15px; font-weight: 700;
    color: var(--white); background: var(--coral);
    padding: 14px 32px; border-radius: 8px; text-decoration: none;
    transition: background 0.2s, transform 0.1s;
  }
  .btn-hero:hover { background: var(--coral-light); transform: translateY(-2px); }
  .btn-hero-ghost {
    font-family: var(--sans); font-size: 15px; font-weight: 600;
    color: rgba(255,255,255,0.7); text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.25);
    padding-bottom: 2px; transition: color 0.2s, border-color 0.2s;
  }
  .btn-hero-ghost:hover { color: var(--white); border-color: var(--coral); }

  /* Hero stats */
  .hero-stats {
    display: flex; gap: 48px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .stat-item { display: flex; flex-direction: column; gap: 6px; }
  .stat-value {
    font-family: var(--head); font-size: 34px; font-weight: 800;
    color: var(--white); line-height: 1;
  }
  .stat-value span { color: var(--coral); }
  .stat-label {
    font-family: var(--mono); font-size: 10px; color: var(--slate-light);
    letter-spacing: 0.12em; text-transform: uppercase;
  }

  /* ── PARTNERS STRIP ── */
  .partners {
    padding: 28px 80px;
    background: rgba(255,255,255,0.03);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex; align-items: center; gap: 40px; flex-wrap: wrap;
  }
  .partners-label {
    font-family: var(--mono); font-size: 10px; color: var(--slate);
    letter-spacing: 0.16em; text-transform: uppercase; white-space: nowrap;
  }
  .partners-logos { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; flex: 1; }
  .partner-name {
    font-family: var(--sans); font-size: 14px; font-weight: 700;
    color: var(--slate-light); letter-spacing: 0.04em;
    transition: color 0.2s; white-space: nowrap;
  }
  .partner-name:hover { color: var(--white); }

  /* ── SHARED SECTION STYLES ── */
  section { padding: 100px 80px; }
  .section-label {
    font-family: var(--mono); font-size: 11px; color: var(--coral);
    letter-spacing: 0.18em; text-transform: uppercase;
    display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
  }
  .section-label::before {
    content: ''; display: block; width: 24px; height: 2px;
    background: var(--coral); border-radius: 1px;
  }
  .section-headline {
    font-family: var(--head); font-size: clamp(34px, 3.4vw, 52px);
    font-weight: 800; line-height: 1.12; color: var(--white);
    max-width: 720px; margin-bottom: 20px;
  }
  .section-headline em { font-style: italic; color: var(--coral); }
  .section-sub {
    font-size: 17px; font-weight: 400; color: rgba(255,255,255,0.65);
    line-height: 1.7; max-width: 640px; margin-bottom: 60px;
  }

  /* ── PROBLEM SECTION ── */
  .problem { background: var(--navy-dark); }
  .problem-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
    background: rgba(255,255,255,0.06); border-radius: 12px; overflow: hidden;
  }
  .problem-card {
    background: var(--navy-mid); padding: 36px 32px;
    transition: background 0.2s;
  }
  .problem-card:hover { background: var(--navy-light); }
  .problem-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: rgba(250,110,90,0.12); border: 1px solid rgba(250,110,90,0.2);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px; font-size: 20px;
  }
  .problem-title {
    font-family: var(--head); font-size: 18px; font-weight: 800;
    color: var(--white); margin-bottom: 12px; line-height: 1.3;
  }
  .problem-desc {
    font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7;
  }
  .problem-stat {
    margin-top: 20px; padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-family: var(--mono); font-size: 11px; color: var(--coral);
    letter-spacing: 0.08em;
  }

  /* ── WHAT CORAL DOES (3 disciplines) ── */
  .disciplines { background: var(--navy-mid); }
  .disc-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  }
  .disc-card {
    background: var(--navy-dark); border-radius: 12px;
    padding: 40px 36px; border: 1px solid rgba(255,255,255,0.06);
    position: relative; overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
  }
  .disc-card:hover { border-color: rgba(250,110,90,0.3); transform: translateY(-3px); }
  .disc-number {
    font-family: var(--mono); font-size: 11px; color: var(--coral);
    letter-spacing: 0.16em; margin-bottom: 24px; display: block;
  }
  .disc-title {
    font-family: var(--head); font-size: 28px; font-weight: 800;
    color: var(--white); margin-bottom: 16px; line-height: 1.15;
  }
  .disc-tagline {
    font-family: var(--head); font-size: 15px; font-weight: 700;
    color: var(--coral); margin-bottom: 16px; line-height: 1.4;
  }
  .disc-desc {
    font-size: 14px; color: rgba(255,255,255,0.62); line-height: 1.75;
    margin-bottom: 28px;
  }
  .disc-bullets { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .disc-bullets li {
    font-size: 13px; color: rgba(255,255,255,0.55); padding-left: 16px;
    position: relative; line-height: 1.5;
  }
  .disc-bullets li::before {
    content: '→'; position: absolute; left: 0;
    color: var(--coral); font-size: 11px;
  }

  /* ── HOW WE DELIVER IT (technology) ── */
  .platform { background: var(--navy-dark); }
  .platform-intro {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    align-items: center; margin-bottom: 70px;
  }
 
  .platform-intro-quote {
    font-family: var(--head); font-size: 22px; font-weight: 700;
    color: rgba(255,255,255,0.85); line-height: 1.5;
    border-left: 3px solid var(--coral); padding-left: 28px;
    font-style: italic;
  }
  .product-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
    background: rgba(255,255,255,0.06); border-radius: 14px; overflow: hidden;
    margin-bottom: 28px;
  }
  .product-card {
    background: var(--navy-mid); padding: 40px 36px;
    display: flex; flex-direction: column; gap: 14px;
  }
  .product-badge {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: var(--mono); font-size: 10px; color: var(--coral);
    letter-spacing: 0.14em; text-transform: uppercase;
    background: rgba(250,110,90,0.1); border: 1px solid rgba(250,110,90,0.2);
    padding: 4px 10px; border-radius: 4px; width: fit-content;
  }
  .product-badge.coming { color: var(--slate-light); background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); }
  .product-name {
    font-family: var(--head); font-size: 22px; font-weight: 800;
    color: var(--white); line-height: 1.2;
  }
  .product-role {
    font-family: var(--head); font-size: 14px; font-weight: 700;
    color: var(--coral); line-height: 1.3;
  }
  .product-desc {
    font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; flex: 1;
  }
  .product-modules {
    display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px;
  }
  .module-tag {
    font-family: var(--mono); font-size: 10px;
    color: rgba(255,255,255,0.45); background: rgba(255,255,255,0.05);
    padding: 3px 8px; border-radius: 3px; letter-spacing: 0.06em;
  }

  /* ── MANAGED SERVICE BRIDGE ── */
  .managed-bridge {
    background: rgba(250,110,90,0.07);
    border-top: 1px solid rgba(250,110,90,0.15);
    border-bottom: 1px solid rgba(250,110,90,0.15);
    padding: 22px 80px;
  }
  .managed-bridge-inner {
    display: flex; align-items: center; gap: 16px;
    max-width: 860px;
  }
  .managed-bridge-icon {
    font-size: 18px; flex-shrink: 0;
  }
  .managed-bridge-text {
    font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.6;
  }
  .managed-bridge-text strong { color: var(--white); font-weight: 700; }
  .managed-bridge-text a {
    color: var(--coral); text-decoration: none; font-weight: 600;
    border-bottom: 1px solid rgba(250,110,90,0.3); padding-bottom: 1px;
    transition: border-color 0.2s;
  }
  .managed-bridge-text a:hover { border-color: var(--coral); }

  /* ── PAYER SOLUTIONS ── */
  .payer { background: var(--navy-mid); }
  .payer-card {
    background: var(--navy-dark); border-radius: 14px;
    border: 1px solid rgba(46,204,154,0.2);
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    padding: 56px 60px; align-items: center;
    position: relative; overflow: hidden;
  }
  .payer-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: var(--green);
  }
  .payer-label {
    font-family: var(--mono); font-size: 10px; color: var(--green);
    letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 16px;
    display: flex; align-items: center; gap: 8px;
  }
  .payer-label::before { content: ''; display: block; width: 20px; height: 2px; background: var(--green); }
  .payer-title {
    font-family: var(--head); font-size: 32px; font-weight: 800;
    color: var(--white); margin-bottom: 16px; line-height: 1.2;
  }
  .payer-desc { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 24px; }
  .payer-note {
    font-family: var(--mono); font-size: 11px; color: var(--slate-light);
    letter-spacing: 0.08em; opacity: 0.7;
  }
  .payer-features { display: flex; flex-direction: column; gap: 20px; }
  .payer-feature {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 20px; background: rgba(46,204,154,0.05);
    border: 1px solid rgba(46,204,154,0.1); border-radius: 8px;
  }
  .payer-feature-icon {
    width: 36px; height: 36px; border-radius: 8px;
    background: rgba(46,204,154,0.1); display: flex; align-items: center;
    justify-content: center; font-size: 16px; flex-shrink: 0;
  }
  .payer-feature-text { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; }
  .payer-feature-title { font-weight: 700; color: var(--white); margin-bottom: 4px; }

  /* ── WHO WE SERVE ── */
  .segments { background: var(--navy-dark); }
  .segments-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  }
  .segment-card {
    background: var(--navy-mid); border-radius: 10px;
    padding: 28px 24px; border: 1px solid rgba(255,255,255,0.06);
    transition: border-color 0.2s, transform 0.2s;
    cursor: default;
  }
  .segment-card:hover { border-color: rgba(250,110,90,0.3); transform: translateY(-2px); }
  .segment-icon { font-size: 24px; margin-bottom: 14px; }
  .segment-name {
    font-family: var(--head); font-size: 15px; font-weight: 800;
    color: var(--white); margin-bottom: 8px; line-height: 1.3;
  }
  .segment-desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }

  /* ── ECOSYSTEM ── */
  .ecosystem { background: var(--navy-mid); }
  .eco-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .eco-card {
    background: var(--navy-dark); border-radius: 14px;
    padding: 48px 44px; border: 1px solid rgba(255,255,255,0.07);
    transition: border-color 0.2s;
  }
  .eco-card:hover { border-color: rgba(250,110,90,0.25); }
  .eco-powered {
    font-family: var(--mono); font-size: 10px; color: var(--coral);
    letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 16px;
    display: flex; align-items: center; gap: 8px;
  }
  .eco-powered::before { content: ''; display: block; width: 16px; height: 1px; background: var(--coral); }
  .eco-name {
    font-family: var(--head); font-size: 28px; font-weight: 800;
    color: var(--white); margin-bottom: 12px;
  }
  .eco-focus {
    font-family: var(--head); font-size: 14px; font-weight: 700;
    color: var(--coral); margin-bottom: 16px;
  }
  .eco-desc { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.75; }

  /* ── LEADERSHIP ── */
  .leadership { background: var(--navy-dark); }
  .leadership-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
    margin-bottom: 40px;
  }
  .leader-card {
    background: var(--navy-mid); border-radius: 10px;
    padding: 28px 30px; display: flex; gap: 20px;
    border: 1px solid rgba(255,255,255,0.06);
    transition: border-color 0.2s;
  }
  .leader-card:hover { border-color: rgba(250,110,90,0.2); }
  .leader-initial {
    width: 48px; height: 48px; flex-shrink: 0; border-radius: 10px;
    background: rgba(250,110,90,0.1); border: 1px solid rgba(250,110,90,0.2);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--head); font-size: 16px; font-weight: 800; color: var(--coral);
  }
  .leader-info { flex: 1; }
  .leader-name {
    font-family: var(--head); font-size: 16px; font-weight: 800;
    color: var(--white); margin-bottom: 3px;
  }
  .leader-title {
    font-family: var(--mono); font-size: 10px; color: var(--coral);
    letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px;
  }
  .leader-bio { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.65; }

  /* Advisory board */
  .advisory-label {
    font-family: var(--mono); font-size: 11px; color: var(--slate);
    letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 24px;
    display: flex; align-items: center; gap: 12px;
  }
  .advisory-label::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.06); }
  .advisory-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  }
  .advisor-card {
    background: var(--navy-mid); border-radius: 10px;
    padding: 24px 20px; text-align: center;
    border: 1px solid rgba(255,255,255,0.06);
  }
  .advisor-initial {
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 12px;
    font-family: var(--head); font-size: 16px; font-weight: 800; color: var(--slate-light);
  }
  .advisor-name {
    font-family: var(--head); font-size: 14px; font-weight: 800;
    color: var(--white); margin-bottom: 4px;
  }
  .advisor-role { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.5; }

  /* ── CTA ── */
  .cta-section {
    background: var(--navy-mid); padding: 120px 80px;
    text-align: center; position: relative; overflow: hidden;
  }
  .cta-wave {
    position: absolute; inset: 0; pointer-events: none;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .cta-wave svg { width: 100%; height: 100%; opacity: 0.12; }
  .cta-inner { position: relative; z-index: 2; }
  .cta-headline {
    font-family: var(--head); font-size: clamp(34px, 3.8vw, 54px);
    font-weight: 800; color: var(--white); max-width: 680px;
    margin: 0 auto 20px; line-height: 1.12;
  }
  .cta-headline em { font-style: italic; color: var(--coral); }
  .cta-sub {
    font-size: 17px; color: rgba(255,255,255,0.65); max-width: 520px;
    margin: 0 auto 40px; line-height: 1.65;
  }
  .cta-actions { display: flex; align-items: center; justify-content: center; gap: 20px; }

  /* ── FOOTER ── */
  footer {
    background: var(--navy-dark); padding: 64px 80px 40px;
    border-top: 1px solid rgba(255,255,255,0.07);
  }
  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px;
    margin-bottom: 56px;
  }
  .footer-logo-wrap { display: flex; align-items: center; margin-bottom: 16px; }
  .footer-logo-wrap img { height: 26px; width: auto; filter: brightness(0) invert(1); }
  .footer-tagline { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 280px; margin-bottom: 16px; }
  .footer-contact a { font-size: 13px; color: var(--coral); text-decoration: none; }
  .footer-col-title {
    font-family: var(--mono); font-size: 10px; color: var(--slate);
    letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 18px;
  }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-links a { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: var(--white); }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06);
  }
  .footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }

  /* ── RESPONSIVE ── */
  @media (max-width: 1100px) {
    nav { padding: 18px 40px; }
    .hero { padding: 120px 48px 72px; }
    section { padding: 80px 48px; }
    .platform-intro { grid-template-columns: 1fr; gap: 40px; }
    .payer-card { grid-template-columns: 1fr; gap: 40px; padding: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  }
  @media (max-width: 768px) {
    nav { padding: 16px 24px; }
    .nav-links { display: none; }
    .hero { padding: 100px 24px 60px; }
    .brand-wave { display: none; }
    section { padding: 60px 24px; }
    .partners { padding: 24px; gap: 24px; }
    .problem-grid, .disc-grid, .product-grid { grid-template-columns: 1fr; gap: 2px; }
    .segments-grid { grid-template-columns: repeat(2, 1fr); }
    .advisory-grid { grid-template-columns: repeat(2, 1fr); }
    .leadership-grid { grid-template-columns: 1fr; }
    .eco-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .hero-stats { flex-wrap: wrap; gap: 28px; }
    .cta-section { padding: 80px 24px; }
  }
