/* ─── Eduvontra DESIGN TOKENS (exact from index.html) ─────────── */
    :root {
      --brand: #8327D2;
      --brand-dark: #6A1FB0;
      --brand-deep: #510F92;
      --brand-light: #9F45E8;
      --brand-pale: #F3EAFD;
      --brand-soft: #EAD8FA;
      --brand-mid: #C598F0;
      --surface: #FFFFFF;
      --canvas: #F9F7FD;
      --canvas-alt: #F2EEF9;
      --border: #E6DFF5;
      --border-soft: #EDE8F6;
      --ink-900: #0F0B1A;
      --ink-700: #2D2240;
      --ink-500: #5E4D78;
      --ink-400: #8474A0;
      --ink-300: #B0A2C8;
      --ink-200: #D7CEED;
      --ink-100: #EDE8F6;
      --success: #12B76A;
      --warning: #F79009;
      --danger: #F04438;
      --ff-heading: 'Sora', sans-serif;
      --ff-body: 'DM Sans', sans-serif;
      --r-sm: 8px;
      --r-md: 12px;
      --r-lg: 16px;
      --r-xl: 24px;
      --r-full: 999px;
      --shadow-xs: 0 1px 2px rgba(131, 39, 210, 0.06);
      --shadow-sm: 0 2px 8px rgba(131, 39, 210, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
      --shadow-md: 0 4px 20px rgba(131, 39, 210, 0.12), 0 2px 6px rgba(0, 0, 0, 0.05);
      --shadow-lg: 0 12px 48px rgba(131, 39, 210, 0.16), 0 4px 12px rgba(0, 0, 0, 0.06);
      --shadow-xl: 0 24px 80px rgba(131, 39, 210, 0.22), 0 8px 24px rgba(0, 0, 0, 0.08);
    }

    /* ─── RESET ─────────────────────────────────────────────────── */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body {
      font-family: var(--ff-body);
      background: var(--canvas);
      color: var(--ink-700);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      display: block;
      max-width: 100%;
    }

    ul {
      list-style: none;
    }

    ::-webkit-scrollbar {
      width: 5px;
    }

    ::-webkit-scrollbar-track {
      background: var(--canvas);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--ink-200);
      border-radius: 99px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: var(--brand-mid);
    }

    /* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
    h1,
    h2,
    h3,
    h4 {
      font-family: var(--ff-heading);
      color: var(--ink-900);
      letter-spacing: -0.025em;
      line-height: 1.12;
    }

    h1 {
      font-size: clamp(2.4rem, 5vw, 4rem);
      font-weight: 800;
    }

    h2 {
      font-size: clamp(1.75rem, 3.5vw, 2.75rem);
      font-weight: 700;
    }

    h3 {
      font-size: 1.125rem;
      font-weight: 600;
    }

    h4 {
      font-size: 1rem;
      font-weight: 600;
    }

    p {
      color: var(--ink-500);
      font-size: 1rem;
      line-height: 1.7;
    }

    .label {
      font-family: var(--ff-heading);
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--brand);
    }

    em.grad {
      font-style: normal;
      background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* ─── LAYOUT ─────────────────────────────────────────────────── */
    .container {
      /* max-width: 1200px;
      margin-inline: auto;
      padding-inline: clamp(1.25rem, 4vw, 5rem); */
      max-width: 1600px;
      margin-inline: auto;
      padding: 0 100px 0 100px;
    }

    @media (max-width: 560px) {
      .container {
        /* max-width: 1200px; */
        margin-inline: auto;
        /* padding-inline: clamp(1.25rem, 4vw, 5rem); */
        padding: 0 20px 0 20px;
      }
    }

    .section {
      padding: 7rem 0;
    }

    .section-alt {
      padding: 7rem 0;
      background: var(--surface);
    }

    .section-canvas-alt {
      padding: 7rem 0;
      background: var(--canvas-alt);
    }

    .section-dark {
      padding: 7rem 0;
      background: var(--ink-900);
      position: relative;
      overflow: hidden;
    }

    .section-dark::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 800px;
      height: 800px;
      background: radial-gradient(circle, rgba(131, 39, 210, 0.22) 0%, transparent 65%);
      pointer-events: none;
    }

    .section-dark::after {
      content: '';
      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: 48px 48px;
      pointer-events: none;
    }

    /* ─── ANIMATIONS ─────────────────────────────────────────────── */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(28px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    @keyframes floatA {

      0%,
      100% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-10px)
      }
    }

    @keyframes floatB {

      0%,
      100% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(7px)
      }
    }

    @keyframes floatC {

      0%,
      100% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-6px)
      }
    }

    @keyframes shimmer {
      0% {
        background-position: 200% 0
      }

      100% {
        background-position: -200% 0
      }
    }

    .reveal {
      opacity: 0;
      animation: fadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
      animation-play-state: paused;
    }

    .rd1 {
      animation-delay: 0.1s
    }

    .rd2 {
      animation-delay: 0.2s
    }

    .rd3 {
      animation-delay: 0.3s
    }

    .rd4 {
      animation-delay: 0.4s
    }

    .rd5 {
      animation-delay: 0.5s
    }

    .rd6 {
      animation-delay: 0.6s
    }

    /* ─── BUTTONS ────────────────────────────────────────────────── */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.75rem 1.625rem;
      border-radius: var(--r-md);
      font-family: var(--ff-heading);
      font-size: 0.9375rem;
      font-weight: 600;
      cursor: pointer;
      border: none;
      outline: none;
      transition: all 0.2s ease;
    }

    .btn-primary {
      background: var(--brand);
      color: #fff;
      box-shadow: 0 4px 20px rgba(131, 39, 210, 0.35);
    }

    .btn-primary:hover {
      background: var(--brand-dark);
      transform: translateY(-1px);
      box-shadow: 0 8px 28px rgba(131, 39, 210, 0.5);
    }

    .btn-outline {
      background: transparent;
      color: var(--ink-700);
      border: 1.5px solid var(--border);
    }

    .btn-outline:hover {
      border-color: var(--brand-mid);
      color: var(--brand);
      background: var(--brand-pale);
    }

    .btn-lg {
      padding: 1rem 2.25rem;
      font-size: 1rem;
    }

    .btn-sm {
      padding: 0.5rem 1.125rem;
      font-size: 0.875rem;
      border-radius: var(--r-sm);
    }

    .btn-cta-white {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: #fff;
      color: var(--brand-dark);
      padding: 1rem 2.25rem;
      border-radius: var(--r-md);
      font-family: var(--ff-heading);
      font-size: 1rem;
      font-weight: 700;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
      transition: all 0.25s;
    }

    .btn-cta-white:hover {
      background: var(--brand-pale);
      transform: translateY(-2px);
    }

    .btn-cta-ghost {
      display: inline-flex;
      align-items: center;
      background: rgba(255, 255, 255, 0.06);
      color: rgba(255, 255, 255, 0.85);
      border: 1.5px solid rgba(255, 255, 255, 0.14);
      padding: 1rem 2.25rem;
      border-radius: var(--r-md);
      font-family: var(--ff-heading);
      font-size: 1rem;
      font-weight: 600;
      transition: all 0.2s;
    }

    .btn-cta-ghost:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.28);
      transform: translateY(-2px);
    }

    /* ─── CHIP ───────────────────────────────────────────────────── */
    .chip {
      display: inline-flex;
      align-items: center;
      gap: 0.375rem;
      padding: 0.3125rem 0.875rem;
      border-radius: var(--r-full);
      background: var(--brand-pale);
      border: 1px solid var(--brand-soft);
      font-size: 0.75rem;
      font-weight: 600;
      font-family: var(--ff-heading);
      color: var(--brand-dark);
    }

    /* ════════════════════════════════════════════════════════════════
       1. HERO SECTION
    ════════════════════════════════════════════════════════════════ */
    .hero {
      padding-top: 120px;
      padding-bottom: 80px;
      position: relative;
      overflow: hidden;
      background: var(--canvas);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      overflow: hidden;
    }

    .hero-orb-1 {
      position: absolute;
      top: -220px;
      right: -180px;
      width: 700px;
      height: 700px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(131, 39, 210, 0.12) 0%, transparent 65%);
    }

    .hero-orb-2 {
      position: absolute;
      bottom: -100px;
      left: -120px;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(131, 39, 210, 0.07) 0%, transparent 65%);
    }

    .hero-grid {
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(131, 39, 210, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(131, 39, 210, 0.04) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: radial-gradient(ellipse 80% 60% at 60% 30%, black 0%, transparent 80%);
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .hero-copy .label {
      display: block;
      margin-bottom: 1.5rem;
    }

    .hero-copy h1 {
      margin-bottom: 1.25rem;
    }

    .hero-copy>p {
      font-size: 1.0625rem;
      line-height: 1.75;
      max-width: 480px;
      margin-bottom: 2rem;
      color: var(--ink-500);
    }

    .hero-ctas {
      display: flex;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
      margin-bottom: 2.5rem;
    }

    .hero-proof {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .hero-avatars {
      display: flex;
      flex-direction: row-reverse;
    }

    .hero-avatars span {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 2.5px solid var(--canvas);
      font-family: var(--ff-heading);
      font-size: 0.625rem;
      font-weight: 800;
      color: #fff;
      display: grid;
      place-items: center;
      margin-left: -8px;
      flex-shrink: 0;
    }

    .hero-proof-text {
      font-size: 0.8125rem;
      color: var(--ink-400);
    }

    .hero-proof-text strong {
      color: var(--ink-700);
      font-weight: 600;
    }

    /* Hero visual */
    .hero-visual {
      position: relative;
      padding: 2.5rem 2.5rem 2.5rem 1rem;
    }

    .hero-main-screen {
      background: var(--surface);
      border: 1.5px solid var(--border-soft);
      border-radius: 20px;
      box-shadow: var(--shadow-xl);
      overflow: hidden;
      position: relative;
      z-index: 2;
      animation: floatA 7s ease-in-out infinite;
    }

    .screen-bar {
      background: var(--canvas);
      border-bottom: 1px solid var(--border-soft);
      padding: 0.625rem 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .screen-dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
    }

    .screen-bar-title {
      margin-left: auto;
      font-family: var(--ff-heading);
      font-size: 0.625rem;
      font-weight: 700;
      color: var(--ink-300);
      letter-spacing: 0.06em;
    }

    .screen-body {
      padding: 1.25rem;
    }

    /* Dashboard grid inside main screen */
    .dash-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1rem;
    }

    .dash-greeting {
      font-family: var(--ff-heading);
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--ink-900);
    }

    .dash-greeting span {
      font-weight: 400;
      color: var(--ink-400);
    }

    .dash-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0.25rem 0.75rem;
      border-radius: var(--r-full);
      background: rgba(18, 183, 106, 0.1);
      font-family: var(--ff-heading);
      font-size: 0.625rem;
      font-weight: 700;
      color: var(--success);
    }

    .dash-kpi-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0.625rem;
      margin-bottom: 1rem;
    }

    .dash-kpi {
      background: var(--canvas);
      border: 1px solid var(--border-soft);
      border-radius: var(--r-md);
      padding: 0.75rem;
      text-align: center;
    }

    .dash-kpi-num {
      font-family: var(--ff-heading);
      font-size: 1.25rem;
      font-weight: 800;
      color: var(--ink-900);
      line-height: 1;
    }

    .dash-kpi-lbl {
      font-size: 0.5625rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.07em;
      color: var(--ink-400);
      margin-top: 3px;
      font-family: var(--ff-heading);
    }

    .dash-row2 {
      display: grid;
      grid-template-columns: 1.4fr 1fr;
      gap: 0.625rem;
    }

    .dash-chart-box {
      background: var(--canvas);
      border: 1px solid var(--border-soft);
      border-radius: var(--r-md);
      padding: 0.875rem;
    }

    .dash-chart-label {
      font-size: 0.5625rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.07em;
      color: var(--ink-400);
      margin-bottom: 0.625rem;
      font-family: var(--ff-heading);
    }

    .dash-bars {
      display: flex;
      align-items: flex-end;
      gap: 4px;
      height: 48px;
    }

    .dash-bar {
      flex: 1;
      border-radius: 3px 3px 0 0;
      background: var(--brand-soft);
    }

    .dash-bar.hi {
      background: var(--brand);
    }

    .dash-activity {
      background: var(--canvas);
      border: 1px solid var(--border-soft);
      border-radius: var(--r-md);
      padding: 0.875rem;
    }

    .dash-act-row {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 0.5rem;
    }

    .dash-act-row:last-child {
      margin-bottom: 0;
    }

    .dash-act-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .dash-act-text {
      font-size: 0.625rem;
      color: var(--ink-500);
      line-height: 1.4;
    }

    .dash-act-text strong {
      color: var(--ink-700);
      font-weight: 600;
    }

    /* Floating panels */
    .hero-float {
      position: absolute;
      background: var(--surface);
      border: 1.5px solid var(--border-soft);
      border-radius: 14px;
      padding: 0.875rem 1.125rem;
      box-shadow: var(--shadow-md);
      z-index: 10;
    }

    .hf-top {
      top: 0;
      right: 0;
      animation: floatB 5s ease-in-out infinite 0.8s;
      white-space: nowrap;
    }

    .hf-bot {
      bottom: 0;
      left: -16px;
      animation: floatA 6s ease-in-out infinite 0.3s;
      white-space: nowrap;
    }

    .hf-mid {
      top: 42%;
      right: -20px;
      animation: floatC 7s ease-in-out infinite 1.2s;
      white-space: nowrap;
    }

    .hf-icon {
      width: 30px;
      height: 30px;
      border-radius: 8px;
      display: grid;
      place-items: center;
      flex-shrink: 0;
    }

    .hf-row {
      display: flex;
      align-items: center;
      gap: 0.625rem;
    }

    .hf-val {
      font-family: var(--ff-heading);
      font-size: 0.9rem;
      font-weight: 800;
      color: var(--ink-900);
      line-height: 1.2;
    }

    .hf-lbl {
      font-size: 0.5625rem;
      color: var(--ink-400);
      margin-top: 1px;
    }

    /* ════════════════════════════════════════════════════════════════
       2. TRUST / LOGOS SECTION
    ════════════════════════════════════════════════════════════════ */
    .trust-section {
      padding: 2.5rem 0;
      background: var(--surface);
      border-top: 1px solid var(--border-soft);
      border-bottom: 1px solid var(--border-soft);
      overflow: hidden;
    }

    .trust-label-row {
      display: flex;
      align-items: center;
      gap: 2rem;
      margin-bottom: 1.5rem;
    }

    .trust-label-row .label {
      white-space: nowrap;
      flex-shrink: 0;
    }

    .trust-divider {
      flex: 1;
      height: 1px;
      background: var(--border-soft);
    }

    .trust-logos {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .trust-logo {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-family: var(--ff-heading);
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--ink-200);
      letter-spacing: 0.03em;
      transition: color 0.2s;
    }

    .trust-logo:hover {
      color: var(--brand-mid);
    }

    .trust-logo-mark {
      width: 28px;
      height: 28px;
      border-radius: 7px;
      display: grid;
      place-items: center;
      background: var(--border-soft);
      flex-shrink: 0;
    }

    /* ════════════════════════════════════════════════════════════════
       3. CORE PLATFORM INTRO
    ════════════════════════════════════════════════════════════════ */
    .intro-inner {
      text-align: center;
      max-width: 760px;
      margin-inline: auto;
    }

    .intro-inner .label {
      display: block;
      margin-bottom: 1rem;
    }

    .intro-inner h2 {
      margin-bottom: 1rem;
    }

    .intro-inner>p {
      font-size: 1.0625rem;
      line-height: 1.8;
      margin-bottom: 4rem;
    }

    .intro-features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
      text-align: left;
    }

    .intro-feat-card {
      background: var(--surface);
      border: 1.5px solid var(--border-soft);
      border-radius: 20px;
      padding: 2rem 1.75rem;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    }

    .intro-feat-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(131, 39, 210, 0.04) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.3s;
      border-radius: inherit;
      pointer-events: none;
    }

    .intro-feat-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
      border-color: var(--brand-soft);
    }

    .intro-feat-card:hover::after {
      opacity: 1;
    }

    .intro-feat-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      margin-bottom: 1.375rem;
      color: var(--brand);
      background: var(--brand-pale);
      transition: background 0.25s, transform 0.25s;
    }

    .intro-feat-card:hover .intro-feat-icon {
      background: var(--brand);
      color: #fff;
      transform: scale(1.06) rotate(-4deg);
    }

    .intro-feat-card h3 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--ink-900);
      margin-bottom: 0.5rem;
    }

    .intro-feat-card p {
      font-size: 0.875rem;
      color: var(--ink-400);
      line-height: 1.7;
    }

    /* ════════════════════════════════════════════════════════════════
       4. FEATURE SHOWCASE — ALTERNATING SPLIT LAYOUT
    ════════════════════════════════════════════════════════════════ */
    .feat-split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .feat-split.reverse {
      direction: rtl;
    }

    .feat-split.reverse>* {
      direction: ltr;
    }

    .feat-copy .label {
      display: block;
      margin-bottom: 0.875rem;
    }

    .feat-copy h2 {
      margin-bottom: 1rem;
      font-size: clamp(1.75rem, 3vw, 2.5rem);
    }

    .feat-copy>p {
      font-size: 1.0625rem;
      line-height: 1.8;
      margin-bottom: 2rem;
      color: var(--ink-500);
    }

    .feat-bullets {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-bottom: 2rem;
    }

    .feat-bullet {
      display: flex;
      align-items: flex-start;
      gap: 0.875rem;
    }

    .feat-bullet-check {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: rgba(18, 183, 106, 0.1);
      display: grid;
      place-items: center;
      flex-shrink: 0;
      margin-top: 1px;
      color: var(--success);
    }

    .feat-bullet-text {
      font-size: 0.9375rem;
      color: var(--ink-500);
      line-height: 1.55;
    }

    .feat-bullet-text strong {
      color: var(--ink-900);
      font-weight: 600;
    }

    .feat-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: var(--ff-heading);
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--brand);
      transition: gap 0.2s;
    }

    .feat-link:hover {
      gap: 0.75rem;
    }

    /* Feature visual area */
    .feat-visual {
      position: relative;
      padding: 2rem 2rem 2rem 1rem;
    }

    .feat-screen {
      background: var(--surface);
      border: 1.5px solid var(--border-soft);
      border-radius: 20px;
      box-shadow: var(--shadow-lg);
      overflow: hidden;
      position: relative;
      z-index: 2;
      animation: floatA 8s ease-in-out infinite;
    }

    .feat-screen.float-b {
      animation: floatB 9s ease-in-out infinite;
    }

    .feat-screen-bar {
      background: var(--canvas);
      border-bottom: 1px solid var(--border-soft);
      padding: 0.625rem 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .feat-screen-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
    }

    .feat-screen-title {
      margin-left: auto;
      font-family: var(--ff-heading);
      font-size: 0.5625rem;
      font-weight: 700;
      color: var(--ink-300);
      letter-spacing: 0.06em;
    }

    .feat-screen-body {
      padding: 1.25rem;
    }

    /* floating mini panel over feature visuals */
    .feat-float {
      position: absolute;
      background: var(--surface);
      border: 1.5px solid var(--border-soft);
      border-radius: 12px;
      padding: 0.75rem 1rem;
      box-shadow: var(--shadow-md);
      z-index: 10;
      white-space: nowrap;
    }

    .feat-float.ft {
      top: -16px;
      right: 0;
      animation: floatB 5s ease-in-out infinite 0.5s;
    }

    .feat-float.fb {
      bottom: -16px;
      left: -8px;
      animation: floatA 6s ease-in-out infinite 1s;
    }

    /* Shared mini-UI components reused inside screens */
    .mini-row {
      display: flex;
      align-items: center;
      gap: 0.625rem;
      padding: 0.5rem 0;
      border-bottom: 1px solid var(--border-soft);
    }

    .mini-row:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .mini-avatar {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-family: var(--ff-heading);
      font-size: 0.5625rem;
      font-weight: 800;
      color: #fff;
      flex-shrink: 0;
    }

    .mini-name {
      font-family: var(--ff-heading);
      font-size: 0.6875rem;
      font-weight: 700;
      color: var(--ink-900);
    }

    .mini-sub {
      font-size: 0.5625rem;
      color: var(--ink-400);
    }

    .mini-badge {
      font-family: var(--ff-heading);
      font-size: 0.5625rem;
      font-weight: 700;
      padding: 0.2rem 0.5rem;
      border-radius: 99px;
      margin-left: auto;
      white-space: nowrap;
    }

    .mb-green {
      background: rgba(18, 183, 106, 0.1);
      color: var(--success);
    }

    .mb-orange {
      background: rgba(247, 144, 9, 0.1);
      color: var(--warning);
    }

    .mb-brand {
      background: var(--brand-pale);
      color: var(--brand);
    }

    .mb-blue {
      background: rgba(59, 130, 246, 0.1);
      color: #3B82F6;
    }

    .mini-progress-bar {
      height: 4px;
      border-radius: 99px;
      background: var(--border-soft);
      overflow: hidden;
    }

    .mini-progress-fill {
      height: 100%;
      border-radius: 99px;
      background: var(--brand);
    }

    /* Section header helpers */
    .sh {
      margin-bottom: 4rem;
    }

    .sh .label {
      display: block;
      margin-bottom: 0.875rem;
    }

    .sh h2 {
      margin-bottom: 1rem;
    }

    .sh p {
      font-size: 1.0625rem;
      max-width: 520px;
    }

    .sh.centered {
      text-align: center;
    }

    .sh.centered p {
      margin-inline: auto;
    }

    .sh.on-dark h2 {
      color: #fff;
    }

    .sh.on-dark p {
      color: rgba(255, 255, 255, 0.5);
    }

    .sh.on-dark .label {
      color: var(--brand-mid);
    }

    /* ════════════════════════════════════════════════════════════════
       5. CAPABILITY CARDS GRID
    ════════════════════════════════════════════════════════════════ */
    .cap-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 1rem;
    }

    .cap-card {
      background: var(--surface);
      border: 1.5px solid var(--border-soft);
      border-radius: 20px;
      padding: 2rem;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    }

    .cap-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--cc-top, transparent);
      border-radius: 20px 20px 0 0;
      opacity: 0;
      transition: opacity 0.3s;
    }

    .cap-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
      border-color: transparent;
    }

    .cap-card:hover::before {
      opacity: 1;
    }

    .cc1 {
      grid-column: span 5;
      --cc-top: linear-gradient(90deg, var(--brand), var(--brand-light));
    }

    .cc2 {
      grid-column: span 7;
      --cc-top: linear-gradient(90deg, #3B82F6, #60A5FA);
    }

    .cc3 {
      grid-column: span 4;
      --cc-top: linear-gradient(90deg, #10B981, #34D399);
    }

    .cc4 {
      grid-column: span 4;
      --cc-top: linear-gradient(90deg, #8B5CF6, #A78BFA);
    }

    .cc5 {
      grid-column: span 4;
      --cc-top: linear-gradient(90deg, #F97316, #FBBF24);
    }

    .cap-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      margin-bottom: 1.5rem;
      transition: transform 0.3s;
    }

    .cap-card:hover .cap-icon {
      transform: scale(1.08) rotate(-5deg);
    }

    .ci-purple {
      background: linear-gradient(135deg, rgba(131, 39, 210, 0.14), rgba(131, 39, 210, 0.05));
      color: var(--brand);
    }

    .ci-blue {
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.14), rgba(59, 130, 246, 0.05));
      color: #3B82F6;
    }

    .ci-green {
      background: linear-gradient(135deg, rgba(16, 185, 129, 0.14), rgba(16, 185, 129, 0.05));
      color: #10B981;
    }

    .ci-violet {
      background: linear-gradient(135deg, rgba(139, 92, 246, 0.14), rgba(139, 92, 246, 0.05));
      color: #8B5CF6;
    }

    .ci-orange {
      background: linear-gradient(135deg, rgba(249, 115, 22, 0.14), rgba(249, 115, 22, 0.05));
      color: #F97316;
    }

    .cap-card h3 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--ink-900);
      margin-bottom: 0.5rem;
    }

    .cap-card p {
      font-size: 0.875rem;
      color: var(--ink-400);
      line-height: 1.7;
    }

    .cap-card-num {
      position: absolute;
      top: 1.75rem;
      right: 1.5rem;
      font-family: var(--ff-heading);
      font-size: 4.5rem;
      font-weight: 900;
      color: var(--border-soft);
      line-height: 1;
      letter-spacing: -0.06em;
      user-select: none;
      transition: color 0.3s;
    }

    .cap-card:hover .cap-card-num {
      color: var(--brand-pale);
    }

    /* ════════════════════════════════════════════════════════════════
       6. MOBILE / APP ACCESS SECTION
    ════════════════════════════════════════════════════════════════ */
    .mobile-section {
      background: var(--canvas-alt);
      padding: 7rem 0;
      overflow: hidden;
    }

    .mobile-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .mobile-copy .label {
      display: block;
      margin-bottom: 0.875rem;
    }

    .mobile-copy h2 {
      margin-bottom: 1rem;
    }

    .mobile-copy>p {
      font-size: 1.0625rem;
      line-height: 1.8;
      margin-bottom: 2rem;
    }

    .mobile-feats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-bottom: 2.5rem;
    }

    .mobile-feat {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
    }

    .mobile-feat-icon {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      display: grid;
      place-items: center;
      background: var(--surface);
      border: 1.5px solid var(--border-soft);
      color: var(--brand);
      flex-shrink: 0;
      box-shadow: var(--shadow-xs);
    }

    .mobile-feat h4 {
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--ink-900);
      margin-bottom: 0.2rem;
    }

    .mobile-feat p {
      font-size: 0.8125rem;
      color: var(--ink-400);
      line-height: 1.55;
    }

    .store-btns {
      display: flex;
      gap: 0.75rem;
      flex-wrap: wrap;
    }

    .store-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.75rem 1.375rem;
      border-radius: var(--r-md);
      background: var(--ink-900);
      border: 1.5px solid rgba(255, 255, 255, 0.06);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
      transition: all 0.2s;
    }

    .store-btn:hover {
      background: var(--brand-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(131, 39, 210, 0.3);
    }

    .store-btn-icon {
      color: #fff;
      flex-shrink: 0;
    }

    .store-btn-sub {
      font-size: 0.5625rem;
      color: rgba(255, 255, 255, 0.5);
      font-weight: 500;
      letter-spacing: 0.04em;
    }

    .store-btn-name {
      font-family: var(--ff-heading);
      font-size: 0.875rem;
      font-weight: 700;
      color: #fff;
    }

    /* Phone mockup row */
    .phones-row {
      display: flex;
      align-items: flex-end;
      justify-content: center;
      gap: 0.75rem;
    }

    .phone-wrap {
      flex-shrink: 0;
    }

    .phone-wrap.center {
      transform: translateY(-1.5rem) scale(1.06);
      z-index: 3;
    }

    .phone-wrap.side {
      transform: translateY(-1.5rem);
      opacity: 0.98;
    }

    .phone-wrap.outer {
      opacity: 0.80;
    }

    .phone-frame {
      width: 130px;
      background: var(--ink-900);
      border-radius: 28px;
      padding: 8px;
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22), 0 6px 20px rgba(131, 39, 210, 0.18);
    }

    .phone-screen {
      background: var(--surface);
      border-radius: 22px;
      overflow: hidden;
      min-height: 220px;
    }

    .phone-header {
      background: var(--brand);
      padding: 0.5rem 0.75rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .phone-header-title {
      font-family: var(--ff-heading);
      font-size: 0.5rem;
      font-weight: 700;
      color: #fff;
      letter-spacing: 0.04em;
    }

    .phone-notch {
      width: 36px;
      height: 6px;
      background: var(--brand-dark);
      border-radius: 99px;
    }

    .phone-body {
      padding: 0.625rem;
    }

    .phone-kpi-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4px;
      margin-bottom: 6px;
    }

    .phone-kpi {
      background: var(--brand-pale);
      border-radius: 7px;
      padding: 0.375rem;
      text-align: center;
    }

    .phone-kpi-num {
      font-family: var(--ff-heading);
      font-size: 0.75rem;
      font-weight: 800;
      color: var(--brand);
    }

    .phone-kpi-lbl {
      font-size: 0.375rem;
      color: var(--ink-400);
      font-weight: 600;
    }

    .phone-item {
      background: var(--canvas);
      border-radius: 7px;
      padding: 0.375rem 0.5rem;
      margin-bottom: 4px;
      display: flex;
      align-items: center;
      gap: 0.375rem;
    }

    .phone-item-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .phone-item-text {
      font-size: 0.4375rem;
      color: var(--ink-500);
    }

    /* ════════════════════════════════════════════════════════════════
       7. FAQ SECTION
    ════════════════════════════════════════════════════════════════ */
    .faq-layout {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 5rem;
      align-items: start;
    }

    .faq-left {
      position: sticky;
      top: 88px;
    }

    .faq-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.3125rem 0.875rem;
      background: var(--brand-pale);
      border: 1px solid var(--brand-soft);
      border-radius: var(--r-full);
      font-family: var(--ff-heading);
      font-size: 0.6875rem;
      font-weight: 700;
      color: var(--brand-dark);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 1.25rem;
    }

    .faq-left h2 {
      font-size: clamp(1.75rem, 3vw, 2.5rem);
      margin-bottom: 1rem;
    }

    .faq-left p {
      font-size: 1rem;
      line-height: 1.75;
      margin-bottom: 2rem;
    }

    .faq-contact-card {
      background: var(--surface);
      border: 1.5px solid var(--border-soft);
      border-radius: var(--r-xl);
      padding: 1.5rem;
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .faq-contact-icon {
      width: 48px;
      height: 48px;
      background: var(--brand-pale);
      border-radius: var(--r-md);
      display: grid;
      place-items: center;
      color: var(--brand);
      flex-shrink: 0;
    }

    .faq-contact-label {
      font-family: var(--ff-heading);
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--ink-900);
      margin-bottom: 0.2rem;
    }

    .faq-contact-text {
      font-size: 0.8125rem;
      color: var(--brand);
      font-weight: 600;
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .faq-item {
      border: 1.5px solid var(--border-soft);
      border-radius: var(--r-xl);
      margin-bottom: 0.75rem;
      background: var(--canvas);
      overflow: hidden;
      transition: border-color 0.2s, box-shadow 0.2s;
    }

    .faq-item.faq-open {
      border-color: var(--brand-soft);
      background: var(--surface);
      box-shadow: var(--shadow-sm);
    }

    .faq-question {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1.25rem 1.5rem;
      cursor: pointer;
      user-select: none;
    }

    .faq-num {
      font-family: var(--ff-heading);
      font-size: 0.6875rem;
      font-weight: 800;
      color: var(--ink-300);
      letter-spacing: 0.06em;
      flex-shrink: 0;
      width: 24px;
    }

    .faq-item.faq-open .faq-num {
      color: var(--brand);
    }

    .faq-qtext {
      flex: 1;
      font-family: var(--ff-heading);
      font-size: 0.9375rem;
      font-weight: 600;
      color: var(--ink-900);
    }

    .faq-chevron {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--canvas);
      border: 1.5px solid var(--border);
      display: grid;
      place-items: center;
      color: var(--ink-400);
      flex-shrink: 0;
      transition: transform 0.3s, background 0.2s, color 0.2s;
    }

    .faq-item.faq-open .faq-chevron {
      transform: rotate(180deg);
      background: var(--brand-pale);
      border-color: var(--brand-soft);
      color: var(--brand);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
    }

    .faq-item.faq-open .faq-answer {
      max-height: 200px;
    }

    .faq-answer-inner {
      padding: 0 1.5rem 1.5rem 3.75rem;
    }

    .faq-answer-inner p {
      font-size: 0.9375rem;
      line-height: 1.75;
      color: var(--ink-500);
    }

    /* ════════════════════════════════════════════════════════════════
       8. PRODUCT DEMO CTA
    ════════════════════════════════════════════════════════════════ */
    .demo-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .demo-copy .label {
      color: var(--brand-mid);
      display: block;
      margin-bottom: 1rem;
    }

    .demo-copy h2 {
      color: #fff;
      margin-bottom: 1.25rem;
    }

    .demo-copy>p {
      font-size: 1.0625rem;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.8;
      margin-bottom: 2.5rem;
    }

    .demo-btns {
      display: flex;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .demo-trust {
      margin-top: 2rem;
      display: flex;
      align-items: center;
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    .demo-trust-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.8125rem;
      color: rgba(255, 255, 255, 0.45);
    }

    .demo-trust-item svg {
      color: var(--brand-mid);
    }

    /* Demo visual */
    .demo-visual {
      position: relative;
    }

    .demo-screen {
      background: var(--surface);
      border: 1.5px solid var(--border);
      border-radius: 20px;
      box-shadow: var(--shadow-xl);
      overflow: hidden;
      animation: floatA 8s ease-in-out infinite;
    }

    .demo-float {
      position: absolute;
      background: var(--surface);
      border: 1.5px solid var(--brand-soft);
      border-radius: 14px;
      padding: 0.875rem 1.125rem;
      box-shadow: var(--shadow-md);
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .demo-float.df1 {
      top: -20px;
      right: -16px;
      z-index: 10;
      animation: floatB 5s ease-in-out infinite 0.7s;
      white-space: nowrap;
    }

    .demo-float.df2 {
      bottom: -20px;
      left: -16px;
      z-index: 10;
      animation: floatA 6s ease-in-out infinite 0.3s;
      white-space: nowrap;
    }

    .df-icon {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      display: grid;
      place-items: center;
      flex-shrink: 0;
    }

    .df-val {
      font-family: var(--ff-heading);
      font-size: 0.9rem;
      font-weight: 800;
      color: var(--ink-900);
    }

    .df-lbl {
      font-size: 0.5625rem;
      color: var(--ink-400);
    }

    /* ─── RESPONSIVE ─────────────────────────────────────────────── */
    @media (max-width: 1100px) {
      .cap-grid {
        grid-template-columns: repeat(6, 1fr);
      }

      .cc1,
      .cc2 {
        grid-column: span 6;
      }

      .cc3,
      .cc4,
      .cc5 {
        grid-column: span 2;
      }
    }

    @media (max-width: 1024px) {

      .hero-inner,
      .feat-split,
      .mobile-inner,
      .demo-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .feat-split.reverse {
        direction: ltr;
      }

      .hero-visual {
        display: none;
      }

      .mobile-inner {
        grid-template-columns: 1fr;
      }

      .intro-features-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .cc3,
      .cc4,
      .cc5 {
        grid-column: span 3;
      }

      .faq-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .faq-left {
        position: static;
      }
    }

    @media (max-width: 768px) {
      .intro-features-grid {
        grid-template-columns: 1fr;
      }

      .cap-grid {
        grid-template-columns: 1fr 1fr;
      }

      .cap-card {
        grid-column: span 1 !important;
      }

      .phones-row .phone-wrap.outer {
        display: none;
      }

      .mobile-feats {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 640px) {
      .trust-logos {
        justify-content: center;
        gap: 1.5rem;
      }

      .phones-row .phone-wrap.side {
        display: none;
      }

      .demo-inner {
        grid-template-columns: 1fr;
      }
    }