/* ── Tokens ── */
:root {
  --cream:   #F6F4F1;
  --cream2:  #EDEAE5;
  --dark:    #1A1612;
  --dark2:   #242018;
  --orange:  #E85D04;
  --orange2: #C44D03;
  --indigo:  #312E81;
  --indigo2: #3730A3;
  --forest:  #064E3B;
  --forest2: #065F46;
  --muted:   #7A7268;
  --border:  rgba(26,22,18,.12);
  --radius:  8px;
  --radius-lg: 12px;
  --hero-color: var(--dark);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--cream);
  color: var(--dark);
  line-height: 1.6;
  font-size: 16px;
}

/* ── Nav ── */
body.admin-bar nav { top: 32px; }
@media screen and (max-width: 782px) { body.admin-bar nav { top: 46px; } }
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--cream);
  border-bottom: 2px solid var(--dark);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 29px; width: auto; display: block; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { font-size: .875rem; color: var(--muted); text-decoration: none; font-weight: 500; transition: color .15s; }
.nav-links a:hover, .nav-links .current-menu-item a { color: var(--dark); }
.nav-right { display: flex; gap: .75rem; align-items: center; }
.lang-sel {
  appearance: none; -webkit-appearance: none;
  background: var(--cream2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%237A7268' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") right .5rem center / 10px 6px no-repeat;
  border: 1px solid var(--border); border-radius: 6px;
  padding: .28rem 1.6rem .28rem .6rem;
  font-size: .78rem; font-weight: 700; color: var(--dark);
  cursor: pointer; font-family: inherit; line-height: 1;
  transition: border-color .15s;
}
.lang-sel:hover { border-color: rgba(26,22,18,.25); }
.lang-sel:focus { outline: 2px solid var(--orange); outline-offset: 1px; }
.nav-cta {
  background: var(--orange); color: #fff;
  font-size: .825rem; font-weight: 700;
  padding: .42rem 1rem; border-radius: var(--radius);
  text-decoration: none; transition: background .15s;
}
.nav-cta:hover { background: var(--orange2); }

/* ── Hero ── */
.hero { background: var(--hero-color); color: #fff; padding: 4.5rem 2rem 4rem; }
.hero-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-inner.centered { grid-template-columns: 1fr; text-align: center; max-width: 760px; padding: .5rem 0; }
.hero-eyebrow { font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 1.25rem; }
.hero h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 900; line-height: 1.05; letter-spacing: -.04em; margin-bottom: 1rem; color: #fff; }
.hero h1 em { font-style: normal; color: var(--orange); }
.hero-sub { font-size: 1rem; color: rgba(255,255,255,.65); line-height: 1.65; margin-bottom: 2rem; max-width: 440px; }
.hero-inner.centered .hero-sub { margin-left: auto; margin-right: auto; }
.hero-btns { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.hero-inner.centered .hero-btns { justify-content: center; }
.btn-hero-p { background: #fff; color: var(--hero-color); padding: .75rem 1.6rem; border-radius: var(--radius); font-size: .9rem; font-weight: 800; text-decoration: none; transition: opacity .15s; }
.btn-hero-p:hover { opacity: .9; }
.btn-hero-s { background: rgba(255,255,255,.1); color: #fff; padding: .75rem 1.6rem; border-radius: var(--radius); font-size: .9rem; font-weight: 600; text-decoration: none; border: 1.5px solid rgba(255,255,255,.2); transition: background .15s; }
.btn-hero-s:hover { background: rgba(255,255,255,.18); }
.hero-note { font-size: .75rem; color: rgba(255,255,255,.4); }

/* Hero demo widget — VoicePaste */
.hero-demo { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.demo-window { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); width: 100%; max-width: 360px; overflow: hidden; }
.demo-win-bar { background: rgba(255,255,255,.05); padding: 0 0 0 1rem; border-bottom: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: space-between; min-height: 32px; }
.demo-win-controls { display: flex; }
.demo-wbtn { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; font-size: .62rem; color: rgba(255,255,255,.45); cursor: default; transition: background .1s; user-select: none; }
.demo-wbtn:hover { background: rgba(255,255,255,.12); color: rgba(255,255,255,.9); }
.demo-wbtn-close:hover { background: #C42B1C; color: #fff; }
.demo-win-title { font-size: .72rem; color: rgba(255,255,255,.35); margin: 0 auto; }
.demo-win-body { padding: 1.25rem; display: flex; flex-direction: column; gap: .75rem; }
.demo-chat-msg { padding: .55rem .9rem; border-radius: 10px; font-size: .82rem; max-width: 80%; }
.demo-msg-in { background: rgba(255,255,255,.1); color: rgba(255,255,255,.7); align-self: flex-start; }
.demo-msg-out { background: rgba(255,255,255,.2); color: #fff; align-self: flex-end; }
.demo-widget-row { background: rgba(255,255,255,.07); border: 1.5px solid rgba(255,193,87,.3); border-radius: var(--radius); padding: .75rem 1rem; display: flex; align-items: center; gap: .75rem; }
.demo-bars { display: flex; align-items: center; gap: 3px; height: 24px; }
.demo-bar { width: 3px; border-radius: 2px; background: #FCA5A5; }
.demo-bar:nth-child(1){height:6px;animation:bar-a .8s ease-in-out infinite;animation-delay:0s}
.demo-bar:nth-child(2){height:14px;animation:bar-a .8s ease-in-out infinite;animation-delay:.1s}
.demo-bar:nth-child(3){height:22px;animation:bar-a .8s ease-in-out infinite;animation-delay:.2s}
.demo-bar:nth-child(4){height:18px;animation:bar-a .8s ease-in-out infinite;animation-delay:.3s}
.demo-bar:nth-child(5){height:10px;animation:bar-a .8s ease-in-out infinite;animation-delay:.4s}
.demo-bar:nth-child(6){height:20px;animation:bar-a .8s ease-in-out infinite;animation-delay:.5s}
@keyframes bar-a { 0%,100%{transform:scaleY(1)} 50%{transform:scaleY(.25)} }
.demo-widget-label { font-size: .75rem; font-weight: 700; color: rgba(255,255,255,.8); }
.demo-hotkey { display: flex; align-items: center; gap: .4rem; font-size: .75rem; color: rgba(255,255,255,.4); }
kbd { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); border-radius: 5px; padding: .15rem .45rem; font-size: .7rem; font-family: inherit; color: rgba(255,255,255,.7); }

/* Hero UI mockup — SerpHarvester */
.hero-ui { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); overflow: hidden; max-width: 420px; width: 100%; }
.hero-ui-bar { background: rgba(255,255,255,.05); padding: .55rem 1rem; border-bottom: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; gap: .5rem; font-size: .72rem; color: rgba(255,255,255,.35); }
.hero-ui-body { padding: 1rem; }
.rank-row { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: .5rem; padding: .45rem .5rem; border-radius: 6px; font-size: .75rem; align-items: center; }
.rank-row.header { font-weight: 700; font-size: .65rem; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: .25rem; }
.rank-row:not(.header):hover { background: rgba(255,255,255,.05); }
.rank-kw { font-weight: 600; color: rgba(255,255,255,.85); }
.rank-pos { text-align: center; }
.rank-up { color: #34D399; font-weight: 700; }
.rank-down { color: #F87171; font-weight: 700; }
.rank-vol { text-align: right; color: rgba(255,255,255,.45); }

/* ── Trust strip ── */
.trust-strip { background: var(--cream2); border-bottom: 1px solid var(--border); display: flex; flex-wrap: wrap; justify-content: center; }
.trust-item { display: flex; align-items: center; gap: .5rem; padding: 1rem 1.75rem; border-right: 1px solid var(--border); font-size: .875rem; font-weight: 600; color: var(--dark); }
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 1rem; }

/* ── Stats strip (homepage) ── */
.stats-strip { background: var(--cream2); border-bottom: 1px solid var(--border); display: flex; flex-wrap: wrap; }
.stat-item { flex: 1; min-width: 160px; padding: 1.5rem 2rem; border-right: 1px solid var(--border); text-align: center; }
.stat-item:last-child { border-right: none; }
.stat-n { font-size: 2rem; font-weight: 900; letter-spacing: -.04em; color: var(--dark); }
.stat-n span { color: var(--orange); }
.stat-l { font-size: .75rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-top: .2rem; }

/* ── Section base ── */
.section { padding: 5rem 2rem; }
.section-dark { background: var(--dark); color: var(--cream); }
.section-cream2 { background: var(--cream2); }
.container { max-width: 1100px; margin: 0 auto; }
.section-label { font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--orange); margin-bottom: .6rem; text-align: center; }
.section-label-light { color: rgba(255,255,255,.4); }
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900; letter-spacing: -.03em; text-align: center; margin-bottom: .75rem; }
.section-sub { font-size: .975rem; color: var(--muted); max-width: 540px; margin: 0 auto 3.5rem; text-align: center; line-height: 1.65; }
.section-dark .section-sub { color: #7A7268; }

/* ── Apps grid (homepage) ── */
.apps-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1rem; }
.app-card { border-radius: var(--radius-lg); padding: 2rem; display: flex; flex-direction: column; text-decoration: none; color: #fff; transition: transform .2s; min-height: 280px; }
.app-card:hover { transform: translateY(-3px); }
.app-card.voicepaste { background: var(--indigo); }
.app-card.voicepaste:hover { background: var(--indigo2); }
.app-card.serpharvester { background: var(--forest); }
.app-card.serpharvester:hover { background: var(--forest2); }
.app-card.coming-soon { background: var(--cream2); color: var(--muted); border: 1.5px dashed var(--border); }
.app-card-tag { font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; opacity: .6; margin-bottom: .75rem; }
.app-card.coming-soon .app-card-tag { color: var(--muted); }
.app-card-name { font-size: 1.5rem; font-weight: 900; letter-spacing: -.03em; margin-bottom: .6rem; color: #fff; }
.app-card.coming-soon .app-card-name { color: var(--muted); }
.app-card-desc { font-size: .9rem; line-height: 1.6; opacity: .75; flex: 1; margin-bottom: 1.5rem; }
.app-card-tags { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.app-tag { background: rgba(255,255,255,.15); color: rgba(255,255,255,.9); font-size: .72rem; font-weight: 600; padding: .2rem .55rem; border-radius: 5px; letter-spacing: .03em; }
.app-card.coming-soon .app-tag { background: var(--border); color: var(--muted); }
.app-card-link { display: inline-flex; align-items: center; gap: .3rem; font-size: .82rem; font-weight: 700; color: #fff; opacity: .85; margin-top: auto; }
.app-card-link::after { content: '→'; }

/* ── Values (homepage) ── */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.value-item { background: var(--cream); padding: 2rem 1.75rem; transition: background .15s; }
.value-item:hover { background: var(--cream2); }
.value-icon { width: 36px; height: 36px; background: var(--dark); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.value-icon svg { width: 18px; height: 18px; stroke: var(--cream); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.value-item h3 { font-size: 1rem; font-weight: 800; letter-spacing: -.01em; margin-bottom: .4rem; }
.value-item p { font-size: .875rem; color: var(--muted); line-height: 1.6; }

/* ── About (homepage) ── */
.about-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.about-avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin: 0 auto 1.75rem; }
.about-inner h2 { font-size: 2rem; font-weight: 900; letter-spacing: -.03em; margin-bottom: 1rem; }
.about-inner p { color: #7A7268; font-size: 1rem; margin-bottom: 1rem; line-height: 1.7; }
.about-inner p.highlight { color: var(--cream); font-weight: 600; }
.about-links { display: flex; gap: .75rem; justify-content: center; margin-top: 2rem; flex-wrap: wrap; }
.about-link { display: flex; align-items: center; gap: .5rem; background: rgba(246,244,241,.06); border: 1.5px solid rgba(246,244,241,.15); color: var(--cream); text-decoration: none; padding: .65rem 1.25rem; border-radius: var(--radius); font-size: .9rem; font-weight: 600; transition: border-color .15s, background .15s; }
.about-link:hover { background: rgba(246,244,241,.1); border-color: rgba(246,244,241,.3); }

/* ── Features grid (VoicePaste) ── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.feature-card { background: var(--cream); padding: 1.75rem; transition: background .15s; }
.feature-card:hover { background: var(--cream2); }
.feature-hotkey { display: inline-block; font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; background: var(--indigo); color: #fff; padding: .2rem .5rem; border-radius: 5px; margin-bottom: .75rem; }
.feature-hotkey.pro { background: var(--orange); }
.feature-emoji { font-size: 1.75rem; line-height: 1; margin-bottom: .6rem; }
.feature-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: .4rem; letter-spacing: -.01em; }
.feature-card p { font-size: .875rem; color: var(--muted); line-height: 1.6; }

/* ── Audience grid ── */
.audience-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1rem; }
.audience-card { background: var(--dark2); border: 1px solid rgba(246,244,241,.06); border-radius: var(--radius-lg); padding: 1.5rem; display: flex; gap: 1rem; transition: border-color .15s; }
.audience-card:hover { border-color: rgba(232,93,4,.3); }
.audience-icon { font-size: 1.5rem; flex-shrink: 0; }
.audience-card h3 { font-size: .95rem; font-weight: 800; color: var(--cream); margin-bottom: .35rem; }
.audience-card p { font-size: .85rem; color: #7A7268; line-height: 1.55; }

/* ── Privacy cards ── */
.privacy-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1px; background: rgba(246,244,241,.08); border: 1px solid rgba(246,244,241,.08); border-radius: var(--radius-lg); overflow: hidden; margin-top: 3rem; }
.privacy-card { background: var(--dark2); padding: 1.5rem 1.75rem; transition: background .15s; }
.privacy-card:hover { background: #2c2820; }
.privacy-card-icon { font-size: 1.4rem; margin-bottom: .6rem; }
.privacy-card h3 { font-size: .95rem; font-weight: 800; color: var(--cream); margin-bottom: .35rem; }
.privacy-card p { font-size: .85rem; color: #7A7268; line-height: 1.55; }

/* ── Modules grid (SerpHarvester) ── */
.modules-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.module-card { background: var(--cream); padding: 1.75rem; transition: background .15s; }
.module-card:hover { background: var(--cream2); }
.module-num { font-size: .65rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--forest); background: rgba(6,78,59,.08); padding: .2rem .5rem; border-radius: 5px; display: inline-block; margin-bottom: .75rem; }
.module-card h3 { font-size: 1rem; font-weight: 800; letter-spacing: -.01em; margin-bottom: .4rem; }
.module-card p { font-size: .875rem; color: var(--muted); line-height: 1.6; }

/* ── Analytics blocks (SerpHarvester) ── */
.analytics-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.analytics-card { background: var(--dark2); border: 1px solid rgba(246,244,241,.06); border-radius: var(--radius-lg); padding: 1.75rem; }
.analytics-card-label { font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: .5rem; }
.analytics-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--cream); margin-bottom: .6rem; }
.analytics-card p { font-size: .875rem; color: #7A7268; line-height: 1.6; margin-bottom: 1rem; }
.analytics-preview { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: var(--radius); padding: 1rem; display: flex; flex-direction: column; gap: .4rem; }
.bar-row { display: flex; align-items: center; gap: .6rem; }
.bar-label { font-size: .65rem; color: rgba(255,255,255,.4); width: 50px; flex-shrink: 0; }
.bar-track { flex: 1; height: 6px; background: rgba(255,255,255,.08); border-radius: 3px; }
.bar-fill { height: 100%; border-radius: 3px; background: var(--forest2); }
.bar-val { font-size: .65rem; color: rgba(255,255,255,.4); width: 30px; text-align: right; }

/* ── Comparison table ── */
.vs-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.vs-table { width: 100%; border-collapse: collapse; font-size: .85rem; min-width: 580px; }
.vs-table th { padding: .85rem 1rem; font-weight: 700; border-bottom: 2px solid var(--border); text-align: left; white-space: nowrap; background: var(--cream2); }
.vs-table th:not(:first-child) { text-align: center; }
.vs-table th.app-col { background: var(--hero-color); color: #fff; border-radius: var(--radius) var(--radius) 0 0; }
.vs-table td { padding: .55rem 1rem; border-top: 1px solid var(--border); }
.vs-table td:not(:first-child) { text-align: center; }
.vs-table tr:hover td { background: rgba(26,22,18,.03); }
.vs-ok { color: #059669; font-weight: 700; }
.vs-no { color: #DC2626; font-weight: 700; }
.vs-partial { color: #D97706; font-size: .8rem; }
.vs-app { background: rgba(26,22,18,.03); }
.vs-note { font-size: .78rem; color: var(--muted); margin-top: .75rem; line-height: 1.5; }

/* ── Languages Grid ── */
.lang-pills { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 2rem; }
.lang-pill { display: inline-flex; align-items: center; gap: .4rem; padding: .45rem .9rem; background: var(--cream2); border: 1px solid rgba(0,0,0,.07); border-radius: 2rem; font-size: .82rem; font-weight: 500; color: var(--dark); }
.lang-flag { font-size: 1rem; line-height: 1; }

/* ── Pricing table ── */
.pricing-table { width: 100%; border-collapse: separate; border-spacing: 0; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; table-layout: fixed; background: var(--cream); }
.pricing-table thead th { position: relative; padding: 2.5rem 1rem 1.25rem; text-align: center; vertical-align: bottom; border-bottom: 2px solid var(--border); background: var(--cream2); }
.pricing-table thead th.feat-col { text-align: left; padding-left: 1.5rem; background: var(--cream2); width: 40%; vertical-align: middle; }
.pricing-table thead th.pro-col { background: var(--hero-color); color: #fff; width: 20%; }
.pricing-table thead th.lite-col { width: 20%; }
.plan-badge { position: absolute; top: .55rem; left: 50%; transform: translateX(-50%); white-space: nowrap; display: inline-block; background: rgba(255,255,255,.15); color: #fff; font-size: .6rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .18rem .55rem; border-radius: 4px; }
.plan-name { font-size: 1.1rem; font-weight: 900; margin-bottom: .15rem; }
.plan-tagline { font-size: .7rem; font-weight: 600; opacity: .55; margin-bottom: .4rem; letter-spacing: .04em; text-transform: uppercase; }
.plan-price { font-size: 1.5rem; font-weight: 900; letter-spacing: -.03em; margin-bottom: .75rem; }
.plan-price small { font-size: .72rem; font-weight: 400; opacity: .6; display: block; margin-top: .1rem; }
.btn-plan { display: inline-block; padding: .5rem 1rem; border-radius: var(--radius); font-size: .8rem; font-weight: 700; text-decoration: none; transition: opacity .15s; white-space: nowrap; }
.btn-plan.primary { background: #fff; color: var(--hero-color); }
.btn-plan.secondary { background: var(--cream); color: var(--dark); border: 1.5px solid var(--border); }
.btn-plan.lifetime-btn { background: rgba(255,255,255,.15); color: #fff; border: 1.5px solid rgba(255,255,255,.35); }
.btn-plan:hover { opacity: .85; }
.pricing-table thead th.lifetime-col { background: var(--dark); color: #fff; width: 20%; }
.pricing-table tbody td { padding: .45rem 1rem; border-top: 1px solid var(--border); font-size: .875rem; vertical-align: middle; color: var(--dark); }
.pricing-table tbody td:first-child { padding-left: 1.5rem; }
.pricing-table tbody td:not(:first-child) { text-align: center; }
.pricing-table tbody td.pro-cell { background: rgba(26,22,18,.025); }
.pricing-table tbody td.lifetime-cell { background: rgba(26,22,18,.04); }
.ck { color: #059669; font-weight: 700; font-size: 1rem; }
.cx { color: #D1D5DB; font-weight: 700; }

/* ── FAQ ── */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: .5rem; }
.faq-item { border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: var(--cream); }
.faq-q { padding: 1.1rem 1.4rem; font-weight: 700; font-size: .95rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background .15s; user-select: none; }
.faq-q:hover { background: var(--cream2); }
.faq-toggle { font-size: 1.2rem; color: var(--orange); flex-shrink: 0; transition: transform .2s; }
.faq-a { padding: 0 1.4rem 1.1rem; font-size: .9rem; color: var(--muted); line-height: 1.65; display: none; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }

/* ── CTA section ── */
.cta-section { background: var(--orange); text-align: center; padding: 4rem 2rem; }
.cta-section h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 900; letter-spacing: -.03em; color: #fff; margin-bottom: .75rem; }
.cta-section p { color: rgba(255,255,255,.8); font-size: 1rem; margin-bottom: 2rem; }
.btn-white { background: #fff; color: var(--orange); padding: .8rem 1.75rem; border-radius: var(--radius); font-size: .95rem; font-weight: 800; text-decoration: none; transition: opacity .15s; }
.btn-white:hover { opacity: .9; }
.btn-dark { background: var(--dark); color: #fff; padding: .8rem 1.75rem; border-radius: var(--radius); font-size: .95rem; font-weight: 700; text-decoration: none; transition: opacity .15s; }
.btn-dark:hover { opacity: .85; }
.btn-primary { background: var(--orange); color: #fff; padding: .8rem 1.75rem; border-radius: var(--radius); font-size: .95rem; font-weight: 700; text-decoration: none; transition: background .15s; }
.btn-primary:hover { background: var(--orange2); }
.btn-outline { background: transparent; color: var(--cream); padding: .8rem 1.75rem; border-radius: var(--radius); font-size: .95rem; font-weight: 600; text-decoration: none; border: 1.5px solid rgba(246,244,241,.2); transition: border-color .15s; }
.btn-outline:hover { border-color: rgba(246,244,241,.5); }
/* ── Telegram button ── */
.btn-telegram { background: #26A5E4; color: #fff !important; padding: .8rem 1.75rem; border-radius: var(--radius); font-size: .95rem; font-weight: 700; text-decoration: none; transition: background .15s; display: inline-flex; align-items: center; gap: .45rem; border: none; }
.btn-telegram::before { content: ''; width: 1.15em; height: 1.15em; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.944 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0a12 12 0 0 0-.056 0zm4.962 7.224c.1-.002.321.023.465.14a.506.506 0 0 1 .171.325c.016.093.036.306.02.472-.18 1.898-.96 6.502-1.36 8.627-.168.9-.499 1.201-.82 1.23-.696.065-1.225-.46-1.9-.902-1.056-.693-1.653-1.124-2.678-1.8-1.185-.78-.417-1.21.258-1.91.177-.184 3.247-2.977 3.307-3.23.007-.032.014-.15-.056-.212s-.174-.041-.249-.024c-.106.024-1.793 1.14-5.061 3.345-.48.33-.913.49-1.302.48-.428-.008-1.252-.241-1.865-.44-.752-.245-1.349-.374-1.297-.789.027-.216.325-.437.893-.663 3.498-1.524 5.83-2.529 6.998-3.014 3.332-1.386 4.025-1.627 4.476-1.635z'/%3E%3C/svg%3E") center/contain no-repeat; flex-shrink: 0; }
.btn-telegram:hover { background: #1a96d5; }
.btn-hero-telegram { background: #26A5E4; color: #fff !important; padding: .75rem 1.6rem; border-radius: var(--radius); font-size: .9rem; font-weight: 700; text-decoration: none; transition: background .15s; display: inline-flex; align-items: center; gap: .4rem; border: none; }
.btn-hero-telegram::before { content: ''; width: 1.1em; height: 1.1em; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.944 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0a12 12 0 0 0-.056 0zm4.962 7.224c.1-.002.321.023.465.14a.506.506 0 0 1 .171.325c.016.093.036.306.02.472-.18 1.898-.96 6.502-1.36 8.627-.168.9-.499 1.201-.82 1.23-.696.065-1.225-.46-1.9-.902-1.056-.693-1.653-1.124-2.678-1.8-1.185-.78-.417-1.21.258-1.91.177-.184 3.247-2.977 3.307-3.23.007-.032.014-.15-.056-.212s-.174-.041-.249-.024c-.106.024-1.793 1.14-5.061 3.345-.48.33-.913.49-1.302.48-.428-.008-1.252-.241-1.865-.44-.752-.245-1.349-.374-1.297-.789.027-.216.325-.437.893-.663 3.498-1.524 5.83-2.529 6.998-3.014 3.332-1.386 4.025-1.627 4.476-1.635z'/%3E%3C/svg%3E") center/contain no-repeat; flex-shrink: 0; }
.btn-hero-telegram:hover { background: #1a96d5; }
/* ── Download button ── */
.btn-download { background: #fff; color: var(--orange); padding: .8rem 1.75rem; border-radius: var(--radius); font-size: .95rem; font-weight: 800; text-decoration: none; transition: opacity .15s; display: inline-flex; align-items: center; gap: .4rem; }
.btn-download:hover { opacity: .9; }
.btn-hero-download { background: #fff; color: var(--dark); padding: .75rem 1.6rem; border-radius: var(--radius); font-size: .9rem; font-weight: 800; text-decoration: none; transition: opacity .15s; display: inline-flex; align-items: center; gap: .4rem; }
.btn-hero-download:hover { opacity: .9; }
/* ── Buy/Pro button ── */
.btn-buy { background: var(--dark); color: #fff !important; padding: .8rem 1.75rem; border-radius: var(--radius); font-size: .95rem; font-weight: 800; text-decoration: none; transition: opacity .15s; display: inline-flex; align-items: center; gap: .4rem; }
.btn-buy:hover { opacity: .85; }
.btn-hero-buy { background: var(--orange); color: #fff !important; padding: .75rem 1.6rem; border-radius: var(--radius); font-size: .9rem; font-weight: 800; text-decoration: none; transition: background .15s; display: inline-flex; align-items: center; gap: .4rem; }
.btn-hero-buy:hover { background: var(--orange2); }

/* ── Footer ── */
footer { background: var(--dark); border-top: 1px solid rgba(246,244,241,.08); padding: 2.5rem 2rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.footer-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.footer-logo img { height: 24px; width: auto; display: block; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { color: #7A7268; text-decoration: none; font-size: .875rem; transition: color .15s; }
.footer-links a:hover { color: var(--cream); }
.footer-copy { color: #4a4642; font-size: .8rem; }

/* ── Hero color variants ── */
body.hero-indigo { --hero-color: var(--indigo); }
body.hero-forest { --hero-color: var(--forest); }
body.hero-orange { --hero-color: var(--orange); }
body.hero-dark   { --hero-color: var(--dark); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-demo, .hero-ui { display: none; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
  .stats-strip { display: grid; grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .trust-strip { flex-direction: column; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); }
}

/* mobile slide-out nav */
.nav-toggle{display:none;width:44px;height:44px;margin:0;padding:0;border:0;background:transparent;cursor:pointer;flex-direction:column;align-items:center;justify-content:center;gap:5px;flex-shrink:0;border-radius:6px}
.nav-toggle:focus-visible{outline:2px solid var(--orange);outline-offset:1px}
.nav-toggle-bar{display:block;width:18px;height:2px;background:var(--dark);border-radius:1px;transition:transform .2s ease,opacity .2s ease}
.nav-overlay{display:none}
@media (max-width:640px){
.nav-toggle{display:inline-flex}
.nav-overlay{display:block;position:fixed;top:60px;left:0;right:0;bottom:0;z-index:90;background:rgba(26,22,18,.4);opacity:0;pointer-events:none;transition:opacity .2s ease}
.nav-overlay[hidden]{display:none}
body.nav-open .nav-overlay{opacity:1;pointer-events:auto}
.nav-links{display:flex;flex-direction:column;position:fixed;top:60px;right:0;z-index:110;width:min(20rem,86vw);height:calc(100dvh - 60px);margin:0;padding:1rem 1.5rem 2rem;gap:0;overflow-y:auto;background:var(--cream);border-left:2px solid var(--dark);transform:translateX(100%);visibility:hidden;transition:transform .25s ease,visibility .25s ease}
body.nav-open .nav-links{transform:translateX(0);visibility:visible}
.nav-links li{border-bottom:1px solid var(--border)}
.nav-links a{display:block;padding:.95rem 0;font-size:1.05rem;font-weight:600;color:var(--dark)}
body.nav-open .nav-toggle-bar:nth-child(1){transform:translateY(7px) rotate(45deg)}
body.nav-open .nav-toggle-bar:nth-child(2){opacity:0}
body.nav-open .nav-toggle-bar:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
body.nav-open{overflow:hidden}
body.admin-bar .nav-overlay,body.admin-bar .nav-links{top:106px;height:calc(100dvh - 106px)}
}

@media (max-width:640px){.nav-toggle{margin-right:-13px}}

/* mobile tables: scroll instead of overlapping columns */
.pricing-table{table-layout:auto}
@media (max-width:900px){
.vs-wrap{overflow-x:auto;-webkit-overflow-scrolling:touch;max-width:100%;scrollbar-width:thin}
.pricing-table{table-layout:auto;width:max-content;min-width:36rem;overflow:visible}
.pricing-table thead th{padding:1.1rem .55rem .9rem;vertical-align:top;white-space:normal;overflow-wrap:anywhere}
.pricing-table thead th.feat-col,.pricing-table thead th.lite-col,.pricing-table thead th.pro-col,.pricing-table thead th.lifetime-col{width:auto}
.pricing-table thead th.feat-col,.pricing-table tbody td:first-child{position:sticky;left:0;z-index:2;min-width:8rem;max-width:10rem;padding-left:.75rem;background:var(--cream);box-shadow:4px 0 8px rgba(26,22,18,.06);overflow-wrap:anywhere}
.section-cream2 .pricing-table thead th.feat-col,.section-cream2 .pricing-table tbody td:first-child{background:var(--cream2)}
.plan-badge{position:static;transform:none;margin:0 auto .4rem;white-space:normal;line-height:1.2}
.plan-name,.plan-price{overflow-wrap:anywhere}
.btn-plan{white-space:normal;padding:.55rem .5rem;font-size:.72rem;line-height:1.25;min-height:44px;display:inline-flex;align-items:center;justify-content:center;text-align:center;max-width:100%}
.pricing-table tbody td{padding:.4rem .5rem;font-size:.8rem;overflow-wrap:anywhere}
.pricing-group th{white-space:normal;overflow-wrap:anywhere}
.vs-table{width:max-content;min-width:40rem}
.vs-table th,.vs-table td{white-space:normal;overflow-wrap:anywhere}
.vs-table th{min-width:6.5rem}
.vs-table th:first-child,.vs-table td:first-child{position:sticky;left:0;z-index:2;min-width:8rem;max-width:10rem;background:var(--cream);box-shadow:4px 0 8px rgba(26,22,18,.06)}
.section-cream2 .vs-table th:first-child,.section-cream2 .vs-table td:first-child{background:var(--cream2)}
}

/* mobile-pricing-v108 */
@media (max-width: 900px) {
  .pricing-table { table-layout: fixed !important; width: max-content !important; min-width: 0 !important; overflow: visible !important; }
  .pricing-table thead th { white-space: normal !important; overflow-wrap: break-word !important; word-break: normal !important; }
  .pricing-table thead th.feat-col, .pricing-table tbody td:first-child { width: 7.5rem !important; min-width: 7.5rem !important; max-width: 7.5rem !important; overflow-wrap: break-word !important; word-break: normal !important; }
  .pricing-table thead th.lite-col, .pricing-table thead th.pro-col, .pricing-table thead th.lifetime-col, .pricing-table tbody td:not(:first-child) { width: 13.25rem !important; min-width: 13.25rem !important; max-width: 13.25rem !important; box-sizing: border-box !important; overflow-wrap: break-word !important; word-break: normal !important; }
  .plan-name, .plan-price { overflow-wrap: break-word !important; word-break: normal !important; }
  .btn-plan { white-space: normal !important; overflow-wrap: break-word !important; word-break: normal !important; max-width: 100% !important; box-sizing: border-box !important; }
  .vs-table { table-layout: fixed !important; width: max-content !important; min-width: 0 !important; }
  .vs-table th, .vs-table td { overflow-wrap: break-word !important; word-break: normal !important; }
  .vs-table th:not(:first-child), .vs-table td:not(:first-child) { width: 9.5rem !important; min-width: 9.5rem !important; }
  .vs-table th:first-child, .vs-table td:first-child { width: 7.5rem !important; min-width: 7.5rem !important; max-width: 7.5rem !important; }
}

/* tables-scroll-v109 */
@media (max-width: 900px) {
  .pricing-table thead th.feat-col,
  .pricing-table tbody td:first-child,
  .vs-table th:first-child,
  .vs-table td:first-child {
    position: static !important;
    left: auto !important;
    z-index: auto !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    box-shadow: none !important;
  }
  .vs-table {
    table-layout: auto !important;
    width: max-content !important;
    min-width: 580px !important;
  }
  .vs-table th, .vs-table td {
    position: static !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    box-shadow: none !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    white-space: nowrap !important;
  }
  .pricing-table {
    table-layout: auto !important;
    width: max-content !important;
    min-width: 40rem !important;
    overflow: visible !important;
  }
  .pricing-table thead th.feat-col,
  .pricing-table tbody td:first-child {
    min-width: 14rem !important;
    white-space: nowrap !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }
  .pricing-table thead th.lite-col,
  .pricing-table thead th.pro-col,
  .pricing-table thead th.lifetime-col,
  .pricing-table tbody td:not(:first-child) {
    width: auto !important;
    min-width: 12.5rem !important;
    max-width: none !important;
    white-space: nowrap !important;
  }
  .pricing-table thead th,
  .pricing-table tbody td {
    overflow-wrap: normal !important;
    word-break: normal !important;
    white-space: nowrap !important;
  }
  .plan-badge {
    position: absolute !important;
    top: .55rem !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin: 0 !important;
    white-space: nowrap !important;
  }
  .btn-plan {
    white-space: nowrap !important;
    display: inline-block !important;
    max-width: none !important;
    min-height: 0 !important;
  }
}

/* tables-scroll-v110 */
@media (max-width: 900px) {
  .pricing-table thead th.feat-col,
  .pricing-table tbody td:first-child,
  .vs-table th:first-child,
  .vs-table td:first-child {
    position: static !important;
    left: auto !important;
    z-index: auto !important;
    width: auto !important;
    max-width: none !important;
    box-shadow: none !important;
  }
  .vs-table {
    table-layout: auto !important;
    width: 100% !important;
    min-width: 580px !important;
  }
  .vs-table th, .vs-table td {
    position: static !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    box-shadow: none !important;
    word-break: normal !important;
  }
  .vs-table th { white-space: nowrap !important; }
  .vs-table td { white-space: normal !important; overflow-wrap: break-word !important; }
  .pricing-table {
    table-layout: auto !important;
    width: max-content !important;
    min-width: 40rem !important;
    overflow: visible !important;
  }
  .pricing-table thead th.feat-col,
  .pricing-table tbody td:first-child {
    min-width: 12rem !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
  }
  .pricing-table thead th.lite-col,
  .pricing-table thead th.pro-col,
  .pricing-table thead th.lifetime-col,
  .pricing-table tbody td:not(:first-child) {
    width: auto !important;
    min-width: 12.5rem !important;
    max-width: none !important;
    white-space: nowrap !important;
  }
  .pricing-table thead th { overflow-wrap: break-word !important; word-break: normal !important; }
  .pricing-table tbody td { overflow-wrap: break-word !important; word-break: normal !important; }
  .pricing-group th { white-space: normal !important; }
  .plan-badge {
    position: absolute !important;
    top: .55rem !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin: 0 !important;
    white-space: nowrap !important;
  }
  .btn-plan {
    white-space: nowrap !important;
    display: inline-block !important;
    max-width: none !important;
    min-height: 0 !important;
  }
}

/* tables-scroll-v111 */
@media (max-width: 900px) {
  .pricing-table {
    table-layout: auto !important;
    width: 100% !important;
    min-width: 42rem !important;
  }
  .pricing-table thead th.feat-col,
  .pricing-table tbody td:first-child {
    width: 12rem !important;
    min-width: 10rem !important;
    max-width: 14rem !important;
    white-space: normal !important;
  }
}

/* table-contrast-v112 */
.vs-wrap {
  background: #fff !important;
  border: 1.5px solid rgba(26,22,18,.22) !important;
  border-radius: 12px !important;
}
.vs-table { background: #fff !important; }
.vs-table th {
  background: #E6E1D8 !important;
  border-bottom: 2px solid rgba(26,22,18,.2) !important;
  border-right: 1px solid rgba(26,22,18,.12) !important;
}
.vs-table th.app-col {
  background: var(--hero-color) !important;
  color: #fff !important;
  border-right-color: rgba(255,255,255,.14) !important;
}
.vs-table td {
  background: #fff !important;
  border-top: 1px solid rgba(26,22,18,.1) !important;
  border-right: 1px solid rgba(26,22,18,.1) !important;
}
.vs-table td:first-child { background: #F1EEE8 !important; }
.vs-table th:last-child,
.vs-table td:last-child { border-right: none !important; }
.vs-app { background: #F7F4EE !important; }
.pricing-table {
  background: #fff !important;
  border: 1.5px solid rgba(26,22,18,.22) !important;
}
.pricing-table thead th {
  background: #E6E1D8 !important;
  border-bottom: 2px solid rgba(26,22,18,.2) !important;
  border-right: 1px solid rgba(26,22,18,.12) !important;
}
.pricing-table thead th.feat-col { background: #E6E1D8 !important; }
.pricing-table thead th.pro-col,
.pricing-table thead th.lifetime-col { border-right-color: rgba(255,255,255,.14) !important; }
.pricing-table thead th.pro-col { background: var(--hero-color) !important; color: #fff !important; }
.pricing-table thead th.lifetime-col { background: var(--dark) !important; color: #fff !important; }
.pricing-table tbody td {
  background: #fff !important;
  border-top: 1px solid rgba(26,22,18,.1) !important;
  border-right: 1px solid rgba(26,22,18,.1) !important;
}
.pricing-table tbody td:first-child { background: #F1EEE8 !important; }
.pricing-table thead th:last-child,
.pricing-table tbody td:last-child { border-right: none !important; }
.pricing-table tbody td.pro-cell { background: #F7F4EE !important; }
.pricing-table tbody td.lifetime-cell { background: #F3F0EA !important; }
.section-cream2 .pricing-table thead th.feat-col { background: #E6E1D8 !important; }
.section-cream2 .pricing-table tbody td:first-child,
.section-cream2 .vs-table td:first-child { background: #F1EEE8 !important; }
.btn-plan.secondary { background: #fff !important; border-color: rgba(26,22,18,.22) !important; }

/* table-contrast-v113 */

.vs-table thead th {
  background: #E6E1D8 !important;
}
.vs-table thead th.app-col {
  background: var(--hero-color) !important;
  color: #fff !important;
}
.vs-table .comparison-group th,
.pricing-table .pricing-group th {
  background: #1A1612 !important;
  color: #F6F4F1 !important;
  border-right: none !important;
}

/* table-border-v115 */
.vs-wrap, .pricing-table {
    border: 1px solid #a18366 !important;
}
/* -- 404 -- */
.error-page {
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  text-align: center;
}
.error-page-inner { max-width: 560px; width: 100%; }
.error-page-code {
  font-size: clamp(4.5rem, 16vw, 8rem);
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: .9;
  color: var(--orange);
  margin: 0 0 1rem;
}
.error-page h1 {
  font-size: clamp(1.45rem, 4vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -.03em;
  margin-bottom: .75rem;
}
.error-page-sub {
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.65;
}
.error-page-btns {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-on-light {
  background: #fff;
  color: var(--dark);
  border: 1.5px solid #a18366;
  padding: .8rem 1.75rem;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .15s;
}
.btn-on-light:hover { background: var(--cream2); }
html { scroll-behavior: smooth; }
#solodrom-scroll-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--cream);
  border: none;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .25s, background .15s;
}
#solodrom-scroll-top.sst-visible {
  opacity: 1;
  pointer-events: auto;
}
#solodrom-scroll-top:hover { background: var(--orange); transform: translateY(-3px); }
