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

    :root {
      /* Brand */
      --primary: hsl(163, 75%, 33%);
      --primary-dark: hsl(163, 75%, 25%);
      --primary-light: hsl(163, 75%, 55%);
      --primary-glow: hsla(163, 75%, 33%, 0.2);
      --secondary: hsl(163, 40%, 50%);
      --accent: hsl(48, 98%, 60%);

      /* Scores */
      --score-excellent: hsl(163, 75%, 35%);
      --score-good: hsl(142, 55%, 42%);
      --score-average: hsl(38, 90%, 48%);
      --score-poor: hsl(0, 72%, 51%);

      /* Light theme */
      --bg: hsl(0, 0%, 98%);
      --bg-alt: hsl(0, 0%, 100%);
      --surface: hsl(0, 0%, 100%);
      --surface-2: hsl(240, 10%, 94%);
      --border: hsl(240, 10%, 88%);
      --text: hsl(240, 20%, 10%);
      --text-muted: hsl(240, 8%, 46%);
      --nav-bg: rgba(255, 255, 255, 0.85);
      --hero-gradient: linear-gradient(135deg, #00c896, #00a878);
      --card-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px -4px rgba(0,0,0,0.07);
      --card-shadow-hover: 0 4px 12px rgba(0,0,0,0.08), 0 12px 32px -4px rgba(0,0,0,0.1);

      /* Sizing */
      --radius: 0.75rem;
      --radius-sm: 0.5rem;
      --radius-lg: 1rem;
      --nav-h: 72px;

      /* Transitions */
      --ease: cubic-bezier(.22, .68, 0, 1.2);
      --ease-out: cubic-bezier(0, .8, .32, 1);
    }

    .dark {
      --primary: hsl(163, 100%, 39%);
      --primary-dark: hsl(163, 80%, 30%);
      --primary-light: hsl(163, 80%, 60%);
      --primary-glow: hsla(163, 100%, 39%, 0.22);
      --secondary: hsl(163, 60%, 45%);
      --bg: hsl(240, 43%, 4%);
      --bg-alt: hsl(240, 43%, 3%);
      --surface: hsl(240, 22%, 12%);
      --surface-2: hsl(240, 16%, 18%);
      --border: hsl(240, 14%, 24%);
      --text: hsl(240, 15%, 98%);
      --text-muted: hsl(240, 10%, 68%);
      --nav-bg: rgba(10, 10, 15, 0.88);
      --hero-gradient: linear-gradient(135deg, #00c896 0%, #00a878 100%);
      --card-shadow: 0 1px 3px rgba(0,0,0,0.4), 0 4px 24px -4px rgba(0,200,150,0.06);
      --card-shadow-hover: 0 4px 16px rgba(0,0,0,0.5), 0 12px 40px -4px rgba(0,200,150,0.14);
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
      transition: background 0.35s ease, color 0.35s ease;
    }

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

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

    /* ── SCROLLBAR ─────────────────────────────────── */
    ::-webkit-scrollbar {
      width: 6px;
    }

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

    ::-webkit-scrollbar-thumb {
      background: var(--primary);
      border-radius: 3px;
    }

    /* ── SELECTION ─────────────────────────────────── */
    ::selection {
      background: var(--primary);
      color: #fff;
    }

    /* ── NAV ───────────────────────────────────────── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      height: var(--nav-h);
      background: var(--nav-bg);
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 5vw;
      transition: all 0.3s ease;
    }

    nav.scrolled {
      box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .nav-logo img {
      height: 38px;
      width: auto;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 8px;
      list-style: none;
    }

    .nav-links a {
      padding: 8px 16px;
      border-radius: var(--radius-sm);
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--text-muted);
      transition: all 0.2s;
      white-space: nowrap;
    }

    .nav-links a:hover {
      color: var(--text);
      background: var(--surface-2);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    /* ── BUTTONS ───────────────────────────────────── */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 26px;
      border-radius: 100px;
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem;
      font-weight: 600;
      cursor: pointer;
      border: none;
      transition: all 0.25s var(--ease);
      position: relative;
      overflow: hidden;
      text-wrap: nowrap;
    }

    .btn::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(255, 255, 255, 0.15);
      opacity: 0;
      transition: opacity 0.2s;
    }

    .btn:hover::after {
      opacity: 1;
    }

    .btn:active {
      transform: scale(0.97);
    }

    .btn-primary {
      background: var(--hero-gradient);
      color: #fff;
      box-shadow: 0 4px 20px rgba(0,200,150,0.35);
    }

    .btn-primary:hover {
      box-shadow: 0 8px 32px rgba(0,200,150,0.5);
      transform: translateY(-2px);
    }

    .btn-outline {
      background: transparent;
      color: var(--primary);
      border: 2px solid var(--primary);
    }

    .btn-outline:hover {
      background: var(--primary);
      color: #fff;
      transform: translateY(-2px);
    }

    .btn-ghost {
      background: var(--surface-2);
      color: var(--text);
    }

    .btn-ghost:hover {
      background: var(--border);
      transform: translateY(-1px);
    }

    .btn-lg {
      padding: 16px 36px;
      font-size: 1rem;
    }

    .btn-sm {
      padding: 8px 18px;
      font-size: 0.82rem;
    }

    /* ── THEME TOGGLE ──────────────────────────────── */
    .theme-toggle {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--surface-2);
      border: 1px solid var(--border);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      transition: all 0.25s var(--ease);
      color: var(--text);
    }

    .theme-toggle:hover {
      background: var(--primary);
      color: #fff;
      transform: rotate(20deg) scale(1.05);
    }

    /* ── MOBILE MENU ───────────────────────────────── */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
      border-radius: var(--radius-sm);
      background: none;
      border: none;
    }

    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--text);
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    .mobile-menu {
      display: none;
      position: fixed;
      top: var(--nav-h);
      left: 0;
      right: 0;
      background: var(--surface);
      border-bottom: 1px solid var(--border);
      padding: 20px 5vw 28px;
      z-index: 99;
      flex-direction: column;
      gap: 8px;
      box-shadow: 0 20px 40px hsl(0 0% 0% / 0.1);
    }

    .mobile-menu.open {
      display: flex;
    }

    .mobile-menu a {
      padding: 12px 16px;
      border-radius: var(--radius-sm);
      font-weight: 500;
    }

    .mobile-menu a:hover {
      background: var(--surface-2);
    }

    /* ── SECTION LAYOUT ────────────────────────────── */
    section {
      padding: 100px 5vw;
    }

    .container {
      max-width: 1120px;
      margin: 0 auto;
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--primary-glow);
      border: 1px solid hsla(163, 75%, 33%, 0.3);
      color: var(--primary);
      padding: 6px 16px;
      border-radius: 100px;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      font-family: 'Inter', sans-serif;
      margin-bottom: 20px;
    }

    .section-title {
      font-family: 'Inter', sans-serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      line-height: 1.15;
      margin-bottom: 16px;
    }

    .section-subtitle {
      font-size: 1.1rem;
      color: var(--text-muted);
      max-width: 540px;
      line-height: 1.7;
    }

    .text-gradient {
      background: var(--hero-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* ── HERO ──────────────────────────────────────── */
    #hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding-top: calc(var(--nav-h) + 40px);
      position: relative;
      overflow: hidden;
    }

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

    .hero-blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.18;
      animation: blobFloat 8s ease-in-out infinite alternate;
    }

    .blob-1 {
      width: 700px;
      height: 700px;
      background: var(--primary);
      top: -200px;
      right: -150px;
    }

    .blob-2 {
      width: 500px;
      height: 500px;
      background: var(--secondary);
      bottom: -100px;
      left: -100px;
      animation-delay: -4s;
      animation-duration: 10s;
    }

    .blob-3 {
      width: 350px;
      height: 350px;
      background: var(--accent);
      top: 40%;
      right: 20%;
      animation-delay: -2s;
      animation-duration: 7s;
    }

    @keyframes blobFloat {
      from {
        transform: translate(0, 0) scale(1);
      }

      to {
        transform: translate(30px, 20px) scale(1.05);
      }
    }

    .hero-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
      background-size: 60px 60px;
      opacity: 0.35;
      mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black, transparent);
    }

    .hero-content {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 60px;
      max-width: 1120px;
      margin: 0 auto;
      width: 100%;
    }

    .hero-text {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--surface);
      border: 1px solid var(--border);
      padding: 8px 16px;
      border-radius: 100px;
      font-size: 0.82rem;
      font-weight: 500;
      margin-bottom: 28px;
      box-shadow: var(--card-shadow);
      color: var(--text-muted);
    }

    .hero-badge .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--secondary);
      animation: pulse 2s ease infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: 0.5;
        transform: scale(0.85);
      }
    }

    .hero-title {
      font-family: 'Inter', sans-serif;
      font-size: clamp(2.4rem, 5vw, 3.8rem);
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 20px;
    }

    .hero-desc {
      font-size: 1.1rem;
      color: var(--text-muted);
      line-height: 1.75;
      margin-bottom: 20px;
      max-width: 440px;
    }

    .hero-definition {
      font-size: 1rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 36px;
      max-width: 440px;
    }

    .hero-cta {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .hero-social-proof {
      margin-top: 48px;
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .avatars {
      display: flex;
    }

    .avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 2px solid var(--bg);
      overflow: hidden;
      margin-left: -10px;
      background: var(--surface-2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--primary);
    }

    .avatar:first-child {
      margin-left: 0;
    }

    .proof-text {
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    .proof-text strong {
      color: var(--text);
    }

    /* ── HERO MOCKUP ───────────────────────────────── */
    .hero-visual {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .mockup-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 32px;
      box-shadow: var(--card-shadow-hover);
      width: 100%;
      max-width: 420px;
      position: relative;
      z-index: 2;
      animation: floatCard 5s ease-in-out infinite;
    }

    @keyframes floatCard {

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

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

    .mockup-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 24px;
    }

    .mockup-title {
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
    }

    .mockup-label {
      font-size: 0.75rem;
      color: var(--text-muted);
    }

    .score-ring-wrapper {
      display: flex;
      justify-content: center;
      margin-bottom: 24px;
    }

    .score-ring {
      position: relative;
      width: 120px;
      height: 120px;
    }

    .score-ring svg {
      transform: rotate(-90deg);
    }

    .score-ring-bg {
      stroke: var(--surface-2);
    }

    .score-ring-fill {
      stroke: url(#scoreGrad);
      stroke-linecap: round;
      stroke-dasharray: 314;
      stroke-dashoffset: 314;
      transition: stroke-dashoffset 2s var(--ease-out);
    }

    .score-ring-fill.animated {
      stroke-dashoffset: 60;
    }

    .score-number {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .score-num {
      font-family: 'Inter', sans-serif;
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--primary);
      line-height: 1;
    }

    .score-of {
      font-size: 0.7rem;
      color: var(--text-muted);
      margin-top: 2px;
    }

    .score-label {
      text-align: center;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--score-excellent);
      margin-bottom: 20px;
    }

    .mockup-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 16px;
    }

    .chip {
      padding: 5px 12px;
      border-radius: 100px;
      font-size: 0.75rem;
      font-weight: 500;
    }

    .chip-red {
      background: hsl(0 72% 51% / 0.12);
      color: hsl(0 72% 51%);
    }

    .chip-yellow {
      background: hsl(48 98% 50% / 0.15);
      color: hsl(38 90% 40%);
    }

    .chip-green {
      background: hsl(142 71% 45% / 0.12);
      color: hsl(142 71% 40%);
    }

    .mockup-bar {
      margin-top: 16px;
    }

    .bar-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 8px;
      font-size: 0.8rem;
    }

    .bar-track {
      height: 6px;
      background: var(--surface-2);
      border-radius: 3px;
      overflow: hidden;
    }

    .bar-fill {
      height: 100%;
      border-radius: 3px;
      background: var(--hero-gradient);
      width: 0%;
      transition: width 1.8s var(--ease-out);
    }

    .bar-fill.animated {
      width: var(--w);
    }

    .mini-badge {
      position: absolute;
      z-index: 3;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 12px 16px;
      box-shadow: var(--card-shadow-hover);
      display: flex;
      align-items: center;
      gap: 10px;
      animation: floatCard 6s ease-in-out infinite;
    }

    .mini-badge.top-left {
      top: 10px;
      left: -30px;
      animation-delay: -2s;
    }

    .mini-badge.bottom-right {
      bottom: 20px;
      right: -30px;
      animation-delay: -4s;
    }

    .mini-icon {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
    }

    .mini-icon.green {
      background: hsl(142 71% 45% / 0.15);
    }

    .mini-icon.blue {
      background: hsla(163, 75%, 33%, 0.15);
    }

    .mini-badge-text {
      font-size: 0.75rem;
    }

    .mini-badge-text strong {
      display: block;
      font-weight: 700;
      font-size: 0.85rem;
    }

    .mini-badge-text span {
      color: var(--text-muted);
    }

    /* ── FEATURES / HOW IT WORKS ───────────────────── */
    #how {
      background: var(--bg-alt);
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      margin-top: 60px;
    }

    .step-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 36px 32px;
      box-shadow: var(--card-shadow);
      transition: all 0.35s var(--ease);
      position: relative;
      overflow: hidden;
    }

    .step-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--hero-gradient);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s var(--ease);
    }

    .step-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--card-shadow-hover);
    }

    .step-card:hover::before {
      transform: scaleX(1);
    }

    .step-num {
      font-family: 'Inter', sans-serif;
      font-size: 3.5rem;
      font-weight: 800;
      color: var(--primary);
      line-height: 1;
      margin-bottom: 12px;
    }

    .step-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: hsla(163, 75%, 33%, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 20px;
    }

    .step-title {
      font-family: 'Inter', sans-serif;
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .step-desc {
      font-size: 0.92rem;
      color: var(--text-muted);
      line-height: 1.65;
    }

    /* ── FEATURES BENTO ────────────────────────────── */
    #features {
      background: var(--bg);
    }

    .bento {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-template-rows: auto;
      gap: 20px;
      margin-top: 60px;
    }

    .bento-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 36px;
      box-shadow: var(--card-shadow);
      transition: all 0.35s var(--ease);
      overflow: hidden;
      position: relative;
    }

    .bento-card:hover {
      box-shadow: var(--card-shadow-hover);
      transform: translateY(-4px);
    }

    .bento-1 {
      grid-column: span 7;
    }

    .bento-2 {
      grid-column: span 5;
    }

    .bento-3 {
      grid-column: span 4;
    }

    .bento-4 {
      grid-column: span 4;
    }

    .bento-5 {
      grid-column: span 4;
    }

    .bento-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 20px;
    }

    .bg-blue {
      background: hsla(163, 75%, 33%, 0.12);
    }

    .bg-green {
      background: hsl(88 50% 53% / 0.12);
    }

    .bg-yellow {
      background: hsl(48 98% 60% / 0.15);
    }

    .bg-red {
      background: hsl(0 72% 51% / 0.12);
    }

    .bg-purple {
      background: hsl(270 60% 60% / 0.12);
    }

    .bento-title {
      font-family: 'Inter', sans-serif;
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .bento-desc {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.65;
    }

    /* Score demo visual */
    .score-demo {
      margin-top: 24px;
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .score-pill {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      border-radius: 100px;
      font-size: 0.82rem;
      font-weight: 600;
    }

    .score-pill .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
    }

    .pill-excellent {
      background: hsla(163, 75%, 33%, 0.12);
      color: hsl(163, 75%, 33%);
    }

    .pill-excellent .dot {
      background: hsl(163, 75%, 33%);
    }

    .pill-good {
      background: hsl(88 50% 53% / 0.12);
      color: hsl(88 50% 40%);
    }

    .pill-good .dot {
      background: hsl(88 50% 53%);
    }

    .pill-avg {
      background: hsl(48 98% 50% / 0.15);
      color: hsl(38 80% 38%);
    }

    .pill-avg .dot {
      background: hsl(48 98% 50%);
    }

    .pill-poor {
      background: hsl(0 72% 51% / 0.12);
      color: hsl(0 72% 45%);
    }

    .pill-poor .dot {
      background: hsl(0 72% 51%);
    }

    /* Keyword chips */
    .kw-demo {
      margin-top: 24px;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .kw-chip {
      padding: 6px 14px;
      border-radius: 100px;
      font-size: 0.78rem;
      font-weight: 500;
      border: 1.5px dashed hsl(0 72% 51% / 0.5);
      color: hsl(0 72% 51%);
      background: hsl(0 72% 51% / 0.06);
    }

    .kw-chip.found {
      border-style: solid;
      border-color: var(--secondary);
      color: var(--secondary);
      background: hsla(163, 75%, 33%, 0.08);
    }

    /* ── PRICING ───────────────────────────────────── */
    #pricing {
      background: var(--bg-alt);
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 360px));
      justify-content: center;
      gap: 24px;
      margin-top: 60px;
      align-items: start;
    }

    .pricing-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 36px;
      box-shadow: var(--card-shadow);
      transition: all 0.35s var(--ease);
      position: relative;
    }

    .pricing-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--card-shadow-hover);
    }

    .pricing-card.featured {
      background: hsl(240, 22%, 12%);
      border-color: var(--primary);
      box-shadow: 0 0 0 1px var(--primary), var(--card-shadow-hover);
      transform: scale(1.03);
      z-index: 1;
    }

    .dark .pricing-card.featured {
      background: hsl(236, 28%, 18%);
    }

    .pricing-card.featured:hover {
      transform: scale(1.03) translateY(-6px);
    }

    .featured-badge {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--hero-gradient);
      color: #fff;
      padding: 6px 20px;
      border-radius: 100px;
      font-size: 0.78rem;
      font-weight: 700;
      font-family: 'Inter', sans-serif;
      white-space: nowrap;
    }

    .plan-name {
      font-family: 'Inter', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .plan-desc {
      font-size: 0.85rem;
      color: var(--text-muted);
      margin-bottom: 24px;
    }

    .pricing-card.featured .plan-name,
    .pricing-card.featured .plan-desc,
    .pricing-card.featured .plan-price,
    .pricing-card.featured .plan-freq,
    .pricing-card.featured .plan-feature {
      color: #fff;
    }

    .pricing-card.featured .plan-desc,
    .pricing-card.featured .plan-freq,
    .pricing-card.featured .plan-feature {
      opacity: 0.75;
    }

    .plan-price {
      font-family: 'Inter', sans-serif;
      font-size: 2.4rem;
      font-weight: 800;
      margin-bottom: 2px;
      display: flex;
      align-items: baseline;
      gap: 4px;
    }

    .plan-currency {
      font-size: 1.2rem;
      font-weight: 600;
    }

    .plan-freq {
      font-size: 0.85rem;
      color: var(--text-muted);
      margin-bottom: 28px;
    }

    .plan-features {
      list-style: none;
      margin-bottom: 32px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .plan-feature {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    .plan-feature::before {
      content: "✓";
      flex-shrink: 0;
      width: 20px;
      height: 20px;
      background: hsl(142 71% 45% / 0.15);
      color: hsl(142 71% 40%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
      font-weight: 700;
      margin-top: 1px;
    }

    .pricing-card.featured .plan-feature::before {
      background: hsl(142 71% 45% / 0.3);
      color: hsl(142 71% 70%);
    }

    .btn-featured {
      background: var(--hero-gradient);
      color: #fff;
      width: 100%;
      box-shadow: 0 4px 20px rgba(0,200,150,0.4);
    }

    .btn-featured:hover {
      box-shadow: 0 8px 32px rgba(0,200,150,0.6);
      transform: translateY(-2px);
    }

    .btn-plan {
      width: 100%;
    }

    /* ── FAQ ───────────────────────────────────────── */
    #faq {
      background: var(--bg);
    }

    .faq-grid {
      max-width: 760px;
      margin: 60px auto 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .faq-item {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      transition: all 0.3s ease;
      box-shadow: var(--card-shadow);
    }

    .faq-q {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 24px;
      cursor: pointer;
      font-weight: 600;
      font-size: 0.95rem;
      font-family: 'Inter', sans-serif;
      gap: 16px;
    }

    .faq-chevron {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      flex-shrink: 0;
      background: var(--surface-2);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s var(--ease), background 0.2s;
      font-size: 0.8rem;
    }

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

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s var(--ease-out), padding 0.3s ease;
      padding: 0 24px;
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    .faq-item.open .faq-a {
      max-height: 300px;
      padding: 0 24px 20px;
    }

    /* ── SOCIAL PROOF ──────────────────────────────── */
    #testimonials {
      background: var(--bg-alt);
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 60px;
    }

    .testimonial-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 32px;
      box-shadow: var(--card-shadow);
      transition: all 0.35s var(--ease);
    }

    .testimonial-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--card-shadow-hover);
    }

    .stars {
      color: var(--accent);
      font-size: 1rem;
      margin-bottom: 16px;
    }

    .testimonial-text {
      font-size: 0.92rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 24px;
      font-style: italic;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .author-avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--surface-2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 0.95rem;
      color: var(--primary);
      border: 2px solid var(--border);
    }

    .author-name {
      font-weight: 600;
      font-size: 0.9rem;
    }

    .author-role {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    /* ── STATS ─────────────────────────────────────── */
    .stats-bar {
      background: var(--hero-gradient);
      padding: 60px 5vw;
      position: relative;
      overflow: hidden;
    }

    .stats-bar::before {
      content: "";
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

    .stats-inner {
      max-width: 1120px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
      text-align: center;
    }

    .stat-num {
      font-family: 'Inter', sans-serif;
      font-size: 2.8rem;
      font-weight: 800;
      color: #fff;
      line-height: 1;
      margin-bottom: 8px;
    }

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

    /* ── CTA SECTION ───────────────────────────────── */
    #cta {
      padding: 100px 5vw;
    }

    .cta-box {
      max-width: 1120px;
      margin: 0 auto;
      background: var(--hero-gradient);
      border-radius: 28px;
      padding: 80px 60px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-box::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
    }

    .cta-box h2 {
      font-family: 'Inter', sans-serif;
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 800;
      color: #fff;
      margin-bottom: 16px;
      position: relative;
    }

    .cta-box p {
      color: rgba(255, 255, 255, 0.8);
      font-size: 1.05rem;
      margin-bottom: 36px;
      position: relative;
    }

    .cta-btns {
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
      position: relative;
    }

    .btn-white {
      background: #fff;
      color: var(--primary-dark);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }

    .btn-white:hover {
      background: rgba(255, 255, 255, 0.92);
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }

    .btn-outline-white {
      background: transparent;
      color: #fff;
      border: 2px solid rgba(255, 255, 255, 0.5);
    }

    .btn-outline-white:hover {
      border-color: #fff;
      background: rgba(255, 255, 255, 0.1);
      transform: translateY(-2px);
    }

    /* ── FOOTER ────────────────────────────────────── */
    footer {
      background: var(--bg-alt);
      border-top: 1px solid var(--border);
      padding: 60px 5vw 32px;
    }

    .footer-inner {
      max-width: 1120px;
      margin: 0 auto;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }

    .footer-brand img {
      height: 34px;
      margin-bottom: 16px;
    }

    .footer-brand p {
      font-size: 0.87rem;
      color: var(--text-muted);
      line-height: 1.7;
      max-width: 280px;
    }

    .footer-col h4 {
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      margin-bottom: 16px;
      font-size: 0.9rem;
    }

    .footer-col a {
      display: block;
      font-size: 0.87rem;
      color: var(--text-muted);
      margin-bottom: 10px;
      transition: color 0.2s;
    }

    .footer-col a:hover {
      color: var(--primary);
    }

    .footer-bottom {
      border-top: 1px solid var(--border);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.82rem;
      color: var(--text-muted);
      flex-wrap: wrap;
      gap: 12px;
    }

    /* ── ANIMATIONS & SCROLL ───────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s var(--ease);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-left {
      opacity: 0;
      transform: translateX(-30px);
      transition: opacity 0.7s ease, transform 0.7s var(--ease);
    }

    .reveal-left.visible {
      opacity: 1;
      transform: translateX(0);
    }

    .reveal-right {
      opacity: 0;
      transform: translateX(30px);
      transition: opacity 0.7s ease, transform 0.7s var(--ease);
    }

    .reveal-right.visible {
      opacity: 1;
      transform: translateX(0);
    }

    /* Stagger delays */
    .delay-1 {
      transition-delay: 0.1s;
    }

    .delay-2 {
      transition-delay: 0.2s;
    }

    .delay-3 {
      transition-delay: 0.3s;
    }

    .delay-4 {
      transition-delay: 0.4s;
    }

    .delay-5 {
      transition-delay: 0.5s;
    }

    /* ── PARALLAX ──────────────────────────────────── */
    .parallax-slow {
      will-change: transform;
    }

    /* ── PROGRESS BAR ──────────────────────────────── */
    #progress-bar {
      position: fixed;
      top: 0;
      left: 0;
      height: 3px;
      z-index: 200;
      background: var(--hero-gradient);
      width: 0%;
      transition: width 0.1s linear;
    }

    /* ── RESPONSIVE ────────────────────────────────── */
    @media (max-width: 900px) {
      .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
      }

      .hero-text {
        align-items: center;
      }

      .hero-cta {
        justify-content: center;
      }

      .hero-social-proof {
        justify-content: center;
      }

      .hero-visual {
        order: 1;
      }

      .mini-badge.top-left {
        left: -10px;
      }

      .mini-badge.bottom-right {
        right: -10px;
      }

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

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

      .bento-1,
      .bento-2,
      .bento-3,
      .bento-4,
      .bento-5 {
        grid-column: span 1;
      }

      .bento-1,
      .bento-2 {
        grid-column: span 2;
      }

      .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
      }

      .pricing-card.featured {
        transform: none;
      }

      .pricing-card.featured:hover {
        transform: translateY(-6px);
      }

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

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

      .footer-top {
        grid-template-columns: 1fr 1fr;
      }

      .nav-links {
        display: none;
      }

      .hamburger {
        display: flex;
      }
    }

    @media (max-width: 600px) {
      section {
        padding: 72px 5vw;
      }

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

      .bento-1,
      .bento-2 {
        grid-column: span 1;
      }

      .cta-box {
        padding: 48px 28px;
      }

      .stats-inner {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
      }

      .footer-top {
        grid-template-columns: 1fr;
      }

      .mini-badge {
        display: none;
      }
    }

    /* ── BACK TO TOP ───────────────────────────────── */
    #back-top {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 50;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--primary);
      color: #fff;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      box-shadow: 0 4px 20px rgba(0,200,150,0.4);
      opacity: 0;
      transform: translateY(12px);
      transition: all 0.3s var(--ease);
    }

    #back-top.visible {
      opacity: 1;
      transform: translateY(0);
    }

    #back-top:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 28px rgba(0,200,150,0.5);
    }
