/* Shared styles for the single-language SEO landing pages.
   Lifted from index.html so the new pages look native, minus the
   [data-lang] visibility block: it hides two of three languages on the
   multilingual pages, and here there is only one. */

    :root {
      --bg:       #080e1c;
      --bg-card:  rgba(255,255,255,0.04);
      --border:   rgba(255,255,255,0.07);
      --fg:       hsl(213,31%,91%);
      --muted:    hsl(215,18%,50%);
      --primary:  #b897ed;
      --accent:   #B3F2FF;
      --c1:       #9a6ce5;
      --c2:       #6467f2;
      --grad:     linear-gradient(135deg,#9a6ce5,#6467f2);
      --success:  #4ade80;
      --r:        14px;
    }

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

    html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }

    body {
      font-family: 'Inter', -apple-system, sans-serif;
      background: var(--bg);
      color: var(--fg);
      min-height: 100vh;
      line-height: 1.6;
      overflow-x: hidden;
      max-width: 100%;
    }

    /* ── NOISE OVERLAY ── */
    body::before {
      content: '';
      position: fixed; inset: 0; z-index: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      opacity: 0.4;
    }

    /* ── GRID BG ── */
    body::after {
      content: '';
      position: fixed; inset: 0; z-index: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
      background-size: 48px 48px;
      pointer-events: none;
    }

    /* ── GLOW BLOBS ── */
    .blob {
      position: fixed; z-index: 0; border-radius: 50%;
      filter: blur(120px); pointer-events: none;
      animation: drift 12s ease-in-out infinite alternate;
    }
    .blob-1 {
      width: 600px; height: 600px;
      background: rgba(154,108,229,0.12);
      top: -200px; left: -100px;
    }
    .blob-2 {
      width: 500px; height: 500px;
      background: rgba(100,103,242,0.1);
      bottom: -150px; right: -100px;
      animation-delay: -6s;
    }
    @keyframes drift {
      from { transform: translate(0,0) scale(1); }
      to   { transform: translate(40px, 30px) scale(1.05); }
    }

    /* ── WRAP ── */
    .wrap { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; padding: 0 24px; }

    /* ── HEADER ── */
    header {
      position: sticky; top: 0; z-index: 100;
      background: rgba(8,14,28,0.7);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
    }
    .header-inner {
      max-width: 720px; margin: 0 auto; padding: 16px 24px;
      display: flex; align-items: center; justify-content: space-between;
    }
    .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
    .logo img { width: 30px; height: 30px; }
    .logo-text { font-size: 16px; font-weight: 700; color: #fff; letter-spacing: -0.3px; }

    .header-right { display: flex; align-items: center; gap: 16px; }
    .nav-link { font-size: 13px; color: var(--muted); text-decoration: none; white-space: nowrap; transition: color 0.15s; }
    .nav-link:hover { color: var(--fg); }
    .lang-switcher { display: flex; gap: 3px; }
    .lang-btn {
      background: none; border: 1px solid transparent; text-decoration: none; text-decoration: none;
      color: var(--muted); font-size: 12px; font-weight: 500;
      padding: 4px 10px; border-radius: 8px; cursor: pointer;
      transition: all 0.15s; font-family: inherit; letter-spacing: 0.3px;
    }
    .lang-btn:hover { color: var(--fg); border-color: var(--border); }
    .lang-btn.active {
      background: rgba(154,108,229,0.15);
      border-color: rgba(154,108,229,0.35);
      color: var(--primary);
    }

    /* ── HERO ── */
    .hero {
      padding: 96px 0 80px;
      text-align: center;
      display: flex; flex-direction: column; align-items: center;
    }

    .hero-logo {
      width: 80px; height: 80px;
      margin-bottom: 32px;
      filter: drop-shadow(0 0 32px rgba(179,242,255,0.35));
      animation: float 4s ease-in-out infinite;
    }
    @keyframes float {
      0%,100% { transform: translateY(0); }
      50%      { transform: translateY(-8px); }
    }

    .badge {
      display: inline-flex; align-items: center; gap: 7px;
      background: rgba(74,222,128,0.08);
      border: 1px solid rgba(74,222,128,0.2);
      color: var(--success);
      font-size: 12px; font-weight: 500;
      padding: 5px 14px; border-radius: 100px;
      margin-bottom: 24px;
    }
    .badge-dot { width: 6px; height: 6px; background: var(--success); border-radius: 50%; }

    .hero h1 {
      font-size: clamp(28px, 3.8vw, 40px);
      font-weight: 800; line-height: 1.12;
      letter-spacing: -1px; color: #fff;
      margin-bottom: 16px;
    }
    .hero h1 em {
      font-style: normal;
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero p {
      font-size: 16px; color: var(--muted);
      max-width: 480px; margin: 0 auto 0;
      line-height: 1.7;
    }

    .btn-primary {
      display: inline-flex; align-items: center; gap: 9px;
      background: var(--grad);
      color: #fff; font-size: 15px; font-weight: 600;
      padding: 15px 28px; border-radius: 14px;
      text-decoration: none;
      box-shadow: 0 0 0 1px rgba(154,108,229,0.3), 0 8px 32px rgba(100,103,242,0.4);
      transition: transform 0.2s, box-shadow 0.2s;
      position: relative; overflow: hidden;
    }
    .btn-primary::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
      pointer-events: none;
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 0 1px rgba(154,108,229,0.4), 0 12px 40px rgba(100,103,242,0.5);
    }

    /* ── DIVIDER ── */
    .divider { display: none; }

    /* ── SECTIONS ── */
    .section { padding: 56px 0; }

    .section-label {
      font-size: 11px; font-weight: 600;
      text-transform: uppercase; letter-spacing: 1.4px;
      color: var(--primary); margin-bottom: 10px;
    }
    .section-title {
      font-size: 26px; font-weight: 700; color: #fff;
      letter-spacing: -0.5px; margin-bottom: 28px; line-height: 1.2;
    }
    .section-sub {
      font-size: 15px; line-height: 1.6; color: var(--muted);
      max-width: 720px; margin: -16px 0 36px;
    }

    /* ── TAGS ── */
    .tags { display: flex; flex-wrap: wrap; gap: 8px; }
    /* Two of these chips are links to the pages that cover that state —
       contextual, in-body, and indistinguishable from the rest. */
    a.tag { text-decoration: none; }
    a.tag:hover { border-color: var(--primary); }

    .tag {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      color: var(--fg); font-size: 13px;
      padding: 8px 14px; border-radius: 10px;
      backdrop-filter: blur(8px);
      transition: border-color 0.15s;
    }
    .tag:hover { border-color: rgba(154,108,229,0.3); }
    .tag svg { width: 14px; height: 14px; flex-shrink: 0; stroke: currentColor; color: inherit; }

    /* ── STEPS ── */
    .steps { display: flex; flex-direction: column; gap: 10px; }
    .step {
      display: flex; gap: 16px; align-items: flex-start;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--r); padding: 20px 22px;
      backdrop-filter: blur(8px);
      transition: border-color 0.2s, transform 0.2s;
    }
    .step:hover { border-color: rgba(154,108,229,0.25); transform: translateX(4px); }
    .step-num {
      width: 32px; height: 32px; flex-shrink: 0;
      border-radius: 9px;
      background: linear-gradient(135deg,rgba(154,108,229,0.2),rgba(100,103,242,0.2));
      border: 1px solid rgba(154,108,229,0.3);
      color: var(--primary); font-size: 13px; font-weight: 700;
      display: flex; align-items: center; justify-content: center;
    }
    .step > div:last-child { min-width: 0; flex: 1; }
    .step h3 { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 3px; }
    .step p  { font-size: 14px; color: var(--muted); line-height: 1.55; }

    /* ── FEATURES ── */
    .features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    @media(max-width:500px) { .features { grid-template-columns: 1fr; } }
    .feature-wide {
      grid-column: 1 / -1;
      background: linear-gradient(135deg, rgba(154,108,229,0.1), rgba(100,103,242,0.06));
      border: 1px solid rgba(154,108,229,0.25);
    }
    .feature {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--r); padding: 24px;
      backdrop-filter: blur(8px);
      transition: border-color 0.2s, transform 0.2s;
    }
    .feature:hover { border-color: rgba(154,108,229,0.25); transform: translateY(-2px); }
    .feature { display: grid; grid-template-columns: 40px 1fr; grid-template-rows: auto auto; column-gap: 12px; }
    .feature-icon { font-size: 28px; margin-bottom: 0; display: flex; align-items: center; grid-column: 1; grid-row: 1; }
    .feature h3 { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 0; align-self: center; grid-column: 2; grid-row: 1; }
    .feature p  { font-size: 13px; color: var(--muted); line-height: 1.55; grid-column: 1 / -1; margin-top: 12px; }

    /* ── VS COMPARISON ── */
    .vs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    @media (max-width: 600px) {
      .vs-grid { grid-template-columns: 1fr; }
      /* mobile: icon + heading on same row, rest of card flows below */
      .vs-card { display: grid; grid-template-columns: auto 1fr; column-gap: 12px; align-items: center; }
      .vs-card > .vs-icon { margin-bottom: 0; }
      .vs-card > h3 { margin-bottom: 0; }
      .vs-card > .vs-tag,
      .vs-card > ul { grid-column: 1 / -1; }
      .vs-card > .vs-tag { margin-top: 14px; }
    }
    .vs-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r); padding: 24px 22px; backdrop-filter: blur(8px); }
    .vs-card.vs-self { border-color: rgba(154,108,229,0.35); background: linear-gradient(135deg, rgba(154,108,229,0.06), var(--bg-card)); }
    .vs-icon { line-height: 1; margin-bottom: 12px; color: var(--muted); }
    .vs-icon svg { width: 28px; height: 28px; }
    .vs-card.vs-self .vs-icon { color: var(--primary); }
    .vs-card h3 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 6px; }
    .vs-card p.vs-tag { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
    .vs-card.vs-self p.vs-tag { color: var(--primary); }
    .vs-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
    .vs-card ul li { font-size: 13px; color: var(--fg); line-height: 1.55; padding-left: 18px; position: relative; }
    .vs-card ul li::before { content: '·'; position: absolute; left: 6px; color: var(--muted); font-weight: 700; }
    .vs-card.vs-self ul li::before { color: var(--primary); }
    .vs-memory-note { background: rgba(154,108,229,0.08); border: 1px solid rgba(154,108,229,0.2); border-radius: var(--r); padding: 18px 22px; font-size: 14px; color: var(--fg); line-height: 1.65; }
    .vs-memory-note strong { color: #fff; display: block; margin-bottom: 4px; }
    .vs-memory-note code { font-size: 12px; padding: 1px 5px; border-radius: 4px; background: rgba(255,255,255,0.06); color: var(--fg); }
    .vs-diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 16px; }
    @media (max-width: 720px) { .vs-diff-grid { grid-template-columns: 1fr; } }
    .vs-bottom-note { font-size: 13px; color: var(--muted); text-align: center; margin-top: 16px; font-style: italic; }

    /* ── MODES ── */
    .modes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    @media (max-width: 600px) {
      .modes-grid { grid-template-columns: 1fr; }
      /* mobile: icon + heading on same row, rest of card flows below */
      .mode-card { display: grid; grid-template-columns: auto 1fr; column-gap: 12px; align-items: center; }
      .mode-card > .mode-icon { margin-bottom: 0; }
      .mode-card > h3 { margin-bottom: 0; }
      .mode-card > .mode-tag,
      .mode-card > ul,
      .mode-card > .mode-best { grid-column: 1 / -1; }
      .mode-card > .mode-tag { margin-top: 14px; }
    }
    .mode-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r); padding: 24px 22px; backdrop-filter: blur(8px); transition: border-color 0.2s, transform 0.2s; }
    .mode-card:hover { border-color: rgba(154,108,229,0.25); transform: translateY(-2px); }
    .mode-icon { line-height: 1; margin-bottom: 12px; color: var(--primary); }
    .mode-icon svg { width: 28px; height: 28px; }
    .mode-card h3 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 6px; }
    .mode-card p.mode-tag { font-size: 14px; color: var(--primary); margin-bottom: 14px; font-weight: 500; }
    .mode-card ul { list-style: none; padding: 0; margin: 0 0 14px; display: flex; flex-direction: column; gap: 6px; }
    .mode-card ul li { font-size: 13px; color: var(--fg); line-height: 1.55; padding-left: 16px; position: relative; }
    .mode-card ul li::before { content: '·'; position: absolute; left: 6px; color: var(--primary); font-weight: 700; }
    .mode-card .mode-best { font-size: 12.5px; color: var(--muted); line-height: 1.55; padding-top: 12px; border-top: 1px solid var(--border); }
    .mode-note { font-size: 13px; color: var(--muted); text-align: center; margin-top: 16px; line-height: 1.55; }

    /* ── FAQ (native <details>/<summary>) ──
       Uses HTML5 <details> instead of JS-toggle accordion. Wins:
       - Indexed by all crawlers including LLM agents that don't run JS
       - Built-in keyboard nav + screen-reader semantics, no aria-* needed
       - First 3 items use the `open` attribute → expanded on render so the
         most common questions ("Is it free?" / "How much time?" / etc.) are
         visible to both Google and rushed visitors without a tap.
       Custom marker hides the default disclosure triangle. */
    .faq { display: flex; flex-direction: column; gap: 6px; }
    .faq-item {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--r); overflow: hidden;
      backdrop-filter: blur(8px);
      transition: border-color 0.2s;
    }
    .faq-item[open] { border-color: rgba(154,108,229,0.25); }
    .faq-q {
      list-style: none;
      color: #fff;
      font-size: 15px; font-weight: 500;
      padding: 20px 22px; cursor: pointer;
      display: flex; justify-content: space-between; align-items: flex-start; gap: 16px;
    }
    .faq-q::-webkit-details-marker { display: none; }
    .faq-q::after {
      content: '+';
      width: 22px; height: 22px; flex-shrink: 0;
      border-radius: 50%;
      background: rgba(154,108,229,0.15);
      border: 1px solid rgba(154,108,229,0.25);
      color: var(--primary); font-size: 14px; font-weight: 400;
      display: flex; align-items: center; justify-content: center;
      transition: transform 0.25s, background 0.2s, content 0s;
      margin-top: 1px;
    }
    .faq-item[open] .faq-q::after { content: '−'; transform: rotate(180deg); background: rgba(154,108,229,0.3); }
    .faq-a {
      padding: 0 22px 20px;
      font-size: 14px; color: var(--muted); line-height: 1.7;
    }
    .faq-a a { color: var(--primary); text-decoration: none; }
    .faq-a a:hover { text-decoration: underline; }

    /* ── CTA BOTTOM ── */
    .cta-bottom {
      padding: 72px 0;
      text-align: center;
      position: relative;
    }
    .cta-bottom::before {
      content: '';
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%,-50%);
      width: 400px; height: 200px;
      background: radial-gradient(ellipse, rgba(154,108,229,0.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .cta-bottom h2 {
      font-size: 32px; font-weight: 800; color: #fff;
      letter-spacing: -0.8px; line-height: 1.15; margin-bottom: 12px;
    }
    .cta-bottom p { font-size: 16px; color: var(--muted); margin-bottom: 32px; }

    /* An image with no width constraint renders at its intrinsic size — a
       stale cached stylesheet once let the footer favicon fill the viewport.
       Cheap insurance that nothing here can do that again. */
    img { max-width: 100%; height: auto; }

    /* ── FOOTER ── */
    footer {
      border-top: 1px solid var(--border);
      padding: 40px 0 44px;
      margin-top: 24px;
    }
    .footer-inner {
      max-width: 720px; margin: 0 auto; padding: 0 24px;
      /* A real grid, not a row that wraps. Six links in one flex line pushed
         the last one onto a second row by itself, which reads as a bug. */
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      gap: 32px 24px;
      align-items: start;
    }
    .footer-brand { display: flex; flex-direction: column; gap: 10px; }
    .footer-logo { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
    .footer-logo img { width: 22px; height: 22px; }
    .footer-logo span { font-size: 14px; font-weight: 600; color: var(--fg); }
    .footer-tag { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0; max-width: 24ch; }
    .footer-col { display: flex; flex-direction: column; gap: 10px; }
    .footer-col h4 {
      font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
      text-transform: uppercase; color: var(--muted); opacity: 0.7;
      margin: 0 0 2px;
    }
    .footer-bottom {
      max-width: 720px; margin: 32px auto 0; padding: 20px 24px 0;
      border-top: 1px solid var(--border);
    }
    footer span { font-size: 13px; color: var(--muted); }
    footer a {
      font-size: 13px; color: var(--muted); text-decoration: none;
      transition: color 0.15s;
    }
    footer a:hover { color: var(--fg); }
    @media (max-width: 560px) {
      .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
      .footer-brand { grid-column: 1 / -1; }
    }

    /* ── LANG VISIBILITY ── */

    /* ── FADE IN ── */
    .fade-up {
      opacity: 0; transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .fade-up.in { opacity: 1; transform: none; }

    @media(max-width:600px) {
      .hero { padding: 64px 24px 56px; }
      .hero h1 { font-size: 28px; letter-spacing: -0.5px; }
      .hero p { font-size: 15px; max-width: 100%; }
      .section { padding: 40px 0; }
      .section-title { font-size: 22px; word-break: break-word; }
      .chat-wrap { max-width: 100%; }
      .cm { max-width: 90%; }
      .testi { padding: 16px 18px; }
    }

    /* ── SOCIAL PROOF ── */
    .proof-note { margin: 0; padding-top: 16px; font-size: 13px; color: var(--muted); text-align: center; line-height: 1.6; }
    .proof-dot { display: inline-block; width: 6px; height: 6px; background: var(--success); border-radius: 50%; vertical-align: middle; margin-right: 4px; position: relative; top: -1px; }

    /* ── HERO CTA WRAPPER ── */
    .hero-cta { margin-top: 32px; display: flex; flex-direction: column; align-items: center; }

    /* ── CHAT DEMO ── */
    .chat-wrap {
      background: #17212b;
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 18px;
      overflow: hidden;
      max-width: 440px;
      margin: 24px auto 0;
    }
    .chat-top {
      background: #1e2c3a;
      padding: 12px 16px;
      display: flex; align-items: center; gap: 10px;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .chat-av {
      width: 34px; height: 34px; border-radius: 50%;
      background: var(--grad);
      display: flex; align-items: center; justify-content: center;
      font-size: 14px; font-weight: 700; color: #fff; flex-shrink: 0;
    }
    .chat-nm { font-size: 14px; font-weight: 600; color: #fff; }
    .chat-sb { font-size: 11px; color: #6c8899; }
    .chat-bd { padding: 14px 12px; display: flex; flex-direction: column; gap: 5px; }
    .cm { max-width: 82%; padding: 8px 11px; font-size: 13px; line-height: 1.5; border-radius: 12px; }
    .cm.b   { background: #2b5278; color: #ddeeff; align-self: flex-start; border-radius: 4px 12px 12px 12px; }
    .cm.u   { background: #182533; color: #c5d8e8; align-self: flex-end; border-radius: 12px 4px 12px 12px; border: 1px solid rgba(255,255,255,0.05); }
    .cm.ins { background: rgba(154,108,229,0.14); border: 1px solid rgba(154,108,229,0.25); color: #ddd5ff; align-self: flex-start; border-radius: 4px 12px 12px 12px; max-width: 95%; }
    .cm.act { background: rgba(154,108,229,0.08); border: 1px solid rgba(154,108,229,0.18); color: #c5d8e8; align-self: flex-start; border-radius: 4px 12px 12px 12px; max-width: 95%; font-family: 'SFMono-Regular', ui-monospace, Menlo, Consolas, monospace; font-size: 12px; line-height: 1.6; white-space: normal; padding: 10px 14px; }
    .cm.act .act-streak { color: #fbbf24; font-family: 'Inter', sans-serif; display: block; margin-top: 6px; }
    .cm.mem { background: rgba(64,180,180,0.07); border: 1px solid rgba(64,180,180,0.22); color: #c5d8e8; align-self: flex-start; border-radius: 4px 12px 12px 12px; max-width: 95%; padding: 12px 14px; font-size: 13px; }
    .cm.mem .mem-title { color: #aee0e0; font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 8px; opacity: 0.8; }
    .cm.mem ul { list-style: none; padding: 0; margin: 0; }
    .cm.mem li { padding: 3px 0; line-height: 1.5; }
    .cm.mem li strong { color: #ddeeff; font-weight: 500; }
    .chat-sep { text-align: center; font-size: 11px; color: #6c8899; padding: 4px 0; }

    /* ── TESTIMONIALS ── */
    .testi-grid { display: flex; flex-direction: column; gap: 10px; }
    .testi {
      background: var(--bg-card);
      border: 2px solid rgba(167, 139, 250, 0.55);
      border-radius: var(--r); padding: 20px 22px;
      backdrop-filter: blur(8px);
      box-shadow: 0 0 28px -8px rgba(167, 139, 250, 0.3);
    }
    .testi-q { font-size: 14px; line-height: 1.65; color: var(--fg); margin-bottom: 10px; font-style: italic; }
    .testi-who { font-size: 12px; color: var(--muted); }

    /* ── COOKIE CONSENT BANNER ── */
    #cookie-banner {
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
      background: rgba(10,16,32,0.96);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-top: 1px solid rgba(154,108,229,0.2);
      padding: 16px 24px;
      display: flex; align-items: center; justify-content: center;
      gap: 16px; flex-wrap: wrap;
      transform: translateY(100%);
      transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    }
    #cookie-banner.visible { transform: translateY(0); }
    .cookie-text {
      font-size: 13px; color: var(--muted); line-height: 1.5;
      flex: 1; min-width: 220px; max-width: 560px;
    }
    .cookie-text a { color: var(--primary); text-decoration: none; }
    .cookie-text a:hover { text-decoration: underline; }
    .cookie-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
    .cookie-accept {
      display: inline-flex; align-items: center;
      background: var(--grad);
      color: #fff; font-size: 13px; font-weight: 600;
      padding: 9px 20px; border-radius: 10px; border: none;
      cursor: pointer; font-family: inherit;
      box-shadow: 0 4px 16px rgba(100,103,242,0.35);
      transition: transform 0.15s, box-shadow 0.15s;
    }
    .cookie-accept:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(100,103,242,0.45); }
    .cookie-decline {
      font-size: 13px; color: var(--muted); background: none;
      border: none; cursor: pointer; font-family: inherit;
      padding: 9px 4px; transition: color 0.15s;
    }
    .cookie-decline:hover { color: var(--fg); }

    /* LUCIDE ICONS */
    .feature-icon svg {
      stroke: currentColor; stroke-width: 1.75; fill: none; display: block;
      width: 26px; height: 26px;
    }

    /* DISCLAIMER */
    .disclaimer {
      max-width: 760px; margin: 32px auto 0; padding: 16px 20px;
      font-size: 13px; line-height: 1.55; color: var(--text-muted);
      border-left: 2px solid var(--border); border-radius: 4px;
      background: rgba(255,255,255,0.02);
    }
    .disclaimer a { color: var(--primary); text-decoration: none; }
    .disclaimer a:hover { text-decoration: underline; }

    /* PRICING */
    .pricing-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
      max-width: 960px; margin: 0 auto;
    }
    .price-card {
      padding: 24px; border: 1px solid var(--border); border-radius: 12px;
      background: rgba(255,255,255,0.02); display: flex; flex-direction: column; gap: 8px;
    }
    .price-card-featured { border-color: var(--primary); background: rgba(167,139,250,0.06); }
    .price-badge {
      display: inline-block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em;
      color: var(--text-muted); margin-bottom: 4px;
    }
    .price-card-featured .price-badge { color: var(--primary); }
    .price-card h3 { font-size: 20px; font-weight: 700; margin: 0; color: var(--text); }
    .price-card p { font-size: 14px; line-height: 1.55; color: var(--text-muted); margin: 0; }
    .pricing-note {
      max-width: 760px; margin: 24px auto 0; text-align: center;
      font-size: 13px; color: var(--text-muted);
    }
    @media (max-width: 720px) {
      .pricing-grid { grid-template-columns: 1fr; }
    }

    /* FOUNDER */
    .founder-card {
      display: flex; gap: 32px; align-items: flex-start;
      max-width: 760px; margin: 0 auto;
      padding: 28px; border: 1px solid var(--border); border-radius: 12px;
      background: rgba(255,255,255,0.02);
    }
    .founder-photo {
      flex-shrink: 0; width: 140px; height: 140px; border-radius: 8px; object-fit: cover;
      background: var(--border);
    }
    .founder-body { flex: 1; min-width: 0; }
    .founder-body h3 { margin: 0 0 2px; font-size: 20px; font-weight: 700; color: var(--text); }
    .founder-title { margin: 0 0 16px; font-size: 13px; color: var(--text-muted); }
    .founder-body p { font-size: 15px; line-height: 1.65; color: var(--text); margin: 0 0 12px; }
    .founder-links { display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap; }
    .founder-link {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 8px 16px; border: 1px solid var(--border);
      border-radius: 8px; color: var(--text); text-decoration: none; font-size: 14px;
      transition: border-color 0.15s, background 0.15s;
    }
    .founder-link svg { width: 16px; height: 16px; }
    .founder-link:hover { border-color: var(--primary); background: rgba(167,139,250,0.06); }
    @media (max-width: 720px) {
      .founder-card { flex-direction: column; text-align: center; gap: 16px; padding: 20px; }
      .founder-photo { margin: 0 auto; width: 112px; height: 112px; }
      .founder-links { justify-content: center; }
    }

    /* PRIVACY */
    .privacy-grid {
      display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
      max-width: 860px; margin: 0 auto;
    }
    .privacy-item {
      padding: 24px; border: 1px solid var(--border); border-radius: 12px;
      background: rgba(255,255,255,0.02);
    }
    .privacy-icon { margin-bottom: 12px; }
    .privacy-icon svg { stroke: currentColor; stroke-width: 1.75; fill: none; width: 24px; height: 24px; }
    .privacy-item h3 { font-size: 17px; font-weight: 700; margin: 0 0 6px; color: var(--text); }
    .privacy-item p { font-size: 14px; line-height: 1.6; color: var(--text-muted); margin: 0; }
    .privacy-item code {
      font-size: 13px; padding: 1px 6px; border-radius: 4px;
      background: rgba(255,255,255,0.06); color: var(--text);
    }
    @media (max-width: 720px) {
      .privacy-grid { grid-template-columns: 1fr; }
      /* mobile: icon + heading on same row, description flows below */
      .privacy-item { display: grid; grid-template-columns: auto 1fr; column-gap: 12px; align-items: center; }
      .privacy-item > .privacy-icon { margin-bottom: 0; }
      .privacy-item > h3 { margin-bottom: 0; }
      .privacy-item > p { grid-column: 1 / -1; margin-top: 10px; }
    }

    /* TESTI-NOTE */
    .testi-note {
      max-width: 700px; margin: 24px auto 0; text-align: center;
      font-size: 13px; line-height: 1.55; color: var(--text-muted); font-style: italic;
    }

    /* STICKY MOBILE CTA */
    .sticky-cta {
      position: fixed; left: 50%; bottom: 16px; transform: translateX(-50%);
      z-index: 90; opacity: 0; pointer-events: none; transition: opacity 0.2s ease;
      display: none;
    }
    .sticky-cta.show { opacity: 1; pointer-events: auto; }
    .sticky-cta a {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 14px 24px; min-height: 48px;
      background: var(--primary); color: #fff; border-radius: 999px;
      font-size: 15px; font-weight: 600; text-decoration: none;
      box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.06) inset;
    }
    .sticky-cta svg { width: 18px; height: 18px; }
    @media (max-width: 720px) {
      .sticky-cta { display: block; }
    }


/* The multilingual pages reveal sections by toggling .visible; here every
   section is always on, so restore the layouts that rule carried. */
.hero, .steps, .faq, .tags { display: flex; }
.features { display: grid; }
