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

    :root {
      --c-bg:            #03020a;
      --c-purple:        #7c3aed;
      --c-purple-mid:    #8b5cf6;
      --c-purple-light:  #a78bfa;
      --c-purple-glow:   rgba(124, 58, 237, 0.55);
      --c-purple-subtle: rgba(139, 92, 246, 0.12);
      --c-white:         #ffffff;
      --c-white-60:      rgba(255,255,255,0.60);
      --c-white-40:      rgba(255,255,255,0.40);
      --c-white-10:      rgba(255,255,255,0.10);
      --c-white-06:      rgba(255,255,255,0.06);
      --c-white-04:      rgba(255,255,255,0.04);
      --font:            'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      --ease-out-expo:   cubic-bezier(0.16, 1, 0.3, 1);
      --ease-in-out:     cubic-bezier(0.4, 0, 0.2, 1);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font);
      background: var(--c-bg);
      color: var(--c-white);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    /* ─────────────────────────────────────────────
       CURSOR GLOW (desktop only)
    ───────────────────────────────────────────── */
    .cursor-glow {
      position: fixed;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      overflow: hidden;
    }
    .cursor-glow__inner {
      position: absolute;
      width: 480px;
      height: 480px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(139,92,246,0.08) 0%, transparent 70%);
      transform: translate(-50%, -50%);
      will-change: left, top;
      transition: left 0.7s var(--ease-out-expo), top 0.7s var(--ease-out-expo);
      mix-blend-mode: screen;
    }

    /* ─────────────────────────────────────────────
       HERO SECTION
    ───────────────────────────────────────────── */
    .hero {
      position: relative;
      width: 100%;
      height: 100dvh;
      min-height: 680px;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      isolation: isolate;
    }

    /* ── Video ── */
    .hero__video-wrap {
      position: absolute;
      inset: 0;
      z-index: -3;
    }

    .hero__video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      will-change: opacity;
      opacity: 0;
    }

    /* ── Cinematic Overlay Stack ── */
    /* Layer 1: Multi-directional vignette */
    .hero__vignette {
      position: absolute;
      inset: 0;
      z-index: -2;
      background:
        linear-gradient(to bottom,
          rgba(3,2,10,0.92) 0%,
          rgba(3,2,10,0.22) 28%,
          rgba(3,2,10,0.28) 50%,
          rgba(3,2,10,0.68) 75%,
          rgba(3,2,10,0.98) 100%),
        linear-gradient(to right,
          rgba(3,2,10,0.72) 0%,
          rgba(3,2,10,0.15) 35%,
          rgba(3,2,10,0.15) 65%,
          rgba(3,2,10,0.72) 100%);
    }

    /* Extra darkening layer for text legibility */
    .hero__dark-base {
      position: absolute;
      inset: 0;
      z-index: -1;
      background: rgba(3,2,10,0.20);
      pointer-events: none;
    }

    /* Layer 2: Purple color grade */
    .hero__colorgrade {
      position: absolute;
      inset: 0;
      z-index: -1;
      background:
        radial-gradient(ellipse 80% 60% at 55% 35%, rgba(109,40,217,0.13) 0%, transparent 100%);
      mix-blend-mode: screen;
      pointer-events: none;
    }

    /* Layer 3: Film grain (SVG turbulence) */
    .hero__grain {
      position: absolute;
      inset: -50%;
      z-index: 4;
      width: 200%;
      height: 200%;
      opacity: 0.038;
      pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)'/%3E%3C/svg%3E");
      background-size: 180px 180px;
      animation: grain 0.4s steps(1) infinite;
    }

    @keyframes grain {
      0%   { transform: translate(0, 0); }
      10%  { transform: translate(-3%, -4%); }
      20%  { transform: translate(-5%, 2%); }
      30%  { transform: translate(3%, -6%); }
      40%  { transform: translate(-2%, 5%); }
      50%  { transform: translate(4%, 3%); }
      60%  { transform: translate(-4%, -1%); }
      70%  { transform: translate(5%, -3%); }
      80%  { transform: translate(-3%, 6%); }
      90%  { transform: translate(2%, -5%); }
      100% { transform: translate(-4%, 4%); }
    }

    /* ── Ambient Glow Orbs ── */
    .hero__glow {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      filter: blur(90px);
      z-index: 0;
    }
    .hero__glow--top {
      width: 700px;
      height: 700px;
      top: -200px;
      left: 50%;
      transform: translateX(-50%);
      background: radial-gradient(circle, rgba(109,40,217,0.16) 0%, transparent 70%);
      animation: orbFloat 10s ease-in-out infinite;
    }
    .hero__glow--left {
      width: 500px;
      height: 500px;
      bottom: 60px;
      left: -100px;
      background: radial-gradient(circle, rgba(99,102,241,0.10) 0%, transparent 70%);
      animation: orbFloat 14s ease-in-out infinite reverse;
    }
    .hero__glow--right {
      width: 350px;
      height: 350px;
      top: 30%;
      right: -80px;
      background: radial-gradient(circle, rgba(139,92,246,0.09) 0%, transparent 70%);
      animation: orbFloat 11s ease-in-out infinite 3s;
    }

    @keyframes orbFloat {
      0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
      50%       { opacity: 1;   transform: translateX(-50%) scale(1.12); }
    }
    .hero__glow--left,
    .hero__glow--right {
      animation-name: orbFloatSide;
    }
    @keyframes orbFloatSide {
      0%, 100% { opacity: 0.6; transform: scale(1); }
      50%       { opacity: 1;   transform: scale(1.15); }
    }

    /* ─────────────────────────────────────────────
       NAVIGATION
    ───────────────────────────────────────────── */
    .nav {
      position: relative;
      z-index: 20;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 28px 56px;
      opacity: 0;
      will-change: transform, opacity;
    }

    /* Logo */
    .nav__logo {
      display: flex;
      align-items: center;
      gap: 11px;
      text-decoration: none;
      flex-shrink: 0;
    }
    .nav__logo-mark {
      width: 38px;
      height: 38px;
      background: linear-gradient(140deg, #8b5cf6 0%, #6d28d9 100%);
      border-radius: 9px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 800;
      color: white;
      letter-spacing: -0.03em;
      box-shadow:
        0 0 0 1px rgba(139,92,246,0.35),
        0 0 24px rgba(139,92,246,0.5),
        inset 0 1px 0 rgba(255,255,255,0.2);
      flex-shrink: 0;
    }
    .nav__logo-text {
      font-size: 16px;
      font-weight: 700;
      letter-spacing: -0.025em;
      color: var(--c-white);
    }
    .nav__logo-text em {
      font-style: normal;
      color: var(--c-purple-light);
    }

    /* Links */
    .nav__links {
      display: flex;
      align-items: center;
      gap: 38px;
      list-style: none;
    }
    .nav__links a {
      color: rgba(255,255,255,0.60);
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.01em;
      position: relative;
      transition: color 0.25s;
    }
    .nav__links a::after {
      content: '';
      position: absolute;
      bottom: -3px;
      left: 0;
      width: 0;
      height: 1px;
      background: linear-gradient(90deg, var(--c-purple-mid), var(--c-purple-light));
      transition: width 0.3s var(--ease-out-expo);
    }
    .nav__links a:hover { color: white; }
    .nav__links a:hover::after { width: 100%; }

    /* Nav CTA */
    .nav__actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .nav__btn {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 9px 22px;
      background: rgba(139,92,246,0.12);
      border: 1px solid rgba(139,92,246,0.30);
      border-radius: 100px;
      color: rgba(255,255,255,0.88);
      font-family: var(--font);
      font-size: 13.5px;
      font-weight: 600;
      text-decoration: none;
      cursor: pointer;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      transition: all 0.3s var(--ease-in-out);
      white-space: nowrap;
    }
    .nav__btn:hover {
      background: rgba(139,92,246,0.22);
      border-color: rgba(139,92,246,0.55);
      color: white;
      box-shadow: 0 0 18px rgba(139,92,246,0.25);
    }

    /* Hamburger */
    .nav__hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 5px;
      background: none;
      border: none;
    }
    .nav__hamburger span {
      display: block;
      width: 22px;
      height: 1.5px;
      background: rgba(255,255,255,0.65);
      border-radius: 2px;
      transition: all 0.3s;
    }

    /* ─────────────────────────────────────────────
       HERO CONTENT
    ───────────────────────────────────────────── */
    .hero__body {
      position: relative;
      z-index: 10;
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 20px 24px 80px;
    }

    /* Eyebrow badge */
    .hero__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 7px 18px 7px 14px;
      background: rgba(139,92,246,0.09);
      border: 1px solid rgba(139,92,246,0.22);
      border-radius: 100px;
      font-size: 11.5px;
      font-weight: 600;
      letter-spacing: 0.115em;
      text-transform: uppercase;
      color: rgba(196,181,253,0.88);
      margin-bottom: 40px;
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      opacity: 0;
      will-change: transform, opacity;
    }
    .hero__eyebrow-pulse {
      width: 7px;
      height: 7px;
      background: var(--c-purple-light);
      border-radius: 50%;
      flex-shrink: 0;
      box-shadow: 0 0 0 0 rgba(139,92,246,0.5);
      animation: pulse 2.2s ease-out infinite;
    }
    @keyframes pulse {
      0%   { box-shadow: 0 0 0 0 rgba(139,92,246,0.55); }
      70%  { box-shadow: 0 0 0 7px rgba(139,92,246,0.0); }
      100% { box-shadow: 0 0 0 0 rgba(139,92,246,0.0); }
    }

    /* Headline */
    .hero__h1 {
      font-size: clamp(52px, 8.2vw, 116px);
      font-weight: 800;
      line-height: 0.96;
      letter-spacing: -0.045em;
      margin-bottom: 30px;
      max-width: 1040px;
    }

    /* Each line is a clip container for the reveal animation */
    .hero__line {
      display: block;
      overflow: hidden;
      padding-bottom: 0.07em; /* prevent descender clip */
    }
    .hero__line-inner {
      display: block;
      transform: translateY(108%);
      will-change: transform;
    }

    /* Gradient accent on second line */
    .hero__line--accent .hero__line-inner {
      background: linear-gradient(110deg,
        #c4b5fd 0%,
        #a78bfa 30%,
        #8b5cf6 60%,
        #6366f1 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      filter: drop-shadow(0 0 48px rgba(139,92,246,0.35));
      padding-right: 0.05em; /* avoids gradient clip on italic)*/
    }

    /* Subheadline */
    .hero__sub {
      font-size: clamp(16px, 1.75vw, 19.5px);
      font-weight: 400;
      line-height: 1.7;
      color: rgba(255,255,255,0.50);
      max-width: 540px;
      margin-bottom: 54px;
      opacity: 0;
      will-change: transform, opacity;
    }
    .hero__sub strong {
      color: rgba(255,255,255,0.82);
      font-weight: 500;
    }

    /* CTAs */
    .hero__ctas {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
      opacity: 0;
      will-change: transform, opacity;
    }

    /* Primary button */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 15px 34px;
      background: linear-gradient(140deg, #7c3aed 0%, #6d28d9 100%);
      border: 1px solid rgba(139,92,246,0.35);
      border-radius: 100px;
      color: white;
      font-family: var(--font);
      font-size: 15px;
      font-weight: 700;
      text-decoration: none;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: transform 0.35s var(--ease-out-expo),
                  box-shadow 0.35s var(--ease-out-expo);
      box-shadow:
        0 0 0 1px rgba(139,92,246,0.25),
        0 8px 32px rgba(109,40,217,0.50),
        0 2px 8px rgba(0,0,0,0.45),
        inset 0 1px 0 rgba(255,255,255,0.15);
    }
    /* Shine sweep */
    .btn-primary::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(115deg,
        transparent 30%,
        rgba(255,255,255,0.12) 50%,
        transparent 70%);
      transform: translateX(-100%);
      transition: transform 0.55s var(--ease-out-expo);
    }
    /* Outer glow bloom */
    .btn-primary::after {
      content: '';
      position: absolute;
      inset: -3px;
      border-radius: 100px;
      background: linear-gradient(140deg, #8b5cf6, #6366f1);
      z-index: -1;
      opacity: 0;
      filter: blur(14px);
      transition: opacity 0.35s;
    }
    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow:
        0 0 0 1px rgba(139,92,246,0.5),
        0 16px 48px rgba(109,40,217,0.65),
        0 4px 16px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.15);
    }
    .btn-primary:hover::before { transform: translateX(100%); }
    .btn-primary:hover::after  { opacity: 0.7; }
    .btn-primary:active { transform: translateY(-1px); }

    .btn-primary__arrow {
      display: inline-flex;
      transition: transform 0.3s var(--ease-out-expo);
    }
    .btn-primary:hover .btn-primary__arrow {
      transform: translateX(4px);
    }

    /* Secondary button */
    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 15px 32px;
      background: var(--c-white-04);
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 100px;
      color: rgba(255,255,255,0.75);
      font-family: var(--font);
      font-size: 15px;
      font-weight: 600;
      text-decoration: none;
      cursor: pointer;
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      transition: all 0.35s var(--ease-in-out);
    }
    .btn-secondary:hover {
      background: rgba(255,255,255,0.08);
      border-color: rgba(255,255,255,0.20);
      color: white;
      transform: translateY(-3px);
      box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    }
    .btn-secondary:active { transform: translateY(-1px); }

    /* ─────────────────────────────────────────────
       STATS BAR
    ───────────────────────────────────────────── */
    .hero__stats {
      position: relative;
      width: 100%;
      display: flex;
      align-items: stretch;
      border-top: 1px solid rgba(255,255,255,0.06);
      background: rgba(3,2,10,0.85);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      opacity: 0;
      will-change: transform, opacity;
    }

    .hero__stat {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 22px 16px;
      position: relative;
      transition: background 0.3s;
    }
    .hero__stat:hover {
      background: rgba(139,92,246,0.06);
    }
    .hero__stat + .hero__stat::before {
      content: '';
      position: absolute;
      left: 0;
      top: 20%;
      height: 60%;
      width: 1px;
      background: rgba(255,255,255,0.07);
    }

    .hero__stat-num {
      font-size: clamp(26px, 3vw, 36px);
      font-weight: 800;
      letter-spacing: -0.045em;
      line-height: 1;
      margin-bottom: 5px;
      background: linear-gradient(135deg, #ffffff 0%, rgba(196,181,253,0.85) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-variant-numeric: tabular-nums;
    }
    .hero__stat-label {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.36);
    }

    /* ─────────────────────────────────────────────
       SCROLL INDICATOR
    ───────────────────────────────────────────── */
    .hero__scroll {
      position: absolute;
      bottom: 88px;
      right: 52px;
      z-index: 20;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      opacity: 0;
      will-change: opacity;
    }
    .hero__scroll-label {
      font-size: 9.5px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.28);
      writing-mode: vertical-rl;
    }
    .hero__scroll-track {
      width: 1px;
      height: 64px;
      background: rgba(255,255,255,0.10);
      position: relative;
      overflow: hidden;
      border-radius: 1px;
    }
    .hero__scroll-thumb {
      position: absolute;
      top: -100%;
      left: 0;
      width: 100%;
      height: 50%;
      background: linear-gradient(to bottom, transparent, rgba(139,92,246,0.7), transparent);
      animation: scrollThumb 2s ease-in-out infinite;
    }
    @keyframes scrollThumb {
      from { top: -60%; }
      to   { top: 160%; }
    }

    /* ─────────────────────────────────────────────
       DECORATIVE CORNER LINE
    ───────────────────────────────────────────── */
    .hero__corner {
      position: absolute;
      bottom: 88px;
      left: 52px;
      z-index: 10;
      opacity: 0;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .hero__corner-line {
      width: 40px;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(139,92,246,0.5));
    }
    .hero__corner-text {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.25);
    }

    /* ─────────────────────────────────────────────
       RESPONSIVE
    ───────────────────────────────────────────── */
    @media (max-width: 1024px) {
      .nav { padding: 24px 36px; }
      .hero__scroll { right: 36px; }
      .hero__corner { left: 36px; }
    }

    @media (max-width: 820px) {
      .nav {
        padding: 22px 28px;
      }
      .nav__links { display: none; }
      .nav__hamburger { display: flex; }

      .hero__body { padding-bottom: 80px; }

      .hero__scroll,
      .hero__corner { display: none; }

      .hero__stat-num { font-size: 24px; }
      .hero__stat-label { font-size: 10px; }
    }

    @media (max-width: 600px) {
      .nav { padding: 18px 20px; }
      .nav__logo-text { display: none; }

      .hero__eyebrow { font-size: 10px; letter-spacing: 0.08em; }

      .hero__body { padding: 20px 20px 80px; }

      .hero__stats {
        flex-wrap: wrap;
      }
      .hero__stat {
        flex: 0 0 50%;
        padding: 18px 12px;
      }
      .hero__stat:nth-child(2)::before { display: block; }
      .hero__stat:nth-child(3)::before {
        display: block;
        top: 0;
        height: 1px;
        width: 80%;
        left: 10%;
        background: rgba(255,255,255,0.07);
      }
      .hero__stat:nth-child(4)::before {
        display: block;
        top: 0;
        height: 1px;
        width: 80%;
        left: 10%;
        background: rgba(255,255,255,0.07);
      }

      .hero__ctas {
        flex-direction: column;
        width: 100%;
        max-width: 340px;
      }
      .btn-primary,
      .btn-secondary {
        width: 100%;
        justify-content: center;
        font-size: 14.5px;
        padding: 14px 28px;
      }
    }

    @media (max-width: 380px) {
      .hero__h1 {
        font-size: 44px;
      }
    }

    /* ─────────────────────────────────────────────
       ACCESSIBILITY: reduce motion
    ───────────────────────────────────────────── */
    @media (prefers-reduced-motion: reduce) {
      .hero__grain,
      .hero__glow,
      .hero__eyebrow-pulse,
      .hero__scroll-thumb { animation: none; }
      .hero__video { opacity: 1 !important; }
      * { transition-duration: 0.01ms !important; }
    }

    /* ═════════════════════════════════════════════
       SERVICES SECTION
    ══════════════════════════════════════════════ */
    .svc {
      position: relative;
      background: var(--c-bg);
      padding: 140px 80px 160px;
      overflow: hidden;
    }

    /* Ambient purple radials — very subtle */
    .svc::before {
      content: '';
      position: absolute;
      width: 900px;
      height: 900px;
      border-radius: 50%;
      top: -200px;
      right: -250px;
      background: radial-gradient(circle, rgba(109,40,217,0.06) 0%, transparent 65%);
      pointer-events: none;
    }
    .svc::after {
      content: '';
      position: absolute;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      bottom: 0;
      left: -150px;
      background: radial-gradient(circle, rgba(99,102,241,0.05) 0%, transparent 65%);
      pointer-events: none;
    }

    /* ── Section Header ── */
    .svc__header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: end;
      margin-bottom: 80px;
    }

    .svc__header-left {}

    .svc__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 6px 16px 6px 12px;
      background: rgba(139,92,246,0.08);
      border: 1px solid rgba(139,92,246,0.20);
      border-radius: 100px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.115em;
      text-transform: uppercase;
      color: rgba(196,181,253,0.80);
      margin-bottom: 28px;
      opacity: 0;
      transform: translateY(18px);
    }
    .svc__eyebrow-line {
      width: 18px;
      height: 1px;
      background: linear-gradient(90deg, var(--c-purple-light), transparent);
    }

    .svc__h2 {
      font-size: clamp(40px, 5vw, 66px);
      font-weight: 800;
      line-height: 1.02;
      letter-spacing: -0.04em;
      color: var(--c-white);
      opacity: 0;
      transform: translateY(24px);
    }
    .svc__h2 em {
      font-style: normal;
      background: linear-gradient(110deg, #c4b5fd 0%, #a78bfa 40%, #8b5cf6 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .svc__header-right {
      padding-bottom: 6px;
      opacity: 0;
      transform: translateY(20px);
    }

    .svc__header-divider {
      width: 32px;
      height: 2px;
      background: linear-gradient(90deg, var(--c-purple-mid), transparent);
      margin-bottom: 20px;
      border-radius: 2px;
    }

    .svc__header-desc {
      font-size: 16.5px;
      font-weight: 400;
      line-height: 1.75;
      color: rgba(255,255,255,0.48);
      max-width: 420px;
    }
    .svc__header-desc strong {
      color: rgba(255,255,255,0.78);
      font-weight: 500;
    }

    /* Separator rule */
    .svc__rule {
      width: 100%;
      height: 1px;
      background: linear-gradient(90deg,
        transparent 0%,
        rgba(255,255,255,0.07) 20%,
        rgba(255,255,255,0.07) 80%,
        transparent 100%);
      margin-bottom: 72px;
      opacity: 0;
    }

    /* ── Service Cards Grid ── */
    .svc__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 20px;
      overflow: hidden;
      margin-bottom: 64px;
    }

    .svc__card {
      background: rgba(5,4,16,0.96);
      padding: 48px 40px 44px;
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 0;
      transition: background 0.4s var(--ease-in-out);
      cursor: default;
      opacity: 0;
      transform: translateY(28px);
    }
    .svc__card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(140deg, rgba(139,92,246,0.06) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.4s;
    }
    .svc__card:hover { background: rgba(15,10,35,0.98); }
    .svc__card:hover::before { opacity: 1; }

    /* Top row inside card */
    .svc__card-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      margin-bottom: 36px;
    }

    .svc__icon {
      width: 52px;
      height: 52px;
      border-radius: 13px;
      background: linear-gradient(140deg, rgba(124,58,237,0.22) 0%, rgba(99,102,241,0.12) 100%);
      border: 1px solid rgba(139,92,246,0.20);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: all 0.35s var(--ease-in-out);
    }
    .svc__card:hover .svc__icon {
      background: linear-gradient(140deg, rgba(124,58,237,0.35) 0%, rgba(99,102,241,0.22) 100%);
      border-color: rgba(139,92,246,0.40);
      box-shadow: 0 0 20px rgba(124,58,237,0.25);
    }
    .svc__icon svg {
      color: var(--c-purple-light);
      transition: transform 0.35s var(--ease-out-expo);
    }
    .svc__card:hover .svc__icon svg {
      transform: scale(1.12);
    }

    .svc__num {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.10em;
      color: rgba(255,255,255,0.15);
      font-variant-numeric: tabular-nums;
      margin-top: 4px;
    }

    .svc__card-title {
      font-size: 21px;
      font-weight: 700;
      letter-spacing: -0.025em;
      color: rgba(255,255,255,0.92);
      margin-bottom: 14px;
      line-height: 1.2;
      transition: color 0.3s;
    }
    .svc__card:hover .svc__card-title { color: white; }

    .svc__card-desc {
      font-size: 14.5px;
      font-weight: 400;
      line-height: 1.70;
      color: rgba(255,255,255,0.38);
      flex: 1;
      margin-bottom: 36px;
      transition: color 0.3s;
    }
    .svc__card:hover .svc__card-desc { color: rgba(255,255,255,0.52); }

    .svc__card-link {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.02em;
      color: rgba(167,139,250,0.55);
      text-decoration: none;
      transition: all 0.3s var(--ease-in-out);
      width: fit-content;
    }
    .svc__card-link svg {
      transition: transform 0.3s var(--ease-out-expo);
    }
    .svc__card:hover .svc__card-link {
      color: var(--c-purple-light);
    }
    .svc__card:hover .svc__card-link svg {
      transform: translateX(4px);
    }

    /* Thin purple top-border glow on hover */
    .svc__card::after {
      content: '';
      position: absolute;
      top: 0;
      left: 10%;
      right: 10%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(139,92,246,0.6), transparent);
      opacity: 0;
      transition: opacity 0.4s;
    }
    .svc__card:hover::after { opacity: 1; }

    /* ── Section Footer CTA ── */
    .svc__footer {
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transform: translateY(18px);
    }

    .svc__all-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 14.5px;
      font-weight: 600;
      color: rgba(255,255,255,0.50);
      text-decoration: none;
      letter-spacing: 0.01em;
      padding: 14px 28px;
      border: 1px solid rgba(255,255,255,0.09);
      border-radius: 100px;
      transition: all 0.35s var(--ease-in-out);
    }
    .svc__all-link:hover {
      color: white;
      border-color: rgba(139,92,246,0.35);
      background: rgba(139,92,246,0.07);
      box-shadow: 0 0 24px rgba(139,92,246,0.12);
    }
    .svc__all-link svg {
      transition: transform 0.3s var(--ease-out-expo);
      color: var(--c-purple-light);
    }
    .svc__all-link:hover svg { transform: translateX(5px); }

    /* ── Services Responsive ── */
    @media (max-width: 1100px) {
      .svc { padding: 120px 52px 140px; }
      .svc__header { gap: 48px; }
      .svc__card { padding: 40px 32px 36px; }
    }

    @media (max-width: 900px) {
      .svc { padding: 100px 36px 120px; }
      .svc__header {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 56px;
      }
      .svc__grid { grid-template-columns: 1fr; gap: 1px; }
      .svc__card { padding: 36px 28px 32px; }
    }

    @media (max-width: 600px) {
      .svc { padding: 80px 20px 100px; }
      .svc__header { margin-bottom: 44px; }
      .svc__h2 { font-size: 38px; }
      .svc__card { padding: 32px 24px 28px; }
      .svc__card-title { font-size: 19px; }
      .svc__rule { margin-bottom: 48px; }
    }

    /* ─────────────────────────────────────────────
       SEO JOURNEY SECTION
    ───────────────────────────────────────────── */
    .journey {
      position: relative;
      padding: 140px 64px 180px;
      overflow: visible;
    }
    .journey::before {
      content: '';
      position: absolute;
      width: 900px;
      height: 900px;
      border-radius: 50%;
      top: -100px;
      right: -250px;
      background: radial-gradient(circle, rgba(109,40,217,0.05) 0%, transparent 65%);
      pointer-events: none;
    }
    .journey__inner {
      max-width: 1280px;
      margin: 0 auto;
    }

    /* ── Header ── */
    .journey__header {
      text-align: center;
      margin-bottom: 88px;
    }
    .journey__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 6px 16px 6px 12px;
      background: rgba(139,92,246,0.08);
      border: 1px solid rgba(139,92,246,0.20);
      border-radius: 100px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.115em;
      text-transform: uppercase;
      color: rgba(196,181,253,0.80);
      margin-bottom: 26px;
      opacity: 0;
      transform: translateY(16px);
    }
    .journey__eyebrow-line {
      width: 18px;
      height: 1px;
      background: linear-gradient(90deg, var(--c-purple-light), transparent);
    }
    .journey__h2 {
      font-size: clamp(36px, 4.5vw, 62px);
      font-weight: 800;
      line-height: 1.04;
      letter-spacing: -0.04em;
      color: var(--c-white);
      margin-bottom: 20px;
      opacity: 0;
      transform: translateY(20px);
    }
    .journey__h2 em {
      font-style: normal;
      background: linear-gradient(110deg, #c4b5fd 0%, #a78bfa 40%, #8b5cf6 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .journey__subtitle {
      font-size: 16px;
      font-weight: 400;
      line-height: 1.75;
      color: rgba(255,255,255,0.44);
      max-width: 520px;
      margin: 0 auto;
      opacity: 0;
      transform: translateY(16px);
    }

    /* ── Chart (desktop) ── */
    .journey__chart {
      position: relative;
      width: 100%;
      overflow: visible;
    }
    .journey__svg {
      width: 100%;
      height: auto;
      display: block;
      overflow: visible;
    }
    .journey__milestones {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      overflow: visible;
      pointer-events: none;
    }

    /* ── Individual milestone ── */
    .journey__milestone {
      position: absolute;
      display: flex;
      flex-direction: column;
      align-items: center;
      transform: translateX(-50%);
      pointer-events: all;
    }
    .journey__milestone--above {
      flex-direction: column-reverse;
      transform: translateX(-50%) translateY(-100%);
    }
    .journey__connector {
      width: 1px;
      height: 32px;
      background: linear-gradient(to bottom, rgba(139,92,246,0.45), rgba(139,92,246,0.06));
      flex-shrink: 0;
    }
    .journey__milestone--above .journey__connector {
      background: linear-gradient(to top, rgba(139,92,246,0.45), rgba(139,92,246,0.06));
    }

    /* ── Dot ── */
    .journey__dot-wrap {
      position: relative;
      width: 14px;
      height: 14px;
      flex-shrink: 0;
      z-index: 2;
    }
    .journey__dot {
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: var(--c-purple);
      border: 2px solid rgba(167,139,250,0.75);
      box-shadow: 0 0 12px rgba(124,58,237,0.65), 0 0 26px rgba(124,58,237,0.3);
      transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
    }
    .journey__dot-ring {
      position: absolute;
      inset: -7px;
      border-radius: 50%;
      border: 1px solid rgba(139,92,246,0.22);
      animation: jDotPulse 2.8s ease-in-out infinite;
    }
    @keyframes jDotPulse {
      0%, 100% { transform: scale(1);   opacity: 0.45; }
      50%       { transform: scale(1.9); opacity: 0; }
    }
    .journey__milestone:hover .journey__dot {
      transform: scale(1.3);
      box-shadow: 0 0 18px rgba(124,58,237,0.9), 0 0 38px rgba(124,58,237,0.4);
    }

    /* ── Card ── */
    .journey__card {
      width: 192px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 14px;
      padding: 16px 18px 15px;
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      opacity: 0;
      transform: translateY(8px);
      transition:
        background 0.35s var(--ease-in-out),
        border-color 0.35s,
        box-shadow 0.35s,
        transform 0.35s var(--ease-out-expo),
        opacity 0.4s;
      position: relative;
      overflow: hidden;
    }
    .journey__card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(139,92,246,0.08) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.35s;
      pointer-events: none;
    }
    .journey__milestone:hover .journey__card {
      background: rgba(12,8,30,0.96);
      border-color: rgba(139,92,246,0.30);
      box-shadow: 0 8px 32px rgba(124,58,237,0.16), 0 2px 8px rgba(0,0,0,0.4);
      transform: translateY(-4px);
    }
    .journey__milestone:hover .journey__card::before { opacity: 1; }
    .journey__step {
      display: inline-block;
      font-size: 9.5px;
      font-weight: 700;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: var(--c-purple-light);
      margin-bottom: 7px;
    }
    .journey__card-title {
      font-size: 14px;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: var(--c-white);
      margin-bottom: 7px;
      line-height: 1.3;
    }
    .journey__card-desc {
      font-size: 12px;
      font-weight: 400;
      line-height: 1.65;
      color: rgba(255,255,255,0.44);
    }

    /* ── Mobile stack ── */
    @media (min-width: 861px) {
      .journey__mobile { display: none; }
    }
    @media (max-width: 860px) {
      .journey { padding: 100px 36px 120px; }
      .journey__header { margin-bottom: 60px; }
      .journey__chart { display: none; }
      .journey__mobile {
        display: flex;
        flex-direction: column;
        position: relative;
        padding-left: 40px;
      }
      .journey__mobile::before {
        content: '';
        position: absolute;
        left: 5px;
        top: 6px;
        bottom: 6px;
        width: 1px;
        background: linear-gradient(to bottom,
          transparent 0%,
          rgba(139,92,246,0.5) 8%,
          rgba(139,92,246,0.5) 92%,
          transparent 100%);
      }
      .journey__mobile-item {
        position: relative;
        padding-bottom: 40px;
        opacity: 0;
        transform: translateX(-10px);
      }
      .journey__mobile-item:last-child { padding-bottom: 0; }
      .journey__mobile-dot {
        position: absolute;
        left: -40px;
        top: 3px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--c-purple);
        border: 2px solid rgba(167,139,250,0.7);
        box-shadow: 0 0 10px rgba(124,58,237,0.55);
      }
      .journey__mobile-step {
        font-size: 9.5px;
        font-weight: 700;
        letter-spacing: 0.13em;
        text-transform: uppercase;
        color: var(--c-purple-light);
        margin-bottom: 6px;
      }
      .journey__mobile-title {
        font-size: 16px;
        font-weight: 700;
        letter-spacing: -0.02em;
        color: var(--c-white);
        margin-bottom: 8px;
      }
      .journey__mobile-desc {
        font-size: 14px;
        font-weight: 400;
        line-height: 1.68;
        color: rgba(255,255,255,0.44);
        max-width: 420px;
      }
    }
    @media (max-width: 600px) {
      .journey { padding: 80px 20px 100px; }
      .journey__h2 { font-size: 34px; }
      .journey__header { margin-bottom: 48px; }
    }

    /* ─────────────────────────────────────────────
       PREMIUM SEO SERVICES CARDS
    ───────────────────────────────────────────── */
    .sc {
      position: relative;
      padding: 140px 64px 160px;
      overflow: hidden;
    }
    .sc::before {
      content: '';
      position: absolute;
      width: 900px;
      height: 900px;
      border-radius: 50%;
      top: -180px;
      left: -280px;
      background: radial-gradient(circle, rgba(109,40,217,0.055) 0%, transparent 65%);
      pointer-events: none;
    }
    .sc::after {
      content: '';
      position: absolute;
      width: 700px;
      height: 700px;
      border-radius: 50%;
      bottom: -100px;
      right: -220px;
      background: radial-gradient(circle, rgba(99,102,241,0.045) 0%, transparent 65%);
      pointer-events: none;
    }
    .sc__inner {
      max-width: 1280px;
      margin: 0 auto;
    }

    /* ── Section header ── */
    .sc__header {
      text-align: center;
      margin-bottom: 72px;
    }
    .sc__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 6px 16px 6px 12px;
      background: rgba(139,92,246,0.08);
      border: 1px solid rgba(139,92,246,0.20);
      border-radius: 100px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.115em;
      text-transform: uppercase;
      color: rgba(196,181,253,0.80);
      margin-bottom: 26px;
      opacity: 0;
      transform: translateY(16px);
    }
    .sc__eyebrow-line {
      width: 18px;
      height: 1px;
      background: linear-gradient(90deg, var(--c-purple-light), transparent);
    }
    .sc__h2 {
      font-size: clamp(40px, 5vw, 68px);
      font-weight: 800;
      line-height: 1.02;
      letter-spacing: -0.04em;
      color: var(--c-white);
      margin-bottom: 18px;
      opacity: 0;
      transform: translateY(20px);
    }
    .sc__h2 em {
      font-style: normal;
      background: linear-gradient(110deg, #c4b5fd 0%, #a78bfa 40%, #8b5cf6 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .sc__sub {
      font-size: 16px;
      font-weight: 400;
      line-height: 1.75;
      color: rgba(255,255,255,0.44);
      max-width: 480px;
      margin: 0 auto;
      opacity: 0;
      transform: translateY(16px);
    }

    /* ── Grid ── */
    .sc__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    /* ── Card ── */
    .sc-card {
      position: relative;
      overflow: hidden;
      background: linear-gradient(148deg, rgba(14,9,30,0.96) 0%, rgba(7,4,16,0.99) 100%);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 20px;
      padding: 40px 36px 36px;
      transition:
        transform 0.45s var(--ease-out-expo),
        border-color 0.4s,
        box-shadow 0.45s;
      opacity: 0;
      transform: translateY(28px);
      cursor: default;
    }
    /* Top edge highlight — always present, intensifies on hover */
    .sc-card::before {
      content: '';
      position: absolute;
      top: 0; left: 10%; right: 10%;
      height: 1px;
      background: linear-gradient(90deg,
        transparent 0%,
        rgba(139,92,246,0.65) 50%,
        transparent 100%);
      opacity: 0.18;
      transition: opacity 0.4s, left 0.4s, right 0.4s;
    }
    /* Radial inner glow */
    .sc-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(
        ellipse 85% 55% at 50% -5%,
        rgba(109,40,217,0.09) 0%,
        transparent 68%
      );
      opacity: 0;
      transition: opacity 0.45s;
      pointer-events: none;
      z-index: 0;
    }
    .sc-card:hover {
      transform: translateY(-7px);
      border-color: rgba(139,92,246,0.24);
      box-shadow:
        0 24px 64px rgba(0,0,0,0.55),
        0 0 48px rgba(124,58,237,0.11),
        inset 0 1px 0 rgba(255,255,255,0.04);
    }
    .sc-card:hover::before {
      opacity: 1;
      left: 0%;
      right: 0%;
    }
    .sc-card:hover::after { opacity: 1; }

    /* Abstract decorative SVG watermark */
    .sc-card__deco {
      position: absolute;
      top: -8px;
      right: -8px;
      width: 170px;
      height: 170px;
      opacity: 0.055;
      pointer-events: none;
      transition: opacity 0.45s;
      z-index: 0;
    }
    .sc-card:hover .sc-card__deco { opacity: 0.10; }

    /* Ensure content sits above pseudo-elements */
    .sc-card__head,
    .sc-card__body,
    .sc-card__foot { position: relative; z-index: 1; }

    /* ── Card head ── */
    .sc-card__head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      margin-bottom: 30px;
    }
    .sc-card__icon-wrap {
      width: 48px;
      height: 48px;
      border-radius: 13px;
      background: rgba(139,92,246,0.10);
      border: 1px solid rgba(139,92,246,0.20);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--c-purple-light);
      flex-shrink: 0;
      transition: background 0.38s, border-color 0.38s, box-shadow 0.38s, color 0.38s;
    }
    .sc-card:hover .sc-card__icon-wrap {
      background: rgba(139,92,246,0.18);
      border-color: rgba(139,92,246,0.40);
      box-shadow: 0 0 20px rgba(124,58,237,0.22);
      color: #c4b5fd;
    }
    .sc-card__num {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.11em;
      color: rgba(167,139,250,0.38);
      padding-top: 3px;
      transition: color 0.35s;
    }
    .sc-card:hover .sc-card__num { color: rgba(167,139,250,0.65); }

    /* ── Card body ── */
    .sc-card__title {
      font-size: 22px;
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.2;
      color: var(--c-white);
      margin-bottom: 14px;
    }
    .sc-card__desc {
      font-size: 14.5px;
      font-weight: 400;
      line-height: 1.74;
      color: rgba(255,255,255,0.44);
      margin-bottom: 30px;
    }
    .sc-card__desc strong {
      color: rgba(255,255,255,0.72);
      font-weight: 500;
    }

    /* ── Card footer link ── */
    .sc-card__foot {}
    .sc-card__link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12.5px;
      font-weight: 600;
      letter-spacing: 0.025em;
      color: rgba(167,139,250,0.65);
      text-decoration: none;
      transition: color 0.3s, gap 0.3s var(--ease-out-expo);
    }
    .sc-card__link svg {
      transition: transform 0.3s var(--ease-out-expo);
      flex-shrink: 0;
    }
    .sc-card:hover .sc-card__link {
      color: var(--c-purple-light);
    }
    .sc-card:hover .sc-card__link svg { transform: translateX(4px); }

    /* ── Responsive ── */
    @media (max-width: 1100px) {
      .sc { padding: 120px 52px 140px; }
      .sc-card { padding: 36px 30px 32px; }
    }
    @media (max-width: 900px) {
      .sc { padding: 100px 36px 120px; }
      .sc__grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 600px) {
      .sc { padding: 80px 20px 100px; }
      .sc__grid { grid-template-columns: 1fr; }
      .sc__h2 { font-size: 38px; }
      .sc-card { padding: 32px 26px 28px; }
      .sc-card__title { font-size: 20px; }
    }

    /* ─────────────────────────────────────────────
       FEATURED PROJECTS
    ───────────────────────────────────────────── */
    .fp {
      position: relative;
      padding: 140px 64px 160px;
      overflow: hidden;
    }
    .fp::before {
      content: '';
      position: absolute;
      width: 880px; height: 880px;
      border-radius: 50%;
      top: -200px; right: -260px;
      background: radial-gradient(circle, rgba(109,40,217,0.055) 0%, transparent 65%);
      pointer-events: none;
    }
    .fp::after {
      content: '';
      position: absolute;
      width: 640px; height: 640px;
      border-radius: 50%;
      bottom: -80px; left: -180px;
      background: radial-gradient(circle, rgba(99,102,241,0.045) 0%, transparent 65%);
      pointer-events: none;
    }
    .fp__inner {
      max-width: 1280px;
      margin: 0 auto;
    }

    /* ── Header ── */
    .fp__header {
      text-align: center;
      margin-bottom: 80px;
    }
    .fp__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 6px 16px 6px 12px;
      background: rgba(139,92,246,0.08);
      border: 1px solid rgba(139,92,246,0.20);
      border-radius: 100px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.115em;
      text-transform: uppercase;
      color: rgba(196,181,253,0.80);
      margin-bottom: 26px;
      opacity: 0;
      transform: translateY(16px);
    }
    .fp__eyebrow-line {
      width: 18px; height: 1px;
      background: linear-gradient(90deg, var(--c-purple-light), transparent);
    }
    .fp__h2 {
      font-size: clamp(38px, 4.8vw, 66px);
      font-weight: 800;
      line-height: 1.02;
      letter-spacing: -0.04em;
      color: var(--c-white);
      margin-bottom: 18px;
      opacity: 0;
      transform: translateY(20px);
    }
    .fp__h2 em {
      font-style: normal;
      background: linear-gradient(110deg, #c4b5fd 0%, #a78bfa 40%, #8b5cf6 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .fp__sub {
      font-size: 16px;
      font-weight: 400;
      line-height: 1.75;
      color: rgba(255,255,255,0.44);
      max-width: 500px;
      margin: 0 auto;
      opacity: 0;
      transform: translateY(16px);
    }

    /* ── Cards stack ── */
    .fp__stack {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    /* ── Card shell ── */
    .fp-card {
      position: relative;
      overflow: hidden;
      border-radius: 24px;
      border: 1px solid rgba(255,255,255,0.07);
      background: linear-gradient(152deg, rgba(13,8,28,0.97) 0%, rgba(6,3,14,0.99) 100%);
      transition: border-color 0.42s, box-shadow 0.45s;
      opacity: 0;
      transform: translateY(32px);
    }
    /* Top-edge glow line */
    .fp-card::before {
      content: '';
      position: absolute;
      top: 0; left: 15%; right: 15%; height: 1px;
      background: linear-gradient(90deg, transparent, rgba(139,92,246,0.60), transparent);
      opacity: 0.16;
      transition: opacity 0.42s, left 0.42s, right 0.42s;
      z-index: 2;
    }
    /* Inner radial bloom */
    .fp-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 50% at 50% -8%, rgba(109,40,217,0.08) 0%, transparent 68%);
      opacity: 0;
      transition: opacity 0.45s;
      pointer-events: none;
      z-index: 0;
    }
    .fp-card:hover {
      border-color: rgba(139,92,246,0.22);
      box-shadow: 0 28px 80px rgba(0,0,0,0.60), 0 0 56px rgba(124,58,237,0.09);
    }
    .fp-card:hover::before { opacity: 1; left: 0%; right: 0%; }
    .fp-card:hover::after  { opacity: 1; }

    /* ── Two-column inner grid ── */
    .fp-card__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 460px;
      position: relative;
      z-index: 1;
    }
    /* Reverse card: swap col order cleanly */
    .fp-card--rev .fp-card__content { order: 2; }
    .fp-card--rev .fp-card__visual  { order: 1; }

    /* ── Content side ── */
    .fp-card__content {
      padding: 56px 52px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    /* Category pill */
    .fp-card__cat {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 5px 14px 5px 10px;
      background: rgba(139,92,246,0.09);
      border: 1px solid rgba(139,92,246,0.20);
      border-radius: 100px;
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: 0.10em;
      text-transform: uppercase;
      color: rgba(196,181,253,0.82);
      margin-bottom: 26px;
      align-self: flex-start;
    }
    .fp-card__cat-dot {
      width: 5px; height: 5px;
      border-radius: 50%;
      background: var(--c-purple-light);
      box-shadow: 0 0 6px var(--c-purple-light);
      flex-shrink: 0;
    }
    /* Title */
    .fp-card__title {
      font-size: clamp(22px, 2.4vw, 30px);
      font-weight: 800;
      letter-spacing: -0.035em;
      line-height: 1.15;
      color: var(--c-white);
      margin-bottom: 16px;
    }
    /* Description */
    .fp-card__desc {
      font-size: 15px;
      font-weight: 400;
      line-height: 1.76;
      color: rgba(255,255,255,0.47);
      margin-bottom: 24px;
      max-width: 440px;
    }
    .fp-card__desc strong {
      color: rgba(255,255,255,0.76);
      font-weight: 500;
    }
    /* Result badge */
    .fp-card__result {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      padding: 12px 20px;
      background: rgba(139,92,246,0.08);
      border: 1px solid rgba(139,92,246,0.18);
      border-radius: 12px;
      margin-bottom: 28px;
      align-self: flex-start;
    }
    .fp-card__result-num {
      font-size: 28px;
      font-weight: 800;
      letter-spacing: -0.04em;
      line-height: 1;
      background: linear-gradient(110deg, #c4b5fd 0%, #a78bfa 55%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .fp-card__result-divider {
      width: 1px; height: 28px;
      background: rgba(139,92,246,0.25);
      flex-shrink: 0;
    }
    .fp-card__result-label {
      font-size: 12px;
      font-weight: 500;
      color: rgba(255,255,255,0.44);
      line-height: 1.45;
      max-width: 110px;
    }
    /* Tag pills */
    .fp-card__tags {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
      margin-bottom: 36px;
    }
    .fp-card__tag {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.02em;
      color: rgba(255,255,255,0.40);
      padding: 5px 13px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 100px;
      transition: background 0.3s, border-color 0.3s, color 0.3s;
    }
    .fp-card:hover .fp-card__tag {
      background: rgba(139,92,246,0.07);
      border-color: rgba(139,92,246,0.16);
      color: rgba(196,181,253,0.68);
    }

    /* ── Visual side ── */
    .fp-card__visual {
      position: relative;
      overflow: hidden;
      background: rgba(255,255,255,0.018);
      border-left: 1px solid rgba(255,255,255,0.055);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px 36px;
    }
    .fp-card--rev .fp-card__visual {
      border-left: none;
      border-right: 1px solid rgba(255,255,255,0.055);
    }
    /* Ambient glow behind mockup */
    .fp-card__visual::before {
      content: '';
      position: absolute;
      width: 340px; height: 340px;
      border-radius: 50%;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      background: radial-gradient(circle, rgba(109,40,217,0.14) 0%, transparent 65%);
      pointer-events: none;
    }

    /* ── Mockup shell ── */
    .fp-mockup {
      position: relative;
      width: 100%;
      max-width: 420px;
      border-radius: 16px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.09);
      overflow: hidden;
      transition: transform 0.48s var(--ease-out-expo), box-shadow 0.48s;
    }
    .fp-card:hover .fp-mockup {
      transform: translateY(-6px) scale(1.012);
      box-shadow: 0 24px 64px rgba(0,0,0,0.55), 0 0 40px rgba(124,58,237,0.11);
    }
    /* Mock chrome bar */
    .fp-mock-bar {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 12px 16px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      background: rgba(255,255,255,0.025);
    }
    .fp-mock-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,0.12);
      flex-shrink: 0;
    }
    .fp-mock-dot:first-child { background: rgba(239,68,68,0.35); }
    .fp-mock-dot:nth-child(2){ background: rgba(234,179,8,0.35); }
    .fp-mock-dot:nth-child(3){ background: rgba(34,197,94,0.25); }
    .fp-mock-bar-label {
      margin-left: 8px;
      font-size: 11px;
      font-weight: 600;
      color: rgba(255,255,255,0.28);
      letter-spacing: 0.03em;
    }
    /* Mock body */
    .fp-mock-body {
      padding: 20px;
    }
    /* ── Mockup 1: Analytics chart ── */
    .fp-mock-kpis {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-bottom: 18px;
    }
    .fp-mock-kpi {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 10px;
      padding: 10px 12px;
    }
    .fp-mock-kpi-val {
      font-size: 16px;
      font-weight: 800;
      letter-spacing: -0.03em;
      color: var(--c-white);
      display: block;
      margin-bottom: 2px;
    }
    .fp-mock-kpi-lbl {
      font-size: 9.5px;
      font-weight: 600;
      color: rgba(255,255,255,0.30);
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }
    .fp-mock-kpi--accent .fp-mock-kpi-val {
      background: linear-gradient(110deg, #c4b5fd, #a78bfa);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .fp-mock-chart-wrap {
      border-radius: 10px;
      overflow: hidden;
      background: rgba(255,255,255,0.02);
      border: 1px solid rgba(255,255,255,0.05);
      padding: 14px 12px 8px;
    }
    .fp-mock-chart-label {
      font-size: 10px;
      font-weight: 600;
      color: rgba(255,255,255,0.28);
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-bottom: 10px;
    }
    .fp-mock-svg { width: 100%; display: block; }
    .fp-mock-axis-row {
      display: flex;
      justify-content: space-between;
      margin-top: 6px;
    }
    .fp-mock-axis-row span {
      font-size: 9px;
      color: rgba(255,255,255,0.22);
      font-weight: 500;
    }
    /* ── Mockup 2: Audit score ── */
    .fp-mock-score-row {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 18px;
    }
    .fp-mock-gauge-wrap {
      flex-shrink: 0;
      width: 100px; height: 100px;
      position: relative;
    }
    .fp-mock-gauge-wrap svg { width: 100%; height: 100%; }
    .fp-mock-gauge-info {
      flex: 1;
    }
    .fp-mock-gauge-title {
      font-size: 11px;
      font-weight: 700;
      color: rgba(255,255,255,0.35);
      letter-spacing: 0.07em;
      text-transform: uppercase;
      margin-bottom: 6px;
    }
    .fp-mock-gauge-sub {
      font-size: 12.5px;
      color: rgba(255,255,255,0.50);
      line-height: 1.5;
    }
    .fp-mock-vitals {
      display: flex;
      flex-direction: column;
      gap: 9px;
    }
    .fp-mock-vital {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .fp-mock-vital-name {
      font-size: 11px;
      font-weight: 600;
      color: rgba(255,255,255,0.38);
      width: 110px;
      flex-shrink: 0;
    }
    .fp-mock-vital-bar {
      flex: 1;
      height: 4px;
      background: rgba(255,255,255,0.05);
      border-radius: 2px;
      overflow: hidden;
    }
    .fp-mock-vital-fill {
      height: 100%;
      border-radius: 2px;
      background: linear-gradient(90deg, #7c3aed, #a78bfa);
    }
    .fp-mock-vital-score {
      font-size: 11px;
      font-weight: 700;
      color: rgba(167,139,250,0.75);
      width: 28px;
      text-align: right;
      flex-shrink: 0;
    }

    /* ── Responsive ── */
    @media (max-width: 1100px) {
      .fp { padding: 120px 52px 140px; }
      .fp-card__content { padding: 44px 40px; }
      .fp-card__visual { padding: 32px 28px; }
      .fp-card__grid { min-height: 420px; }
    }
    @media (max-width: 900px) {
      .fp { padding: 100px 36px 120px; }
      .fp__header { margin-bottom: 60px; }
      .fp-card__grid {
        grid-template-columns: 1fr;
        min-height: unset;
      }
      .fp-card--rev .fp-card__content { order: unset; }
      .fp-card--rev .fp-card__visual  { order: unset; }
      .fp-card__content { padding: 36px 32px 30px; }
      .fp-card__visual {
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.055);
        padding: 32px 28px;
        min-height: 280px;
      }
      .fp-card--rev .fp-card__visual {
        border-right: none;
        border-top: 1px solid rgba(255,255,255,0.055);
      }
      .fp-card__desc { max-width: 100%; }
    }
    @media (max-width: 600px) {
      .fp { padding: 80px 20px 100px; }
      .fp__h2 { font-size: 36px; }
      .fp__header { margin-bottom: 52px; }
      .fp-card__content { padding: 28px 22px 24px; }
      .fp-card__title { font-size: 21px; }
      .fp-card__result-num { font-size: 24px; }
      .fp-card__visual { padding: 24px 20px; min-height: 240px; }
    }

    /* ─────────────────────────────────────────────
       MARQUEE STRIP
    ───────────────────────────────────────────── */
    .mq {
      position: relative;
      overflow: hidden;
      border-top:    1px solid rgba(255,255,255,0.055);
      border-bottom: 1px solid rgba(255,255,255,0.055);
      background: var(--c-bg);
      /* Edge fade masks */
      -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
      );
      mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
      );
    }

    /* ── Each scrolling row ── */
    .mq__row {
      display: flex;
      overflow: hidden;
      padding: 18px 0;
    }
    .mq__row + .mq__row {
      padding-top: 0;
      border-top: 1px solid rgba(255,255,255,0.04);
    }

    /* ── Track: two identical sets side by side ── */
    .mq__track {
      display: flex;
      align-items: center;
      width: max-content;
      /* translateX from 0 → -50% = exactly one full set */
      animation: mqLeft 32s linear infinite;
      will-change: transform;
    }
    .mq__track--rev {
      animation-name: mqRight;
      animation-duration: 40s;
    }

    /* Pause on hover */
    .mq:hover .mq__track {
      animation-play-state: paused;
    }

    @keyframes mqLeft {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    @keyframes mqRight {
      from { transform: translateX(-50%); }
      to   { transform: translateX(0); }
    }

    /* ── Item ── */
    .mq__item {
      display: inline-flex;
      align-items: center;
      white-space: nowrap;
      font-size: clamp(14px, 1.6vw, 20px);
      font-weight: 700;
      letter-spacing: -0.01em;
      color: rgba(255,255,255,0.68);
      padding: 0 6px;
      transition: color 0.25s;
      user-select: none;
    }
    .mq__row--dim .mq__item {
      font-size: clamp(12px, 1.3vw, 17px);
      font-weight: 600;
      color: rgba(255,255,255,0.28);
    }

    /* ── Separator ── */
    .mq__sep {
      display: inline-block;
      color: var(--c-purple-light);
      font-size: 0.65em;
      margin: 0 20px;
      opacity: 0.75;
      flex-shrink: 0;
      vertical-align: middle;
      position: relative;
      top: -1px;
    }
    .mq__row--dim .mq__sep {
      color: rgba(139,92,246,0.45);
      margin: 0 16px;
    }

    /* ─────────────────────────────────────────────
       WHAT YOU WILL GET
    ───────────────────────────────────────────── */
    .wyg {
      position: relative;
      padding: 140px 64px 160px;
      overflow: hidden;
    }
    .wyg::before {
      content: '';
      position: absolute;
      width: 860px; height: 860px; border-radius: 50%;
      top: -160px; left: -240px;
      background: radial-gradient(circle, rgba(109,40,217,0.055) 0%, transparent 65%);
      pointer-events: none;
    }
    .wyg::after {
      content: '';
      position: absolute;
      width: 700px; height: 700px; border-radius: 50%;
      bottom: -100px; right: -200px;
      background: radial-gradient(circle, rgba(99,102,241,0.045) 0%, transparent 65%);
      pointer-events: none;
    }
    .wyg__inner {
      max-width: 1280px;
      margin: 0 auto;
    }

    /* ── Header ── */
    .wyg__header {
      text-align: center;
      margin-bottom: 72px;
    }
    .wyg__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 6px 16px 6px 12px;
      background: rgba(139,92,246,0.08);
      border: 1px solid rgba(139,92,246,0.20);
      border-radius: 100px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.115em;
      text-transform: uppercase;
      color: rgba(196,181,253,0.80);
      margin-bottom: 26px;
      opacity: 0;
      transform: translateY(16px);
    }
    .wyg__eyebrow-line {
      width: 18px; height: 1px;
      background: linear-gradient(90deg, var(--c-purple-light), transparent);
    }
    .wyg__h2 {
      font-size: clamp(38px, 4.8vw, 66px);
      font-weight: 800;
      line-height: 1.02;
      letter-spacing: -0.04em;
      color: var(--c-white);
      margin-bottom: 18px;
      opacity: 0;
      transform: translateY(20px);
    }
    .wyg__h2 em {
      font-style: normal;
      background: linear-gradient(110deg, #c4b5fd 0%, #a78bfa 40%, #8b5cf6 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .wyg__sub {
      font-size: 16px;
      font-weight: 400;
      line-height: 1.75;
      color: rgba(255,255,255,0.44);
      max-width: 480px;
      margin: 0 auto;
      opacity: 0;
      transform: translateY(16px);
    }

    /* ── Card grids ── */
    .wyg__top {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-bottom: 16px;
    }
    .wyg__bot {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin-bottom: 56px;
    }

    /* ── Card shell ── */
    .wyg-card {
      position: relative;
      overflow: hidden;
      border-radius: 20px;
      border: 1px solid rgba(255,255,255,0.07);
      background: linear-gradient(150deg, rgba(13,8,27,0.97) 0%, rgba(7,4,15,0.99) 100%);
      padding: 34px 30px 30px;
      transition:
        transform 0.42s var(--ease-out-expo),
        border-color 0.4s,
        box-shadow 0.42s;
      opacity: 0;
      transform: translateY(24px);
    }
    /* Top-edge glow */
    .wyg-card::before {
      content: '';
      position: absolute;
      top: 0; left: 18%; right: 18%; height: 1px;
      background: linear-gradient(90deg, transparent, rgba(139,92,246,0.58), transparent);
      opacity: 0.14;
      transition: opacity 0.4s, left 0.4s, right 0.4s;
    }
    /* Inner radial bloom */
    .wyg-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 52% at 50% -6%, rgba(109,40,217,0.09) 0%, transparent 66%);
      opacity: 0;
      transition: opacity 0.42s;
      pointer-events: none;
    }
    .wyg-card:hover {
      transform: translateY(-6px);
      border-color: rgba(139,92,246,0.23);
      box-shadow: 0 20px 56px rgba(0,0,0,0.55), 0 0 44px rgba(124,58,237,0.09);
    }
    .wyg-card:hover::before { opacity: 1; left: 0%; right: 0%; }
    .wyg-card:hover::after  { opacity: 1; }

    /* ── Card head: icon left, abstract art right ── */
    .wyg-card__head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      margin-bottom: 24px;
      position: relative;
      z-index: 1;
    }
    .wyg-card__icon {
      width: 44px; height: 44px;
      border-radius: 12px;
      background: rgba(139,92,246,0.10);
      border: 1px solid rgba(139,92,246,0.20);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--c-purple-light);
      flex-shrink: 0;
      transition: background 0.38s, border-color 0.38s, box-shadow 0.38s;
    }
    .wyg-card:hover .wyg-card__icon {
      background: rgba(139,92,246,0.18);
      border-color: rgba(139,92,246,0.38);
      box-shadow: 0 0 18px rgba(124,58,237,0.20);
    }
    .wyg-card__art {
      flex-shrink: 0;
      opacity: 0.38;
      transition: opacity 0.42s;
      display: block;
    }
    .wyg-card:hover .wyg-card__art { opacity: 0.68; }

    /* ── Card text ── */
    .wyg-card__title {
      font-size: 17px;
      font-weight: 800;
      letter-spacing: -0.025em;
      line-height: 1.22;
      color: var(--c-white);
      margin-bottom: 10px;
      position: relative; z-index: 1;
    }
    .wyg-card--wide .wyg-card__title { font-size: 19px; }
    .wyg-card__desc {
      font-size: 13.5px;
      font-weight: 400;
      line-height: 1.72;
      color: rgba(255,255,255,0.43);
      position: relative; z-index: 1;
    }
    .wyg-card--wide .wyg-card__desc { font-size: 14.5px; }

    /* ── Pills row ── */
    .wyg__pills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: center;
    }
    .wyg__pill {
      font-size: 11.5px;
      font-weight: 600;
      letter-spacing: 0.025em;
      color: rgba(255,255,255,0.36);
      padding: 6px 16px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 100px;
      transition: background 0.3s, border-color 0.3s, color 0.3s;
      cursor: default;
    }
    .wyg__pill:hover {
      background: rgba(139,92,246,0.08);
      border-color: rgba(139,92,246,0.20);
      color: rgba(196,181,253,0.72);
    }

    /* ── Responsive ── */
    @media (max-width: 1100px) {
      .wyg { padding: 120px 52px 140px; }
    }
    @media (max-width: 900px) {
      .wyg { padding: 100px 36px 120px; }
      .wyg__top { grid-template-columns: repeat(2, 1fr); }
      .wyg__bot { grid-template-columns: 1fr; }
    }
    @media (max-width: 600px) {
      .wyg { padding: 80px 20px 100px; }
      .wyg__top { grid-template-columns: 1fr; }
      .wyg__h2 { font-size: 34px; }
      .wyg__header { margin-bottom: 52px; }
      .wyg-card { padding: 28px 24px 26px; }
      .wyg-card__title { font-size: 16px; }
      .wyg-card--wide .wyg-card__title { font-size: 17px; }
    }

