/* ─── DESIGN TOKENS ──────────────────────────────────────────── */
    :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-glow: 0 0 0 3px rgba(131, 39, 210, 0.16);
    }

    /* ─── RESET & BASE ───────────────────────────────────────────── */
    *,
    *::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;
      -moz-osx-font-smoothing: grayscale;
    }

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

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

    ul {
      list-style: none;
    }

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

    ::-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 SCALE ───────────────────────────────────────── */
    h1,
    h2,
    h3,
    h4,
    h5 {
      font-family: var(--ff-heading);
      color: var(--ink-900);
      letter-spacing: -0.025em;
      line-height: 1.15;
    }

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

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

    h3 {
      font-size: 1.25rem;
      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);
    }

    /* ─── UTILITIES ──────────────────────────────────────────────── */
    .container {
      max-width: 1600px;
      margin-inline: auto;
      padding: 0 100px 0 100px;

    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
    }

    .text-brand {
      color: var(--brand);
    }

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

    /* ─── 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.45);
    }

    .btn-primary:active {
      transform: translateY(0);
    }

    .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-ghost {
      background: transparent;
      color: var(--brand);
      padding-inline: 0;
    }

    .btn-ghost:hover {
      color: var(--brand-dark);
    }

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

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


    /* ─── HERO ───────────────────────────────────────────────────── */
    .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;
      background: radial-gradient(circle at center, rgba(131, 39, 210, 0.12) 0%, transparent 65%);
      border-radius: 50%;
    }

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

    .hero-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(131, 39, 210, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(131, 39, 210, 0.12) 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-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.375rem 0.875rem 0.375rem 0.5rem;
      background: var(--brand-pale);
      border: 1px solid var(--brand-soft);
      border-radius: var(--r-full);
      margin-bottom: 1.75rem;
    }

    .hero-badge-dot {
      width: 22px;
      height: 22px;
      background: var(--brand);
      border-radius: 50%;
      display: grid;
      place-items: center;
      flex-shrink: 0;
    }

    .hero-badge span {
      font-family: var(--ff-heading);
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--brand-dark);
    }

    .hero-title {
      margin-bottom: 1.25rem;
    }

    .hero-title em {
      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;
    }

    .hero-desc {
      font-size: 1.0625rem;
      line-height: 1.75;
      max-width: auto;
      margin-right: 2rem;
      margin-bottom: 2rem;
      color: var(--ink-500);
    }

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

    .hero-trust {
      display: flex;
      align-items: center;
      gap: 0.875rem;
    }

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

    .hero-avatars img {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 2px solid var(--canvas);
      margin-left: -8px;
      object-fit: cover;
    }

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

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

    /* Dashboard preview */
    .hero-visual {
      position: relative;
    }

    .dash-frame {
      border-radius: var(--r-xl);
      overflow: hidden;
    }

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

    .dash-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
    }

    .dash-title-label {
      margin-left: auto;
      font-size: 0.6875rem;
      font-weight: 600;
      font-family: var(--ff-heading);
      color: var(--ink-300);
      letter-spacing: 0.04em;
    }

    .dash-body {
      display: grid;
      grid-template-columns: 160px 1fr;
      min-height: 320px;
    }

    .dash-sidebar {
      background: var(--canvas);
      border-right: 1px solid var(--border-soft);
      padding: 1rem 0.75rem;
    }

    .dash-nav-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 0.625rem;
      border-radius: var(--r-sm);
      font-size: 0.75rem;
      font-weight: 500;
      color: var(--ink-400);
      cursor: pointer;
      margin-bottom: 2px;
      transition: all 0.15s;
    }

    .dash-nav-item.active {
      background: var(--brand-pale);
      color: var(--brand);
      font-weight: 600;
    }

    .dash-nav-item svg {
      flex-shrink: 0;
    }

    .dash-main {
      padding: 1rem;
    }

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

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

    .dash-kpi-label {
      font-size: 0.625rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--ink-300);
      margin-bottom: 0.25rem;
      font-family: var(--ff-heading);
    }

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

    .dash-kpi-badge {
      font-size: 0.625rem;
      font-weight: 700;
      color: var(--success);
      margin-top: 0.25rem;
    }

    .dash-chart-area {
      background: var(--canvas);
      border: 1px solid var(--border-soft);
      border-radius: var(--r-md);
      padding: 0.75rem;
      margin-bottom: 0.625rem;
    }

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

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

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

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

    /* Floating widgets */
    .float-widget {
      position: absolute;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      box-shadow: var(--shadow-md);
      padding: 0.875rem 1.125rem;
    }

    .float-1 {
      top: -24px;
      right: -32px;
      width: 160px;
      animation: floatA 6s ease-in-out infinite;
    }

    .float-2 {
      bottom: 40px;
      left: -28px;
      animation: floatB 5s ease-in-out infinite 0.8s;
    }

    .float-widget-label {
      font-size: 0.625rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--ink-400);
      font-family: var(--ff-heading);
      margin-bottom: 0.25rem;
    }

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

    .float-widget-sub {
      font-size: 0.6875rem;
      color: var(--ink-400);
      margin-top: 2px;
    }

    .float-badge-green {
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
      font-size: 0.6875rem;
      font-weight: 700;
      color: var(--success);
      background: rgba(18, 183, 106, 0.1);
      padding: 0.125rem 0.375rem;
      border-radius: 99px;
      margin-top: 4px;
    }

    .float-attendance {
      display: flex;
      align-items: center;
      gap: 0.625rem;
    }

    .donut-wrap {
      position: relative;
      width: 44px;
      height: 44px;
      flex-shrink: 0;
    }

    .donut-val {
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      font-size: 0.625rem;
      font-weight: 800;
      font-family: var(--ff-heading);
      color: var(--ink-900);
    }

    @keyframes floatA {

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

      50% {
        transform: translateY(-8px);
      }
    }

    @keyframes floatB {

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

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

    /* Mascot Styles */
    .hero-mascot {
      position: absolute;
      top: -186px;
      left: 30px;
      width: 260px;
      z-index: 10;
      filter: drop-shadow(0 20px 40px rgba(131, 39, 210, 0.25));
      animation: mascotFloat 4s ease-in-out infinite;
      pointer-events: none;
    }

    @media (max-width: 560px) {
      .hero-mascot {
        height: 45px;
        width: 90px;
        top: -53px;
        left: 50px;
      }
    }

    .card-mascot {
      position: absolute;
      top: -60px;
      left: -40px;
      width: 100px;
      z-index: 5;
      filter: drop-shadow(0 10px 20px rgba(131, 39, 210, 0.2));
      pointer-events: none;
      animation: mascotTilt 5s ease-in-out infinite;
    }

    @media (max-width: 560px) {
      .card-mascot {
        width: 80px;
        top: -30px;
        left: -20px;
      }
    }


    @keyframes mascotFloat {
      0%, 100% { transform: translateY(0) rotate(2deg); }
      50% { transform: translateY(-15px) rotate(-2deg); }
    }

    @keyframes mascotTilt {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-10px) rotate(15deg); }
    }

    /* ─── MARQUEE ────────────────────────────────────────────────── */
    .marquee-section {
      padding: 2.5rem 0;
      border-top: 1px solid var(--border-soft);
      border-bottom: 1px solid var(--border-soft);
      background: var(--surface);
      overflow: hidden;
    }

    .marquee-track {
      display: flex;
      gap: 4rem;
      animation: marquee 28s linear infinite;
      white-space: nowrap;
      width: max-content;
    }

    .marquee-track:hover {
      animation-play-state: paused;
    }

    .marquee-item {
      font-family: var(--ff-heading);
      font-size: 1rem;
      font-weight: 700;
      color: var(--ink-200);
      letter-spacing: 0.03em;
      transition: color 0.2s;
      cursor: default;
      user-select: none;
    }

    .marquee-item:hover {
      color: var(--brand-mid);
    }

    @keyframes marquee {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    /* ─── SECTION PATTERN ────────────────────────────────────────── */
    .section {
      padding: 6rem 0;
    }

    .section-sm {
      padding: 4rem 0;
    }

    .section-header {
      margin-bottom: 3.5rem;
      max-width: 1000px;
    }

    .section-header.centered {
      max-width: 900px;
      margin-inline: auto;
      text-align: center;
    }

    .section-header .label {
      margin-bottom: 0.75rem;
      display: block;
    }

    .section-header h2 {
      margin-bottom: 1rem;
    }

    .section-header p {
      font-size: 1.0625rem;
    }

    /* ─── WHY WE'RE DIFFERENT (redesigned) ─────────────────────────── */
    .highlights-section {
      background: var(--canvas);
      overflow: hidden;
    }

    .highlights-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.25rem;
    }

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

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

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

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

    .highlight-card.hc-1 {
      --hc-top: linear-gradient(90deg, var(--brand), var(--brand-light));
    }

    .highlight-card.hc-2 {
      --hc-top: linear-gradient(90deg, #3B82F6, #60A5FA);
    }

    .highlight-card.hc-3 {
      --hc-top: linear-gradient(90deg, #8B5CF6, #A78BFA);
    }

    .highlight-card.hc-4 {
      --hc-top: linear-gradient(90deg, #10B981, #34D399);
    }

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

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

    .hi-1 {
      background: linear-gradient(135deg, rgba(131, 39, 210, 0.12), rgba(131, 39, 210, 0.05));
      color: var(--brand);
    }

    .hi-2 {
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(59, 130, 246, 0.05));
      color: #3B82F6;
    }

    .hi-3 {
      background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(139, 92, 246, 0.05));
      color: #8B5CF6;
    }

    .hi-4 {
      background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(16, 185, 129, 0.05));
      color: #10B981;
    }

    .highlight-card h3 {
      font-size: 1.0625rem;
      font-weight: 700;
      color: var(--ink-900);
      margin-bottom: 0.625rem;
    }

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

    .highlight-card-num {
      position: absolute;
      top: 1.95rem;
      right: 1.5rem;
      font-family: var(--ff-heading);
      font-size: 2.5rem;
      font-weight: 900;
      color: var(--border-soft);
      line-height: 1;
      letter-spacing: -0.04em;
      user-select: none;
    }

    @media (max-width: 1024px) {
      .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

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

      }

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

    /* ─── FEATURES GRID (redesigned) ────────────────────────────────── */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }

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

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

    .feature-cell:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: var(--brand-soft);
    }

    .feature-cell:hover::after {
      opacity: 1;
    }

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

    .feature-cell:hover .feature-icon {
      background: var(--brand);
      color: #fff;
      transform: scale(1.05) rotate(-3deg);
    }

    .feature-cell h3 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--ink-900);
      margin-bottom: 0.5rem;
      position: relative;
      z-index: 1;
    }

    .feature-cell p {
      font-size: 0.875rem;
      line-height: 1.7;
      color: var(--ink-400);
      position: relative;
      z-index: 1;
    }

    .feature-arrow {
      position: absolute;
      bottom: 1.5rem;
      right: 1.5rem;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: var(--canvas);
      border: 1.5px solid var(--border);
      display: grid;
      place-items: center;
      color: var(--ink-300);
      transition: all 0.25s ease;
      opacity: 0;
      transform: translateY(4px);
    }

    .feature-cell:hover .feature-arrow {
      opacity: 1;
      transform: translateY(0);
      background: var(--brand);
      border-color: var(--brand);
      color: #fff;
    }

    @media (max-width: 1024px) {
      .features-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

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

    /* ─── COMPGRID (redesigned) ──────────────────────────────────────── */
    .compgrid-section {
      background: var(--ink-900);
      position: relative;
      overflow: hidden;
    }

    .compgrid-section::before {
      content: '';
      position: absolute;
      top: -200px;
      left: 50%;
      transform: translateX(-50%);
      width: 900px;
      height: 900px;
      background: radial-gradient(circle at center, rgba(131, 39, 210, 0.18) 0%, transparent 65%);
      pointer-events: none;
    }

    .compgrid-section::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;
    }

    .compgrid-header {
      position: relative;
      z-index: 1;
    }

    .compgrid-label {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.3125rem 0.875rem;
      background: rgba(131, 39, 210, 0.25);
      border: 1px solid rgba(197, 152, 240, 0.3);
      border-radius: var(--r-full);
      font-family: var(--ff-heading);
      font-size: 0.6875rem;
      font-weight: 700;
      color: var(--brand-mid);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 1.25rem;
    }

    .compgrid-header h2 {
      font-size: clamp(1.75rem, 3vw, 2.5rem);
      color: #fff;
      margin-bottom: 0;
    }

    .compgrid-header h2 span {
      color: var(--brand-mid);
    }

    .compgrid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0.75rem;
      position: relative;
      z-index: 1;
    }

    .compgrid-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 0.75rem;
      padding: 1.375rem 1rem;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: 16px;
      cursor: default;
      transition: background 0.2s, border-color 0.2s, transform 0.2s;
    }

    .compgrid-item:hover {
      background: rgba(131, 39, 210, 0.18);
      border-color: rgba(197, 152, 240, 0.35);
      transform: translateY(-3px);
    }

    .compgrid-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      transition: transform 0.2s;
    }

    .compgrid-item:hover .compgrid-icon {
      transform: scale(1.1) rotate(-5deg);
    }

    .ci-blue {
      background: rgba(59, 130, 246, 0.15);
      color: #60A5FA;
    }

    .ci-purple {
      background: rgba(131, 39, 210, 0.2);
      color: var(--brand-mid);
    }

    .ci-indigo {
      background: rgba(99, 102, 241, 0.15);
      color: #A5B4FC;
    }

    .ci-green {
      background: rgba(16, 185, 129, 0.15);
      color: #34D399;
    }

    .ci-orange {
      background: rgba(251, 146, 60, 0.15);
      color: #FCA274;
    }

    .ci-pink {
      background: rgba(236, 72, 153, 0.15);
      color: #F9A8D4;
    }

    .ci-teal {
      background: rgba(20, 184, 166, 0.15);
      color: #5EEAD4;
    }

    .ci-red {
      background: rgba(239, 68, 68, 0.15);
      color: #FCA5A5;
    }

    .ci-yellow {
      background: rgba(245, 158, 11, 0.15);
      color: #FCD34D;
    }

    .ci-sky {
      background: rgba(14, 165, 233, 0.15);
      color: #7DD3FC;
    }

    .compgrid-item h4 {
      font-family: var(--ff-heading);
      font-size: 0.8125rem;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.75);
      line-height: 1.35;
    }

    .compgrid-item:hover h4 {
      color: #fff;
    }

    @media (max-width: 1024px) {
      .compgrid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    @media (max-width: 768px) {
      .compgrid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 480px) {
      .compgrid {
        grid-template-columns: repeat(2, 1fr);

        .compgrid-item {
          gap: 0.5rem;
          padding: 1rem 0.75rem;
        }
      }
    }

    /* ─── STANDOUT / ENTERPRISE SECURITY (redesigned) ───────────────── */
    .standout-section {
      background: var(--surface);
      position: relative;
      overflow: hidden;
    }

    .standout-section::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle at top right, rgba(131, 39, 210, 0.07) 0%, transparent 65%);
      pointer-events: none;
    }

    .standout-inner {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 2rem;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .standout-copy>.label {
      margin-bottom: 1rem;
      display: block;
    }

    .standout-copy h2 {
      margin-bottom: 1rem;
      max-width: 800px;
    }

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

    .standout-checklist {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.875rem;
      margin-bottom: 2.5rem;
    }

    .standout-check {
      display: flex;
      align-items: center;
      gap: 0.875rem;
      padding: 0.875rem 1.125rem;
      background: var(--canvas);
      border: 1.5px solid var(--border-soft);
      border-radius: var(--r-md);
      transition: border-color 0.2s, background 0.2s;
    }

    .standout-check:hover {
      border-color: var(--brand-soft);
      background: var(--brand-pale);
    }

    .standout-check-icon {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--brand);
      display: grid;
      place-items: center;
      flex-shrink: 0;
      box-shadow: 0 2px 8px rgba(131, 39, 210, 0.35);
    }

    .standout-check-icon svg {
      color: #fff;
    }

    .standout-check span {
      font-size: 0.9375rem;
      font-weight: 500;
      color: var(--ink-700);
    }

    .standout-cta-row {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    .btn-standout {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.875rem 2rem;
      background: var(--brand);
      color: #fff;
      border-radius: var(--r-md);
      font-family: var(--ff-heading);
      font-size: 0.9375rem;
      font-weight: 700;
      transition: all 0.2s;
      box-shadow: 0 4px 20px rgba(131, 39, 210, 0.35);
      text-decoration: none;
    }

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

    .standout-rating {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .standout-stars {
      display: flex;
      gap: 2px;
      color: #FBBF24;
    }

    .standout-rating-text {
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--ink-500);
    }

    /* Right: security visual — card grid */
    .standout-visual {
      position: relative;
    }

    .standout-security-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .sec-card {
      background: var(--canvas);
      border: 1.5px solid var(--border-soft);
      border-radius: 20px;
      padding: 1.75rem 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
      position: relative;
      overflow: hidden;
    }

    .sec-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--sc-accent);
      border-radius: 20px 20px 0 0;
      opacity: 0;
      transition: opacity 0.25s;
    }

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

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

    .sec-card.sc-1 {
      --sc-accent: linear-gradient(90deg, var(--brand), var(--brand-light));
    }

    .sec-card.sc-2 {
      --sc-accent: linear-gradient(90deg, #3B82F6, #60A5FA);
    }

    .sec-card.sc-3 {
      --sc-accent: linear-gradient(90deg, #8B5CF6, #A78BFA);
    }

    .sec-card.sc-4 {
      --sc-accent: linear-gradient(90deg, #10B981, #34D399);
    }

    .sec-card-icon {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      flex-shrink: 0;
    }

    .sci-1 {
      background: linear-gradient(135deg, rgba(131, 39, 210, 0.12), rgba(131, 39, 210, 0.04));
      color: var(--brand);
    }

    .sci-2 {
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(59, 130, 246, 0.04));
      color: #3B82F6;
    }

    .sci-3 {
      background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(139, 92, 246, 0.04));
      color: #8B5CF6;
    }

    .sci-4 {
      background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(16, 185, 129, 0.04));
      color: #10B981;
    }

    .sec-card-title {
      font-family: var(--ff-heading);
      font-size: 1rem;
      font-weight: 700;
      color: var(--ink-900);
      margin-bottom: 0.2rem;
    }

    .sec-card-sub {
      font-size: 0.8125rem;
      color: var(--ink-400);
      line-height: 1.55;
    }

    .sec-card-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      padding: 0.2rem 0.625rem;
      border-radius: var(--r-full);
      font-family: var(--ff-heading);
      font-size: 0.625rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      width: fit-content;
      margin-top: 0.25rem;
    }

    .scb-purple {
      background: var(--brand-pale);
      color: var(--brand-dark);
    }

    .scb-blue {
      background: rgba(59, 130, 246, 0.1);
      color: #1D4ED8;
    }

    .scb-violet {
      background: rgba(139, 92, 246, 0.1);
      color: #6D28D9;
    }

    .scb-green {
      background: rgba(16, 185, 129, 0.1);
      color: #065F46;
    }

    @media (max-width: 900px) {
      .standout-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
      }
    }

    /* ─── PRODUCT TOUR ───────────────────────────────────────────── */
    .tour-section {
      background: var(--surface);
    }

    .tour-inner {
      display: grid;
      grid-template-columns: 220px 1fr 220px;
      gap: 2rem;
      align-items: start;
    }

    /* Right tabs mirror the left tabs but align icon on the right */
    .tour-tabs-right {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .tour-tabs-right .tour-tab {
      flex-direction: row-reverse;
      text-align: right;
    }

    .tour-tabs-right .tour-tab-content {
      text-align: right;
    }

    .tour-tabs {
      display: flex;
      flex-direction: column;
      gap:2rem;
    }

    .tour-tab {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 1.25rem 1.25rem;
      border-radius: var(--r-lg);
      cursor: pointer;
      transition: all 0.2s;
      border: 1.5px solid transparent;
      background: var(--canvas);
    }

    .tour-tab:hover {
      background: var(--brand-pale);
      border-color: var(--brand-soft);
    }

    .tour-tab.active {
      background: var(--brand-pale);
      border-color: var(--brand-soft);
    }

    .tour-tab-icon {
      width: 36px;
      height: 36px;
      border-radius: var(--r-sm);
      background: var(--ink-100);
      display: grid;
      place-items: center;
      flex-shrink: 0;
      color: var(--ink-400);
      transition: all 0.2s;
    }

    .tour-tab.active .tour-tab-icon {
      background: var(--brand);
      color: #fff;
    }

    .tour-tab-content h4 {
      font-size: 0.9375rem;
      font-weight: 600;
      color: var(--ink-700);
      margin-bottom: 0.25rem;
    }

    .tour-tab-content p {
      font-size: 0.8125rem;
      line-height: 1.6;
    }

    .tour-tab.active .tour-tab-content h4 {
      color: var(--brand-dark);
    }

    .tour-preview {
      background: var(--canvas);
      border: 1.5px solid var(--border);
      border-radius: var(--r-xl);
      overflow: hidden;
      box-shadow: var(--shadow-md);
    }

    .preview-topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.875rem 1.25rem;
      background: var(--surface);
      border-bottom: 1px solid var(--border-soft);
    }

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

    .preview-topbar-badge {
      padding: 0.25rem 0.625rem;
      background: rgba(18, 183, 106, 0.1);
      color: var(--success);
      font-size: 0.6875rem;
      font-weight: 700;
      border-radius: 99px;
      font-family: var(--ff-heading);
    }

    .preview-body {
      padding: 1.5rem;
    }

    /* Attendance module preview */
    .att-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem;
    }

    .att-title {
      font-size: 0.8125rem;
      font-weight: 600;
      font-family: var(--ff-heading);
      color: var(--ink-700);
    }

    .att-date {
      font-size: 0.75rem;
      color: var(--ink-400);
    }

    .att-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 0.5rem;
      margin-bottom: 1.25rem;
    }

    .att-day {
      text-align: center;
    }

    .att-day-label {
      font-size: 0.5625rem;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--ink-300);
      margin-bottom: 0.375rem;
      font-family: var(--ff-heading);
    }

    .att-dot {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      margin-inline: auto;
      display: grid;
      place-items: center;
      font-size: 0.6875rem;
      font-weight: 700;
      font-family: var(--ff-heading);
    }

    .att-dot.present {
      background: rgba(18, 183, 106, 0.15);
      color: var(--success);
    }

    .att-dot.absent {
      background: rgba(240, 68, 56, 0.1);
      color: var(--danger);
    }

    .att-dot.today {
      background: var(--brand);
      color: #fff;
      box-shadow: 0 4px 10px rgba(131, 39, 210, 0.4);
    }

    .att-row {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.75rem 0;
      border-top: 1px solid var(--border-soft);
    }

    .att-avatar {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--brand-soft);
      flex-shrink: 0;
      overflow: hidden;
    }

    .att-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .att-name {
      font-size: 0.8125rem;
      font-weight: 600;
      color: var(--ink-700);
    }

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

    .att-status {
      margin-left: auto;
      font-size: 0.6875rem;
      font-weight: 700;
      padding: 0.1875rem 0.5rem;
      border-radius: 99px;
    }

    .att-status.p {
      background: rgba(18, 183, 106, 0.12);
      color: var(--success);
    }

    .att-status.a {
      background: rgba(240, 68, 56, 0.1);
      color: var(--danger);
    }

    /* Fee module preview */
    .fee-summary {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.75rem;
      margin-bottom: 1.25rem;
    }

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

    .fee-card-label {
      font-size: 0.625rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--ink-300);
      font-family: var(--ff-heading);
      margin-bottom: 0.375rem;
    }

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

    .fee-card-trend {
      font-size: 0.6875rem;
      font-weight: 600;
      color: var(--success);
      margin-top: 0.25rem;
    }

    .fee-table {
      width: 100%;
      border-collapse: collapse;
    }

    .fee-table th {
      font-size: 0.625rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--ink-300);
      font-family: var(--ff-heading);
      padding: 0 0 0.5rem;
      text-align: left;
      border-bottom: 1px solid var(--border-soft);
    }

    .fee-table td {
      font-size: 0.75rem;
      color: var(--ink-500);
      padding: 0.625rem 0;
      border-bottom: 1px solid var(--border-soft);
      vertical-align: middle;
    }

    .fee-table td:last-child {
      text-align: right;
    }

    .fee-status {
      padding: 0.1875rem 0.5rem;
      border-radius: 99px;
      font-size: 0.625rem;
      font-weight: 700;
      font-family: var(--ff-heading);
    }

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

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

    /* ─── STATS ──────────────────────────────────────────────────── */
    .stats-section {
      background: var(--brand);
      position: relative;
      overflow: hidden;
    }

    .stats-bg-ring {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 800px;
      height: 800px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.08);
      pointer-events: none;
    }

    .stats-bg-ring-2 {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 1100px;
      height: 1100px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.05);
      pointer-events: none;
    }

    .stats-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2px;
      background: rgba(255, 255, 255, 0.08);
      border-radius: var(--r-xl);
      overflow: hidden;
    }

    .stat-block {
      background: rgba(131, 39, 210, 0.5);
      padding: 2.5rem 2rem;
      text-align: center;
      transition: background 0.2s;
    }

    .stat-block:hover {
      background: rgba(131, 39, 210, 0.7);
    }

    .stat-num {
      font-family: var(--ff-heading);
      font-size: 2.5rem;
      font-weight: 800;
      color: #fff;
      letter-spacing: -0.03em;
      line-height: 1;
      margin-bottom: 0.5rem;
    }

    .stat-label {
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.7);
    }

    /* ─── PRICING ────────────────────────────────────────────────── */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      align-items: start;
    }

    .pricing-card {
      background: var(--surface);
      border: 1.5px solid var(--border);
      border-radius: var(--r-xl);
      padding: 2rem;
      transition: all 0.25s ease;
      position: relative;
    }

    .pricing-card:hover {
      border-color: var(--brand-mid);
      box-shadow: var(--shadow-md);
      transform: translateY(-2px);
    }

    .pricing-card.featured {
      border-color: var(--brand);
      background: var(--ink-900);
      box-shadow: var(--shadow-lg);
    }

    .pricing-badge {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--brand);
      color: #fff;
      font-size: 0.6875rem;
      font-weight: 700;
      font-family: var(--ff-heading);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 0.25rem 0.875rem;
      border-radius: 99px;
    }

    .pricing-plan {
      font-size: 0.6875rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-family: var(--ff-heading);
      color: var(--ink-400);
      margin-bottom: 0.75rem;
    }

    .pricing-card.featured .pricing-plan {
      color: rgba(255, 255, 255, 0.5);
    }

    .pricing-price {
      font-family: var(--ff-heading);
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--ink-900);
      letter-spacing: -0.03em;
      line-height: 1;
      margin-bottom: 0.375rem;
    }

    .pricing-card.featured .pricing-price {
      color: #fff;
    }

    .pricing-price sup {
      font-size: 1.125rem;
      vertical-align: top;
      margin-top: 0.5rem;
      font-weight: 600;
    }

    .pricing-period {
      font-size: 0.8125rem;
      color: var(--ink-400);
      margin-bottom: 1.5rem;
    }

    .pricing-card.featured .pricing-period {
      color: rgba(255, 255, 255, 0.5);
    }

    .pricing-divider {
      height: 1px;
      background: var(--border);
      margin-bottom: 1.5rem;
    }

    .pricing-card.featured .pricing-divider {
      background: rgba(255, 255, 255, 0.1);
    }

    .pricing-features {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      margin-bottom: 2rem;
    }

    .pricing-feature {
      display: flex;
      align-items: flex-start;
      gap: 0.625rem;
      font-size: 0.875rem;
      color: var(--ink-500);
    }

    .pricing-card.featured .pricing-feature {
      color: rgba(255, 255, 255, 0.75);
    }

    .pricing-feature svg {
      color: var(--brand);
      flex-shrink: 0;
      margin-top: 2px;
    }

    .pricing-card.featured .pricing-feature svg {
      color: var(--brand-mid);
    }

    .btn-pricing-featured {
      display: block;
      width: 100%;
      text-align: center;
      padding: 0.75rem;
      background: var(--brand);
      color: #fff;
      border-radius: var(--r-md);
      font-family: var(--ff-heading);
      font-size: 0.9375rem;
      font-weight: 600;
      transition: all 0.2s;
      box-shadow: 0 4px 16px rgba(131, 39, 210, 0.4);
    }

    .btn-pricing-featured:hover {
      background: var(--brand-light);
      transform: translateY(-1px);
      box-shadow: 0 8px 24px rgba(131, 39, 210, 0.5);
    }

    .btn-pricing-outline {
      display: block;
      width: 100%;
      text-align: center;
      padding: 0.75rem;
      background: transparent;
      color: var(--ink-700);
      border: 1.5px solid var(--border);
      border-radius: var(--r-md);
      font-family: var(--ff-heading);
      font-size: 0.9375rem;
      font-weight: 600;
      transition: all 0.2s;
    }

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

    /* ─── TESTIMONIALS ───────────────────────────────────────────── */
    .testimonials-section {
      background: var(--surface);
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .testimonial-card {
      background: var(--canvas);
      border: 1.5px solid var(--border-soft);
      border-radius: var(--r-xl);
      padding: 2rem;
      transition: all 0.25s;
    }

    .testimonial-card:hover {
      border-color: var(--brand-mid);
      box-shadow: var(--shadow-sm);
    }

    .testimonial-stars {
      display: flex;
      gap: 0.25rem;
      margin-bottom: 1.25rem;
      color: #FBBF24;
    }

    .testimonial-quote {
      font-size: 0.9375rem;
      line-height: 1.75;
      color: var(--ink-600, #3d2e52);
      margin-bottom: 1.5rem;
      font-style: italic;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .testimonial-author img {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      object-fit: cover;
    }

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

    .testimonial-role {
      font-size: 0.75rem;
      color: var(--ink-400);
    }

    /* ─── CTA BANNER ─────────────────────────────────────────────── */
    .cta-section {
      padding: 5rem 0;
    }

    .cta-inner {
      background: var(--ink-900);
      border-radius: 28px;
      padding: 3rem 4rem;
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    .cta-inner::before {
      content: '';
      position: absolute;
      top: -200px;
      left: 50%;
      transform: translateX(-50%);
      width: 600px;
      height: 600px;
      background: radial-gradient(circle at center, rgba(131, 39, 210, 0.35) 0%, transparent 65%);
      pointer-events: none;
    }

    .cta-inner>* {
      position: relative;
      z-index: 1;
    }

    .cta-label {
      color: var(--brand-mid);
      margin-bottom: 1rem;
    }

    .cta-inner h2 {
      color: #fff;
      max-width: 1000px;
      margin-inline: auto;
      margin-bottom: 1.25rem;
    }

    .cta-inner p {
      color: rgba(255, 255, 255, 0.6);
      max-width: 800px;
      margin-inline: auto;
      margin-bottom: 2.5rem;
    }

    .cta-btns {
      display: flex;
      gap: 1rem;
      justify-content: center;
      margin-bottom: 2rem;
      flex-wrap: wrap;
    }

    .btn-cta-white {
      padding: 0.875rem 2rem;
      background: #fff;
      color: var(--brand-dark);
      border-radius: var(--r-md);
      font-family: var(--ff-heading);
      font-size: 1rem;
      font-weight: 700;
      transition: all 0.2s;
    }

    .btn-cta-white:hover {
      transform: translateY(-1px);
      box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
    }

    .btn-cta-ghost {
      padding: 0.875rem 2rem;
      background: rgba(255, 255, 255, 0.08);
      color: #fff;
      border: 1.5px solid rgba(255, 255, 255, 0.15);
      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.14);
      border-color: rgba(255, 255, 255, 0.25);
    }

    .cta-trust {
      display: flex;
      gap: 2rem;
      justify-content: center;
      flex-wrap: wrap;
    }

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

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


    /* ─── PRELOADER ──────────────────────────────────────────────── */
    #preloader {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: var(--ink-900);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 2rem;
      transition: opacity 0.5s ease, visibility 0.5s ease;
    }

    #preloader.preloader-hidden {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      display: none;
    }

    .preloader-logo-ring {
      position: relative;
      width: 80px;
      height: 80px;
    }

    .preloader-logo-ring svg.ring-svg {
      position: absolute;
      inset: 0;
      animation: spinRing 1.4s linear infinite;
    }

    @keyframes spinRing {
      to {
        transform: rotate(360deg);
      }
    }

    .preloader-logo-center {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .preloader-logo-mark {
      display: flex;
      align-items: center;
      justify-content: center;
      background: none;
      box-shadow: none;
    }

    @keyframes pulseGlow {
      from {
        box-shadow: 0 0 16px rgba(131, 39, 210, 0.4);
      }

      to {
        box-shadow: 0 0 40px rgba(131, 39, 210, 0.8), 0 0 80px rgba(131, 39, 210, 0.3);
      }
    }

    .preloader-wordmark {
      font-family: var(--ff-heading);
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.4);
    }

    .preloader-bar-wrap {
      width: 120px;
      height: 2px;
      background: rgba(255, 255, 255, 0.07);
      border-radius: 99px;
      overflow: hidden;
    }

    .preloader-bar {
      height: 100%;
      width: 0;
      background: linear-gradient(90deg, var(--brand), var(--brand-light));
      border-radius: 99px;
      animation: loadBar 1s ease forwards;
    }

    @keyframes loadBar {
      0% {
        width: 0;
      }

      60% {
        width: 75%;
      }

      100% {
        width: 100%;
      }
    }


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

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

      .tour-tabs-right {
        order: 3;
      }

      .tour-tabs-right .tour-tab {
        flex-direction: row;
        text-align: left;
      }

      .tour-tabs-right .tour-tab-content {
        text-align: left;
      }
    }

    @media (max-width: 560px) {
      .hero {
        padding-top: 90px;
      }

      .float-widget {
        transform: scale(0.6);
      }

      .tour-tabs {
        grid-template-columns: 1fr;
      }

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

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

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

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


    }

    @media (max-width: 768px) {


      .hero-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .hero-visual {
        display: block;
        margin-top: 2rem;
        max-width: 480px;
        margin-inline: auto;
      }

      .float-1 {
        top: -15px;
        right: -10px;
        transform: scale(0.8);
      }

      .float-2 {
        bottom: 20px;
        left: -10px;
        transform: scale(0.8);
      }

      h1 {
        font-size: 2.25rem;
      }

      .hero-ctas {
        flex-wrap: nowrap;
        gap: 0.75rem;
      }

      .hero-ctas .btn {
        flex: 1;
        padding: 0.75rem 0.5rem;
        font-size: 0.875rem;
        white-space: nowrap;
      }

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

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

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

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

      .cta-inner {
        padding: 3rem 1.5rem;
      }
    }

    /* ─── TESTIMONIALS (INTERACTIVE) ────────────────────────────── */
    .testi-section {
      background: var(--surface);
      padding: 5rem 0;
      overflow: hidden;
    }

    .testi-header {
      text-align: center;
      margin-bottom: 3.5rem;
    }

    .testi-header .label {
      display: block;
      margin-bottom: 0.75rem;
    }

    .testi-header h2 {
      font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    }

    .testi-header h2 span {
      color: var(--brand);
    }

    .testi-divider {
      width: 56px;
      height: 3px;
      background: var(--brand-soft);
      border-radius: 99px;
      margin: 1.25rem auto 0;
    }

    .testi-accordion {
      display: flex;
      gap: 1rem;
      min-height: 344px;
      align-items: stretch;
    }

    .testi-panel {
      position: relative;
      border-radius: var(--r-xl);
      overflow: hidden;
      cursor: pointer;
      transition: flex 0.7s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
      flex: 1;
      min-width: 72px;
      border: 1.5px solid var(--border-soft);
      background: var(--canvas);
    }

    .testi-panel.testi-active {
      flex: 2.4;
      border-color: var(--brand-soft);
      box-shadow: var(--shadow-md);
    }

    /* Inactive panel — portrait image + name overlay */
    .testi-panel-inactive {
      position: absolute;
      inset: 0;
      transition: opacity 0.5s ease, visibility 0.5s ease;
    }

    .testi-panel.testi-active .testi-panel-inactive {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }

    .testi-panel-inactive img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
    }

    .testi-panel-inactive::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(15, 11, 26, 0.88) 30%, rgba(15, 11, 26, 0.1) 100%);
    }

    .testi-panel-inactive-label {
      position: absolute;
      bottom: 1.5rem;
      left: 1.25rem;
      right: 1.25rem;
      z-index: 1;
      writing-mode: horizontal-tb;
    }

    .testi-panel-inactive-name {
      font-family: var(--ff-heading);
      font-size: 0.9375rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 0.2rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .testi-panel-inactive-role {
      font-size: 0.625rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: rgba(255, 255, 255, 0.6);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    /* Active panel — full content */
    .testi-panel-active {
      position: absolute;
      inset: 0;
      padding: 2rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.5s ease 0.15s, visibility 0.5s ease 0.15s;
    }

    .testi-panel.testi-active .testi-panel-active {
      opacity: 1;
      visibility: visible;
    }

    .testi-quote-icon {
      width: 44px;
      height: 40px;
      background: var(--brand);
      border-radius: var(--r-md);
      display: grid;
      place-items: center;
      margin-bottom: 1.75rem;
      flex-shrink: 0;
    }

    .testi-quote-icon svg {
      color: #fff;
    }

    .testi-quote-text {
      font-family: var(--ff-heading);
      font-size: clamp(1rem, 1.6vw, 1.25rem);
      font-weight: 600;
      color: var(--ink-900);
      line-height: 1.65;
      flex: 1;
      margin-bottom: 1.5rem;
    }

    .testi-quote-text .hl {
      color: var(--brand);
    }

    .testi-author {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding-top: 1.5rem;
      border-top: 1px solid var(--border-soft);
    }

    .testi-author img {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid var(--brand-pale);
      flex-shrink: 0;
    }

    .testi-author-name {
      font-family: var(--ff-heading);
      font-size: 1rem;
      font-weight: 700;
      color: var(--ink-900);
      margin-bottom: 0.2rem;
    }

    .testi-author-role {
      font-size: 0.6875rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      line-height: 1.4;
    }

    .testi-author-role .role-title {
      color: var(--brand);
    }

    .testi-author-role .role-org {
      color: var(--ink-400);
    }

    .testi-cta {
      text-align: center;
      margin-top: 3rem;
    }

    .testi-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      background: var(--brand);
      color: #fff;
      padding: 0.9375rem 2.25rem;
      border-radius: var(--r-full);
      font-family: var(--ff-heading);
      font-size: 1rem;
      font-weight: 700;
      transition: all 0.25s ease;
      box-shadow: 0 4px 20px rgba(131, 39, 210, 0.35);
      text-decoration: none;
    }

    .testi-cta-btn:hover {
      background: var(--brand-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(131, 39, 210, 0.45);
    }

    .testi-cta-btn:hover .testi-cta-arrow {
      transform: translateX(3px);
    }

    .testi-cta-check {
      width: 26px;
      height: 26px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      display: grid;
      place-items: center;
      flex-shrink: 0;
    }

    .testi-cta-arrow {
      transition: transform 0.2s ease;
    }

    @media (max-width: 768px) {
      .testi-accordion {
        flex-direction: column;
        min-height: auto;
      }

      .testi-panel {
        flex: none !important;
        min-height: 220px;
      }

      .testi-panel.testi-active {
        min-height: 420px;
      }

      .testi-panel-inactive-name,
      .testi-panel-inactive-role {
        white-space: normal;
      }
    }

    /* ─── FAQ ────────────────────────────────────────────────────── */
    .faq-section {
      background: var(--canvas);
      padding: 5rem 0;
    }

    .faq-layout {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 5rem;
      align-items: start;
    }

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

    .faq-left-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-support-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;
      margin-top: 0.5rem;
    }

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

    .faq-support-label {
      font-size: 0.6875rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--ink-300);
      font-family: var(--ff-heading);
      margin-bottom: 0.25rem;
    }

    .faq-support-text {
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--ink-700);
    }

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

    .faq-item {
      background: var(--surface);
      border: 1.5px solid var(--border-soft);
      border-radius: var(--r-lg);
      overflow: hidden;
      transition: border-color 0.25s ease, box-shadow 0.25s ease;
    }

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

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

    .faq-q-num {
      font-family: var(--ff-heading);
      font-size: 0.6875rem;
      font-weight: 800;
      color: var(--brand);
      background: var(--brand-pale);
      width: 28px;
      height: 28px;
      border-radius: var(--r-sm);
      display: grid;
      place-items: center;
      flex-shrink: 0;
    }

    .faq-q-text {
      font-family: var(--ff-heading);
      font-size: 0.9375rem;
      font-weight: 700;
      color: var(--ink-900);
      flex: 1;
      transition: color 0.2s;
    }

    .faq-item.faq-open .faq-q-text {
      color: var(--brand-dark);
    }

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

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

    .faq-answer {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows 0.35s ease;
    }

    .faq-item.faq-open .faq-answer {
      grid-template-rows: 1fr;
    }

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

    .faq-answer-inner p {
      padding-bottom: 1.5rem;
      padding-top: 0.25rem;
      font-size: 0.9375rem;
      color: var(--ink-500);
      line-height: 1.75;
      border-top: 1px solid var(--border-soft);
    }

    @media (max-width: 900px) {
      .faq-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .faq-left {
        position: static;
      }
    }

    /* ─── APP PROMOTION ─────────────────────────────────────────── */
    .app-promo-section {
      background: var(--surface);
      padding: 5rem 0;
      overflow: hidden;
    }

    .app-promo-inner {
      position: relative;
      background: var(--brand-pale);
      border-radius: 2.5rem;
      padding: 3rem;
      padding-left: 100px;
      overflow: visible; /* Allow mascot to overlap */
      border: 1.5px solid var(--brand-soft);
    }

    .app-promo-ring {
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(131, 39, 210, 0.1);
      pointer-events: none;
      top: 50%;
      left: 0;
    }

    .app-promo-ring-1 {
      width: 700px;
      height: 700px;
      transform: translate(-45%, -50%);
    }

    .app-promo-ring-2 {
      width: 540px;
      height: 540px;
      transform: translate(-35%, -50%);
    }

    .app-promo-ring-3 {
      width: 380px;
      height: 380px;
      transform: translate(-25%, -50%);
    }

    .app-promo-layout {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 3.5rem;
      align-items: center;
    }

    .app-promo-mockup {
      max-width: 552px;
    }

    .app-promo-mockup img {
      width: 100%;
      height: auto;
      filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.14));
      transition: transform 0.8s ease;
    }

    .app-promo-mockup img:hover {
      transform: scale(1.02);
    }

    .app-promo-mascot {
      position: absolute;
      bottom: -20px;
      left: -150px;
      width: 320px;
      z-index: 10;
      pointer-events: none;
      filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
    }

    .app-promo-content {
      display: flex;
      flex-direction: column;
      gap: 2.25rem;
    }

    .app-promo-heading h2 {
      font-family: var(--ff-heading);
      font-size: clamp(1.75rem, 3vw, 2.25rem);
      font-weight: 800;
      color: var(--ink-900);
      margin-bottom: 0.625rem;
      line-height: 1.15;
    }

    .app-promo-heading h2 span {
      color: var(--brand);
    }

    .app-promo-divider {
      height: 3px;
      width: 100%;
      background: linear-gradient(90deg, var(--brand), transparent);
      border-radius: 99px;
      margin-bottom: 0.625rem;
      opacity: 0.3;
    }

    .app-promo-heading p {
      font-size: 1.0625rem;
      color: var(--ink-500);
      line-height: 1.7;
      font-weight: 500;
    }

    .app-store-badges {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .app-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.875rem;
      background: var(--surface);
      border: 1.5px solid var(--border-soft);
      border-radius: var(--r-full);
      padding: 0.875rem 1.75rem;
      box-shadow: var(--shadow-sm);
      transition: all 0.25s ease;
      text-decoration: none;
    }

    .app-badge:hover {
      border-color: var(--brand-mid);
      box-shadow: var(--shadow-md);
      transform: translateY(-2px);
    }

    .app-badge-icon {
      font-size: 1.5rem;
      line-height: 1;
    }

    .app-badge-icon.play {
      color: var(--brand);
    }

    .app-badge-icon.apple {
      color: var(--ink-900);
    }

    .app-badge-label {
      font-size: 0.5625rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-weight: 700;
      color: var(--ink-300);
      font-family: var(--ff-heading);
      margin-bottom: 0.2rem;
    }

    .app-badge-name {
      font-size: 1rem;
      font-weight: 700;
      color: var(--ink-900);
      font-family: var(--ff-heading);
      line-height: 1;
    }

    .app-stats-row {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    .app-stat {
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
    }

    .app-stat-num {
      font-family: var(--ff-heading);
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--ink-900);
      letter-spacing: -0.03em;
      line-height: 1;
    }

    .app-stat-label {
      font-size: 0.625rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--ink-400);
      font-family: var(--ff-heading);
    }

    .app-stat-stars {
      display: flex;
      gap: 2px;
      color: #FBBF24;
      margin-bottom: 0.1rem;
    }

    .app-stat-divider {
      width: 1px;
      height: 2.5rem;
      background: var(--border);
      flex-shrink: 0;
    }

    .app-stat-user-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1.5px solid var(--border);
      display: grid;
      place-items: center;
      color: var(--ink-500);
      margin-bottom: 0.25rem;
    }

    @media (max-width: 900px) {
      .app-promo-layout {
        grid-template-columns: 1fr;
        padding-top: 2rem;
        padding-bottom: 2rem;
        text-align: center;
      }

      .app-promo-inner{
        padding: 1.5rem;
        margin-left: 0;
      }

      .app-promo-mascot {
        top: -40px;
        bottom: auto;
        left: 40px;
        transform: translateX(-50%);
        width: 140px;
      }

      .app-promo-mockup {
        max-width: 320px;
        margin-inline: auto;
      }

      .app-promo-content {
        align-items: center;
      }

      .app-promo-divider {
        margin-inline: auto;
      }

      .app-store-badges {
        justify-content: center;
        flex-wrap: nowrap;
        width: 100%;
        gap: 0.5rem;
      }

      .app-badge {
        padding: 0.625rem 1rem;
        gap: 0.5rem;
        flex: 1;
        min-width: 0;
      }

      .app-badge-icon {
        font-size: 1.1rem;
      }

      .app-badge-name {
        font-size: 0.75rem;
      }

      .app-badge-label {
        font-size: 0.45rem;
      }

      .app-stats-row {
        flex-wrap: nowrap;
        gap: 0.5rem;
        justify-content: center;
        width: 100%;
      }

      .app-stat-num {
        font-size: 1.1rem;
      }

      .app-stat-label {
        font-size: 0.5rem;
        white-space: nowrap;
      }

      .app-stat-divider {
        height: 1.5rem;
      }
    }

    /* ─── PRIVACY SECTION ────────────────────────────────────────── */
    .privacy-section {
      background: var(--surface);
      padding: 5rem 0;
    }

    .privacy-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .privacy-header h2 {
      font-family: var(--ff-heading);
      font-size: clamp(1.75rem, 3.5vw, 2.5rem);
      font-weight: 800;
      color: var(--ink-900);
    }

    .privacy-header h2 span {
      color: var(--brand);
    }

    .privacy-icons-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      align-items: center;
      justify-items: center;
      max-width: 1000px;
      margin: 0 auto;
    }

    .privacy-icon-item {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0rem;
      width: 100%;
      max-width: 200px;
      aspect-ratio: 1/1;
      background: #fff;
      border-radius: 24px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .privacy-icon-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    }

    .privacy-icon-item img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    @media (max-width: 768px) {
      .privacy-icons-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    /* ─── WHY CHOOSE US ──────────────────────────────────────────── */
    .why-section {
      padding: 5rem 0;
      background: linear-gradient(135deg, var(--brand) 0%, #6A1FB0 50%, var(--brand-pale) 100%);
      overflow: hidden;
      position: relative;
    }

    .why-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
      pointer-events: none;
    }

    .why-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4.5rem;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .why-chip {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.375rem 1rem;
      background: rgba(255, 255, 255, 0.15);
      border: 1px solid rgba(255, 255, 255, 0.25);
      border-radius: var(--r-full);
      font-family: var(--ff-heading);
      font-size: 0.75rem;
      font-weight: 700;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 1.25rem;
      backdrop-filter: blur(4px);
    }

    .why-heading {
      font-family: var(--ff-heading);
      font-size: clamp(1.75rem, 3.5vw, 2.75rem);
      font-weight: 800;
      color: #fff;
      line-height: 1.15;
      margin-bottom: 1.25rem;
    }

    .why-desc {
      font-size: 1.0625rem;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.7;
      margin-bottom: 2.5rem;
    }

    .why-features-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .why-feature-card {
      background: var(--surface);
      border-radius: 2rem 2rem 2rem 0;
      padding: 1.25rem 1.25rem 1.25rem 0.5rem;
      display: flex;
      align-items: center;
      gap: 0.875rem;
      box-shadow: 0 0 32px rgba(0, 0, 0, 0.06);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      overflow: hidden;
    }

    .why-feature-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    }

    .why-feature-icon {
      width: 72px;
      height: 72px;
      min-width: 72px;
      background: var(--brand);
      border-radius: 2rem 2rem 2rem 0;
      display: grid;
      place-items: center;
      color: #fff;
      margin-left: -1.25rem;
      transition: transform 0.3s ease;
    }

    .why-feature-card:hover .why-feature-icon {
      transform: scale(1.1);
    }

    .why-feature-icon svg {
      width: 22px;
      height: 22px;
      stroke: #fff;
      fill: none;
      stroke-width: 2;
    }

    .why-feature-title {
      font-family: var(--ff-heading);
      font-size: 0.9375rem;
      font-weight: 700;
      color: var(--ink-900);
      margin-bottom: 0.25rem;
    }

    .why-feature-desc {
      font-size: 0.75rem;
      color: var(--ink-400);
      line-height: 1.6;
    }

    .why-image-wrap {
      position: relative;
    }

    .why-image-border {
      position: absolute;
      inset: 0;
      border: 6px solid rgba(255, 255, 255, 0.3);
      border-radius: 30% 0 30% 30%;
      transform: translate(14px, 14px);
      z-index: 0;
    }

    .why-image-main {
      position: relative;
      z-index: 1;
      border-radius: 30% 0 30% 30%;
      overflow: hidden;
      box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
      max-height: 720px;
    }

    .why-image-main img {
      width: 100%;
      height: auto;
      object-fit: cover;
      display: block;
      transition: transform 0.8s ease;
    }

    .why-image-main:hover img {
      transform: scale(1.05);
    }

    @media (max-width: 900px) {
      .why-layout {
        grid-template-columns: 1fr;
      }

      .why-image-wrap {
        display: none;
      }

      .why-features-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ─── PRODUCT SUITE ──────────────────────────────────────────── */
    .suite-section {
      background: var(--surface);
    }

    .suite-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }

    .suite-card {
      position: relative;
      display: flex;
      flex-direction: column;
      background: var(--canvas);
      border: 1.5px solid var(--border-soft);
      border-radius: var(--r-xl);
      padding: 1.75rem;
      transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
      overflow: hidden;
      cursor: pointer;
    }

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

    .suite-card:hover {
      border-color: var(--brand-mid);
      box-shadow: var(--shadow-md);
      transform: translateY(-3px);
    }

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

    .suite-card-top {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      margin-bottom: 1rem;
    }

    .suite-icon-wrap {
      width: 52px;
      height: 52px;
      border-radius: var(--r-md);
      display: grid;
      place-items: center;
      flex-shrink: 0;
      transition: transform 0.3s ease;
    }

    .suite-card:hover .suite-icon-wrap {
      transform: scale(1.08);
    }

    .suite-icon-wrap img {
      width: 34px;
      height: 34px;
      object-fit: contain;
    }

    /* Per-card accent backgrounds — all purple-tinted to stay on-brand */
    .suite-icon-wrap.orange {
      background: rgba(251, 146, 60, 0.1);
    }

    .suite-icon-wrap.blue {
      background: rgba(59, 130, 246, 0.1);
    }

    .suite-icon-wrap.purple {
      background: var(--brand-pale);
    }

    .suite-icon-wrap.green {
      background: rgba(16, 185, 129, 0.1);
    }

    .suite-icon-wrap.indigo {
      background: rgba(99, 102, 241, 0.1);
    }

    .suite-icon-wrap.amber {
      background: rgba(245, 158, 11, 0.1);
    }

    .suite-card-title {
      font-family: var(--ff-heading);
      font-size: 1rem;
      font-weight: 700;
      color: var(--ink-900);
      letter-spacing: -0.015em;
      line-height: 1.3;
      transition: color 0.2s;
      padding-top: 0.125rem;
    }

    .suite-card:hover .suite-card-title {
      color: var(--brand);
    }

    .suite-card-desc {
      font-size: 0.875rem;
      color: var(--ink-400);
      line-height: 1.7;
      flex: 1;
      margin-bottom: 1.25rem;
    }

    .suite-card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .suite-card-link {
      font-family: var(--ff-heading);
      font-size: 0.8125rem;
      font-weight: 600;
      color: var(--brand);
      display: flex;
      align-items: center;
      gap: 0.375rem;
      transition: gap 0.2s ease;
    }

    .suite-card:hover .suite-card-link {
      gap: 0.625rem;
    }

    .suite-card-arrow {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--ink-100);
      display: grid;
      place-items: center;
      color: var(--ink-400);
      transition: background 0.2s, color 0.2s, transform 0.2s;
      flex-shrink: 0;
    }

    .suite-card:hover .suite-card-arrow {
      background: var(--brand);
      color: #fff;
      transform: rotate(-45deg);
    }

    @media (max-width: 1024px) {
      .suite-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 640px) {
      .suite-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ─── NEXT GEN WORKSPACE ─────────────────────────────────────── */
    .workspace-section {
      background: var(--canvas);
    }

    .workspace-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.25rem;
    }

    .workspace-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      background: var(--surface);
      border: 1.5px solid var(--border-soft);
      border-radius: 28px;
      padding: 2rem 1.5rem 1.75rem;
      transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, background 0.25s ease;
      position: relative;
      overflow: hidden;
    }

    .workspace-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--brand), var(--brand-light));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s ease;
      border-radius: 0 0 28px 28px;
    }

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

    .workspace-card:hover::after {
      transform: scaleX(1);
    }

    .workspace-img-wrap {
      width: 100%;
      height: 160px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
    }

    .workspace-img-wrap img {
      height: 100%;
      width: auto;
      object-fit: contain;
      transition: transform 0.4s ease;
    }

    .workspace-card:hover .workspace-img-wrap img {
      transform: scale(1.08);
    }

    .workspace-card-name {
      font-family: var(--ff-heading);
      font-size: 1.375rem;
      font-weight: 800;
      color: var(--brand);
      letter-spacing: -0.02em;
      line-height: 1.2;
      margin-bottom: 0.25rem;
    }

    .workspace-card-suite {
      font-family: var(--ff-heading);
      font-size: 0.625rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--ink-300);
      margin-bottom: 0.875rem;
    }

    .workspace-card-desc {
      font-size: 0.8125rem;
      color: var(--ink-500);
      line-height: 1.7;
      margin-bottom: 0.625rem;
      flex: 1;
    }

    .workspace-card-tagline {
      font-family: var(--ff-heading);
      font-size: 0.8125rem;
      font-weight: 600;
      color: var(--brand);
      font-style: italic;
      margin-bottom: 1.5rem;
    }

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

    .workspace-card:hover .workspace-card-link {
      color: var(--brand);
    }

    .workspace-link-circle {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      border: 1.5px solid var(--ink-200);
      display: grid;
      place-items: center;
      color: var(--ink-400);
      transition: background 0.2s, border-color 0.2s, color 0.2s;
      flex-shrink: 0;
    }

    .workspace-card:hover .workspace-link-circle {
      background: var(--brand);
      border-color: var(--brand);
      color: #fff;
    }

    @media (max-width: 1024px) {
      .workspace-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 560px) {
      .workspace-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ─── MOBILE APP SECTION ─────────────────────────────────────── */
    .mobileapp-section {
      background: var(--canvas);
      overflow: hidden;
    }

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

    /* ── Phone visual side ── */
    .mobileapp-visual {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 480px;
    }

    .mobileapp-orb {
      position: absolute;
      width: 420px;
      height: 420px;
      background: radial-gradient(circle, rgba(131, 39, 210, 0.1) 0%, transparent 65%);
      border-radius: 50%;
      pointer-events: none;
      animation: floatA 7s ease-in-out infinite;
    }

    /* Phone frame */
    .phone-frame {
      position: relative;
      z-index: 2;
      width: 220px;
      background: var(--ink-900);
      border-radius: 36px;
      padding: 10px;
      box-shadow: 0 32px 80px rgba(0, 0, 0, 0.22), 0 8px 24px rgba(131, 39, 210, 0.18);
      animation: floatA 6s ease-in-out infinite;
    }

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

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

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

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

    .phone-body {
      padding: 0.75rem;
    }

    .phone-greeting {
      font-family: var(--ff-heading);
      font-size: 0.625rem;
      font-weight: 700;
      color: var(--ink-900);
      margin-bottom: 0.625rem;
    }

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

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

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

    .phone-kpi-label {
      font-size: 0.5rem;
      color: var(--ink-400);
      font-weight: 600;
      margin-top: 2px;
    }

    .phone-section-label {
      font-size: 0.5rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--ink-300);
      font-family: var(--ff-heading);
      margin-bottom: 4px;
    }

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

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

    .phone-notif-text {
      font-size: 0.5rem;
      color: var(--ink-500);
      line-height: 1.4;
    }

    .phone-notif-text strong {
      color: var(--ink-700);
      font-weight: 700;
    }

    .phone-hw-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: var(--canvas);
      border-radius: 8px;
      padding: 0.4rem 0.5rem;
      margin-bottom: 3px;
      border: 1px solid var(--border-soft);
    }

    .phone-hw-subject {
      font-size: 0.5rem;
      font-weight: 700;
      color: var(--ink-700);
    }

    .phone-hw-due {
      font-size: 0.4375rem;
      color: var(--ink-400);
    }

    .phone-hw-badge {
      font-size: 0.4375rem;
      font-weight: 700;
      padding: 1px 5px;
      border-radius: 99px;
    }

    .hw-pending {
      background: rgba(247, 144, 9, 0.12);
      color: var(--warning);
    }

    .hw-done {
      background: rgba(18, 183, 106, 0.12);
      color: var(--success);
    }

    /* Floating cap cards */
    .float-cap {
      position: absolute;
      background: var(--surface);
      border: 1.5px solid var(--border);
      border-radius: var(--r-lg);
      box-shadow: var(--shadow-md);
      padding: 0.75rem 0.875rem;
      z-index: 3;
    }

    .cap-alert {
      top: 16px;
      left: 30px;
      width: 168px;
      animation: floatB 5.5s ease-in-out infinite 0.5s;
    }

    .cap-news {
      bottom: 60px;
      left: 38px;
      width: 160px;
      animation: floatA 6.5s ease-in-out infinite 1s;
    }

    .cap-homework {
      top: 50%;
      right: 43px;
      transform: translateY(-50%);
      width: 156px;
      animation: floatB 5s ease-in-out infinite 0.25s;
    }

    .cap-icon {
      width: 28px;
      height: 28px;
      border-radius: 8px;
      display: grid;
      place-items: center;
      margin-bottom: 0.375rem;
    }

    .cap-title {
      font-family: var(--ff-heading);
      font-size: 0.6875rem;
      font-weight: 700;
      color: var(--ink-900);
      margin-bottom: 0.125rem;
    }

    .cap-sub {
      font-size: 0.5625rem;
      color: var(--ink-400);
      line-height: 1.5;
    }

    /* ── Copy side ── */
    .mobileapp-copy .label {
      margin-bottom: 0.875rem;
      display: block;
    }

    .mobileapp-copy h2 {
      margin-bottom: 0.875rem;
    }

    .mobileapp-copy h2 em {
      font-style: normal;
      color: var(--brand);
    }

    .mobileapp-divider {
      width: 56px;
      height: 3px;
      background: var(--brand-soft);
      border-radius: 99px;
      margin-bottom: 1.75rem;
    }

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

    .mobileapp-features {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.25rem;
      margin-bottom: 2.5rem;
    }

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

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

    .mobileapp-feat h4 {
      font-size: 0.9375rem;
      font-weight: 700;
      color: var(--ink-900);
      margin-bottom: 0.25rem;
    }

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

    .mobileapp-downloads {
      display: flex;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

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

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

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

    .store-badge-text {
      display: flex;
      flex-direction: column;
    }

    .store-badge-sub {
      font-size: 0.5625rem;
      color: rgba(255, 255, 255, 0.55);
      font-weight: 500;
      letter-spacing: 0.04em;
      line-height: 1;
      margin-bottom: 2px;
    }

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

    @media (max-width: 1024px) {
      .mobileapp-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .mobileapp-visual {
        min-height: 400px;
      }

      .cap-alert {
        left: -20px;
      }

      .cap-news {
        left: -16px;
      }

      .cap-homework {
        right: -20px;
      }
    }

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

      .phone-frame {
        width: 187px;
        /* 220px × 0.85 */
        padding: 8px;
        border-radius: 30px;
      }

      .phone-screen {
        border-radius: 24px;
        min-height: 323px;
        /* 380px × 0.85 */
      }

      .float-cap {
        padding: 0.5rem 0.625rem;
        border-radius: var(--r-md);
      }

      .cap-alert {
        top: 16px;
        left: -10px;
        width: 120px;
        animation: none;
      }

      .cap-news {
        bottom: 60px;
        left: -10px;
        width: 115px;
        animation: none;
      }

      .cap-homework {
        top: 50%;
        right: -10px;
        width: 112px;
        transform: translateY(-50%);
        animation: none;
      }
    }

    /* ── Section ── */
    .carousel-section {
      overflow: hidden;
      background: #ffffff;
      padding: 56px 0 0;
      /* Removed bottom padding */
    }

    /* ── Heading ── */
    .carousel-heading {
      max-width: 80rem;
      /* max-w-7xl */
      margin: 0 auto 3rem;
      /* mb-12 */
      padding: 0 1.5rem;
      text-align: center;
    }

    .carousel-heading p {
      font-family: 'Poppins', 'Inter', Helvetica, Arial, sans-serif;
      font-size: clamp(1.5rem, 3vw, 2.125rem);
      /* ~34px, fluid */
      letter-spacing: 0.2em;
      color: #94a3b8;
      /* slate-400 */
      line-height: 1.3;
    }

    .carousel-heading strong {
      font-size: clamp(1.625rem, 3.2vw, 2.375rem);
      /* ~38px */
      color: #475569;
      /* slate-600 */
      font-weight: 700;
    }

    /* ── Mask strip (edge fade) ── */
    .mask-strip {
      position: relative;
      width: 100%;
      transform: scale(1.2);
      transform-origin: center;
      /* Fade left + right edges */
      -webkit-mask-image: linear-gradient(to right,
          transparent 0%,
          black 8%,
          black 92%,
          transparent 100%);
      mask-image: linear-gradient(to right,
          transparent 0%,
          black 8%,
          black 92%,
          transparent 100%);
    }

    /* ── Strip background bar ── */
    .strip-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg,
          rgba(131, 39, 210, 0.06) 0%,
          rgba(0, 247, 202, 0.04) 50%,
          rgba(131, 39, 210, 0.06) 100%);
      border-radius: 0;
      pointer-events: none;
    }

    /* ── Scroll track ── */
    .scroll-track {
      display: flex;
      width: 200%;
      /* two identical halves = seamless loop */
      align-items: center;
      height: 114px;
      gap: 0;
      animation: carousel-scroll 40s linear infinite;
      will-change: transform;
    }

    .scroll-track:hover {
      animation-play-state: paused;
    }

    /* ── Logo set (half of track) ── */
    .logo-set {
      display: flex;
      width: max-content;
      align-items: center;
      justify-content: flex-start;
      padding: 0 3rem;
      gap: 6rem;
      flex-shrink: 0;
    }

    /* ── Individual logos ── */
    .logo-set img {
      height: 2.5rem;
      /* h-10 */
      width: auto;
      opacity: 0.85;
      transition: transform 0.5s ease-out, filter 0.5s ease-out;
      flex-shrink: 0;
    }

    .logo-set img:hover {
      transform: scale(1.1);
    }

    /* ── Keyframes ── */
    @keyframes carousel-scroll {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    /* ── Responsive ── */
    @media (min-width: 1024px) {

      /* lg:h-16 */
      .logo-set img {
        height: 4rem;
      }
    }

    @media (max-width: 640px) {
      .carousel-section {
        padding-bottom: 0;
      }

      .carousel-heading {
        margin-bottom: 2rem;
      }

      .mask-strip {
        transform: scale(1.2);
        transform-origin: center;
      }

      .logo-set {
        gap: 3.5rem;
        padding: 0 1.75rem;
      }

      .logo-set img {
        height: 1.25rem;
      }

      /* Slightly faster on small screens so users still see motion */
      .scroll-track {
        height: 64px;
        animation-duration: 20s;
      }
    }