      /* RESET & TOKENS */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --teal:       #00B5A6;
      --teal-dark:  #008C80;
      --teal-light: #E6F8F7;
      --teal-mid:   #00D4C2;
      --teal-glow:  rgba(0,181,166,0.25);
      --navy:       #0A1628;
      --navy-mid:   #122040;
      --navy-light: #1a2a4a;
      --orange:     #F97316;
      --orange-h:   #ea580c;
      --gray:       #64748B;
      --gray-light: #F1F5F9;
      --gray-mid:   #f8fafc;
      --white:      #FFFFFF;
      --text:       #1E293B;
      --border:     #E2E8F0;
      --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
      --shadow-md:  0 4px 12px rgba(0,0,0,0.1);
      --shadow-lg:  0 12px 32px rgba(0,0,0,0.12);
      --shadow-xl:  0 24px 48px rgba(0,0,0,0.14);
      --radius-sm:  6px;
      --radius-md:  10px;
      --radius-lg:  16px;
      --radius-xl:  24px;
      --trans:      0.25s ease;
    }
    html { scroll-behavior: smooth; }
    body { font-family: 'Inter', -apple-system, sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    img { max-width: 100%; display: block; }

    /* SCROLL ANIMATIONS */
    .anim { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .anim.visible { opacity: 1; transform: translateY(0); }
    .anim-delay-1 { transition-delay: 0.1s; }
    .anim-delay-2 { transition-delay: 0.2s; }
    .anim-delay-3 { transition-delay: 0.3s; }
    .anim-delay-4 { transition-delay: 0.4s; }

    /* NAV */
    .navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      height: 72px; padding: 0 5%;
      display: flex; align-items: center; justify-content: space-between;
      transition: background var(--trans), box-shadow var(--trans);
      background: transparent;
    }
    .navbar.scrolled {
      background: rgba(10,22,40,0.97);
      backdrop-filter: blur(16px);
      box-shadow: 0 1px 0 rgba(255,255,255,0.06);
    }
    .navbar__logo {
      font-size: 1.5rem; font-weight: 800; color: var(--white); letter-spacing: -0.5px;
      display: flex; align-items: center; gap: 0;
    }
    .navbar__logo span { color: var(--teal-mid); }
    .navbar__links { display: flex; align-items: center; gap: 2rem; }
    .navbar__links a { color: rgba(255,255,255,0.75); font-size: 0.875rem; font-weight: 500; transition: color var(--trans); }
    .navbar__links a:hover { color: var(--white); }
    .navbar__cta {
      background: var(--teal); color: var(--white) !important; font-weight: 700 !important;
      padding: 0.55rem 1.3rem; border-radius: var(--radius-sm);
      transition: background var(--trans), transform var(--trans) !important;
      box-shadow: 0 2px 12px var(--teal-glow);
    }
    .navbar__cta:hover { background: var(--teal-dark) !important; transform: translateY(-1px) !important; }

    /* Mobile hamburger */
    .navbar__hamburger {
      display: none; flex-direction: column; gap: 5px; cursor: pointer;
      background: none; border: none; padding: 4px;
    }
    .navbar__hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--trans); }
    .navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .navbar__hamburger.open span:nth-child(2) { opacity: 0; }
    .navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Mobile overlay */
    .mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 150; }
    .mobile-overlay.active { display: block; }

    /* HERO */
    .hero {
      min-height: 100vh; padding: 120px 5% 100px;
      background: linear-gradient(140deg, var(--navy) 0%, var(--navy-mid) 55%, #0D2B4E 100%);
      display: flex; align-items: center; position: relative; overflow: hidden;
    }
    .hero__orb-1 {
      position: absolute; top: -180px; right: -180px;
      width: 650px; height: 650px; border-radius: 50%;
      background: radial-gradient(circle, rgba(0,181,166,0.18) 0%, transparent 68%);
      pointer-events: none;
    }
    .hero__orb-2 {
      position: absolute; bottom: -200px; left: -100px;
      width: 500px; height: 500px; border-radius: 50%;
      background: radial-gradient(circle, rgba(0,181,166,0.09) 0%, transparent 68%);
      pointer-events: none;
    }
    .hero__grid-pattern {
      position: absolute; inset: 0; opacity: 0.025;
      background-image: linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
      background-size: 48px 48px;
      pointer-events: none;
    }
    .hero__inner {
      max-width: 1200px; margin: 0 auto; width: 100%;
      display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center;
      position: relative; z-index: 1;
    }
    .hero__badge {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: rgba(0,181,166,0.15); border: 1px solid rgba(0,181,166,0.35);
      color: var(--teal-mid); font-size: 0.78rem; font-weight: 700;
      padding: 0.4rem 1rem; border-radius: 100px; margin-bottom: 1.75rem;
      letter-spacing: 0.08em; text-transform: uppercase;
      animation: fadeUp 0.7s 0.1s ease both;
    }
    .hero__title {
      font-size: clamp(2.4rem, 4vw, 3.6rem); font-weight: 900; color: var(--white);
      line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 1.5rem;
      animation: fadeUp 0.7s 0.2s ease both;
    }
    .hero__title em { font-style: normal; color: var(--teal-mid); }
    .hero__desc {
      font-size: 1.1rem; color: rgba(255,255,255,0.68); line-height: 1.75; margin-bottom: 2.5rem;
      max-width: 490px; animation: fadeUp 0.7s 0.3s ease both;
    }
    .hero__actions {
      display: flex; gap: 1rem; flex-wrap: wrap;
      animation: fadeUp 0.7s 0.4s ease both;
    }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: var(--teal); color: var(--white); padding: 0.9rem 1.85rem;
      border-radius: var(--radius-md); font-weight: 700; font-size: 0.95rem;
      transition: all var(--trans); box-shadow: 0 4px 22px var(--teal-glow);
    }
    .btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,181,166,0.4); }
    .btn-orange {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: var(--orange); color: var(--white); padding: 0.9rem 1.85rem;
      border-radius: var(--radius-md); font-weight: 700; font-size: 0.95rem;
      transition: all var(--trans); box-shadow: 0 4px 22px rgba(249,115,22,0.3);
    }
    .btn-orange:hover { background: var(--orange-h); transform: translateY(-2px); }
    .btn-ghost {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: transparent; color: var(--white); padding: 0.9rem 1.85rem;
      border-radius: var(--radius-md); font-weight: 600; font-size: 0.95rem;
      border: 1.5px solid rgba(255,255,255,0.25); transition: all var(--trans);
    }
    .btn-ghost:hover { border-color: var(--teal-mid); color: var(--teal-mid); }

    /* Hero stats card */
    .hero__card {
      background: rgba(255,255,255,0.055); border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius-xl); padding: 2.25rem; backdrop-filter: blur(12px);
      animation: fadeUp 0.7s 0.35s ease both;
    }
    .hero__card-label {
      font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
      color: rgba(255,255,255,0.45); margin-bottom: 1.5rem;
    }
    .stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .stat-box { background: rgba(255,255,255,0.055); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 1.25rem; }
    .stat-box__num { font-size: 1.9rem; font-weight: 900; color: var(--teal-mid); line-height: 1; margin-bottom: 0.3rem; }
    .stat-box__lbl { font-size: 0.78rem; color: rgba(255,255,255,0.5); line-height: 1.4; }
    .hero__divider { height: 1px; background: rgba(255,255,255,0.08); margin: 1.5rem 0; }
    .hero__trust { display: flex; align-items: flex-start; gap: 0.75rem; }
    .hero__trust-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--teal); flex-shrink: 0; margin-top: 3px; }
    .hero__trust p { font-size: 0.82rem; color: rgba(255,255,255,0.58); line-height: 1.5; }
    .hero__trust p strong { color: rgba(255,255,255,0.88); }

    /* LOGOS BAR */
    .logos { background: var(--gray-light); padding: 1.5rem 5%; border-bottom: 1px solid var(--border); }
    .logos__inner { max-width: 1200px; margin: 0 auto; }
    .logos__label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray); text-align: center; margin-bottom: 1.1rem; }
    .logos__list { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.75rem; }
    .logos__pill {
      background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm);
      padding: 0.45rem 1.1rem; font-size: 0.82rem; font-weight: 700; color: var(--gray);
      transition: all var(--trans);
    }
    .logos__pill:hover { border-color: var(--teal); color: var(--teal); }

    /* SECTIONS */
    .section { padding: 96px 5%; }
    .section--dark { background: var(--navy); }
    .section--gray { background: var(--gray-light); }
    .section--white { background: var(--white); }
    .section__inner { max-width: 1200px; margin: 0 auto; }
    .section__tag { display: inline-block; background: rgba(0,181,166,0.12); color: var(--teal); font-size: 0.72rem; font-weight: 700; padding: 0.3rem 0.9rem; border-radius: 100px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.75rem; }
    .section__tag--light { background: rgba(0,212,194,0.15); color: var(--teal-mid); }
    .section__title { font-size: clamp(1.9rem, 3vw, 2.8rem); font-weight: 900; color: var(--navy); line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 1rem; }
    .section__title--white { color: var(--white); }
    .section__sub { font-size: 1.05rem; color: var(--gray); line-height: 1.75; max-width: 580px; }
    .section__sub--light { color: rgba(255,255,255,0.6); }
    .section__header-row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; flex-wrap: wrap; gap: 1.5rem; }

    /* PROBLEM */
    .pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem; }
    .pain-card {
      background: rgba(255,255,255,0.038); border: 1px solid rgba(255,255,255,0.07);
      border-radius: var(--radius-lg); padding: 1.75rem; transition: all var(--trans);
    }
    .pain-card:hover { border-color: rgba(0,181,166,0.35); background: rgba(255,255,255,0.055); transform: translateY(-2px); }
    .pain-card__icon { width: 46px; height: 46px; border-radius: var(--radius-md); background: rgba(0,181,166,0.15); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 1rem; }
    .pain-card h3 { font-size: 0.98rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
    .pain-card p { font-size: 0.86rem; color: rgba(255,255,255,0.52); line-height: 1.65; }

    /* SERVICES */
    .services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .svc-card {
      border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2rem;
      transition: all var(--trans); position: relative; overflow: hidden; background: var(--white);
    }
    .svc-card::after {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--teal), var(--teal-mid));
      opacity: 0; transition: opacity var(--trans);
    }
    .svc-card:hover { border-color: var(--teal); box-shadow: 0 10px 40px rgba(0,181,166,0.12); transform: translateY(-3px); }
    .svc-card:hover::after { opacity: 1; }
    .svc-card__icon { width: 54px; height: 54px; border-radius: var(--radius-lg); background: var(--teal-light); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.25rem; }
    .svc-card h3 { font-size: 1.15rem; font-weight: 800; color: var(--navy); margin-bottom: 0.6rem; }
    .svc-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.7; margin-bottom: 1.25rem; }
    .svc-card__list { display: flex; flex-direction: column; gap: 0.45rem; }
    .svc-card__list li { font-size: 0.83rem; color: var(--gray); display: flex; align-items: center; gap: 0.55rem; }
    .svc-card__list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }

    /* Featured service card */
    .svc-card--featured {
      background: linear-gradient(140deg, var(--navy) 0%, var(--navy-mid) 100%);
      border-color: rgba(0,181,166,0.2); grid-column: span 2;
      display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2.5rem; align-items: center;
    }
    .svc-card--featured::after { background: linear-gradient(90deg, var(--teal-mid), var(--teal)); opacity: 1; }
    .svc-card--featured h3 { color: var(--white); font-size: 1.35rem; }
    .svc-card--featured p { color: rgba(255,255,255,0.62); }
    .svc-card--featured .svc-card__list li { color: rgba(255,255,255,0.62); }
    .svc-card--featured .svc-card__icon { background: rgba(0,181,166,0.2); }
    .svc-feat-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .svc-mini-stat { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.09); border-radius: var(--radius-lg); padding: 1.1rem; text-align: center; }
    .svc-mini-stat span { display: block; }
    .svc-mini-stat__num { font-size: 1.65rem; font-weight: 900; color: var(--teal-mid); margin-bottom: 0.3rem; }
    .svc-mini-stat__lbl { font-size: 0.75rem; color: rgba(255,255,255,0.48); }

    /* HOW IT WORKS */
    .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3.5rem; position: relative; }
    .steps::before {
      content: ''; position: absolute; top: 31px;
      left: calc(12.5% + 32px); right: calc(12.5% + 32px);
      height: 2px; background: linear-gradient(90deg, var(--teal), var(--teal-mid));
    }
    .step { text-align: center; position: relative; z-index: 1; }
    .step__num {
      width: 62px; height: 62px; border-radius: 50%;
      background: var(--white); border: 2.5px solid var(--teal);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; font-weight: 900; color: var(--teal);
      margin: 0 auto 1.25rem; box-shadow: 0 0 0 6px var(--gray-light), 0 4px 18px rgba(0,181,166,0.25);
    }
    .step h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.45rem; }
    .step p { font-size: 0.83rem; color: var(--gray); line-height: 1.6; }

    /* METRICS BAND */
    .metrics-band { background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%); padding: 56px 5%; }
    .metrics-band__inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
    .metric__num { font-size: 2.6rem; font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 0.4rem; }
    .metric__lbl { font-size: 0.88rem; color: rgba(255,255,255,0.75); font-weight: 500; }

    /* WHY TELEMED */
    .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
    .why-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
    .why-item { display: flex; gap: 1rem; align-items: flex-start; }
    .why-item__icon { width: 42px; height: 42px; border-radius: var(--radius-md); background: var(--teal-light); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
    .why-item h4 { font-size: 0.96rem; font-weight: 700; color: var(--navy); margin-bottom: 0.3rem; }
    .why-item p { font-size: 0.875rem; color: var(--gray); line-height: 1.65; }
    .why-right { display: flex; flex-direction: column; gap: 1.25rem; }
    .testimonial {
      background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl);
      padding: 1.75rem; box-shadow: var(--shadow-sm); transition: box-shadow var(--trans);
    }
    .testimonial:hover { box-shadow: var(--shadow-md); }
    .testimonial__stars { color: #F59E0B; font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 0.75rem; }
    .testimonial blockquote { font-size: 0.9rem; color: var(--text); line-height: 1.7; font-style: italic; margin-bottom: 1.1rem; border-left: 3px solid var(--teal); padding-left: 1rem; }
    .testimonial__author { display: flex; align-items: center; gap: 0.75rem; }
    .testimonial__avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--teal); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 800; color: var(--white); flex-shrink: 0; }
    .testimonial__name { font-size: 0.85rem; font-weight: 700; color: var(--navy); }
    .testimonial__role { font-size: 0.78rem; color: var(--gray); }
    .compliance-card {
      background: linear-gradient(135deg, var(--teal-light), #EDFFFE);
      border: 1px solid rgba(0,181,166,0.3); border-radius: var(--radius-xl);
      padding: 1.6rem; display: flex; gap: 1rem; align-items: flex-start;
    }
    .compliance-card__icon { font-size: 2rem; flex-shrink: 0; }
    .compliance-card h4 { font-size: 0.96rem; font-weight: 700; color: var(--navy); margin-bottom: 0.3rem; }
    .compliance-card p { font-size: 0.84rem; color: var(--gray); line-height: 1.6; }

    /* FAQ */
    .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 3rem; }
    .accordion__item { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: box-shadow var(--trans); }
    .accordion__item:hover { box-shadow: var(--shadow-sm); }
    .accordion__item.active { border-color: var(--teal); }
    .accordion__trigger {
      width: 100%; display: flex; justify-content: space-between; align-items: center;
      padding: 1.2rem 1.5rem; background: var(--white); cursor: pointer;
      text-align: left; gap: 1rem; border: none; font-family: inherit;
    }
    .accordion__trigger h4 { font-size: 0.92rem; font-weight: 700; color: var(--navy); line-height: 1.4; }
    .accordion__arrow {
      width: 28px; height: 28px; border-radius: 50%; background: var(--gray-light);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
      font-size: 1rem; color: var(--teal); transition: transform var(--trans), background var(--trans);
    }
    .accordion__item.active .accordion__arrow { transform: rotate(45deg); background: var(--teal); color: var(--white); }
    .accordion__body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
    .accordion__body p { padding: 0 1.5rem 1.25rem; font-size: 0.875rem; color: var(--gray); line-height: 1.7; }

    /* CTA BANNER */
    .cta-banner {
      background: linear-gradient(140deg, var(--navy) 0%, #0D2B4E 100%);
      padding: 96px 5%; text-align: center; position: relative; overflow: hidden;
    }
    .cta-banner::before {
      content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
      width: 900px; height: 900px; border-radius: 50%;
      background: radial-gradient(circle, rgba(0,181,166,0.1) 0%, transparent 62%);
      pointer-events: none;
    }
    .cta-banner__inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
    .cta-banner h2 { font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 900; color: var(--white); margin-bottom: 1rem; letter-spacing: -0.5px; }
    .cta-banner p { font-size: 1.05rem; color: rgba(255,255,255,0.62); line-height: 1.75; margin-bottom: 2.5rem; }
    .cta-banner__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
    .cta-banner__note { margin-top: 1.5rem; font-size: 0.8rem; color: rgba(255,255,255,0.35); }

    /* CONTACT */
    .contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 5rem; align-items: start; }
    .contact-info h2 { font-size: 1.9rem; font-weight: 900; color: var(--navy); margin-bottom: 1rem; letter-spacing: -0.3px; }
    .contact-info__desc { color: var(--gray); line-height: 1.75; margin-bottom: 2.5rem; font-size: 0.95rem; }
    .contact-detail { display: flex; align-items: center; gap: 0.875rem; margin-bottom: 1rem; font-size: 0.9rem; color: var(--text); }
    .contact-detail__icon { width: 38px; height: 38px; border-radius: var(--radius-md); background: var(--teal-light); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
    .form-card { background: var(--gray-light); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2.5rem; }
    .form-card__title { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: 0.25rem; }
    .form-card__sub { font-size: 0.84rem; color: var(--gray); margin-bottom: 2rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .form-group { margin-bottom: 1.1rem; }
    label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; }
    input, select, textarea {
      width: 100%; padding: 0.75rem 1rem; border: 1.5px solid var(--border);
      border-radius: var(--radius-md); font-family: 'Inter', sans-serif; font-size: 0.9rem;
      color: var(--text); background: var(--white); transition: border-color var(--trans), box-shadow var(--trans);
      outline: none; appearance: none;
    }
    input:focus, select:focus, textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,181,166,0.14); }
    textarea { resize: vertical; min-height: 115px; }
    .form-submit {
      width: 100%; background: var(--teal); color: var(--white); border: none;
      padding: 1rem; border-radius: var(--radius-md); font-family: 'Inter', sans-serif;
      font-size: 1rem; font-weight: 800; cursor: pointer; transition: all var(--trans);
      box-shadow: 0 4px 18px var(--teal-glow); letter-spacing: 0.01em;
    }
    .form-submit:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,181,166,0.38); }
    .form-note { text-align: center; font-size: 0.78rem; color: var(--gray); margin-top: 0.875rem; }

    /* FOOTER */
    footer { background: var(--navy); padding: 72px 5% 36px; }
    .footer__inner { max-width: 1200px; margin: 0 auto; }
    .footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3.5rem; }
    .footer__logo { font-size: 1.5rem; font-weight: 900; color: var(--white); margin-bottom: 1rem; letter-spacing: -0.5px; }
    .footer__logo span { color: var(--teal-mid); }
    .footer__desc { font-size: 0.84rem; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 1.75rem; }
    .footer__social { display: flex; gap: 0.75rem; }
    .footer__social-btn {
      width: 38px; height: 38px; border-radius: var(--radius-md);
      background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.55); font-size: 0.75rem; font-weight: 800;
      transition: all var(--trans);
    }
    .footer__social-btn:hover { background: var(--teal); border-color: var(--teal); color: var(--white); }
    .footer__col-title { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.35); margin-bottom: 1.1rem; }
    .footer__links { display: flex; flex-direction: column; gap: 0.65rem; }
    .footer__links a { font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: color var(--trans); }
    .footer__links a:hover { color: var(--teal-mid); }
    .footer__bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 1.75rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
    .footer__copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
    .footer__legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
    .footer__legal a { font-size: 0.8rem; color: rgba(255,255,255,0.3); transition: color var(--trans); }
    .footer__legal a:hover { color: var(--teal-mid); }

    /* ANIMATIONS */
    @keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

    /* RESPONSIVE */
    @media (max-width: 1024px) {
      .why-grid { gap: 3rem; }
      .contact-grid { grid-template-columns: 1fr 1.1fr; gap: 3rem; }
    }
    @media (max-width: 900px) {
      .navbar__links { display: none; }
      .navbar__hamburger { display: flex; }
      .navbar__links.open {
        display: flex; flex-direction: column; align-items: flex-start;
        position: fixed; top: 72px; right: 0; bottom: 0; width: 280px;
        background: var(--navy); padding: 2rem 1.5rem; gap: 0.25rem; z-index: 180;
        overflow-y: auto;
      }
      .navbar__links.open a { font-size: 1rem; padding: 0.6rem 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.06); }
      .navbar__cta { margin-top: 1rem; }
      .hero__inner { grid-template-columns: 1fr; }
      .hero__card { display: none; }
      .pain-grid { grid-template-columns: 1fr 1fr; }
      .services-grid { grid-template-columns: 1fr; }
      .svc-card--featured { grid-column: span 1; grid-template-columns: 1fr; }
      .svc-feat-stats { grid-template-columns: repeat(4, 1fr); }
      .steps { grid-template-columns: 1fr 1fr; }
      .steps::before { display: none; }
      .metrics-band__inner { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
      .why-grid { grid-template-columns: 1fr; }
      .faq-grid { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr; }
      .footer__grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 600px) {
      .section { padding: 64px 5%; }
      .pain-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .footer__grid { grid-template-columns: 1fr; }
      .svc-feat-stats { grid-template-columns: 1fr 1fr; }
      .metrics-band__inner { grid-template-columns: 1fr 1fr; }
      .hero__title { letter-spacing: -0.5px; }
    }

    /* NEARSHORE SECTION */
    .nearshore-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
    .nearshore-map { background: linear-gradient(140deg, var(--navy) 0%, var(--navy-mid) 100%); border-radius: var(--radius-xl); padding: 2.5rem; border: 1px solid rgba(0,181,166,0.2); position: relative; overflow: hidden; }
    .nearshore-map::before { content: ''; position: absolute; top: -60px; right: -60px; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, rgba(0,181,166,0.15) 0%, transparent 68%); pointer-events: none; }
    .nearshore-map__title { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.4); margin-bottom: 1.5rem; }
    .nearshore-route { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
    .nearshore-city { text-align: center; }
    .nearshore-city__flag { font-size: 1.75rem; margin-bottom: 0.4rem; }
    .nearshore-city__name { font-size: 0.95rem; font-weight: 800; color: var(--white); }
    .nearshore-city__sub { font-size: 0.75rem; color: rgba(255,255,255,0.45); }
    .nearshore-route__line { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 0.3rem; }
    .nearshore-route__dashes { height: 2px; width: 100%; background: repeating-linear-gradient(90deg, var(--teal) 0, var(--teal) 8px, transparent 8px, transparent 16px); }
    .nearshore-route__label { font-size: 0.75rem; font-weight: 700; color: var(--teal-mid); white-space: nowrap; }
    .nearshore-pills { display: flex; flex-direction: column; gap: 0.75rem; }
    .nearshore-pill { display: flex; align-items: center; gap: 0.875rem; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-md); padding: 0.875rem 1rem; }
    .nearshore-pill__icon { font-size: 1.1rem; flex-shrink: 0; }
    .nearshore-pill__text { font-size: 0.85rem; color: rgba(255,255,255,0.75); line-height: 1.4; }
    .nearshore-pill__text strong { color: var(--white); }
    .nearshore-points { display: flex; flex-direction: column; gap: 1.5rem; }
    .nearshore-point { display: flex; gap: 1rem; align-items: flex-start; }
    .nearshore-point__num { width: 36px; height: 36px; border-radius: 50%; background: var(--teal-light); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 900; color: var(--teal); flex-shrink: 0; }
    .nearshore-point h4 { font-size: 0.96rem; font-weight: 700; color: var(--navy); margin-bottom: 0.3rem; }
    .nearshore-point p { font-size: 0.875rem; color: var(--gray); line-height: 1.65; }

    /* CASE STUDY SECTION */
    .cs-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
    .cs-card__header { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); padding: 2.5rem; display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; flex-wrap: wrap; }
    .cs-badge { display: inline-block; background: rgba(0,181,166,0.2); border: 1px solid rgba(0,181,166,0.4); color: var(--teal-mid); font-size: 0.72rem; font-weight: 700; padding: 0.3rem 0.9rem; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
    .cs-card__header h3 { font-size: 1.5rem; font-weight: 900; color: var(--white); line-height: 1.2; letter-spacing: -0.3px; }
    .cs-profile { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 1.25rem 1.5rem; min-width: 220px; }
    .cs-profile__label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 0.75rem; }
    .cs-profile__item { font-size: 0.84rem; color: rgba(255,255,255,0.75); display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.4rem; }
    .cs-card__body { padding: 2.5rem; }
    .cs-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
    .cs-section-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--teal); margin-bottom: 1rem; }
    .cs-challenge-list { display: flex; flex-direction: column; gap: 0.6rem; }
    .cs-challenge-list li { font-size: 0.875rem; color: var(--gray); display: flex; align-items: flex-start; gap: 0.6rem; line-height: 1.5; }
    .cs-challenge-list li::before { content: "•"; font-size: 0.75rem; flex-shrink: 0; margin-top: 2px; }
    .cs-solution-pills { display: flex; flex-direction: column; gap: 0.75rem; }
    .cs-solution-pill { background: var(--teal-light); border: 1px solid rgba(0,181,166,0.2); border-radius: var(--radius-md); padding: 0.875rem 1rem; }
    .cs-solution-pill h5 { font-size: 0.85rem; font-weight: 700; color: var(--navy); margin-bottom: 0.2rem; }
    .cs-solution-pill p { font-size: 0.8rem; color: var(--gray); line-height: 1.45; }
    .cs-results { background: var(--gray-light); border-radius: var(--radius-lg); padding: 2rem; margin-bottom: 2rem; }
    .cs-results-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin-top: 1.25rem; }
    .cs-result-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.1rem; text-align: center; }
    .cs-result-box__num { font-size: 1.55rem; font-weight: 900; color: var(--teal); line-height: 1; margin-bottom: 0.3rem; display: block; }
    .cs-result-box__lbl { font-size: 0.73rem; color: var(--gray); line-height: 1.4; }
    .cs-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; margin-bottom: 2rem; }
    .cs-table th { background: var(--navy); color: var(--white); padding: 0.75rem 1rem; text-align: left; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
    .cs-table td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--border); color: var(--gray); vertical-align: middle; }
    .cs-table tr:last-child td { border-bottom: none; }
    .cs-table tr:nth-child(even) td { background: var(--gray-light); }
    .cs-table .after { font-weight: 700; color: var(--teal); }
    .cs-quote { border-left: 4px solid var(--teal); padding: 1.25rem 1.5rem; background: var(--teal-light); border-radius: 0 var(--radius-md) var(--radius-md) 0; }
    .cs-quote blockquote { font-size: 0.95rem; font-style: italic; color: var(--text); line-height: 1.7; margin-bottom: 0.75rem; }
    .cs-quote cite { font-size: 0.8rem; font-weight: 700; color: var(--navy); font-style: normal; }

    @media (max-width: 900px) {
      .nearshore-grid { grid-template-columns: 1fr; }
      .cs-two-col { grid-template-columns: 1fr; }
      .cs-results-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 600px) {
      .cs-results-grid { grid-template-columns: 1fr 1fr; }
    }



/* Modal success - hidden by default */
.modal-success {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  text-align: center;
  z-index: 1000;
  max-width: 400px;
  width: 90%;
}

.modal-success .success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.modal-success h3 {
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.modal-success p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Overlay for modal */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
}

.modal-overlay.active,
.modal-success.active {
  display: block;
}