/* Screen-reader utility */
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

/* ═══════════════════════════════════════════════════════════
   PRICING SECTION
   Appended — does not touch or override any existing styles
═══════════════════════════════════════════════════════════ */

/* ── Section shell ─────────────────────────────────────── */
.pricing {
  position: relative;
  width: 100%;
  padding: 120px 24px;
  background: var(--c-bg);
  overflow: hidden;
}

.pricing__inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
}

/* ── Ambient glows ─────────────────────────────────────── */
.pricing__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  z-index: 0;
}
.pricing__glow--top {
  width: 700px;
  height: 500px;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(124,58,237,0.13), transparent 70%);
}
.pricing__glow--bottom {
  width: 500px;
  height: 400px;
  bottom: -120px;
  right: -80px;
  background: radial-gradient(ellipse at center, rgba(99,102,241,0.09), transparent 70%);
}

/* ── Header ────────────────────────────────────────────── */
.pricing__header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 64px;
}

.pricing__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 12px;
  border: 1px solid rgba(139,92,246,0.28);
  border-radius: 100px;
  background: rgba(139,92,246,0.07);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-purple-light);
  margin-bottom: 28px;
}

.pricing__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-purple-light);
  box-shadow: 0 0 8px rgba(167,139,250,0.7);
  flex-shrink: 0;
  animation: dotPulse 2.2s ease-out infinite;
}

