
: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;
  }
  /* ------------------------------------------------------------------------- */
  /* Style guide and organization map                                            */
  /* 1) CSS variables                                                            */
  /* 2) Base reset / typography / layout                                         */
  /* 3) Utilities / helper classes                                               */
  /* 4) Navigation / hero / sections                                             */
  /* 5) Section-specific blocks (problem, disciplines, platform, etc.)           */
  /* 6) CTA + footer                                                             */
  /* 7) Forms (contact/login, shared components)                                 */
  /* 8) Responsive media queries                                                 */
  /* ------------------------------------------------------------------------- */
  *, *::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; justify-content:center; 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 li{
    display: flex;
    align-items: center;
  }
  
  .nav-links li + li::before {
  content: '';
  display: block;
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.2);
  margin-right: 36px;
}


  .nav-links a:hover { color: var(--white); }
  .nav-links a::after {
    content: ''; display: block; width: 0; height: 2px;
    background: var(--coral); transition: width 0.2s;
    margin-top: 4px;
  }
  .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;
  }
  .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(45px, 3.0vw, 70px);
    font-weight: 800; line-height: 1.08;
    color: var(--white); margin-bottom: 28px;
    white-space: nowrap;
  }
  .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;
    margin-bottom: 32px;
    max-width: 600px;
  }
  .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); }

  /* ── 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);
    margin-bottom: 20px;
    max-width: 800px;
  }
  .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; margin-bottom: 60px; max-width: 600px;
  }

  /* ── PROBLEM SECTION ── */
  .problem 
  { background: var(--navy-dark);  min-height: 100vh;
    display: flex; flex-direction: column; justify-content: center;
    position: relative; overflow: hidden;
    margin-top: -100px;
  }
  .problem .section-sub { color: var(--slate-light); }
  .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: rgba(250,110,90,0.1); }
  .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.7); ; 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: 14px; 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; margin-top: 32px;
  }
  .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-headline {
    font-family: var(--head); font-size: 22px; font-weight: 800;
    color: var(--coral); margin-bottom: 16px; line-height: 1.15;
  }
  .disc-tagline {
    font-family: var(--head); font-size: 15px; font-weight: 700;
    color: var(--coral-light); 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: 16px;
  }
  .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); padding: 60px 80px 80px; 
    display: flex; flex-direction: column; justify-content: center;
    position: relative; overflow: hidden;
   }
  .platform-intro {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    align-items: center; margin-bottom: 30px;
  }
 
  .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;
    margin-top: -180px;
  }
  .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-grid:hover{
    border-color: rgba(250,110,90,0.2);
  }
  .product-card {
    background: var(--navy-mid); padding: 40px 36px;
    display: flex; flex-direction: column; gap: 14px;
  }
  .product-card:hover {  background: rgba(250,110,90,0.1); }
  .product-badge {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: var(--mono); font-size: 10px; color: var(--green);
    letter-spacing: 0.14em; text-transform: uppercase;
    background: rgba(46,204,154,0.1); border: 1px solid var(--green);
    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;
    margin-bottom: 0px;
  }
  .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;
  }

  .module-tag-green {
    font-family: var(--mono); font-size: 10px;
    color: var(--green); background: rgba(46,204,154,0.1);
    padding: 3px 8px; border-radius: 3px; letter-spacing: 0.06em;
  }

  /* ── PLATFORM ARCHITECTURE SECTION ── */
  .platform-architecture {
     padding: 60px 0;
    }

  .platform-arch-headline {
    font-family: var(--head); font-size: 28px; font-weight: 800;
    color: var(--white); line-height: 1.3; margin-bottom: 24px;
  }
  .platform-arch-subtitle {
    font-size: 15px; font-weight: 600; color: var(--coral);
    line-height: 1.6;
  }

  .platform-arch-features {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 32px;
    padding: 0;
    margin: 16px 0 0 0;
    list-style: none;
  }
  .platform-arch-feature {
    position: relative;
    padding: 10px 20px;
    line-height: 1.4;
    white-space: nowrap;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    font-size: 15px;
    color: var(--slate-light);
  }
  .platform-arch-feature:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.7);
  }

  /* ── PLATFORM DIFFERENCE SECTION ── */
  .platform-difference::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: var(--green);
  }

  .platform-difference {
    position: relative;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 16px;
    transition: border-color 0.2s, background 0.2s;
  }

  .platform-difference:hover {
    border-color:var(--green);
    background:  rgba(46,204,154,0.1);
  }
  .platform-diff-icon {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 22px;
    color: var(--green);
    opacity: 0.8;
  }
  .platform-diff-title {
    font-family: var(--head); font-size: 20px; 
    color: var(--white); line-height: 1.4;
    margin-left: 40px;
    margin-top: 8px;
    margin-bottom: 20px;
  }

  .difference-label{
    margin-bottom: 8px;
    color: var(--slate);
  }

  .platform-diff-description {
    font-size: 18px; color: var(--slate); line-height: 1.6;
  }

  #payer-intro{
    max-height: fit-content;
    overflow: hidden;
    position: relative;
    margin: 0;
    padding: 0;
    min-height: 68px;
    max-width: 700px;
    margin-top: 16px;
  }

  #payer-intro::before{
    background: none
  }

  #payer-description{
    margin-top: 16px;
  }

  #payer-subtitle {
    font-size: 18px;
    color: var(--slate);
    line-height: 1.6;
    margin-bottom: 0;
  }

  #payer-intro .platform-diff-description {
    font-size: 15px;
    line-height: 1.5;
    margin-left: 70px;
    margin-bottom: 0;
  }

    /* ── PLATFORM STEPS SECTION ── */

  .platform-steps {
    display: flex; flex-direction: column; gap: 30px;
  }
  .platform-step {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 32px;
    transition: border-color 0.2s, background 0.2s;
  }
  .platform-step:hover {
    border-color: rgba(250,110,90,0.3);
    background: rgba(250,110,90,0.05);
  }
  .step-number {
    font-family: var(--mono); font-size: 11px; color: var(--coral);
    letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 12px;
    display: block;
  }
  .step-title {
    font-family: var(--head); font-size: 18px; font-weight: 800;
    color: var(--coral); line-height: 1.3; margin-bottom: 20px;
    letter-spacing: 0.02em;
    font-weight: bolder;
  }

  .step-subtitle {
    font-size: 15px; color: var(--coral); line-height: 1.6;
    margin-bottom: 16px;
    font-weight: lighter;
  }
  .step-description {
    font-size: 16px; color: var(--coral); line-height: 1.6;
    margin-bottom: 20px;
    font-weight: semi-bold;
  }

  .step-description ::after {
    content: ''; display: block; width: 32px; height: 2px;
    background: var(--coral); margin-top: 24px; border-radius: 1px;
  }
  .step-status{
    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;
     margin-bottom: 12px;
  }
  .step-capabilities {
    font-size: 15px; color: var(--slate); line-height: 1.6;
    max-width: none;
  }
  
  .step-capabilities strong {
    font-weight: 700;
    margin-top: 8px;
  }
  .capabilites-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  .capabilites-list li {
    padding: 10px 20px;
    line-height: 1.4;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    font-size: 15px;
    color: var(--coral-light);
    white-space: normal;
  }


  /* ── 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;
  }
  .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-icon{
    top: 16px;
    left: 16px;
    font-size: 30px;
    color: var(--green);
    opacity: 0.8;

  }
  .payer { background: var(--navy-mid); }
  .payer-card:hover { border-color: rgba(46,204,154,0.3);
    background:  rgba(46,204,154,0.1); }
  .payer-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: var(--green);
  }

  #payer-command-center{
     margin-top: 16px;
     margin-bottom: 16px;
  }

  #payer-command-center::before{
    background:none;
  }
  .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: 20px; 
    color: var(--white); line-height: 1.4;
    margin-top: 8px;
    margin-bottom: 20px;
  }
  .payer-desc {   
  font-size: 18px; color: var(--slate); line-height: 1.6;
 }

  .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; }

  .payer-headline{
    font-family: var(--head); font-size: 12px; font-weight: light;
    color: var(--slate-light); line-height: 1.5;
    border-left: 3px solid var(--slate); padding-left: 15px;
    font-style: italic;
    margin-top: 16px;
    margin-bottom: 16px;
  }

  #payer-subtitle{
    align-items: center;
    margin-top: 24px;
    white-space: nowrap;
  }

  .payer-subtitle-icon{
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 30px;
    color: var(--green);
    opacity: 0.8;
    padding: 8px;
    margin-right: 20px;
  }

  .payer-solutions{
    margin-top: -100px;
  }

  .payer-solutions .segments-grid {
    grid-template-columns: repeat(3, 1fr);
    margin: 0;
    gap: 20px;
    justify-items: start;
    
  }

  /* ── WHO WE SERVE ── */
  .segments { background: var(--navy-mid); border-top: 1px solid rgba(255,255,255,0.1);
}
  .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: 16px; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 16px;}

  /* ── ECOSYSTEM ── */
  .ecosystem { background: var(--navy-dark); }
  .eco-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 0;
    gap: 20px;
  }
  .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: 16px; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom:16px; }

  /* ── 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);
    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);
    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: 20px 80px 40px;
    border-top: 1px solid rgba(255,255,255,0.10);
  }
  .footer-grid {
    display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center;
  }
  .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; }
  .footer-contact { 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-copy { font-size: 12px; color: rgba(255,255,255,0.3); }

  .footer-right{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    justify-content: baseline;
  }

  #career-link{
    font-size: 13px; 
    color: var(--coral); 
    text-decoration: none; 
    transition: color 0.2s;
  }

  /* ── FORM LAYOUT (CONTACT + LOGIN) ── */
  .contact,
  .login {
    background: var(--navy-dark);
    display: flex; flex-direction: column; align-items: center;
    text-align: center;
  }

  .contact .section-label, .login .section-label { margin-bottom: 16px; }
  .contact .section-headline, .login .section-headline { margin-bottom: 14px; }
  .contact .section-sub, .login .section-sub { margin-bottom: 48px; max-width: 760px; }

  .contact-form,
  .login-form {
    width: min(100%, 720px);
    display: grid; gap: 26px;
  }

  .contact-form .form-row,
  .login-form .form-row {
    display: flex; flex-direction: column; gap: 10px;
  }

  .contact-form label,
  .login-form label {
    font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--coral);
  }

  .contact-form input,
  .contact-form textarea,
  .login-form input,
  .login-form textarea {
    font-family: var(--sans); font-size: 15px; color: var(--white);
    background: transparent; border: none;
    border-bottom: 1px solid rgba(255,255,255,0.25);
    padding: 10px 0; outline: none;
    transition: border-color 0.2s;
  }

  .contact-form input::placeholder,
  .contact-form textarea::placeholder,
  .login-form input::placeholder,
  .login-form textarea::placeholder {
    color: rgba(255,255,255,0.45);
  }

  .contact-form input:focus,
  .contact-form textarea:focus,
  .login-form input:focus,
  .login-form textarea:focus {
    border-bottom-color: var(--coral);
  }

  .contact-form textarea,
  .login-form textarea { min-height: 160px; resize: vertical; }

  .contact-form .btn-outline,
  .login-form .btn-outline {
    font-family: var(--sans); font-weight: 700; letter-spacing: 0.03em;
    font-size: 13px; color: var(--coral);
    background: rgba(255,255,255,0.05); border: 1px solid rgba(250,110,90,0.5);
    border-radius: 8px; padding: 14px 22px; cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    align-self: center; width: min(240px, 100%);
  }

  .contact-form .btn-outline:hover,
  .login-form .btn-outline:hover { background: rgba(250,110,90,0.12); transform: translateY(-1px); }

  .contact-form .cancelbtn,
  .login-form .cancelbtn {
    font-family: var(--sans); font-weight: 600; letter-spacing: 0.03em;
    font-size: 13px; color: rgba(255,255,255,0.6);
    background: transparent; border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px; padding: 10px 18px; cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
  }

  .contact-form .cancelbtn:hover,
  .login-form .cancelbtn:hover {
    background: rgba(255,255,255,0.05); color: var(--white);
    border-color: rgba(255,255,255,0.4);
  }

  .login-form .container {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 20px; padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .login-form .psw {
    font-size: 14px; color: rgba(255,255,255,0.6);
  }

  .login-form .psw a {
    color: var(--coral); text-decoration: none;
    transition: color 0.2s;
  }

  .login-form .psw a:hover {
    color: var(--coral-light); text-decoration: underline;
  }

  @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; }
    .payer-solutions .segments-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 768px) {
    .payer-solutions .segments-grid { grid-template-columns: 1fr; }
    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; }
  }
