/* ── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; color: #1A1D23; background: #F8F9FC; -webkit-font-smoothing: antialiased; }

/* ── CSS VARIABLES ──────────────────────────────────────── */
:root {
  --purple:   #7C6EFA;
  --purple-h: #6A5DF0;
  --purple-l: #F0EFFE;
  --purple-d: #4A3DC4;
  --text:     #1A1D23;
  --mid:      #6B7280;
  --light:    #9CA3AF;
  --border:   #EAECF0;
  --page:     #F8F9FC;
  --card:     #ffffff;
  --green:    #10b981;
  --violet:   #8b5cf6;
  --cyan:     #06b6d4;
}

/* ── KEYFRAMES ──────────────────────────────────────────── */
@keyframes d1  { 0%,100%{transform:translate(0,0)}  60%{transform:translate(20px,14px)} }
@keyframes d2  { 0%,100%{transform:translate(0,0)}  60%{transform:translate(-16px,18px)} }
@keyframes d3  { 0%,100%{transform:translate(0,0)}  60%{transform:translate(12px,-16px)} }
@keyframes gl  { 0%,100%{transform:scale(1);opacity:.26} 55%{transform:scale(1.16);opacity:.13} }
@keyframes gl2 { 0%,100%{transform:scale(1);opacity:.20} 55%{transform:scale(1.10);opacity:.30} }
@keyframes fu  { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:translateY(0)} }
@keyframes wm  { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
@keyframes sbp { 0%,100%{transform:scale(1)} 25%{transform:scale(1.15)} 50%{transform:scale(1)} }
@keyframes pls { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.4)} }
@keyframes tabFill { from{width:0%} to{width:100%} }