.pricing__h2 {
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--c-white);
}
.pricing__h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--c-purple-mid) 0%, var(--c-purple-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Grid ──────────────────────────────────────────────── */
.pricing__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

/* ── Card base ─────────────────────────────────────────── */
.pricing__card {
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(139,92,246,0.14);
  background: rgba(255,255,255,0.033);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 0.25s var(--ease-out-expo),
              border-color 0.25s ease,
              box-shadow 0.25s ease;
  backdrop-filter: blur(12px);
  overflow: hidden;
}
.pricing__card:hover {
  transform: translateY(-6px) scale(1.015);
  border-color: rgba(139,92,246,0.35);
  box-shadow: 0 24px 60px rgba(109,40,217,0.22);
}

/* ── Featured card overrides ───────────────────────────── */
.pricing__card--featured {
  border-color: rgba(139,92,246,0.40);
  background: rgba(139,92,246,0.07);
  box-shadow: 0 0 0 1px rgba(139,92,246,0.20),
              0 16px 48px rgba(109,40,217,0.20);
}
.pricing__card--featured:hover {
  box-shadow: 0 24px 72px rgba(109,40,217,0.35);
}

/* Soft internal glow for featured card */
.pricing__card-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(124,58,237,0.22), transparent 70%);
  pointer-events: none;
  filter: blur(30px);
}

