  *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --bg: #080c14;
      --surface: #0e1520;
      --surface2: #131c2e;
      --border: #1e2d45;
      --accent: #00e5ff;
      --accent2: #7c3aed;
      --accent3: #10b981;
      --text: #e8f0fe;
      --muted: #6b82a0;
      --card: #0d1825;
      --glow: 0 0 40px rgba(0, 229, 255, 0.15);
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'DM Sans', sans-serif;
      min-height: 100vh;
      overflow-x: hidden;
    }

    /* Grid BG */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image:
        linear-gradient(rgba(0, 229, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 229, 255, 0.03) 1px, transparent 1px);
      background-size: 40px 40px;
      pointer-events: none;
      z-index: 0;
    }

    .orb {
      position: fixed;
      border-radius: 50%;
      filter: blur(80px);
      pointer-events: none;
      z-index: 0;
      opacity: 0.35;
    }
    .orb1 { width: 400px; height: 400px; background: #00e5ff22; top: -100px; left: -100px; }
    .orb2 { width: 350px; height: 350px; background: #7c3aed22; bottom: 100px; right: -100px; }
    .orb3 { width: 250px; height: 250px; background: #10b98122; top: 50%; left: 50%; transform: translate(-50%, -50%); }

    .wrapper {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
      padding: 0 20px 120px;
    }

    /* ── NAV ── */
    nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 22px 0 10px;
      border-bottom: 1px solid var(--border);
      margin-bottom: 60px;
      animation: fadeDown 0.6s ease both;
    }

    .logo { font-family: 'Syne', sans-serif; font-size: 1.4rem; font-weight: 800; letter-spacing: -0.5px; }
    .logo span { color: var(--accent); }

    .badge {
      background: linear-gradient(135deg, #00e5ff22, #7c3aed22);
      border: 1px solid var(--accent);
      color: var(--accent);
      font-size: 0.7rem;
      font-weight: 500;
      padding: 4px 12px;
      border-radius: 999px;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    /* ── HERO ── */
    .hero {
      text-align: center;
      margin-bottom: 50px;
      animation: fadeUp 0.7s ease 0.1s both;
    }

    .hero-tag {
      display: inline-block;
      background: linear-gradient(90deg, #00e5ff15, #7c3aed15);
      border: 1px solid var(--border);
      color: var(--muted);
      font-size: 0.75rem;
      padding: 6px 18px;
      border-radius: 999px;
      margin-bottom: 20px;
      letter-spacing: 0.5px;
    }

    h1 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(2rem, 5vw, 3.2rem);
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 16px;
      letter-spacing: -1px;
    }

    h1 .glow-text {
      background: linear-gradient(90deg, var(--accent), #7c3aed);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero p { color: var(--muted); font-size: 1rem; max-width: 500px; margin: 0 auto; line-height: 1.7; }

    /* ── FORM CARD ── */
    .form-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 36px;
      margin-bottom: 30px;
      animation: fadeUp 0.7s ease 0.2s both;
      position: relative;
      overflow: hidden;
    }

    .form-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--accent), var(--accent2), transparent);
    }

    label {
      display: block;
      font-size: 0.8rem;
      color: var(--muted);
      margin-bottom: 8px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      font-weight: 500;
    }

    input[type="text"],
    textarea,
    select {
      width: 100%;
      background: var(--bg);
      border: 1px solid var(--border);
      color: var(--text);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.95rem;
      padding: 14px 18px;
      border-radius: 12px;
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
      -webkit-appearance: none;
    }

    input[type="text"]:focus,
    textarea:focus,
    select:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.08);
    }

    textarea { resize: vertical; min-height: 90px; }
    select option { background: #0d1825; }

    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
    .form-full { margin-bottom: 20px; }

    .cat-label {
      font-size: 0.8rem;
      color: var(--muted);
      margin-bottom: 12px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      font-weight: 500;
    }

    .cat-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }

    .pill {
      background: var(--bg);
      border: 1px solid var(--border);
      color: var(--muted);
      padding: 8px 18px;
      border-radius: 999px;
      font-size: 0.82rem;
      cursor: pointer;
      transition: all 0.2s;
      font-family: 'DM Sans', sans-serif;
      white-space: nowrap;
    }
    .pill:hover { border-color: var(--accent); color: var(--accent); }
    .pill.active {
      background: linear-gradient(135deg, #00e5ff18, #7c3aed18);
      border-color: var(--accent);
      color: var(--accent);
      box-shadow: 0 0 12px rgba(0, 229, 255, 0.12);
    }

    .tone-group { margin-bottom: 28px; }
    .count-group { margin-bottom: 28px; }

    .count-row { display: flex; align-items: center; gap: 16px; }

    input[type="range"] {
      flex: 1;
      -webkit-appearance: none;
      background: var(--border);
      height: 4px;
      border-radius: 999px;
      outline: none;
    }

    input[type="range"]::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 18px; height: 18px;
      border-radius: 50%;
      background: var(--accent);
      cursor: pointer;
      box-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
    }

    .count-val {
      min-width: 36px;
      text-align: center;
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      color: var(--accent);
      font-size: 1.1rem;
    }

    .btn-generate {
      width: 100%;
      background: linear-gradient(135deg, #00e5ff, #7c3aed);
      color: #000;
      font-family: 'Syne', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      padding: 17px;
      border: none;
      border-radius: 14px;
      cursor: pointer;
      letter-spacing: 0.5px;
      transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
      position: relative;
      overflow: hidden;
    }

    .btn-generate::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    }

    .btn-generate:hover { opacity: 0.92; transform: translateY(-1px); box-shadow: 0 8px 30px rgba(0,229,255,0.3); }
    .btn-generate:active { transform: translateY(0); }
    .btn-generate:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

    .spinner {
      display: inline-block;
      width: 16px; height: 16px;
      border: 2px solid rgba(0,0,0,0.3);
      border-top-color: #000;
      border-radius: 50%;
      animation: spin 0.7s linear infinite;
      vertical-align: middle;
      margin-right: 8px;
    }

    /* ── RESULTS ── */
    #results-section { display: none; animation: fadeUp 0.5s ease both; }

    .results-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 18px;
    }

    .results-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.1rem; }
    .results-meta { color: var(--muted); font-size: 0.8rem; }

    /* ── SHARE NUDGE (appears after generation) ── */
    .share-nudge {
      background: linear-gradient(135deg, #00e5ff08, #7c3aed08);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 20px 24px;
      margin-bottom: 20px;
      text-align: center;
      animation: fadeUp 0.5s ease both;
    }

    .share-nudge-text {
      font-size: 0.95rem;
      color: var(--text);
      margin-bottom: 14px;
      font-weight: 500;
    }

    .share-nudge-text span {
      background: linear-gradient(90deg, var(--accent), #7c3aed);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 700;
    }

    .share-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: center;
    }

    .share-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 16px;
      border-radius: 10px;
      font-size: 0.78rem;
      font-weight: 600;
      font-family: 'DM Sans', sans-serif;
      cursor: pointer;
      border: none;
      text-decoration: none;
      transition: opacity 0.2s, transform 0.15s;
      white-space: nowrap;
      color: #fff;
    }

    .share-btn:hover { opacity: 0.85; transform: translateY(-1px); }
    .share-btn.whatsapp { background: #25d366; }
    .share-btn.instagram { background: linear-gradient(135deg, #e1306c, #fd1d1d, #833ab4); }
    .share-btn.facebook { background: #1877f2; }
    .share-btn.youtube { background: #ff0000; }
    .share-btn.twitter { background: #000; border: 1px solid #333; }
    .share-btn.linkedin { background: #0077b5; }
    .share-btn.email { background: #6b82a0; }

    .hook-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 22px 24px;
      margin-bottom: 14px;
      display: flex;
      gap: 16px;
      align-items: flex-start;
      transition: border-color 0.2s, box-shadow 0.2s;
      position: relative;
      overflow: hidden;
    }

    .hook-card:hover { border-color: var(--border); box-shadow: var(--glow); }
    .hook-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; border-radius: 0 2px 2px 0; }
    .hook-card.type-question::before { background: var(--accent); }
    .hook-card.type-story::before { background: #f59e0b; }
    .hook-card.type-stat::before { background: var(--accent3); }
    .hook-card.type-bold::before { background: #f43f5e; }
    .hook-card.type-curiosity::before { background: #a855f7; }

    .hook-num { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 0.75rem; color: var(--muted); min-width: 24px; padding-top: 3px; }
    .hook-body { flex: 1; }

    .hook-type-badge {
      font-size: 0.65rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 600;
      padding: 3px 10px;
      border-radius: 999px;
      margin-bottom: 8px;
      display: inline-block;
    }

    .badge-question { background: #00e5ff18; color: var(--accent); }
    .badge-story { background: #f59e0b18; color: #f59e0b; }
    .badge-stat { background: #10b98118; color: var(--accent3); }
    .badge-bold { background: #f43f5e18; color: #f43f5e; }
    .badge-curiosity { background: #a855f718; color: #a855f7; }

    .hook-text { font-size: 0.97rem; line-height: 1.65; color: var(--text); }

    .hook-actions { display: flex; gap: 8px; align-items: center; margin-top: 10px; }

    .btn-copy,
    .btn-regen {
      background: var(--surface2);
      border: 1px solid var(--border);
      color: var(--muted);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.75rem;
      padding: 6px 14px;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.2s;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .btn-copy:hover { border-color: var(--accent); color: var(--accent); }
    .btn-regen:hover { border-color: var(--accent2); color: #a78bfa; }
    .btn-copy.copied { border-color: var(--accent3); color: var(--accent3); }

    .copy-all-btn {
      background: var(--surface2);
      border: 1px solid var(--border);
      color: var(--text);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.8rem;
      padding: 8px 18px;
      border-radius: 10px;
      cursor: pointer;
      transition: all 0.2s;
    }

    .copy-all-btn:hover { border-color: var(--accent); color: var(--accent); }

    /* Stats Bar */
    .stats-bar {
      display: flex;
      gap: 20px;
      margin-bottom: 40px;
      flex-wrap: wrap;
      animation: fadeUp 0.7s ease 0.15s both;
    }

    .stat-item {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 16px 22px;
      flex: 1;
      min-width: 120px;
      text-align: center;
    }

    .stat-val { font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--accent); }
    .stat-lbl { font-size: 0.72rem; color: var(--muted); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.5px; }

    /* Toast */
    .toast {
      position: fixed;
      bottom: 80px;
      left: 50%;
      transform: translateX(-50%) translateY(20px);
      background: var(--accent3);
      color: #fff;
      font-size: 0.85rem;
      padding: 12px 24px;
      border-radius: 999px;
      opacity: 0;
      transition: all 0.3s;
      z-index: 1000;
      pointer-events: none;
      font-weight: 500;
    }

    .toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

    /* ── BEACONS BANNER ── */
    .beacons-banner {
      position: relative;
      background: linear-gradient(135deg, #0a0f1e 0%, #0d1a2e 40%, #0f1f38 100%);
      border: 1px solid rgba(255, 180, 0, 0.35);
      border-radius: 20px;
      padding: 0;
      margin-bottom: 36px;
      overflow: hidden;
      cursor: pointer;
      text-decoration: none;
      display: block;
      animation: fadeUp 0.7s ease 0.25s both;
      transition: transform 0.2s, box-shadow 0.3s, border-color 0.3s;
    }

    .beacons-banner:hover {
      transform: translateY(-3px);
      box-shadow: 0 20px 60px rgba(255, 180, 0, 0.2), 0 0 0 1px rgba(255, 180, 0, 0.5);
      border-color: rgba(255, 180, 0, 0.7);
    }

    .beacons-banner::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, #ffb400, #ff6b00, #ffb400, transparent);
      animation: shimmer 2.5s linear infinite;
    }

    .beacons-banner::after {
      content: '';
      position: absolute;
      top: -60px; right: -60px;
      width: 300px; height: 300px;
      background: radial-gradient(circle, rgba(255, 180, 0, 0.12) 0%, transparent 70%);
      pointer-events: none;
    }

    @keyframes shimmer {
      0% { background-position: -600px 0; }
      100% { background-position: 600px 0; }
    }

    .banner-inner { display: flex; align-items: center; gap: 24px; padding: 24px 28px; position: relative; z-index: 1; }

    .banner-icon-wrap {
      flex-shrink: 0;
      width: 64px; height: 64px;
      border-radius: 16px;
      background: linear-gradient(135deg, #ffb400, #ff6b00);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 24px rgba(255, 180, 0, 0.4);
      font-size: 1.8rem;
      position: relative;
    }

    .banner-icon-wrap::after {
      content: '';
      position: absolute;
      inset: -2px;
      border-radius: 18px;
      background: linear-gradient(135deg, #ffb400, #ff6b00, #ffb400);
      z-index: -1;
      opacity: 0.4;
      animation: pulse-ring 2s ease-in-out infinite;
    }

    @keyframes pulse-ring {
      0%, 100% { transform: scale(1); opacity: 0.4; }
      50% { transform: scale(1.1); opacity: 0.1; }
    }

    .banner-content { flex: 1; min-width: 0; }

    .banner-tag {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: rgba(255, 180, 0, 0.15);
      border: 1px solid rgba(255, 180, 0, 0.4);
      color: #ffb400;
      font-size: 0.65rem;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 999px;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .banner-tag .dot { width: 5px; height: 5px; background: #ff4444; border-radius: 50%; animation: blink 1s ease-in-out infinite; }
    @keyframes blink { 0%, 100% { opacity: 1 } 50% { opacity: 0.2 } }

    .banner-heading { font-family: 'Syne', sans-serif; font-size: clamp(0.9rem, 2.5vw, 1.15rem); font-weight: 800; color: #fff; line-height: 1.3; margin-bottom: 6px; letter-spacing: -0.3px; }
    .banner-heading .highlight { background: linear-gradient(90deg, #ffb400, #ff6b00); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

    .banner-sub { font-size: 0.78rem; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
    .banner-sub span { display: flex; align-items: center; gap: 4px; }

    .banner-cta { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: 5px; }

    .banner-btn {
      background: linear-gradient(135deg, #ffb400, #ff6b00);
      color: #000;
      font-family: 'Syne', sans-serif;
      font-size: 0.82rem;
      font-weight: 800;
      padding: 11px 22px;
      border-radius: 10px;
      white-space: nowrap;
      letter-spacing: 0.3px;
      box-shadow: 0 4px 16px rgba(255, 180, 0, 0.4);
      transition: box-shadow 0.2s, transform 0.15s;
    }

    .beacons-banner:hover .banner-btn { box-shadow: 0 6px 24px rgba(255, 180, 0, 0.6); transform: scale(1.04); }
    .banner-note { font-size: 0.62rem; color: rgba(255,255,255,0.35); text-align: center; letter-spacing: 0.3px; }

    .banner-price-badge {
      position: absolute;
      top: 10px; right: 20px;
      background: linear-gradient(135deg, #ff4444, #ff6b00);
      color: #fff;
      font-family: 'Syne', sans-serif;
      font-size: 0.7rem;
      font-weight: 800;
      padding: 5px 14px;
      border-radius: 999px;
      letter-spacing: 0.5px;
      box-shadow: 0 4px 14px rgba(255, 68, 68, 0.5);
      animation: bounce-badge 2s ease-in-out infinite;
      z-index: 2;
    }

    @keyframes bounce-badge {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-4px); }
    }

    .banner-dots {
      position: absolute;
      right: 160px; top: 50%;
      transform: translateY(-50%);
      display: grid;
      grid-template-columns: repeat(6, 6px);
      gap: 5px;
      opacity: 0.08;
      pointer-events: none;
    }

    .banner-dots span { width: 4px; height: 4px; background: #ffb400; border-radius: 50%; display: block; }

    /* ── SEO SECTION (Above Footer) ── */
    .seo-section {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 44px;
      margin-top: 60px;
      position: relative;
      overflow: hidden;
    }

    .seo-section::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--accent2), var(--accent), transparent);
    }

    .seo-section h2 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(1.4rem, 3vw, 2rem);
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 14px;
      letter-spacing: -0.5px;
    }

    .seo-section h2 .accent-word {
      background: linear-gradient(90deg, var(--accent), #7c3aed);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .seo-intro {
      color: var(--muted);
      font-size: 0.97rem;
      line-height: 1.75;
      max-width: 720px;
      margin-bottom: 36px;
    }

    .seo-intro strong {
      color: var(--text);
    }

    .seo-how-title {
      font-family: 'Syne', sans-serif;
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 18px;
      color: var(--text);
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .seo-how-title::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--border);
    }

    .seo-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-bottom: 36px;
    }

    .seo-step {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 20px;
      position: relative;
    }

    .seo-step-num {
      font-family: 'Syne', sans-serif;
      font-size: 0.65rem;
      font-weight: 800;
      color: var(--accent);
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .seo-step-title {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 0.92rem;
      margin-bottom: 6px;
      color: var(--text);
    }

    .seo-step p {
      font-size: 0.82rem;
      color: var(--muted);
      line-height: 1.6;
    }

    .seo-benefits-title {
      font-family: 'Syne', sans-serif;
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 16px;
      color: var(--text);
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .seo-benefits-title::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--border);
    }

    .seo-benefits {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .seo-benefit {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 16px;
    }

    .seo-benefit-icon {
      width: 34px; height: 34px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 1rem;
    }

    .seo-benefit-icon.cyan { background: #00e5ff15; }
    .seo-benefit-icon.purple { background: #7c3aed15; }
    .seo-benefit-icon.green { background: #10b98115; }
    .seo-benefit-icon.amber { background: #f59e0b15; }

    .seo-benefit-text strong {
      display: block;
      font-size: 0.87rem;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 3px;
    }

    .seo-benefit-text span {
      font-size: 0.78rem;
      color: var(--muted);
      line-height: 1.5;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 36px 40px;
      margin-top: 24px;
      text-align: center;
    }

    .footer-logo {
      font-family: 'Syne', sans-serif;
      font-size: 1.3rem;
      font-weight: 800;
      margin-bottom: 10px;
    }

    .footer-logo span { color: var(--accent); }

    .footer-desc {
      color: var(--muted);
      font-size: 0.83rem;
      max-width: 380px;
      margin: 0 auto 24px;
      line-height: 1.7;
    }

    .footer-social-label {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--muted);
      margin-bottom: 14px;
      font-weight: 600;
    }

    .footer-socials {
      display: flex;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 24px;
    }

    .footer-social-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 14px;
      border-radius: 10px;
      font-size: 0.75rem;
      font-weight: 600;
      font-family: 'DM Sans', sans-serif;
      cursor: pointer;
      border: 1px solid var(--border);
      text-decoration: none;
      transition: all 0.2s;
      color: var(--muted);
      background: var(--bg);
    }

    .footer-social-btn:hover {
      transform: translateY(-2px);
      border-color: var(--accent);
      color: var(--text);
    }

    .footer-divider {
      height: 1px;
      background: var(--border);
      margin: 20px 0;
    }

    .footer-copy {
      color: var(--muted);
      font-size: 0.75rem;
    }

    .footer-copy span { color: var(--accent); }

    /* ── STICKY BOTTOM STRIP ── */
    .sticky-strip {
      position: fixed;
      bottom: 0; left: 0; right: 0;
      background: linear-gradient(90deg, #0a0f1e, #0d1a2e, #0a0f1e);
      border-top: 1px solid rgba(255, 180, 0, 0.3);
      padding: 10px 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      z-index: 999;
      animation: slideUp 0.5s ease 1s both;
    }

    @keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }

    .sticky-strip-text {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.7);
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .sticky-strip-text strong { color: #ffb400; }

    .sticky-btn {
      background: linear-gradient(135deg, #ffb400, #ff6b00);
      color: #000;
      font-family: 'Syne', sans-serif;
      font-size: 0.75rem;
      font-weight: 800;
      padding: 8px 18px;
      border-radius: 8px;
      text-decoration: none;
      white-space: nowrap;
      flex-shrink: 0;
      transition: opacity 0.2s;
    }

    .sticky-btn:hover { opacity: 0.85; }

    /* Animations */
    @keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes fadeDown { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes spin { to { transform: rotate(360deg); } }

    /* Mobile */
    @media (max-width: 620px) {
      .form-grid { grid-template-columns: 1fr; }
      .form-card { padding: 24px 18px; }
      .stats-bar { gap: 10px; }
      h1 { font-size: 1.9rem; }
      nav { margin-bottom: 36px; }
      .sticky-strip { padding: 8px 12px; gap: 8px; }
      .sticky-strip-text { font-size: 0.72rem; }
      .seo-section { padding: 28px 20px; }
      .seo-steps { grid-template-columns: 1fr; }
      .seo-benefits { grid-template-columns: 1fr; }
      .banner-inner { padding: 20px 18px; gap: 14px; flex-wrap: wrap; }
      .banner-icon-wrap { width: 50px; height: 50px; font-size: 1.4rem; }
      .banner-cta { width: 100%; flex-direction: row; justify-content: space-between; align-items: center; }
      .banner-btn { padding: 10px 18px; }
      .banner-dots { display: none; }
      .banner-price-badge { right: 12px; font-size: 0.6rem; padding: 4px 10px; }
      .share-buttons { gap: 6px; }
      .share-btn { font-size: 0.72rem; padding: 7px 12px; }
      footer { padding: 28px 20px; }
      .footer-socials { gap: 7px; }
    }



/* tetsing stat bar  */
/* ── STATS BAR ── */
  .stats-bar {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    animation: fadeUp 0.7s ease 0.15s both;
  }
  .stat-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 22px;
    flex: 1;
    min-width: 120px;
    text-align: center;
  }
  .stat-val { font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--accent); }
  .stat-lbl { font-size: 0.72rem; color: var(--muted); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.5px; }

  /* ══════════════════════════════════════════
     ── SOCIAL PROOF SECTION (NEW) ──
  ══════════════════════════════════════════ */
  .social-proof {
    background: linear-gradient(135deg, #0d1825 0%, #0e1a2e 100%);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px 32px;
    margin-bottom: 28px;
    animation: fadeUp 0.7s ease 0.18s both;
    position: relative;
    overflow: hidden;
  }

  .social-proof::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,229,255,0.4), rgba(124,58,237,0.4), transparent);
  }

  .proof-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 24px;
  }

  .proof-headline {
    font-family: 'Syne', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
  }

  .proof-headline span {
    background: linear-gradient(90deg, var(--accent), #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  /* Trust Badge */
  .trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(16,185,129,0.12), rgba(0,229,255,0.08));
    border: 1px solid rgba(16,185,129,0.35);
    color: var(--accent3);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 999px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
  }

  .trust-badge .pulse-dot {
    width: 6px; height: 6px;
    background: var(--accent3);
    border-radius: 50%;
    animation: pulseDot 1.5s ease-in-out infinite;
    flex-shrink: 0;
  }

  @keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(16,185,129,0.4); }
    50% { opacity: .7; transform: scale(0.85); box-shadow: 0 0 0 4px rgba(16,185,129,0); }
  }

  /* Stats Row */
  .proof-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 24px;
    flex-wrap: wrap;
  }

  .proof-stat {
    flex: 1;
    min-width: 100px;
    text-align: center;
    padding: 0 16px;
    position: relative;
  }

  .proof-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0; top: 10%; bottom: 10%;
    width: 1px;
    background: var(--border);
  }

  .proof-stat-val {
    font-family: 'Syne', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
    background: linear-gradient(135deg, var(--accent), #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .proof-stat-label {
    font-size: 0.7rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.6px;
  }

  /* Stars */
  .proof-stat.stars-stat .proof-stat-val {
    font-size: 1rem;
    background: none;
    -webkit-text-fill-color: #fbbf24;
    color: #fbbf24;
    letter-spacing: 2px;
  }

  /* Avatar Row */
  .proof-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
  }

  .avatar-group {
    display: flex;
    align-items: center;
    gap: 0;
  }

  .avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 2px solid var(--bg);
    margin-left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    transition: transform 0.2s;
  }

  .avatar:first-child { margin-left: 0; }
  .avatar:hover { transform: translateY(-3px) scale(1.1); z-index: 10; }

  .av1 { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
  .av2 { background: linear-gradient(135deg, #0ea5e9, #06b6d4); }
  .av3 { background: linear-gradient(135deg, #f43f5e, #ec4899); }
  .av4 { background: linear-gradient(135deg, #f59e0b, #f97316); }
  .av5 { background: linear-gradient(135deg, #10b981, #059669); }
  .av6 { background: linear-gradient(135deg, #00e5ff, #7c3aed); font-size: 0.65rem; }

  .avatar-meta {
    margin-left: 14px;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .avatar-meta .stars-small { color: #fbbf24; font-size: 0.75rem; letter-spacing: 1px; }
  .avatar-meta p { font-size: 0.78rem; color: var(--muted); }
  .avatar-meta p strong { color: var(--text); }

  /* Testimonial Pills */
  .proof-testimonials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
  }

  .testi-pill {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 8px 14px;
    font-size: 0.75rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: border-color 0.2s;
  }

  .testi-pill:hover { border-color: rgba(0,229,255,0.3); }

  .testi-pill .tp-avatar {
    width: 24px; height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 800;
    color: #fff;
    font-family: 'Syne', sans-serif;
    flex-shrink: 0;
  }

  .testi-pill .tp-text { color: var(--text); font-size: 0.73rem; }
  .testi-pill .tp-name { color: var(--muted); font-size: 0.65rem; margin-top: 1px; }

  /* ══════════════════════════════════════════
     END SOCIAL PROOF
  ══════════════════════════════════════════ */




 