/* ── NAV ────────────────────────────────────────────────── */
.nav-wrap { padding: 12px 20px; position: sticky; top: 0; z-index: 100; background: rgba(248,249,252,.96); backdrop-filter: blur(8px); }
.nav { max-width: 1100px; margin: 0 auto; background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 54px; }
.nav-logo { display: flex; align-items: center; gap: 9px; text-decoration: none; }
.nav-logo span { font-weight: 800; font-size: 15px; color: var(--text); letter-spacing: -0.02em; }
.nav-links { display: flex; gap: 24px; }
.nav-links a { font-size: 13px; color: var(--mid); font-weight: 500; text-decoration: none; transition: color .15s; }
.nav-links a:hover { color: var(--purple); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.sign-btn { padding: 7px 16px; border-radius: 8px; border: 1.5px solid transparent; font-size: 13px; font-weight: 600; color: var(--mid); cursor: pointer; transition: all .18s; background: transparent; font-family: inherit; text-decoration: none; display: inline-block; }
.sign-btn:hover { background: var(--purple-l); color: var(--purple); border-color: #DDD8FC; }
.nav-hamburger { display: none; }
.mobile-nav { display: none; }
.btn-p { padding: 9px 20px; background: var(--purple); border-radius: 8px; font-size: 13px; font-weight: 700; color: #fff; cursor: pointer; border: none; font-family: inherit; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: background .18s; }
.btn-p:hover { background: var(--purple-h); }
.btn-p .dot { width: 7px; height: 7px; border-radius: 50%; background: #A5F3C8; flex-shrink: 0; }

/* ── HERO ────────────────────────────────────────────────── */
.hero { position: relative; padding: 72px 28px 60px; text-align: center; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.pill { display: inline-flex; align-items: center; gap: 7px; padding: 5px 14px; background: var(--purple-l); border: 1px solid #DDD8FC; border-radius: 20px; font-size: 11px; font-weight: 700; color: var(--purple-d); margin-bottom: 26px; }
.pill .dot2 { width: 6px; height: 6px; border-radius: 50%; background: var(--purple); flex-shrink: 0; }
h1 { font-size: clamp(32px,5vw,44px); font-weight: 800; line-height: 1.1; letter-spacing: -0.035em; margin-bottom: 18px; }
.c1 { color: var(--purple); }
.c2 { color: var(--text); }
.c3 { color: var(--green); }
.hero-sub { font-size: 15px; color: var(--mid); line-height: 1.7; max-width: 460px; margin: 0 auto 32px; }
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 12px; }
.btn-outline { padding: 12px 24px; border: 1.5px solid #DDD8FC; border-radius: 9px; font-size: 13px; font-weight: 600; color: var(--purple); cursor: pointer; text-decoration: none; transition: background .15s; display: inline-block; }
.btn-outline:hover { background: var(--purple-l); }
.hero-note { font-size: 11px; color: var(--light); }

/* ── SECTION HELPERS ────────────────────────────────────── */
.sec { padding: 56px 20px; }
.sec-white { background: var(--card); border-top: 1px solid #F0EFFE; }
.sec-page  { background: var(--page); border-top: 1px solid #F0EFFE; }
.wrap { max-width: 1100px; margin: 0 auto; }
.lbl { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--purple); margin-bottom: 10px; text-align: center; }
.sh2 { font-size: clamp(20px,3vw,24px); font-weight: 800; color: var(--text); letter-spacing: -0.025em; margin-bottom: 10px; text-align: center; }
.ssub { font-size: 14px; color: var(--mid); line-height: 1.65; max-width: 480px; margin: 0 auto 36px; text-align: center; }

/* ── PRODUCT DEMO WIDGET ────────────────────────────────── */
.demo-section { background: var(--page); padding: 40px 20px 56px; border-top: 1px solid #F0EFFE; }
.demo-wrap { max-width: 900px; margin: 0 auto; }
.browser { width: 100%; border-radius: 14px; overflow: hidden; box-shadow: 0 20px 56px rgba(88,70,220,0.13), 0 2px 12px rgba(0,0,0,0.06); }
.chrome { background: #fff; padding: 10px 16px; border-bottom: 1px solid #EAECF0; display: flex; align-items: center; }
.chrome-dots span { width: 11px; height: 11px; border-radius: 50%; display: inline-block; margin-right: 5px; }
.scale-clip { width: 100%; overflow: hidden; }
.scale-inner { width: 1100px; transform-origin: top left; }

/* App shell */
.demo-app { display: flex; height: 480px; background: var(--page); }

/* Sidebar */
.demo-sb { width: 220px; flex-shrink: 0; background: var(--card); border-right: 1px solid var(--border); display: flex; flex-direction: column; height: 100%; }
.demo-sb-logo { height: 64px; padding: 0 16px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--border); flex-shrink: 0; }
.demo-sb-name { font-size: 15px; font-weight: 800; color: var(--text); letter-spacing: -0.03em; line-height: 1.2; }
.demo-sb-sub { font-size: 10px; font-weight: 500; color: var(--light); letter-spacing: .02em; }
.demo-sb-section { font-size: 10px; font-weight: 700; color: var(--light); letter-spacing: .08em; text-transform: uppercase; padding: 14px 18px 4px; flex-shrink: 0; }
.demo-sb-nav { display: flex; flex-direction: column; gap: 2px; padding: 0 8px; flex-shrink: 0; }
.demo-nav-item { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 10px; font-size: 13.5px; font-weight: 500; color: var(--mid); border: 1px solid transparent; position: relative; text-decoration: none; cursor: default; }
.demo-nav-item.active { background: var(--purple-l); color: var(--purple); font-weight: 600; border-color: rgba(124,110,250,0.15); }
.demo-nav-item.active::after { content: ''; position: absolute; right: 12px; top: 50%; transform: translateY(-50%); width: 6px; height: 6px; border-radius: 50%; background: var(--purple); }
.demo-nav-icon { width: 28px; height: 28px; border-radius: 7px; background: var(--page); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--light); }
.demo-nav-icon svg { width: 14px; height: 14px; }
.demo-nav-item.active .demo-nav-icon { background: rgba(124,110,250,0.15); color: var(--purple); }
.demo-sb-user { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-top: 1px solid var(--border); flex-shrink: 0; }
.demo-sb-av { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, var(--purple), #5B4FE8); color: #fff; font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.demo-sb-uname { font-size: 13px; font-weight: 600; color: var(--text); }
.demo-sb-uemail { font-size: 11px; color: var(--light); margin-top: 1px; }
.demo-credits { margin: 0 10px 10px; background: linear-gradient(135deg, var(--purple-l), #E8E4FF); border: 1px solid rgba(124,110,250,0.2); border-radius: 12px; padding: 14px; flex-shrink: 0; }
.demo-credits-label { font-size: 10px; font-weight: 700; color: var(--purple); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.demo-credits-val { font-size: 24px; font-weight: 800; color: var(--purple-d); letter-spacing: -0.03em; line-height: 1; }
.demo-credits-denom { font-size: 12px; color: var(--purple); font-weight: 500; }
.demo-credits-bar-bg { height: 4px; background: rgba(124,110,250,0.2); border-radius: 999px; margin: 6px 0; overflow: hidden; }
.demo-credits-bar { height: 100%; width: 74%; background: linear-gradient(90deg, var(--purple), #A78BFA); border-radius: 999px; }
.demo-credits-note { font-size: 10.5px; color: var(--purple); font-weight: 500; opacity: .8; }

/* Demo main area */
.demo-main { flex: 1; display: flex; flex-direction: column; overflow: hidden; min-width: 0; }

/* Demo topbar */
.demo-topbar { height: 64px; background: var(--card); border-bottom: 1px solid var(--border); padding: 0 28px; display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; }
.demo-bc { display: flex; align-items: center; gap: 8px; }
.demo-bc-back { display: flex; align-items: center; gap: 5px; color: var(--mid); font-size: 14px; font-weight: 500; }
.demo-bc-sep { color: var(--light); }
.demo-bc-cur { font-size: 16px; font-weight: 800; color: var(--text); letter-spacing: -0.02em; }
.demo-tb-acts { display: flex; gap: 8px; }
.demo-btn-ghost { display: inline-flex; align-items: center; gap: 5px; padding: 7px 12px; border-radius: 8px; border: 1.5px solid var(--border); background: var(--card); font-family: inherit; font-size: 12px; font-weight: 600; color: var(--mid); cursor: default; }
.demo-btn-primary { display: inline-flex; align-items: center; gap: 5px; padding: 7px 14px; border-radius: 8px; border: none; background: var(--purple); color: #fff; font-family: inherit; font-size: 12px; font-weight: 700; cursor: default; }

/* Tab bar */
.demo-tab-bar { height: 52px; background: var(--card); border-bottom: 1px solid var(--border); padding: 0 20px; display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.demo-tab { display: inline-flex; align-items: center; gap: 7px; padding: 7px 14px; border-radius: 20px; font-size: 13px; font-weight: 600; cursor: pointer; border: 1.5px solid transparent; background: transparent; font-family: inherit; color: var(--mid); transition: all .3s ease; }
.demo-tab.active { background: #7C6EFA !important; color: #ffffff !important; border-color: #7C6EFA !important; box-shadow: 0 2px 8px rgba(124,110,250,0.3); }
.demo-tab-count { font-size: 11px; font-weight: 700; padding: 1px 7px; border-radius: 20px; transition: all .3s ease; }
.demo-tab.active .demo-tab-count { background: rgba(255,255,255,0.25) !important; color: #fff !important; }
.demo-tab:not(.active) .demo-tab-count { background: rgba(124,110,250,0.10); color: var(--purple); }

/* Views */
.demo-view { display: none; flex-direction: column; flex: 1; overflow: hidden; }
.demo-view.active { display: flex; }

/* Info bar */
.demo-info-bar { padding: 10px 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border); background: var(--card); flex-shrink: 0; }
.demo-auto-stat { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--mid); font-weight: 500; }
.demo-auto-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.demo-export { font-size: 12px; color: var(--purple); font-weight: 600; display: flex; align-items: center; gap: 5px; }

/* Demo table */
.demo-tbl-area { flex: 1; overflow: auto; }
.demo-tbl-area table { width: 100%; border-collapse: collapse; }
.demo-tbl-area thead th { padding: 9px 14px; text-align: left; font-size: 10px; font-weight: 700; color: var(--light); text-transform: uppercase; letter-spacing: .07em; border-bottom: 1px solid var(--border); background: var(--card); position: sticky; top: 0; white-space: nowrap; }
.demo-tbl-area tbody tr { border-bottom: 1px solid #F9FAFB; }
.demo-tbl-area tbody tr:hover { background: #FAFBFF; }
.demo-tbl-area tbody tr:last-child { border-bottom: none; }
.demo-tbl-area td { padding: 11px 14px; vertical-align: middle; white-space: nowrap; font-size: 13px; }

/* Table cell components */
.demo-creator-cell { display: flex; align-items: center; gap: 10px; }
.demo-av { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: #fff; flex-shrink: 0; }
.demo-cname { font-weight: 600; font-size: 13px; color: var(--text); }
.demo-chandle { font-size: 11px; color: var(--light); margin-top: 1px; }
.demo-platform { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 500; color: var(--mid); }
.demo-days { display: flex; gap: 3px; align-items: center; }
.demo-day { width: 14px; height: 14px; border-radius: 3px; }
.demo-day.p { background: var(--green); }
.demo-day.n { background: #E5E7EB; }
.demo-day.t { outline: 2px solid var(--purple); outline-offset: 1px; }
.demo-status { display: flex; align-items: center; gap: 5px; }
.demo-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.demo-dot.live { background: var(--green); }
.demo-dot.stale { background: #F59E0B; }
.demo-dot.pend { background: #D1D5DB; }
.demo-st { font-size: 12px; font-weight: 500; }
.demo-st.live { color: #059669; }
.demo-st.stale { color: #D97706; }
.demo-st.pend { color: var(--light); }
.demo-mv { font-weight: 600; font-size: 13px; }
.demo-gp { color: #059669; font-size: 12px; font-weight: 600; }
.demo-freq { font-size: 11px; color: var(--mid); background: var(--page); padding: 2px 8px; border-radius: 20px; font-weight: 500; border: 1px solid var(--border); }
.demo-tog { width: 32px; height: 18px; border-radius: 9px; position: relative; border: none; flex-shrink: 0; }
.demo-tog.on { background: var(--green); }
.demo-tog.off { background: #D1D5DB; }
.demo-knob { position: absolute; top: 2px; width: 14px; height: 14px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.15); }
.demo-tog.on .demo-knob { left: 16px; }
.demo-tog.off .demo-knob { left: 2px; }
.demo-tog-lbl { font-size: 12px; font-weight: 600; }
.demo-tog-lbl.on { color: #059669; }
.demo-tog-lbl.off { color: var(--light); }
.demo-ref-btn { display: inline-flex; align-items: center; gap: 4px; padding: 5px 9px; border-radius: 7px; border: 1px solid var(--border); background: var(--card); font-family: inherit; font-size: 11px; font-weight: 600; color: var(--mid); cursor: default; }
.demo-vthumb { width: 44px; height: 44px; border-radius: 7px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.demo-vcap { font-size: 13px; font-weight: 500; color: var(--text); max-width: 180px; overflow: hidden; text-overflow: ellipsis; }
.demo-reach { padding: 2px 7px; border-radius: 20px; font-size: 11px; font-weight: 700; }
.demo-reach.h { background: #ECFDF5; color: #059669; }
.demo-reach.m { background: #FEF3C7; color: #D97706; }
.demo-sb-spacer { flex: 1; }

/* ── FEATURE CARDS ──────────────────────────────────────── */
.feats-g { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.fc { background: var(--card); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: transform .2s, border-color .2s; animation: fu .5s ease both; }
.fc:hover { transform: translateY(-4px); border-color: var(--purple); }
.fc-top { padding: 20px; position: relative; overflow: hidden; min-height: 120px; }
.fc-b { position: absolute; border-radius: 50%; pointer-events: none; }
.fc-in { position: relative; z-index: 1; background: var(--card); border-radius: 9px; padding: 11px; }
.fc-tag { font-size: 9px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; margin-bottom: 8px; }
.cal-r { display: flex; gap: 2px; }
.sq { width: 9px; height: 9px; border-radius: 2px; }
.met-g { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.mt { padding: 4px 6px; border-radius: 4px; font-size: 9px; font-weight: 600; }
.pr { display: flex; align-items: center; justify-content: space-between; padding: 4px 6px; border-radius: 5px; margin-bottom: 5px; }
.pb { font-size: 8px; padding: 1px 6px; border-radius: 3px; font-weight: 700; }
.fc-body { padding: 16px 18px; }
.fc-q { font-size: 13px; font-weight: 700; margin-bottom: 6px; line-height: 1.3; }
.fc-p { font-size: 12px; color: var(--mid); line-height: 1.65; }

/* ── BEFORE / AFTER ─────────────────────────────────────── */
.ba-g { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ba-c { border-radius: 14px; padding: 28px; }
.ba-lbl { display: flex; align-items: center; gap: 6px; margin-bottom: 18px; }
.ba-dot { width: 8px; height: 8px; border-radius: 50%; }
.ba-ltxt { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--light); }
.ba-list { display: flex; flex-direction: column; gap: 11px; list-style: none; }
.ba-item { display: flex; gap: 10px; align-items: flex-start; }
.ba-ic { width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.ba-t { font-size: 13px; line-height: 1.5; }

/* ── STEPS ──────────────────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 0; max-width: 640px; margin: 0 auto; position: relative; }
.steps::before { content: ''; position: absolute; left: 22px; top: 44px; bottom: 44px; width: 2px; background: linear-gradient(180deg, var(--purple), var(--green)); opacity: .15; border-radius: 1px; }
.step { display: grid; grid-template-columns: 44px 1fr; gap: 20px; padding: 28px 0; align-items: flex-start; border-bottom: 1px solid #F0EFFE; }
.step:last-child { border-bottom: none; }
.snum { width: 44px; height: 44px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 800; flex-shrink: 0; position: relative; z-index: 1; }
.stitle { font-size: 15px; font-weight: 700; margin-bottom: 6px; line-height: 1.3; }
.sbody { font-size: 13px; color: var(--mid); line-height: 1.7; }
.step-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.step-chip { display: inline-flex; align-items: center; gap: 5px; padding: 4px 10px; border-radius: 20px; font-size: 11px; font-weight: 600; }
.step-chip.g { background: #ECFDF5; border: 1px solid #BBF7D0; color: #059669; }
.step-chip.p { background: var(--purple-l); border: 1px solid #DDD8FC; color: var(--purple); }

/* ── FAQ ────────────────────────────────────────────────── */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.fi { background: var(--card); border: 1.5px solid var(--border); border-radius: 16px; overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.fi.open { border-color: rgba(124,110,250,0.35); box-shadow: 0 4px 20px rgba(124,110,250,0.08); }
.fq { display: flex; align-items: center; padding: 20px 24px; cursor: pointer; gap: 16px; background: none; border: none; font-family: inherit; text-align: left; width: 100%; transition: background .15s; }
.fq:hover { background: var(--purple-l); }
.fq-t { font-size: 14px; font-weight: 700; color: var(--text); letter-spacing: -0.01em; line-height: 1.3; flex: 1; }
.fi.open .fq-t { color: var(--purple); }
.fi-ic { display: none; }
.fa { max-height: 0; overflow: hidden; transition: max-height .38s ease; }
.fa-in { padding: 0 24px 20px; font-size: 13px; color: var(--mid); line-height: 1.75; border-top: 1px solid var(--border); }
.fa-in p { padding-top: 16px; }
.fa-in strong { color: var(--text); font-weight: 600; }
.faq-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.faq-chip { padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 600; background: var(--purple-l); color: var(--purple); border: 1px solid rgba(124,110,250,0.2); }
.faq-chip.g { background: #ECFDF5; color: #059669; border-color: #BBF7D0; }
.faq-metric-split { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 14px; }
.faq-ms-box { padding: 12px 14px; border-radius: 10px; border: 1px solid var(--border); background: #FAFBFF; }
.faq-ms-box.purple { background: var(--purple-l); border-color: rgba(124,110,250,0.2); }
.faq-ms-lbl { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--light); margin-bottom: 8px; }
.faq-ms-box.purple .faq-ms-lbl { color: var(--purple); }
.faq-msc { font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 20px; background: #fff; border: 1px solid var(--border); color: var(--mid); margin: 2px; display: inline-block; }
.faq-ms-box.purple .faq-msc { background: rgba(124,110,250,0.08); border-color: rgba(124,110,250,0.15); color: var(--purple); }
.faq-msc.green { background: #ECFDF5; border-color: #BBF7D0; color: #059669; }
.faq-plan-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 12px; }
.faq-plan-box { padding: 14px 16px; border-radius: 10px; border: 1px solid var(--border); background: #FAFBFF; }
.faq-plan-box.active { background: var(--purple-l); border-color: rgba(124,110,250,0.25); }
.faq-plan-name { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--light); margin-bottom: 4px; }
.faq-plan-box.active .faq-plan-name { color: var(--purple); }
.faq-plan-val { font-size: 15px; font-weight: 800; color: var(--text); line-height: 1.2; margin-bottom: 3px; }
.faq-plan-sub { font-size: 11px; color: var(--mid); margin-bottom: 6px; }
.faq-plan-tags { display: flex; flex-wrap: wrap; gap: 4px; }
.faq-plan-tag { font-size: 10px; font-weight: 600; padding: 2px 7px; border-radius: 20px; background: #F3F4F8; color: var(--mid); }
.faq-plan-box.active .faq-plan-tag { background: rgba(124,110,250,0.1); color: var(--purple); }
.faq-info-box { margin-top: 12px; padding: 12px 16px; background: var(--purple-l); border: 1px solid rgba(124,110,250,0.2); border-radius: 10px; font-size: 13px; color: var(--purple-d); font-weight: 500; line-height: 1.6; }
.faq-info-box strong { color: var(--purple-d); font-weight: 700; }

/* ── PRICING ────────────────────────────────────────────── */
.tog-wrap { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 32px; }
.tog-lbl { font-size: 13px; font-weight: 700; cursor: pointer; user-select: none; transition: color .2s; }
.tog-track { width: 48px; height: 27px; background: #D1D5DB; border-radius: 14px; cursor: pointer; position: relative; transition: background .25s; flex-shrink: 0; border: none; }
.tog-knob { position: absolute; top: 3px; left: 3px; width: 21px; height: 21px; background: #fff; border-radius: 50%; transition: transform .25s; box-shadow: 0 1px 3px rgba(0,0,0,.2); }
.yr-b { background: #DCFCE7; color: #166534; font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 10px; }
.pc-g { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; align-items: flex-start; }
.pc { border-radius: 16px; padding: 26px; }
.pc-lite { background: var(--card); border: 1px solid var(--border); }
.pc-feat { display: flex; gap: 8px; align-items: flex-start; margin-bottom: 9px; }
.pc-ck { font-size: 12px; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pc-ft { font-size: 12px; line-height: 1.5; }
.pc-ft-hl { font-size: 12px; line-height: 1.5; font-weight: 600; }
.pc-plan { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--light); margin-bottom: 10px; }
.pc-price { font-size: 36px; font-weight: 800; letter-spacing: -0.035em; line-height: 1; }
.pc-per { font-size: 13px; font-weight: 400; }
.pc-bill { font-size: 11px; margin-top: 4px; margin-bottom: 14px; }
.pc-desc { font-size: 12px; line-height: 1.55; margin-bottom: 18px; padding-bottom: 18px; }
.pc-feats { margin-bottom: 22px; }
.pc-cta { width: 100%; padding: 12px; border-radius: 10px; font-size: 13px; font-weight: 700; cursor: pointer; font-family: inherit; transition: all .18s; text-align: center; text-decoration: none; display: block; }

/* ── CTA STRIP ──────────────────────────────────────────── */
.cta-strip { position: relative; overflow: hidden; padding: 48px 28px; }
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; max-width: 1100px; margin: 0 auto; }
.cta-h { font-size: 22px; font-weight: 800; color: #2D1B6B; letter-spacing: -0.02em; margin-bottom: 6px; }
.cta-s { font-size: 12px; color: var(--mid); }
.arr { font-size: 16px; font-weight: 900; line-height: 1; }

/* ── FOOTER ─────────────────────────────────────────────── */
footer { background: #F0EFFE; border-top: 1px solid #DDD8FC; }
.foot-top { padding: 44px 28px 28px; max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.foot-brand { display: flex; flex-direction: column; gap: 12px; }
.foot-logo { display: flex; align-items: center; gap: 9px; text-decoration: none; }
.foot-logo span { font-weight: 800; font-size: 16px; color: var(--text); letter-spacing: -0.02em; }
.foot-tag { font-size: 12px; color: var(--mid); line-height: 1.6; max-width: 220px; }
.foot-col h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--text); margin-bottom: 14px; }
.foot-col a { display: block; font-size: 12px; color: var(--mid); text-decoration: none; margin-bottom: 9px; transition: color .15s; }
.foot-col a:hover { color: var(--purple); }
.foot-bot { border-top: 1px solid #DDD8FC; padding: 18px 28px; max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.foot-copy { font-size: 11px; color: var(--light); }
.foot-legal { display: flex; align-items: center; gap: 12px; }
.foot-legal a { font-size: 11px; color: var(--light); text-decoration: none; }
.foot-legal a:hover { color: var(--purple); }
.foot-nl { display: flex; align-items: center; gap: 6px; }
.foot-nl span { font-size: 12px; color: var(--mid); font-weight: 500; }
.wm-g { transform-origin: 10px 11px; animation: wm 8s linear infinite; }

/* ── GDPR ────────────────────────────────────────────────── */
#gdpr { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: var(--card); border-top: 2px solid var(--purple-l); box-shadow: 0 -4px 24px rgba(0,0,0,.10); }
.gdpr-main { max-width: 1100px; margin: 0 auto; padding: 18px 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.gdpr-t { font-size: 12px; color: var(--mid); line-height: 1.6; max-width: 560px; }
.gdpr-t a { color: var(--purple); }
.gdpr-btns { display: flex; align-items: center; gap: 8px; flex-shrink: 0; flex-wrap: wrap; }
.gdpr-acc { padding: 9px 18px; background: var(--purple); color: #fff; border: none; border-radius: 8px; font-size: 12px; font-weight: 700; cursor: pointer; font-family: inherit; }
.gdpr-acc:hover { background: var(--purple-h); }
.gdpr-mgr { padding: 8px 14px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 12px; font-weight: 600; color: var(--text); background: transparent; cursor: pointer; font-family: inherit; }
.gdpr-mgr:hover { border-color: var(--purple); color: var(--purple); }
.gdpr-rej { font-size: 12px; color: var(--light); cursor: pointer; background: none; border: none; font-family: inherit; text-decoration: underline; padding: 4px; }
#gdpr-panel { display: none; border-top: 1px solid var(--border); background: var(--page); }
.gdpr-pi { max-width: 1100px; margin: 0 auto; padding: 20px 24px; }
.gdpr-pi h4 { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 16px; }
.gdpr-cat { display: flex; align-items: flex-start; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--border); gap: 16px; }
.gdpr-cat:last-of-type { border-bottom: none; }
.gdpr-ci h5 { font-size: 12px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.gdpr-ci p { font-size: 11px; color: var(--mid); line-height: 1.55; }
.tpill { position: relative; width: 40px; height: 22px; border-radius: 11px; background: #D1D5DB; cursor: pointer; flex-shrink: 0; border: none; font-size: 0; transition: background .2s; }
.tpill.always { background: #D1D5DB; cursor: not-allowed; }
.tpill.on { background: var(--purple); }
.tpill::after { content: ''; position: absolute; top: 2px; left: 2px; width: 18px; height: 18px; background: #fff; border-radius: 50%; transition: transform .2s; box-shadow: 0 1px 3px rgba(0,0,0,.2); }
.tpill.on::after { transform: translateX(18px); }
.gdpr-save { margin-top: 16px; padding: 9px 20px; background: var(--purple); color: #fff; border: none; border-radius: 8px; font-size: 12px; font-weight: 700; cursor: pointer; font-family: inherit; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .feats-g, .pc-g { grid-template-columns: 1fr; }
  .ba-g { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr 1fr; }
  .faq-metric-split, .faq-plan-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .nav-links { display: none; }
    .nav-actions { display: none; }
    .nav-hamburger { display: flex; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; margin-left: auto; }
    .nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .2s; }
    .mobile-nav { display: none; position: fixed; top: 78px; left: 12px; right: 12px; background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 16px; z-index: 99; box-shadow: 0 8px 32px rgba(0,0,0,.12); flex-direction: column; gap: 4px; }
    .mobile-nav.open { display: flex; }
    .mobile-nav a { padding: 12px 14px; border-radius: 9px; font-size: 14px; font-weight: 600; color: var(--mid); text-decoration: none; transition: background .15s; }
    .mobile-nav a:hover { background: var(--purple-l); color: var(--purple); }
    .mobile-nav-divider { height: 1px; background: var(--border); margin: 6px 0; }
    .mobile-nav-signin { color: var(--text) !important; }
    .mobile-nav-cta { background: var(--purple) !important; color: #fff !important; display: flex !important; align-items: center; gap: 8px; margin-top: 4px; }
    .mobile-nav-cta:hover { background: var(--purple-h) !important; }
  h1 { font-size: 28px; }
  .hero-sub { font-size: 14px; }
  .foot-top { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .gdpr-main { flex-direction: column; align-items: flex-start; }
  .step { grid-template-columns: 36px 1fr; gap: 14px; }
  .demo-section { padding: 24px 12px 40px; }
}