/* ── Card top block ────────────────────────────────────── */
.pricing__card-top {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.pricing__featured-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 4px 12px;
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(124,58,237,0.45) 0%, rgba(139,92,246,0.45) 100%);
  border: 1px solid rgba(167,139,250,0.35);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-purple-light);
}

.pricing__card-label {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--c-white);
  line-height: 1.3;
}
.pricing__card--featured .pricing__card-label {
  color: #fff;
}

.pricing__price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.pricing__price {
  font-size: clamp(34px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--c-white);
}
.pricing__card--featured .pricing__price {
  background: linear-gradient(135deg, #fff 0%, var(--c-purple-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing__price-sub {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-white-40);
  letter-spacing: 0;
}

.pricing__card-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-white-40);
}

/* ── Buttons ───────────────────────────────────────────── */
.pricing__btn {
  display: block;
  width: 100%;
  padding: 12px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.22s var(--ease-out-expo);
}

.pricing__btn--outline {
  background: transparent;
  border: 1px solid rgba(139,92,246,0.35);
  color: var(--c-white-60);
}
.pricing__btn--outline:hover {
  border-color: rgba(139,92,246,0.7);
  background: rgba(139,92,246,0.06);
  color: var(--c-white);
}

.pricing__btn--gradient {
  background: linear-gradient(135deg, var(--c-purple) 0%, var(--c-purple-mid) 100%);
  border: 1px solid transparent;
  color: #fff;
  box-shadow: 0 4px 24px rgba(124,58,237,0.40);
}
.pricing__btn--gradient:hover {
  background: linear-gradient(135deg, #6d28d9 0%, var(--c-purple) 100%);
  box-shadow: 0 8px 36px rgba(124,58,237,0.55);
  transform: translateY(-1px);
}

/* ── Divider ───────────────────────────────────────────── */
.pricing__divider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 4px 0 24px;
}
.pricing__divider::before,
.pricing__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.07);
}

