:root {
      --primary: #cb6ce6;
      --primary-soft: rgba(203,108,230,0.10);
      --primary-border: rgba(203,108,230,0.22);
      --primary-hover: #b450cf;
      --accent-soft: #f3ebfc;
      --text-heading: #1c1c2e;
      --text-body: #5c5c78;
      --text-light: #9898b0;
      --border: #ede8f5;
      --white: #ffffff;
      --bg-soft: #f8f5fc;
      --bg-lighter: #fdfbff;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Poppins', sans-serif;
      color: var(--text-body);
      background: var(--white);
      overflow-x: hidden;
      line-height: 1.6;
    }

    /* ══════════════════════════════════
       1. NAVBAR — exact Nudge style:
          full-width fixed bar, inside it
          a single floating pill capsule
          centered with logo + links + CTA
    ══════════════════════════════════ */
    .site-header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 0.85rem 1rem;
      background: transparent;
      pointer-events: none; /* let clicks pass through the gap */
    }
    /* The actual pill */
    .nav-pill-outer {
      max-width: 860px;
      margin: 0 auto;
      background: rgba(255,255,255,0.82);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(220,210,235,0.7);
      border-radius: 100px;
      padding: 0.45rem 0.45rem 0.45rem 1.4rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.5rem;
      pointer-events: all; /* re-enable clicks on the pill */
      box-shadow: 0 4px 24px rgba(140,80,200,0.08);
    }
    /* Logo inside pill */
    .nav-logo {
      font-weight: 900; font-size: 1.1rem;
      color: var(--text-heading); text-decoration: none;
      letter-spacing: -0.5px; white-space: nowrap; flex-shrink: 0;
    }
    .nav-logo span { color: var(--primary); }
    /* Center links */
    .nav-pill-links {
      display: flex; align-items: center; gap: 0.1rem; flex: 1;
      justify-content: center;
    }
    .nav-pill-links a {
      font-size: 0.84rem; font-weight: 600;
      color: var(--text-body); text-decoration: none;
      padding: 0.3rem 0.6rem; border-radius: 100px;
      transition: color 0.15s, background 0.15s;
      white-space: nowrap;
    }
    .nav-pill-links a:hover { color: var(--text-heading); background: rgba(203,108,230,0.08); }
    /* CTA inside pill — fully rounded */
    .btn-nav-cta {
      font-family: 'Poppins', sans-serif;
      font-size: 0.84rem; font-weight: 700;
      background: var(--primary); color: #fff;
      border: none; border-radius: 100px;
      padding: 0.52rem 1.3rem;
      cursor: pointer; text-decoration: none; flex-shrink: 0;
      transition: background 0.15s, box-shadow 0.15s;
    }
    .btn-nav-cta:hover { background: var(--primary-hover); color: #fff; box-shadow: 0 4px 14px rgba(203,108,230,0.35); }

    /* Mobile hamburger */
    .nav-hamburger {
      display: none; background: none; border: 1px solid rgba(203,108,230,0.25);
      border-radius: 100px; padding: 0.38rem 0.7rem; cursor: pointer;
      align-items: center; justify-content: center; flex-shrink: 0;
    }
    @media(max-width: 768px) {
      .nav-pill-links { display: none; }
      .nav-hamburger { display: flex; }
      .nav-pill-outer { padding: 0.4rem 0.4rem 0.4rem 1.2rem; }
    }
    .mobile-menu {
      display: none; flex-direction: column;
      max-width: 860px; margin: 0.5rem auto 0;
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(220,210,235,0.7);
      border-radius: 20px; padding: 0.75rem 1.25rem;
      box-shadow: 0 4px 24px rgba(140,80,200,0.08);
      pointer-events: all;
    }
    .mobile-menu a {
      color: var(--text-body); font-weight: 600; font-size: 0.9rem;
      padding: 0.55rem 0; text-decoration: none; display: block;
    }
    .mobile-menu a:not(:last-child) { border-bottom: 1px solid var(--border); }
    .mobile-menu a:hover { color: var(--primary); }
    .mobile-menu.open { display: flex; }
    /* Push page content below fixed nav */
    body { padding-top: 76px; }

    /* ══════════════════════════════════
       GLOBAL CTA BUTTONS
    ══════════════════════════════════ */
    .cta-btn {
      display: inline-flex; align-items: center; gap: 0.45rem;
      background: var(--primary); color: #fff;
      border: none; border-radius: 9px;
      padding: 0.78rem 1.75rem;
      font-family: 'Poppins', sans-serif;
      font-weight: 700; font-size: 0.92rem;
      text-decoration: none; cursor: pointer;
      transition: background 0.15s, box-shadow 0.15s, transform 0.12s;
      box-shadow: 0 4px 16px rgba(203,108,230,0.25);
    }
    .cta-btn:hover { background: var(--primary-hover); color: #fff; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(203,108,230,0.35); }
    .cta-btn-outline {
      display: inline-flex; align-items: center; gap: 0.45rem;
      background: var(--white); color: var(--text-heading);
      border: 1.5px solid var(--border); border-radius: 9px;
      padding: 0.78rem 1.75rem;
      font-family: 'Poppins', sans-serif;
      font-weight: 700; font-size: 0.92rem;
      text-decoration: none; cursor: pointer;
      transition: border-color 0.15s, color 0.15s;
    }
    .cta-btn-outline:hover { border-color: var(--primary); color: var(--primary); }

    /* ══════════════════════════════════
       SECTION HELPERS
    ══════════════════════════════════ */
    section { padding: 90px 0; }
    .eyebrow {
      font-size: 0.72rem; font-weight: 700; letter-spacing: 2.5px;
      text-transform: uppercase; color: var(--primary); margin-bottom: 0.6rem;
    }
    .eyebrow2 {
      font-size: 0.72rem; font-weight: 700; letter-spacing: 2.5px;
      text-transform: uppercase; color: #fff; margin-bottom: 0.6rem;
    }
    .sec-h {
      font-size: clamp(1.65rem, 3.2vw, 2.4rem);
      font-weight: 900; color: var(--text-heading);
      letter-spacing: -0.7px; line-height: 1.15; margin-bottom: 0.85rem;
    }
    .sec-p { font-size: 0.97rem; color: var(--text-body); line-height: 1.78; }

    /* Fade-up animation */
    .fade-up {
      opacity: 0; transform: translateY(28px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
    .fade-up.delay-1 { transition-delay: 0.1s; }
    .fade-up.delay-2 { transition-delay: 0.2s; }
    .fade-up.delay-3 { transition-delay: 0.3s; }
    .fade-up.delay-4 { transition-delay: 0.4s; }

    /* ══════════════════════════════════
       2. HERO
    ══════════════════════════════════ */
    .hero {
      background: linear-gradient(158deg, #fdfbff 0%, #f5eaff 55%, #fdfbff 100%);
      padding: 140px 0 80px;
      position: relative; overflow: hidden;
      margin-top: -80px;
    }
    .hero-pill {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: var(--primary-soft);
      border: 1px solid var(--primary-border);
      border-radius: 100px; padding: 0.3rem 1rem 0.3rem 0.55rem;
      font-size: 0.78rem; font-weight: 600; color: var(--primary);
      margin-bottom: 1.6rem;
    }
    .pill-dot { width: 6px; height: 6px; background: var(--primary); border-radius: 50%; display: inline-block; }
    .hero h1 {
      font-size: clamp(2rem, 4.5vw, 3.4rem);
      font-weight: 900; line-height: 1.09;
      color: var(--text-heading); letter-spacing: -1.5px; margin-bottom: 0.9rem;
    }
    .hero h1 em { font-style: normal; color: var(--primary); }
    .hero-sub { font-size: 1rem; font-weight: 600; color: var(--primary); margin-bottom: 0.85rem; }
    .hero-desc { font-size: 0.97rem; color: var(--text-body); line-height: 1.78; margin-bottom: 1.4rem; max-width: 510px; }
    .hero-tag { display: flex; align-items: center; gap: 0.45rem; font-size: 0.85rem; font-weight: 700; color: var(--text-heading); margin-bottom: 2rem; }
    .hero-tag svg { color: var(--primary); }
    .hero-ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; }

    /* 2b. Hero right: animated rings */
    .hero-anim-wrap {
      position: relative;
      display: flex; align-items: center; justify-content: center;
      height: 460px;
    }
    /* Animated concentric rounded lines */
    .ring {
      position: absolute;
      border-radius: 50%;
      border: 1.5px solid rgba(203,108,230,0.18);
      animation: ringPulse 4s ease-in-out infinite;
    }
    .ring:nth-child(1) { width: 180px; height: 180px; animation-delay: 0s; }
    .ring:nth-child(2) { width: 280px; height: 280px; animation-delay: 0.5s; border-color: rgba(203,108,230,0.12); }
    .ring:nth-child(3) { width: 380px; height: 380px; animation-delay: 1s; border-color: rgba(203,108,230,0.08); }
    .ring:nth-child(4) { width: 480px; height: 480px; animation-delay: 1.5s; border-color: rgba(203,108,230,0.05); }
    @keyframes ringPulse {
      0%, 100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.04); opacity: 0.6; }
    }
    /* Floating dashboard card */
    .dash-float {
      position: relative; z-index: 2;
      background: var(--white);
      border-radius: 18px;
      border: 1px solid var(--border);
      box-shadow: 0 24px 64px rgba(140,80,190,0.12);
      overflow: hidden;
      width: 100%; max-width: 400px;
      animation: floatY 5s ease-in-out infinite;
    }
    @keyframes floatY {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }
    .dash-topbar {
      background: var(--bg-soft); border-bottom: 1px solid var(--border);
      padding: 0.7rem 1.2rem; display: flex; align-items: center; gap: 0.45rem;
    }
    .ddot { width: 9px; height: 9px; border-radius: 50%; }
    .dash-title-label { font-size: 0.72rem; font-weight: 700; color: var(--text-light); margin-left: 0.35rem; }
    .dash-body { padding: 1.4rem; }
    .dash-stats { display: flex; gap: 0.7rem; margin-bottom: 1.2rem; }
    .dash-stat {
      flex: 1; background: var(--bg-soft);
      border: 1px solid var(--border); border-radius: 11px;
      padding: 0.9rem 0.5rem; text-align: center;
    }
    .dsn { font-size: 1.3rem; font-weight: 900; color: var(--primary); line-height: 1; }
    .dsl { font-size: 0.62rem; color: var(--text-light); font-weight: 600; margin-top: 0.2rem; }
    .dash-bar-row { margin-bottom: 0.55rem; }
    .dash-bar-top { display: flex; justify-content: space-between; font-size: 0.67rem; color: var(--text-light); font-weight: 600; margin-bottom: 0.22rem; }
    .dash-bar-track { height: 6px; background: var(--accent-soft); border-radius: 10px; overflow: hidden; }
    .dash-bar-fill { height: 100%; background: var(--primary); border-radius: 10px; opacity: 0.6; }
    .dash-patient { display: flex; align-items: center; gap: 0.6rem; padding: 0.5rem 0; border-bottom: 1px solid var(--border); font-size: 0.73rem; }
    .dash-patient:last-child { border-bottom: none; }
    .davatar { width: 26px; height: 26px; border-radius: 50%; background: var(--accent-soft); display: flex; align-items: center; justify-content: center; font-size: 0.6rem; font-weight: 800; color: var(--primary); flex-shrink: 0; }
    .dpn { font-weight: 700; color: var(--text-heading); font-size: 0.73rem; }
    .dps { font-size: 0.64rem; color: var(--text-light); }
    .dbadge { margin-left: auto; background: var(--primary-soft); color: var(--primary); font-size: 0.61rem; font-weight: 700; padding: 0.12rem 0.44rem; border-radius: 100px; }

    /* ══════════════════════════════════
       KEY FEATURES — icon top, #cb6ce6 bg, highlighted section
    ══════════════════════════════════ */
    .features-s {
      /*background: linear-gradient(135deg, #1c1228 0%, #2a1540 100%);*/
      background: linear-gradient(145deg, #ddb8f5 0%, #c090e0 35%, #a06acc 65%, #8850bc 100%);
      position: relative; overflow: hidden;
    }
    .features-s::before {
      content: '';
      position: absolute; top: -120px; right: -120px;
      width: 500px; height: 500px; border-radius: 50%;
      background: radial-gradient(circle, rgba(203,108,230,0.15) 0%, transparent 70%);
      pointer-events: none;
    }
    .features-s .eyebrow { color: rgba(203,108,230,0.8); }
    .features-s .sec-h { color: #fff; }
    .features-s .sec-p { color: rgba(255,255,255,0.65); }
    .f-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 16px; padding: 2rem 1.6rem;
      height: 100%;
      transition: background 0.2s, transform 0.22s, box-shadow 0.22s;
      text-align: left;
    }
    .f-card:hover {
      background: rgba(255,255,255,0.09);
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(0,0,0,0.25);
    }
    /* Icon top with primary bg */
    .f-icon-wrap {
      width: 48px; height: 48px; border-radius: 13px;
      background: var(--primary);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.25rem;
      box-shadow: 0 4px 16px rgba(203,108,230,0.4);
    }
    .f-icon-wrap svg { color: #fff; width: 22px; height: 22px; }
    .f-card h4 { font-size: 0.97rem; font-weight: 800; color: #fff; margin-bottom: 0.55rem; }
    .f-card p { font-size: 0.86rem; color: rgba(255,255,255,0.6); line-height: 1.72; }

    /* ══════════════════════════════════
       ABOUT
    ══════════════════════════════════ */
    .about-s { background: var(--white); }
    .check-list { list-style: none; padding: 0; margin: 1.1rem 0 0; }
    .check-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.9rem; color: var(--text-body); margin-bottom: 0.55rem; }
    .check-list li svg { color: var(--primary); flex-shrink: 0; margin-top: 1px; }
    .pull-quote { font-size: 1rem; font-weight: 700; font-style: italic; color: var(--primary); border-left: 3px solid var(--primary-border); padding-left: 1.1rem; margin-top: 1.6rem; line-height: 1.55; }

    /* About right: rebuilt cleanly */
    .about-visual {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      min-height: 480px;
      background: linear-gradient(145deg, #ddb8f5 0%, #c090e0 35%, #a06acc 65%, #8850bc 100%);
    }
    /* Large decorative circle top-right */
    .avc-ring-outer {
      position: absolute; top: -30px; right: -30px;
      width: 220px; height: 220px; border-radius: 50%;
      border: 2px solid rgba(255,255,255,0.2);
      pointer-events: none;
    }
    .avc-ring-inner {
      position: absolute; top: 15px; right: 15px;
      width: 160px; height: 160px; border-radius: 50%;
      border: 2px solid rgba(255,255,255,0.25);
      pointer-events: none;
    }
    /* Icon circle */
    .avc-icon-circle {
      position: absolute; top: 28px; right: 28px;
      width: 106px; height: 106px; border-radius: 50%;
      background: rgba(255,255,255,0.18);
      backdrop-filter: blur(10px);
      border: 1.5px solid rgba(255,255,255,0.3);
      display: flex; align-items: center; justify-content: center;
    }
    .avc-icon-circle svg { color: #fff; width: 38px; height: 38px; }
    /* Floating badge left-middle */
    .avc-badge-ai {
      position: absolute; left: 20px; top: 50%;
      transform: translateY(-60%);
      background: rgba(255,255,255,0.2);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,0.3);
      border-radius: 12px; padding: 0.7rem 1rem;
      color: #fff;
    }
    .avc-badge-ai .ab-row { display: flex; align-items: center; gap: 0.45rem; font-size: 0.78rem; font-weight: 700; margin-bottom: 0.25rem; }
    .avc-badge-ai .ab-row svg { width: 13px; height: 13px; color: rgba(255,255,255,0.85); }
    .avc-badge-ai .ab-sub { font-size: 0.68rem; color: rgba(255,255,255,0.7); }
    /* Floating badge right-middle */
    .avc-badge-pts {
      position: absolute; right: 20px; top: 50%;
      transform: translateY(10%);
      background: rgba(255,255,255,0.2);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,0.3);
      border-radius: 12px; padding: 0.7rem 1rem;
      color: #fff; text-align: center;
    }
    .avc-badge-pts .ab-num { font-size: 1.8rem; font-weight: 900; color: #fff; line-height: 1; }
    .avc-badge-pts .ab-sub { font-size: 0.68rem; color: rgba(255,255,255,0.75); font-weight: 600; }
    /* Glass stats grid at bottom */
    .glass-stats {
      position: absolute; bottom: 20px; left: 16px; right: 16px;
      display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
    }
    .glass-tile {
      background: rgba(255,255,255,0.18);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid rgba(255,255,255,0.3);
      border-radius: 14px; padding: 0.85rem 1rem; text-align: center;
    }
    .glass-tile .n { font-size: 1.65rem; font-weight: 900; color: #fff; line-height: 1; }
    .glass-tile .l { font-size: 0.7rem; color: rgba(255,255,255,0.8); font-weight: 600; margin-top: 0.2rem; }

    /* ══════════════════════════════════
       ALL FEATURES — icon top like Why MediTrack
    ══════════════════════════════════ */
    .all-f-s { background: var(--bg-soft); }
    .fg-card {
      background: var(--white); border-radius: 14px;
      border: 1px solid var(--border); padding: 1.8rem 1.6rem; height: 100%;
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .fg-card:hover { box-shadow: 0 8px 28px rgba(140,80,190,0.08); transform: translateY(-2px); }
    /* Icon top — same as f-icon-wrap but for light bg cards */
    .fg-icon-wrap {
      width: 44px; height: 44px; border-radius: 12px;
      background: var(--primary);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.1rem;
      box-shadow: 0 4px 14px rgba(203,108,230,0.35);
    }
    .fg-icon-wrap svg { color: #fff; width: 20px; height: 20px; }
    .fg-card h5 { font-size: 0.92rem; font-weight: 800; color: var(--text-heading); margin-bottom: 0.85rem; }
    .fg-card ul { list-style: none; padding: 0; }
    .fg-card ul li { font-size: 0.83rem; color: var(--text-body); padding: 0.28rem 0; display: flex; align-items: center; gap: 0.45rem; }
    .fg-card ul li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--primary); opacity: 0.5; flex-shrink: 0; }
    .fg-italic { font-size: 0.78rem; color: var(--text-light); font-style: italic; margin-top: 0.8rem; }

    /* ══════════════════════════════════
       PRICING
    ══════════════════════════════════ */
    .pricing-s { background: var(--white); }
    .p-card {
      background: var(--white); border-radius: 16px;
      border: 1.5px solid var(--border); padding: 2.1rem 1.6rem; height: 100%;
      position: relative;
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .p-card:hover { box-shadow: 0 12px 38px rgba(140,80,190,0.09); transform: translateY(-3px); }
    .p-card.featured { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(203,108,230,0.07); }
    .p-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #fff; font-size: 0.7rem; font-weight: 700; padding: 0.2rem 0.85rem; border-radius: 100px; white-space: nowrap; }
    .p-name { font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-light); margin-bottom: 0.35rem; }
    .p-price { font-size: 1.85rem; font-weight: 900; color: var(--text-heading); line-height: 1; margin-bottom: 0.12rem; }
    .p-price span { font-size: 0.85rem; font-weight: 500; color: var(--text-light); }
    .p-desc { font-size: 0.8rem; color: var(--text-light); font-style: italic; margin-bottom: 1.35rem; }
    .p-feats { list-style: none; padding: 0; margin-bottom: 1.6rem; }
    .p-feats li { font-size: 0.84rem; color: var(--text-body); padding: 0.36rem 0; display: flex; align-items: center; gap: 0.5rem; border-bottom: 1px solid var(--bg-soft); }
    .p-feats li:last-child { border-bottom: none; }
    .p-feats li svg { color: var(--primary); flex-shrink: 0; }
    .btn-p { width: 100%; border-radius: 8px; padding: 0.68rem; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.86rem; cursor: pointer; text-align: center; display: block; text-decoration: none; transition: all 0.15s; }
    .btn-p-fill { background: var(--primary); color: #fff; border: none; box-shadow: 0 4px 12px rgba(203,108,230,0.22); }
    .btn-p-fill:hover { background: var(--primary-hover); color: #fff; }
    .btn-p-out { background: transparent; color: var(--primary); border: 1.5px solid var(--primary-border); }
    .btn-p-out:hover { border-color: var(--primary); background: var(--primary-soft); }

    /* ══════════════════════════════════
       5. TESTIMONIALS — slider
    ══════════════════════════════════ */
    .testi-s { background: linear-gradient(145deg, #ddb8f5 0%, #c090e0 35%, #a06acc 65%, #8850bc 100%); }
    .testi-slider-outer { position: relative; overflow: hidden; }
    .testi-track {
      display: flex;
      gap: 1.5rem;
      transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
    }
    .t-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 16px; padding: 2rem 1.6rem;
      padding: 2rem; flex: 0 0 calc(33.333% - 1rem);
      min-width: 280px;
    }

    .t-mark { font-size: 3rem; line-height: 1; color: #fff; opacity: 0.18; font-weight: 900; margin-bottom: -0.4rem; }
    .t-text { font-size: 0.88rem; color: #fff; opacity: 1; line-height: 1.78; font-style: italic; margin-bottom: 1.1rem; }
    .t-author { font-size: 0.8rem; font-weight: 700; color: #fff; opacity: 0.8; }
    /* Slider nav */
    .slider-controls { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 2.5rem; }
    .slider-btn {
      width: 42px; height: 42px; border-radius: 50%;
      background: none; border: 1.5px solid var(--border);
      
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: all 0.15s;
    }
    .slider-btn:hover { border-color: var(--primary); background: var(--primary-soft); }
    .slider-btn svg { color: #fff !important;  width: 18px; height: 18px; }
    .slider-btn:hover svg { color: var(--primary); }
    .slider-dots { display: flex; gap: 0.45rem; }
    .sdot {
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--border);opacity: 0.7; cursor: pointer;
      transition: background 0.2s, transform 0.2s;
    }
    .sdot.active { background: var(--primary); transform: scale(1.25); opacity: 1.1;}

    /* ══════════════════════════════════
       6. CONTACT — richer left side
    ══════════════════════════════════ */
    .contact-s { background: var(--white); }
    .contact-left { }
    .c-meta { display: flex; align-items: center; gap: 0.65rem; font-size: 0.88rem; color: var(--text-body); font-weight: 600; margin-bottom: 0.8rem; }
    .c-meta svg { color: var(--primary); flex-shrink: 0; }
    /* Trust badges */
    .trust-badges { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 1.5rem; margin-bottom: 1.75rem; }
    .trust-badge {
      display: flex; align-items: center; gap: 0.45rem;
      background: var(--bg-soft); border: 1px solid var(--border);
      border-radius: 8px; padding: 0.45rem 0.85rem;
      font-size: 0.78rem; font-weight: 700; color: var(--text-body);
    }
    .trust-badge svg { color: var(--primary); width: 14px; height: 14px; }
    /* Mini stat strip */
    .contact-stats { display: flex; gap: 1.5rem; margin-bottom: 2rem; }
    .cstat .cn { font-size: 1.5rem; font-weight: 900; color: var(--primary); line-height: 1; }
    .cstat .cl { font-size: 0.75rem; color: var(--text-light); font-weight: 600; margin-top: 0.15rem; }
    /* Separator */
    .contact-sep { width: 40px; height: 3px; background: var(--primary); border-radius: 2px; margin: 1.5rem 0; opacity: 0.4; }
    .contact-quote {
      background: var(--bg-soft); border-left: 3px solid var(--primary);
      border-radius: 0 10px 10px 0;
      padding: 1rem 1.25rem; font-size: 0.80rem;
      font-style: italic; color: var(--text-body); line-height: 1.7;
      margin-top: 1.5rem;
    }
    .contact-quote span { display: block; font-size: 0.70rem; font-weight: 700; color: var(--primary); margin-top: 0.4rem; font-style: normal; }
    /* Form */
    .form-wrap { background: var(--bg-soft); border-radius: 16px; border: 1px solid var(--border); padding: 2.25rem; }
    .f-label { font-size: 0.78rem; font-weight: 700; color: var(--text-heading); margin-bottom: 0.3rem; display: block; }
    .f-input {
      width: 100%; border: 1.5px solid var(--border); border-radius: 8px;
      font-family: 'Poppins', sans-serif; font-size: 0.88rem; padding: 0.65rem 0.95rem;
      color: var(--text-heading); background: var(--white);
      transition: border-color 0.15s, box-shadow 0.15s; outline: none;
      margin-bottom: 1rem;
    }
    .f-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(203,108,230,0.09); }

    /* ══════════════════════════════════
       7. PARTNERSHIP — richer right side
    ══════════════════════════════════ */
    .partner-s { background: var(--bg-soft); }
    .partner-box {
      background: var(--white); border-radius: 20px;
      border: 1px solid var(--border); padding: 3rem;
      position: relative; overflow: hidden;
    }
    .partner-box::after {
      content: '';
      position: absolute; top: -80px; right: -80px;
      width: 300px; height: 300px; border-radius: 50%;
      background: radial-gradient(circle, rgba(203,108,230,0.06) 0%, transparent 70%);
      pointer-events: none;
    }
    /* Right-side rich cards */
    .partner-grid { display: flex; flex-direction: column; gap: 0.85rem; }
    .partner-info-card {
      background: var(--bg-soft); border: 1px solid var(--border);
      border-radius: 14px; padding: 1.1rem 1.25rem;
      display: flex; align-items: flex-start; gap: 0.85rem;
    }
    .partner-info-card:hover { background: var(--accent-soft); border-color: var(--primary-border); }
    .pic-icon {
      width: 38px; height: 38px; border-radius: 10px;
      background: var(--primary-soft); border: 1px solid var(--primary-border);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .pic-icon svg { color: var(--primary); width: 17px; height: 17px; }
    .pic-title { font-size: 0.88rem; font-weight: 800; color: var(--text-heading); margin-bottom: 0.15rem; }
    .pic-desc { font-size: 0.78rem; color: var(--text-light); line-height: 1.55; }
    /* Stats row */
    .partner-stat-row { display: flex; gap: 0.85rem; margin-top: 0.85rem; }
    .pstat-card {
      flex: 1; background: var(--bg-soft); border: 1px solid var(--border);
      border-radius: 12px; padding: 1rem; text-align: center;
    }
    .pstat-card .n { font-size: 1.6rem; font-weight: 900; color: var(--primary); line-height: 1; }
    .pstat-card .l { font-size: 0.72rem; color: var(--text-light); font-weight: 600; margin-top: 0.2rem; }

    /* ══════════════════════════════════
       FOOTER
    ══════════════════════════════════ */
    footer { background: var(--bg-lighter); border-top: 1px solid var(--border); }
    .footer-big {
      text-align: center;
      font-size: clamp(4.5rem, 15vw, 12rem);
      font-weight: 900; letter-spacing: -15px; line-height: 0.9;
      padding: 5.5rem 1rem 0;
      user-select: none; pointer-events: none;
      overflow: hidden;
    }
    .footer-inner { padding: 2.5rem 0 0; }
    .footer-brand-name { font-size: 1.1rem; font-weight: 900; color: var(--text-heading); margin-bottom: 0.3rem; }
    .footer-tagline { font-size: 0.8rem; color: var(--text-light); line-height: 1.6; margin-bottom: 0.3rem; }
    .footer-secure { font-size: 0.72rem; color: var(--primary); font-weight: 700; letter-spacing: 0.5px; }
    .fc-title { font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-heading); margin-bottom: 0.95rem; }
    .flink {
      display: block; font-size: 0.83rem; color: var(--text-light); text-decoration: none;
      margin-bottom: 0.5rem; transition: color 0.15s; cursor: pointer;
      background: none; border: none; padding: 0; text-align: left;
      font-family: 'Poppins', sans-serif;
    }
    .flink:hover { color: var(--primary); }
    .footer-sep { border: none; border-top: 1px solid var(--border); margin: 2rem 0 1.5rem; }
    .footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem; padding-bottom: 2rem; }
    .footer-copy { font-size: 0.78rem; color: var(--text-light); }
    .footer-bl { display: flex; gap: 1.25rem; }
    .footer-bl button, .footer-bl a { font-size: 0.78rem; color: var(--text-light); background: none; border: none; cursor: pointer; text-decoration: none; font-family: 'Poppins', sans-serif; transition: color 0.15s; padding: 0; }
    .footer-bl button:hover, .footer-bl a:hover { color: var(--primary); }

    /* ══════════════════════════════════
       MODALS
    ══════════════════════════════════ */
    .modal-content { border-radius: 14px; border: 1px solid var(--border); font-family: 'Poppins', sans-serif; }
    .modal-header { background: var(--bg-soft); border-bottom: 1px solid var(--border); border-radius: 14px 14px 0 0; padding: 1.15rem 1.5rem; }
    .modal-title { font-weight: 800; color: var(--text-heading); font-size: 0.97rem; }
    .modal-body { max-height: 60vh; overflow-y: auto; padding: 1.6rem; font-size: 0.88rem; color: var(--text-body); line-height: 1.8; }
    .modal-body h6 { font-weight: 800; color: var(--text-heading); margin-top: 1.2rem; margin-bottom: 0.35rem; font-size: 0.86rem; }
    .modal-footer { border-top: 1px solid var(--border); padding: 1rem 1.5rem; }
    .close { color: var(--text-light); font-size: 1.3rem; }

    /* ══════════════════════════════════
       SCROLL ANIMATIONS
    ══════════════════════════════════ */
    .fade-up {
      opacity: 0; transform: translateY(26px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
    .fade-up.d1 { transition-delay: 0.08s; }
    .fade-up.d2 { transition-delay: 0.16s; }
    .fade-up.d3 { transition-delay: 0.24s; }
    .fade-up.d4 { transition-delay: 0.32s; }