.pricing__divider-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-white-40);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Features list ─────────────────────────────────────── */
.pricing__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-white-60);
}

.pricing__check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(139,92,246,0.15);
  border: 1px solid rgba(139,92,246,0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-purple-light);
  margin-top: 1px;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.pricing__card:hover .pricing__check {
  background: rgba(139,92,246,0.25);
  box-shadow: 0 0 10px rgba(124,58,237,0.30);
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing__card--featured {
    grid-column: 1 / -1;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .pricing {
    padding: 80px 20px;
  }
  .pricing__grid {
    grid-template-columns: 1fr;
  }
  .pricing__card--featured {
    grid-column: auto;
    max-width: none;
    margin: 0;
  }
  .pricing__h2 {
    font-size: 30px;
  }
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS SECTION
   Appended — zero impact on existing styles
═══════════════════════════════════════════════════════════ */

/* ── Section shell ─────────────────────────────────────── */
.testi {
  position: relative;
  width: 100%;
  padding: 120px 24px;
  background: var(--c-bg);
  overflow: hidden;
}

.testi__inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
}

/* ── Background glow effects ───────────────────────────── */
.testi__glow {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

/* Diagonal soft streak — top center drifting right */
.testi__glow--streak {
  width: 900px;
  height: 340px;
  top: -80px;
  left: 50%;
  transform: translateX(-60%) rotate(-18deg);
  background: linear-gradient(
    105deg,
    rgba(124, 58, 237, 0.11) 0%,
    rgba(192, 80, 196, 0.07) 40%,
    rgba(234, 120, 80, 0.04) 75%,
    transparent 100%
  );
  filter: blur(72px);
  z-index: 0;
}

/* Soft orb — lower left */
.testi__glow--orb {
  width: 480px;
  height: 380px;
  bottom: -80px;
  left: -100px;
  background: radial-gradient(ellipse at center, rgba(99,102,241,0.08), transparent 70%);
  filter: blur(80px);
  z-index: 0;
}

/* ── Header ────────────────────────────────────────────── */
.testi__header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 64px;
}

.testi__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 12px;
  border: 1px solid rgba(139,92,246,0.28);
  border-radius: 100px;
  background: rgba(139,92,246,0.07);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--c-purple-light);
  margin-bottom: 28px;
}

.testi__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-purple-light);
  box-shadow: 0 0 8px rgba(167,139,250,0.70);
  flex-shrink: 0;
  animation: dotPulse 2.2s ease-out infinite;
}

.testi__h2 {
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--c-white);
}
.testi__h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--c-purple-mid) 0%, var(--c-purple-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Grid ──────────────────────────────────────────────── */
.testi__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

/* ── Card base ─────────────────────────────────────────── */
.testi__card {
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(139,92,246,0.13);
  background: rgba(255,255,255,0.03);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
  transition: transform 0.25s var(--ease-out-expo),
              border-color 0.25s ease,
              box-shadow 0.25s ease;
}
.testi__card:hover {
  transform: translateY(-6px);
  border-color: rgba(139,92,246,0.32);
  box-shadow: 0 20px 56px rgba(109,40,217,0.18);
}

/* ── Featured card ─────────────────────────────────────── */
.testi__card--featured {
  border-color: rgba(139,92,246,0.38);
  background: rgba(139,92,246,0.065);
  box-shadow: 0 0 0 1px rgba(139,92,246,0.18),
              0 16px 48px rgba(109,40,217,0.18);
}
.testi__card--featured:hover {
  box-shadow: 0 0 0 1px rgba(139,92,246,0.28),
              0 24px 72px rgba(109,40,217,0.30);
}

/* Inner ambient glow for featured card */
.testi__card-inner-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 340px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(124,58,237,0.20), transparent 70%);
  filter: blur(36px);
  pointer-events: none;
}

/* ── Quote icon ────────────────────────────────────────── */
.testi__quote-icon {
  color: rgba(139,92,246,0.22);
  margin-bottom: 20px;
  flex-shrink: 0;
}
.testi__quote-icon--featured {
  color: rgba(167,139,250,0.38);
}

/* ── Testimonial text ──────────────────────────────────── */
.testi__text {
  font-size: 15px;
  line-height: 1.78;
  color: var(--c-white-60);
  flex: 1;
  margin: 0;
  quotes: none;
}
.testi__card--featured .testi__text {
  color: rgba(255,255,255,0.72);
}

/* ── Author block ──────────────────────────────────────── */
.testi__author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.testi__avatar {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: 1.5px solid rgba(139,92,246,0.30);
}

/* Unique per-avatar gradient backgrounds */
.testi__avatar--kw {
  background: linear-gradient(135deg, rgba(124,58,237,0.50) 0%, rgba(99,102,241,0.35) 100%);
  color: var(--c-purple-light);
}
.testi__avatar--mm {
  background: linear-gradient(135deg, rgba(139,92,246,0.45) 0%, rgba(167,139,250,0.30) 100%);
  color: #c4b5fd;
}

.testi__author-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.testi__author-name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--c-white);
}

.testi__author-role {
  font-size: 12px;
  font-weight: 500;
  color: var(--c-white-40);
  letter-spacing: 0.01em;
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .testi__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testi__card--featured {
    grid-column: 1 / -1;
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .testi {
    padding: 80px 20px;
  }
  .testi__grid {
    grid-template-columns: 1fr;
  }
  .testi__card--featured {
    grid-column: auto;
    max-width: none;
    margin: 0;
  }
  .testi__h2 {
    font-size: 30px;
  }
  .testi__text {
    font-size: 14px;
  }
}

/* ── Shared eyebrow dot animation (used by pricing & testi sections) ── */
@keyframes dotPulse {
  0%   { box-shadow: 0 0 0 0   rgba(167,139,250,0.60); }
  70%  { box-shadow: 0 0 0 7px rgba(167,139,250,0.00); }
  100% { box-shadow: 0 0 0 0   rgba(167,139,250,0.00); }
}

/* ═══════════════════════════════════════════════════════════
   SITE FOOTER
   Appended — zero impact on existing styles
═══════════════════════════════════════════════════════════ */

/* ── Outer shell ───────────────────────────────────────── */
.site-footer {
  width: 100%;
  background: var(--c-bg);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 80px 24px 40px;
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── 4-column grid ─────────────────────────────────────── */
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 0;
}

/* ── Brand column ──────────────────────────────────────── */
.site-footer__logo {
  display: inline-block;
  margin-bottom: 18px;
}
.site-footer__logo img {
  height: 90px;
  width: auto;
  display: block;
}

.site-footer__brand-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--c-white-40);
  max-width: 260px;
}

/* ── Column shared styles ──────────────────────────────── */
.site-footer__col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--c-white-60);
  margin-bottom: 20px;
}

/* ── Nav links list ────────────────────────────────────── */
.site-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.site-footer__links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  color: var(--c-white-40);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}
.site-footer__links a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--c-purple-light);
  transition: width 0.22s var(--ease-out-expo);
}
.site-footer__links a:hover {
  color: var(--c-white);
}
.site-footer__links a:hover::after {
  width: 100%;
}

/* Social icon color on hover */
.site-footer__links a svg {
  opacity: 0.45;
  flex-shrink: 0;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.site-footer__links a:hover svg {
  opacity: 1;
  color: var(--c-purple-light);
}

/* ── Contact list ──────────────────────────────────────── */
.site-footer__contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.site-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.site-footer__contact-icon {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--c-purple-light);
  opacity: 0.65;
}

.site-footer__contact a {
  font-size: 14px;
  font-weight: 400;
  color: var(--c-white-40);
  text-decoration: none;
  word-break: break-all;
  transition: color 0.2s ease;
  line-height: 1.5;
}
.site-footer__contact a:hover {
  color: var(--c-white);
}

/* ── Divider ───────────────────────────────────────────── */
.site-footer__divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 60px 0 24px;
}

/* ── Bottom bar ────────────────────────────────────────── */
.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer__copy {
  font-size: 13px;
  color: var(--c-white-40);
  font-weight: 400;
}

.site-footer__legal {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-footer__legal a {
  font-size: 13px;
  color: var(--c-white-40);
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-footer__legal a:hover {
  color: var(--c-white);
}

/* ── Responsive — tablet ───────────────────────────────── */
@media (max-width: 900px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
  }
  .site-footer__col--brand {
    grid-column: 1 / -1;
  }
  .site-footer__brand-desc {
    max-width: 100%;
  }
}

/* ── Responsive — mobile ───────────────────────────────── */
@media (max-width: 560px) {
  .site-footer {
    padding: 60px 20px 32px;
    text-align: center;
  }
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .site-footer__col--brand {
    grid-column: auto;
  }
  .site-footer__logo {
    margin: 0 auto 18px;
  }
  .site-footer__brand-desc {
    margin: 0 auto;
  }
  .site-footer__links,
  .site-footer__contact {
    align-items: center;
  }
  .site-footer__contact li {
    justify-content: center;
  }
  .site-footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .site-footer__divider {
    margin: 48px 0 24px;
  }
}
