/* DoggoVPN — page CSS. Requires base.css loaded first. */

body { font-family:'Inter',sans-serif; background:var(--bg); color:var(--text); line-height:1.7; overflow-x:hidden; }.container { max-width:1280px; margin:0 auto; padding:0 32px; }

/* ── NAV ──
   position:sticky participates in document flow, so the nav reserves its
   own height — hero (and any first section) always starts BELOW the nav,
   no overlap regardless of viewport width. The .scrolled bg+blur effect
   is unchanged (toggled by landing.js on scroll > 60px). Matches the
   pattern used by auth.css / account.css / legal.css. */
nav {
  position:sticky; top:0; width:100%; z-index:1000;
  height:84px; display:flex; align-items:center;
  background:var(--bg-card);              /* #ffffff — default top-of-page state */
  transition:background .3s, box-shadow .3s;
}
nav.scrolled {
  background:var(--bg);                   /* #fdfaf2 — page bg after scroll > 60px */
  backdrop-filter:blur(14px);
  box-shadow:0 1px 0 var(--border);
}
.nav-inner {
  max-width:1280px; margin:0 auto; padding:0 32px;
  width:100%; display:flex; align-items:center; justify-content:space-between;
}
.nav-links { display:flex; align-items:center; gap:28px; }
.nav-links a { font-size:17px; color:var(--text-2); font-weight:500; transition:color .2s; }
.nav-links a:hover { color:var(--text); }
.nav-right { display:flex; gap:10px; align-items:center; }
.nav-social {
  display:inline-flex; align-items:center; justify-content:center;
  width:44px; height:44px; border-radius:50%;
  color:var(--text-2); transition:color .2s, background .2s;
}
.nav-social:hover { color:var(--gold); background:var(--gold-light); }
.btn-outline {
  padding:11px 26px; border-radius:14px; font-size:15px; font-weight:600;
  cursor:pointer; background:transparent; border:1.5px solid var(--gold-border);
  color:var(--gold-text); transition:all .2s; font-family:'Inter',sans-serif;
}
.btn-outline:hover { background:var(--gold-light); }
.btn-gold {
  padding:11px 26px; border-radius:14px; font-size:15px; font-weight:700;
  cursor:pointer; background:var(--gold); border:1.5px solid var(--gold);
  color:#141414; transition:all .2s; font-family:'Inter',sans-serif;
}
.btn-gold:hover { background:var(--gold-hover); }

/* ── BURGER (visible on <1200) ── */
.nav-burger {
  display:none;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:5px;
  width:44px; height:44px;
  background:transparent;
  border:1.5px solid var(--gold-border);
  border-radius:12px;
  cursor:pointer;
  padding:0;
  transition:background .2s, border-color .2s;
}
.nav-burger:hover { background:var(--gold-light); }
.nav-burger span {
  display:block;
  width:18px; height:2px;
  background:var(--text);
  border-radius:2px;
  transition:transform .25s ease, opacity .2s ease;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity:0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU (dropdown panel) ──
   Default = laptop drawer: narrow, anchored to right edge.
   On mobile (<768) it expands near full width — see media query below.
   Detached from nav (8px gap) with rounded corners on all sides. */
.nav-mobile-menu {
  display:none;
  flex-direction:column;
  position:absolute;
  top:calc(100% + 8px);
  right:8px;
  width:300px;
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:14px;
  box-shadow:0 12px 32px rgba(0,0,0,0.12);
  padding:10px 0;
  z-index:999;
}
.nav-mobile-menu.open { display:flex; }
.nav-mobile-menu > a {
  padding:14px 24px;
  font-size:16px;
  font-weight:600;
  color:var(--text);
  text-align:center;
  border-bottom:1px solid var(--border);
  transition:background .2s, color .2s;
}
.nav-mobile-menu > a:last-of-type { border-bottom:none; }
.nav-mobile-menu > a:hover { background:var(--bg-section); color:var(--gold-text); }

.nav-mobile-actions {
  display:flex;
  flex-direction:column;     /* stack, not side-by-side */
  gap:10px;
  padding:14px 20px 6px;
  border-top:1px solid var(--border);
  margin-top:6px;
}
.nav-mobile-actions .btn-outline,
.nav-mobile-actions .btn-gold {
  display:inline-flex; align-items:center; justify-content:center;
  text-decoration:none;
  width:100%;
}

/* ── BACKDROP (darken page when menu open) ── */
.nav-backdrop {
  display:none;
  position:fixed; inset:0;
  background:rgba(20,20,20,0.45);
  backdrop-filter:blur(2px);
  z-index:998;        /* under nav (1000) and menu (999), above content */
}
.nav-backdrop.open { display:block; }

/* ── HERO ── */
.hero { padding:20px 0 0; background: linear-gradient(to bottom, #ffffff 60%, var(--bg-section) 100%); }
.hero-inner {
  display:grid; grid-template-columns:1.1fr 0.9fr;
  gap:24px; align-items:center;
  max-width:1340px; margin:0 auto;
}
.hero-badge { display:none; }
.hero h1 {
  font-family:'Nunito',sans-serif; font-weight:900;
  font-size:64px; line-height:1.0; letter-spacing:-2.5px; margin-bottom:18px; text-align:left;
}
.hero h1 .accent { color:var(--gold); }
.hero-sub { font-size:18px; color:var(--text-2); line-height:1.6; margin-bottom:24px; max-width:460px; text-align:left; }
.hero-btns { display:flex; gap:12px; flex-wrap:wrap; margin-bottom:20px; }
.btn-primary {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--gold); color:#141414; border:none; border-radius:16px;
  padding:16px 32px; font-size:17px; font-weight:700; cursor:pointer;
  transition:all .18s cubic-bezier(.4,0,.2,1);
  font-family:'Inter',sans-serif;
  box-shadow: 0 2px 8px rgba(232,184,0,0.25);
}
.btn-primary:hover {
  background:var(--gold-hover); transform:translateY(-2px);
  box-shadow: 0 6px 18px rgba(232,184,0,0.35);
}
.btn-primary:active { transform:translateY(0); box-shadow:0 1px 4px rgba(232,184,0,0.2); }
.btn-secondary {
  display:inline-flex; align-items:center; gap:8px;
  background:transparent; color:var(--text); border:1.5px solid var(--border);
  border-radius:16px; padding:15px 28px; font-size:17px; font-weight:600;
  cursor:pointer; transition:all .18s cubic-bezier(.4,0,.2,1); font-family:'Inter',sans-serif;
}
.btn-secondary:hover {
  background:var(--bg-section); border-color:var(--gold-border);
  transform:translateY(-1px);
}
.btn-secondary:active { transform:translateY(0); }

.check { color:var(--green); }

/* Hero card */
.hero-visual { position:relative; display:flex; justify-content:center; }
.hero-card {
  background:var(--bg); border:1.5px solid var(--border);
  border-radius:24px; padding:24px; width:280px;
}
.hero-card-top { display:flex; align-items:center; gap:8px; margin-bottom:18px; font-size:14px; font-weight:600; }
.hero-card-top img { width:24px; height:24px; border-radius:50%; object-fit:cover; }
.status-wrap { display:flex; flex-direction:column; align-items:center; gap:5px; margin-bottom:16px; }
.status-dot { width:10px; height:10px; border-radius:50%; background:var(--green); position:relative; }
.status-dot::before { content:''; position:absolute; inset:0; border-radius:50%; background:var(--green); animation:pulse 2s ease-out infinite; }
@keyframes pulse { 0%{transform:scale(1);opacity:.8} 100%{transform:scale(2.8);opacity:0} }
.status-text { font-size:11px; font-weight:700; color:var(--green); letter-spacing:1px; text-transform:uppercase; }
.status-loc { font-size:13px; color:var(--text-2); }
.hero-card-speed { display:flex; justify-content:center; gap:20px; margin-bottom:14px; font-size:13px; color:var(--text-2); }
.hero-card-speed strong { color:var(--text); }
.hero-card-btn {
  width:100%; padding:8px; border-radius:10px;
  background:var(--border); border:none; font-size:13px; font-weight:500;
  color:var(--text); cursor:pointer; font-family:'Inter',sans-serif;
}

/* Stats */

.hero-stat + 
.stat-num { font-family:'Nunito',sans-serif; font-size:26px; font-weight:900; color:var(--gold); line-height:1; margin-bottom:4px; }
.stat-label { font-size:12px; color:var(--text-2); line-height:1.4; }

/* Sections */
section { padding:72px 0; }
/* Anchor target offset — equals sticky nav height per breakpoint
   (84 desktop, overridden to 74/64 in laptop/mobile media below). */
section[id] { scroll-margin-top:84px; }
.sec-head { text-align:center; margin-bottom:40px; }
.sec-head h2 { font-family:'Nunito',sans-serif; font-weight:900; font-size:28px; letter-spacing:-.5px; margin-bottom:10px; }
.sec-head p { font-size:15px; color:var(--text-2); max-width:460px; margin:0 auto; }
.sec-tag {
  display:inline-block; padding:4px 14px; border-radius:100px;
  background:var(--gold-light); border:1px solid var(--gold-border);
  color:var(--gold-text); font-size:12px; font-weight:600; margin-bottom:12px;
}

/* ── UTP ── */
.utp { background:var(--bg-card); }
.utp-box {
  background:linear-gradient(135deg, #1a1200 0%, #2a1e00 100%);
  border-radius:24px; padding:48px;
  display:grid; grid-template-columns:1fr auto; gap:40px; align-items:center;
}
.utp-box h3 {
  font-family:'Nunito',sans-serif; font-weight:900; font-size:28px;
  color:#fff; margin-bottom:14px; line-height:1.2;
}
.utp-box h3 span { color:var(--gold); }
.utp-box p { font-size:14px; color:rgba(255,255,255,.55); margin-bottom:24px; max-width:520px; }
.utp-list { display:flex; flex-direction:column; gap:12px; }
.utp-item { display:flex; align-items:center; gap:12px; font-size:14px; color:rgba(255,255,255,.8); }
.utp-num {
  width:24px; height:24px; border-radius:50%; flex-shrink:0;
  background:rgba(232,200,74,.15); border:1px solid rgba(232,200,74,.4);
  color:var(--gold); font-size:12px; font-weight:700;
  display:flex; align-items:center; justify-content:center;
}
.utp-emoji { font-size:56px; }

/* ── HOW TITLE ── */
.how-title-wrap {
  display: inline-block;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 14px 36px;
  background: #faf8f3;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.how-title-wrap h2 {
  margin-bottom: 0;
  font-size: 28px;
}

/* ── HOW ── */
.how { background:var(--bg-section); padding-top:0 !important; padding-bottom:36px !important; overflow:visible; }
.how-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; align-items:stretch; overflow:visible; }
.how-card {
  background:var(--bg-card); border:1px solid var(--border);
  border-radius:20px; padding:28px 28px 32px;
  transition:transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease, border-color .25s ease;
  display:flex; flex-direction:column;
  cursor:default;
  will-change:transform;
}
.how-card:hover { transform:translateY(-8px); border-color:var(--gold-border); box-shadow:0 16px 40px rgba(0,0,0,0.10); }
.how-num { font-family:'Nunito',sans-serif; font-size:48px; font-weight:900; color:var(--gold); opacity:0.30; line-height:1; margin-bottom:8px; letter-spacing:-2px; }
.how-icon { font-size:28px; margin-bottom:12px; }
.how-card h3 { font-size:19px; font-weight:800; margin-bottom:10px; color:var(--text); text-align:left; }
.how-card p { font-size:14px; color:var(--text-2); line-height:1.6; text-align:left; }
.how-card--accent { border-color:var(--gold-border); background:linear-gradient(135deg, #fffdf5, #fff9e8); position:relative; }
.how-card-wrapper {
  position: relative;
}
.how-card-float-badge {
  position: absolute;
  top: -13px;
  left: 24px;
  z-index: 3;
  padding: 5px 16px;
  border-radius: 100px;
  background: #F5C518;
  color: #141414;
  font-size: 12.5px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(212,160,0,0.25);
  letter-spacing: 0.2px;
}

/* ── FEATURES ── */
.features { background: linear-gradient(to bottom, var(--bg-section) 0%, var(--bg-card) 280px, var(--bg-card) 100%); padding-top:24px !important; padding-bottom:0 !important; }
.feat-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; align-items:stretch; }
.feat-card {
  background:var(--bg-section); border:1px solid var(--border);
  border-radius:20px; padding:26px 28px;
  transition:transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease, border-color .25s ease;
  display:flex; flex-direction:column;
  cursor:default;
  will-change:transform;
}
.feat-card:hover { transform:translateY(-8px); border-color:var(--gold-border); box-shadow:0 16px 40px rgba(0,0,0,0.10); }
.feat-icon { font-size:20px; margin-bottom:8px; opacity:0.7; }
.feat-card h3 { font-size:16px; font-weight:800; margin-bottom:8px; color:var(--text); }
.feat-card p { font-size:13.5px; color:var(--text-2); line-height:1.6; }
.tag-gold { display:inline-block; margin-top:8px; padding:2px 10px; border-radius:100px; font-size:11px; font-weight:600; background:var(--gold-light); color:var(--gold-text); border:1px solid var(--gold-border); }
.tag-green { display:inline-block; margin-top:8px; padding:2px 10px; border-radius:100px; font-size:11px; font-weight:600; background:rgba(29,158,117,.1); color:var(--green); border:1px solid rgba(29,158,117,.3); }

/* ── PRICING ── */
.pricing {
  position:relative;
  background: linear-gradient(to bottom, var(--bg-card) 0%, var(--bg-card) 18%, #faf6ee 34%, var(--bg-section) 52%, var(--bg-section) 100%);
  padding-top: 72px;
  overflow:hidden;
}
.pricing .container { position:relative; z-index:2; }

/* background decoration */
.pricing-decor { position:absolute; inset:0; pointer-events:none; z-index:1; overflow:hidden; }
.pricing-decor .paw {
  position:absolute;
  fill:var(--gold);
  opacity:.07;
  transform-origin:center;
}
.pricing-decor .paw-1 { width:80px;  top:18%;  left:6%;  transform:rotate(-18deg); }
.pricing-decor .paw-2 { width:64px;  top:42%;  left:12%; transform:rotate(15deg); }
.pricing-decor .paw-3 { width:96px;  top:8%;   right:8%; transform:rotate(22deg); }
.pricing-decor .paw-4 { width:70px;  top:54%;  right:12%; transform:rotate(-25deg); }
.pricing-decor .paw-5 { width:56px;  bottom:14%; left:50%; transform:translateX(-50%) rotate(8deg); opacity:.05; }
.pricing-decor .blob {
  position:absolute; border-radius:50%; filter:blur(60px); opacity:.55;
}
.pricing-decor .blob-1 {
  width:520px; height:520px;
  top:12%; left:-180px;
  background:radial-gradient(circle, var(--gold-light) 0%, transparent 70%);
}
.pricing-decor .blob-2 {
  width:480px; height:480px;
  bottom:8%; right:-160px;
  background:radial-gradient(circle, rgba(232,184,0,0.16) 0%, transparent 70%);
}

/* 3-col layout: side · card · side
   space-evenly produces 4 equal gaps inside container */
.pricing-grid {
  display:flex;
  justify-content:space-evenly;
  align-items:center;
  width:100%;
}
.price-side {
  flex:0 0 240px;
}
.price-card { margin:0; flex:0 0 440px; }
.price-side-title {
  font-size:11px; font-weight:700; text-transform:uppercase;
  letter-spacing:1.4px; color:var(--text-3);
  margin-bottom:18px;
  text-align:left;
}
.price-bullets {
  list-style:none; padding:0; margin:0;
  display:flex; flex-direction:column; gap:14px;
}
.price-bullets li {
  display:flex; gap:12px; align-items:flex-start;
  font-size:14.5px; color:var(--text-2); line-height:1.45;
}
.bullet-check {
  display:inline-flex; align-items:center; justify-content:center;
  flex-shrink:0;
  width:22px; height:22px; border-radius:50%;
  background:var(--gold-light);
  color:var(--gold-text);
  font-size:13px; font-weight:900;
  margin-top:1px;
}

/* panels shrink as viewport narrows so all 4 gaps remain visible */
@media (max-width: 1199px) {
  .price-side { flex:0 0 200px; }
}
@media (max-width: 999px) {
  .price-side { flex:0 0 160px; }
}
/* panels hide entirely below 900 — card stands alone, centered */
@media (max-width: 899px) {
  .pricing-grid { justify-content:center; }
  .price-side { display:none; }
  .pricing-decor .paw { display:none; }
  .pricing-decor .blob { opacity:.35; }
}

.price-card {
  max-width:440px;
  margin:0 auto;
  background:var(--bg-card);
  border:2px solid var(--border);
  border-radius:28px;
  padding:18px;
  box-shadow:0 8px 32px rgba(0,0,0,0.06);
  display:flex; flex-direction:column;
  gap:14px;
}
.price-period-label {
  font-size:11px; font-weight:700; text-transform:uppercase;
  letter-spacing:1.2px; color:var(--text-3);
  text-align:center;
}

/* Pill toggle 1/3/6/12 */
.price-pill {
  position:relative;
  display:grid; grid-template-columns:repeat(4,1fr);
  background:var(--bg-section);
  border-radius:100px;
  padding:6px;
  isolation:isolate;
}
.price-pill-btn {
  font-family:'Inter',sans-serif;
  background:transparent; border:none;
  padding:11px 6px;
  font-size:14px; font-weight:600;
  color:var(--text-2);
  cursor:pointer; border-radius:100px;
  transition:color .25s ease;
  z-index:2;
  white-space:nowrap;
}
.price-pill-btn:hover:not(.is-active) { color:var(--text); }
.price-pill-btn.is-active { color:var(--text); }
.price-pill-glider {
  position:absolute;
  top:6px; bottom:6px;
  width:calc((100% - 12px) / 4);
  left:6px;
  background:var(--bg-card);
  border-radius:100px;
  box-shadow:0 2px 8px rgba(0,0,0,0.08);
  transition:transform .35s cubic-bezier(.34,1.56,.64,1);
  z-index:1;
}
.price-pill[data-active="3"]  .price-pill-glider { transform:translateX(100%); }
.price-pill[data-active="6"]  .price-pill-glider { transform:translateX(200%); }
.price-pill[data-active="12"] .price-pill-glider { transform:translateX(300%); }

/* Big number display */
.price-display {
  display:flex; flex-direction:column; align-items:center;
  padding:14px 0 4px;
}
.price-num {
  display:flex; align-items:baseline;
  font-family:'Nunito',sans-serif;
  font-weight:900;
  font-size:78px; line-height:1;
  color:var(--gold);
  letter-spacing:-3px;
}
.price-num-currency { font-size:42px; margin-left:4px; letter-spacing:0; }
.price-num-period { margin-top:6px; font-size:15px; color:var(--text-2); font-weight:500; }

.price-total {
  margin-top:14px;
  font-size:14px; color:var(--text-2);
  text-align:center;
}
.price-total-amount { font-weight:700; color:var(--text); }
.price-total-label { margin-left:4px; }

.price-save {
  margin-top:10px;
  display:inline-flex; align-items:center; gap:6px;
  padding:5px 14px; border-radius:100px;
  background:rgba(29,158,117,.10);
  border:1px solid rgba(29,158,117,.3);
  color:var(--green);
  font-size:13px; font-weight:700;
}
.price-save[hidden] { display:none; }
.price-save-icon { font-weight:900; }

.price-cta {
  width:100%; justify-content:center;
  padding:16px; font-size:17px;
}

/* ── PLATFORMS ── */
.platforms { background:var(--bg-card); }
.plat-grid { display:flex; flex-wrap:wrap; justify-content:center; gap:14px; }
.plat {
  display:flex; flex-direction:column; align-items:center; gap:6px;
  padding:16px 20px; background:var(--bg-section);
  border:1.5px solid var(--border); border-radius:16px; min-width:84px; transition:all .25s;
}
.plat:hover { transform:translateY(-3px); border-color:var(--gold-border); }
.plat span { font-size:13px; color:var(--text-2); font-weight:500; }

/* ── REVIEWS ── */
.reviews { background: linear-gradient(to bottom, var(--bg-section) 0%, var(--bg-card) 50%, var(--bg-card) 100%); padding-top:24px; padding-bottom:24px; }
.rev-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.rev {
  background:var(--bg-card); border:1.5px solid var(--border);
  border-radius:var(--radius); padding:20px;
  display:flex; flex-direction:column;
}
.rev-stars { color:var(--gold); font-size:16px; margin-bottom:8px; }
.rev-text { font-size:15px; color:var(--text); font-style:italic; line-height:1.6; margin-bottom:12px; }
.rev-author { display:flex; align-items:center; gap:8px; margin-top:auto; }
.rev-ava {
  width:38px; height:38px; border-radius:50%;
  background:var(--gold-light); display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:15px; color:var(--gold-text);
}
.rev-meme {
  width:56px; height:56px;
  flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  opacity:0.85; transition:transform .3s ease, opacity .3s ease;
}
.rev-meme img { max-width:100%; max-height:100%; object-fit:contain; }
.rev-top { display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:8px; }
.rev-top .rev-stars { margin-bottom:0; }
.rev:hover .rev-meme { opacity:1; }
.rev:hover .rev-meme-wiggle { animation:wiggle .6s ease-in-out infinite; }
.rev:hover .rev-meme-bounce { animation:bounce .5s ease-in-out infinite; }
.rev:hover .rev-meme-shake { animation:shake .4s ease-in-out infinite; }
@keyframes wiggle {
  0%, 100% { transform:rotate(-8deg); }
  50% { transform:rotate(8deg); }
}
@keyframes bounce {
  0%, 100% { transform:translateY(0); }
  50% { transform:translateY(-8px); }
}
@keyframes shake {
  0%, 100% { transform:translateX(0); }
  25% { transform:translateX(-6px); }
  75% { transform:translateX(6px); }
}
.rev-name { font-size:15px; font-weight:600; }
.rev-date { font-size:13px; color:var(--text-3); }

/* ── SUPPORT ── */
.support { background:var(--bg-card); }
.sup-grid { display:grid; grid-template-columns:1fr 1fr; gap:18px; max-width:560px; margin:0 auto; }
.sup-card {
  background:var(--bg-section); border:1.5px solid var(--border);
  border-radius:var(--radius); padding:28px; text-align:center; transition:all .25s;
}
.sup-card:hover { transform:translateY(-4px); border-color:var(--gold-border); }
.sup-icon { font-size:32px; margin-bottom:10px; }
.sup-card h3 { font-size:16px; font-weight:700; margin-bottom:6px; }
.sup-card p { font-size:13px; color:var(--text-2); margin-bottom:14px; }
.sup-link {
  display:inline-flex; align-items:center; gap:6px;
  padding:9px 18px; border-radius:12px;
  background:var(--gold-light); border:1px solid var(--gold-border);
  color:var(--gold-text); font-size:13px; font-weight:600; transition:all .2s;
}
.sup-link:hover { background:var(--gold); color:#141414; }

/* ── FAQ ── */
.faq { background:linear-gradient(to bottom, var(--bg-card) 0%, var(--bg-section) 200px, var(--bg-section) 100%); }
.faq-list { max-width:820px; margin:0 auto; display:flex; flex-direction:column; gap:8px; }
.faq-item { background:var(--bg-card); border:1.5px solid var(--border); border-radius:14px; overflow:hidden; transition:border-color .3s; }
.faq-item.open { border-color:var(--orange); }
.faq-q { display:flex; justify-content:space-between; align-items:center; padding:16px 20px; cursor:pointer; font-size:14px; font-weight:600; user-select:none; }
.faq-q:hover { background:rgba(20,20,20,0.04); }
.faq-plus { font-size:18px; color:var(--text-3); transition:transform .3s; flex-shrink:0; margin-left:10px; }
.faq-item.open .faq-plus { transform:rotate(45deg); }
.faq-a { max-height:0; overflow:hidden; transition:max-height .3s; }
.faq-a-in { padding:0 20px 14px; font-size:13px; color:var(--text-2); line-height:1.7; }

/* ── HERO PERKS (unused) ── */
.perks-wrap {
  display: none;
}
.hero-perks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.hero-perk {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  line-height: 1;
  transition: background .18s;
}
.hero-perk:hover { background: rgba(0,0,0,0.02); }
.hero-perk + .hero-perk { border-left: 1px solid var(--border); }
.perk-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
  line-height: 1;
}
@media(max-width:640px) {
  .hero-perks { grid-template-columns: 1fr 1fr; }
  .hero-perk:nth-child(3) { border-left: none; border-top: 1px solid var(--border); }
  .hero-perk:nth-child(4) { border-top: 1px solid var(--border); }
}

/* ── PERKS SECTION ── */
.perks-section {
  background: var(--bg-section);
  padding: 28px 0 48px;
}
.perks-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.perks-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  transition: background .18s;
}
.perks-item:hover { background: rgba(20,20,20,0.04); }
.perks-item + .perks-item { border-left: 1px solid var(--border); }
.perks-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}

/* ── HERO VISUAL ── */
.hero-left { display:flex; flex-direction:column; padding-left:40px; }
.hero-right {
  display:flex; align-items:center; justify-content:center;
  position:relative;
  padding-top:0;
  margin-left:0;
}
/* ============ HERO PHONE MOCKUP ============ */
.hero-phone-wrap {
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
  width:100%;
  perspective: 1200px;
}
.hero-phone {
  position:relative;
  width:235px;
  flex-shrink:0;
  aspect-ratio: 693 / 1280;
  background:#0a0a0a;
  border-radius:38px;
  padding:8px;
  overflow:hidden;
  box-shadow:
    0 24px 50px -12px rgba(0,0,0,0.30),
    0 14px 28px -6px rgba(0,0,0,0.12),
    inset 0 0 0 2px rgba(255,255,255,0.06);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
  transform-style: preserve-3d;
  transform-origin: center center;
  will-change: transform;
}
.hero-phone.is-hover {
  box-shadow:
    0 36px 70px -16px rgba(0,0,0,0.35),
    0 20px 40px -8px rgba(0,0,0,0.18),
    0 0 0 1px rgba(232,184,0,0.20),
    0 0 30px rgba(232,184,0,0.18),
    inset 0 0 0 2px rgba(255,255,255,0.06);
}
.hero-phone::before {
  content:'';
  position:absolute; inset:0;
  border-radius:38px;
  background:linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0) 30%);
  pointer-events:none;
  z-index:4;
}
.hero-phone-notch {
  position:absolute;
  top:11px; left:50%; transform:translateX(-50%);
  width:58px; height:16px;
  background:#0a0a0a;
  border-radius:10px;
  z-index:3;
}
.hero-phone-screen {
  display:block;
  width:100%;
  height:calc(100% - 30px);
  margin-top:30px;
  object-fit:fill;
  background:#FFFFFF;
  border-radius:0 0 30px 30px;
  position:relative;
  z-index:1;
}
.hero-phone-statusbar {
  position:absolute;
  top:8px; left:8px; right:8px;
  height:30px;
  display:flex; align-items:center; justify-content:space-between;
  padding:0 18px 3px 18px;
  color:var(--text);
  font-size:9px;
  font-weight:700;
  font-family:'SF Pro Text','Inter',sans-serif;
  z-index:2;
  background:#FFFFFF;
  border-radius:30px 30px 0 0;
}
.hero-phone-statusbar .sb-time { letter-spacing:-0.02em; font-size:11px; margin-left:18px; }
.hero-phone-statusbar .sb-icons {
  display:flex; align-items:center; gap:5px;
  color:var(--text);
}
.hero-phone-statusbar svg { display:block; }

/* hero-phone responsive sizing — populated by hero variant block below */

/* ── FEAT SYMBOL ── */
.feat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.feat-sym {
  flex-shrink: 0;
  color: var(--gold);
  opacity: 0.85;
  display: flex;
  align-items: center;
}
.feat-sym svg {
  display: block;
  width: 20px; height: 20px;
  stroke: var(--gold);
}
.feat-header h3 {
  margin-bottom: 0 !important;
}

/* ── TRUST BAR ── */
.trust-wrap {
  background: var(--bg-card);
  padding: 0 0 52px;
  border-bottom: 1px solid var(--border);
}
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  background: var(--bg-card);
}
.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  transition: background .2s;
  cursor: default;
}
.trust-item:hover { background: var(--bg-section); }
.trust-item + .trust-item { border-left: 1.5px solid var(--border); }
.trust-check {
  color: var(--gold);
  font-size: 17px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── MEME ELEMENTS ── */
.meme-bar {
  background: var(--bg-section);
  padding: 32px 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.meme-bar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.meme-dog {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.meme-dog img {
  border-radius: 12px;
  object-fit: cover;
}
.meme-caption {
  font-size: 12px; font-style: italic; font-weight: 700;
  color: var(--orange); text-align: center;
}
.meme-quote-block {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 28px 36px;
  display: flex; align-items: center; gap: 24px;
  margin: 0 auto; max-width: 680px;
}
.meme-quote-text {
  font-family: 'Nunito', sans-serif;
  font-weight: 900; font-size: 22px;
  line-height: 1.3; color: var(--text);
}
.meme-quote-text span { color: var(--gold); }
.meme-inline {
  display: flex; align-items: center; gap: 20px;
  background: var(--bg-section);
  border-radius: 20px; padding: 20px 28px;
  margin: 40px 0;
}
.meme-inline img { border-radius: 12px; flex-shrink: 0; }
.meme-inline-text { font-size: 14px; color: var(--text-2); line-height: 1.7; }
.meme-inline-text strong { color: var(--text); font-size: 16px; display: block; margin-bottom: 4px; }
.meme-float-wrap {
  position: relative;
}
.meme-float-img {
  position: absolute;
  opacity: 0.13;
  pointer-events: none;
  mix-blend-mode: multiply;
}

/* ── MODALS ── */
.overlay {
  position:fixed; inset:0; background:rgba(0,0,0,.45); backdrop-filter:blur(6px);
  z-index:2000; display:flex; align-items:center; justify-content:center;
  opacity:0; pointer-events:none; transition:opacity .25s;
}
.overlay.open { opacity:1; pointer-events:all; }
.modal {
  background:var(--bg-card); border-radius:24px; padding:36px;
  width:100%; max-width:420px; margin:20px;
  box-shadow:0 24px 80px rgba(0,0,0,.15);
  transform:translateY(20px); transition:transform .25s; position:relative;
}
.overlay.open .modal { transform:translateY(0); }
.m-close { position:absolute; top:14px; right:16px; background:none; border:none; cursor:pointer; font-size:22px; color:var(--text-3); }
.m-logo { display:flex; align-items:center; gap:10px; margin-bottom:20px; }
.m-logo img { width:38px; height:38px; border-radius:50%; object-fit:cover; }
.m-logo-name { font-family:'Nunito',sans-serif; font-weight:900; font-size:20px; }
.m-logo-name span { color:var(--gold); }
.m-tabs { display:flex; margin-bottom:22px; border:1.5px solid var(--border); border-radius:12px; overflow:hidden; }
.m-tab { flex:1; padding:9px; text-align:center; font-size:14px; font-weight:600; cursor:pointer; background:transparent; border:none; color:var(--text-2); font-family:'Inter',sans-serif; transition:all .2s; }
.m-tab.active { background:var(--gold); color:#141414; }
.m-h2 { font-family:'Nunito',sans-serif; font-weight:900; font-size:22px; margin-bottom:4px; }
.m-sub { font-size:13px; color:var(--text-2); margin-bottom:20px; }
.f-grp { margin-bottom:14px; }
.f-lbl { display:block; font-size:13px; font-weight:600; margin-bottom:5px; }
.f-inp {
  width:100%; padding:11px 14px; border-radius:12px;
  border:1.5px solid var(--border); background:var(--bg);
  font-size:14px; color:var(--text); font-family:'Inter',sans-serif;
  outline:none; transition:border-color .2s;
}
.f-inp:focus { border-color:var(--gold); }
.f-note { font-size:11px; color:var(--text-3); margin-top:4px; }
.f-btn {
  width:100%; padding:13px; border-radius:13px;
  background:var(--gold); border:none; color:#141414;
  font-size:15px; font-weight:700; cursor:pointer;
  font-family:'Inter',sans-serif; margin-top:4px; transition:all .2s;
}
.f-btn:hover { background:var(--gold-hover); }
.f-err { font-size:12px; color:var(--red); margin-top:8px; display:none; }
.f-ok { font-size:12px; color:var(--green); margin-top:8px; display:none; }

/* Cabinet */
.cab { max-width:480px; max-height:90vh; overflow-y:auto; }
.cab-hd { display:flex; justify-content:space-between; align-items:center; margin-bottom:20px; }
.cab-hd h2 { font-family:'Nunito',sans-serif; font-weight:900; font-size:21px; }
.cab-user { display:flex; align-items:center; gap:12px; margin-bottom:20px; padding:14px 16px; background:var(--bg); border-radius:14px; border:1.5px solid var(--border); }
.cab-ava { width:42px; height:42px; border-radius:50%; background:var(--gold-light); display:flex; align-items:center; justify-content:center; font-weight:800; font-size:17px; color:var(--gold-text); }
.cab-sec { margin-bottom:18px; }
.cab-sec-title { font-size:11px; font-weight:700; color:var(--text-3); text-transform:uppercase; letter-spacing:1px; margin-bottom:10px; }
.key-box { display:flex; align-items:center; gap:8px; padding:10px 12px; background:var(--bg-section); border:1.5px solid var(--border); border-radius:11px; }
.key-txt { font-size:12px; font-family:monospace; flex:1; word-break:break-all; color:var(--text); }
.key-btn { padding:5px 12px; border-radius:8px; border:1px solid var(--gold-border); background:var(--gold-light); color:var(--gold-text); font-size:11px; font-weight:600; cursor:pointer; white-space:nowrap; transition:all .2s; }
.key-btn:hover { background:var(--gold); color:#141414; }
.sub-row { display:flex; justify-content:space-between; align-items:center; padding:12px 14px; background:var(--bg-section); border:1.5px solid var(--border); border-radius:11px; margin-bottom:8px; }
.sub-lbl { font-size:13px; color:var(--text-2); }
.sub-val { font-size:13px; font-weight:700; }
.sub-val.ok { color:var(--green); }
.pw-toggle { width:100%; padding:10px; border-radius:11px; border:1.5px solid var(--border); background:transparent; font-size:13px; font-weight:600; color:var(--text-2); cursor:pointer; text-align:left; font-family:'Inter',sans-serif; transition:all .2s; }
.pw-toggle:hover { border-color:var(--gold-border); color:var(--text); }
.pw-form { display:none; margin-top:10px; }
.pw-form.open { display:block; }
.logout-btn { width:100%; padding:10px; border-radius:11px; border:1.5px solid rgba(216,90,48,.25); background:rgba(216,90,48,.06); color:var(--red); font-size:13px; font-weight:600; cursor:pointer; font-family:'Inter',sans-serif; transition:all .2s; margin-top:4px; }
.logout-btn:hover { background:rgba(216,90,48,.12); }

/* Footer CTA */
.footer-cta { background:var(--bg-section); padding:60px 0; text-align:center; }
.footer-cta h2 { font-family:'Nunito',sans-serif; font-weight:900; font-size:32px; margin-bottom:10px; }
.footer-cta p { font-size:16px; color:var(--text-2); margin-bottom:24px; }
.footer-meme { font-size:12px; font-style:italic; color:var(--orange); margin-top:14px; opacity:.8; }

footer { background:var(--bg); border-top:1px solid var(--border); padding:36px 0; }
.foot-grid { display:flex; justify-content:space-between; gap:28px; flex-wrap:wrap; }
.foot-brand { display:flex; flex-direction:column; gap:8px; }
.foot-logo { display:flex; align-items:center; gap:12px; }
.foot-logo img { width:42px; height:42px; border-radius:50%; object-fit:cover; }
.foot-name { font-family:'Nunito',sans-serif; font-weight:900; font-size:22px; }
.foot-name span { color:var(--gold); }
.foot-copy { font-size:14px; color:var(--text-3); }
.foot-col h4 { font-size:17px; font-weight:700; margin-bottom:14px; }
.foot-col a { display:block; font-size:15px; color:var(--text-2); margin-bottom:10px; transition:color .2s; }
.foot-col a:hover { color:var(--text); }

/* Reveal */
.reveal { opacity:0; transform:translateY(18px); transition:opacity .5s, transform .5s; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ============================================================
   RESPONSIVE — 3 BREAKPOINTS
   - desktop  ≥1200   (default, no @media)
   - laptop   768-1199 (@media max-width:1199)
   - mobile   <768     (@media max-width:767)
   - <480     small-mobile refinements within mobile
   ============================================================ */

/* ── LAPTOP 768-1199 ── */
@media (max-width:1199px) {
  /* container + nav */
  .container { padding:0 24px; }
  .nav-inner { padding:0 24px; }
  nav { height:74px; }
  section[id] { scroll-margin-top:74px; }
  .nav-logo img { width:46px; height:46px; }
  .nav-logo-name { font-size:22px; }

  /* nav-links hidden — replaced by burger on <1200 */
  .nav-links { display:none; }
  .nav-burger { display:flex; }

  /* auth buttons hidden from nav — moved to burger drawer on <1200 */
  .nav-right > .btn-outline,
  .nav-right > .btn-gold { display:none; }

  /* Exception: account CTA stays in the top bar (between the mailto icon
     and the burger) for logged-in mobile users so the kabinet is reachable
     in one tap without opening the drawer. Inline ``style="display:none"``
     in index.html keeps it hidden for anon visitors (inline wins over CSS);
     landing.js initLoggedInNav clears the inline style on a valid session
     and this rule then renders the compact pill. */
  .nav-right > #nav-account-btn {
    display: inline-flex;
    padding: 8px 14px;
    font-size: 13px;
  }

  /* compact grids */
  .feat-grid { grid-template-columns:repeat(2,1fr); gap:14px; }
  .rev-grid { grid-template-columns:repeat(2,1fr); }
  .utp-box { grid-template-columns:1fr; }
  .utp-emoji { display:none; }

  /* hero — phone visible on laptop, scaled down */
  .hero h1 { font-size:48px; }
  .hero-phone { width:200px; }
  .hero-left { padding-left:0; }    /* container already provides side padding */
  .hero-inner { gap:20px; }

  /* bars (perks + trust): 4-col → 2×2 on laptop */
  .perks-bar,
  .trust-bar { grid-template-columns:1fr 1fr; }
  .perks-item:nth-child(3) { border-left:none; border-top:1px solid var(--border); }
  .perks-item:nth-child(4) { border-top:1px solid var(--border); }
  .trust-item:nth-child(3) { border-left:none; border-top:1.5px solid var(--border); }
  .trust-item:nth-child(4) { border-top:1.5px solid var(--border); }
}

/* ── MOBILE <768 ── */
@media (max-width:767px) {
  /* container + nav */
  .container { padding:0 18px; }
  .nav-inner { padding:0 18px; }
  nav { height:64px; }
  section[id] { scroll-margin-top:64px; }
  .nav-logo img { width:38px; height:38px; }
  .nav-logo-name { font-size:18px; }
  .nav-social { width:38px; height:38px; }
  .nav-social svg { width:18px; height:18px; }

  /* drawer expands near full width on mobile (keeps rounded corners visible) */
  .nav-mobile-menu {
    left:8px; right:8px;
    width:auto;
  }

  /* hero (1-col on mobile, regardless of variant) */
  .hero { padding-bottom:24px; }
  .hero-inner { grid-template-columns:1fr; gap:24px; }
  .hero-right { display:none; }
  .hero h1 { font-size:36px; line-height:1.15; text-align:center; }
  .hero-sub { text-align:center; max-width:100%; font-size:16px; }
  .hero-btns { justify-content:center; }

  /* all section grids collapse */
  .how-grid { grid-template-columns:1fr; gap:14px; }
  .feat-grid { grid-template-columns:1fr; gap:12px; }
  .rev-grid { grid-template-columns:1fr; gap:12px; }
  .sup-grid { grid-template-columns:1fr; }
  .foot-grid { flex-direction:column; gap:24px; }

  /* bars stay 2-col on mobile */
  .trust-bar { grid-template-columns:1fr 1fr; }
  .trust-item:nth-child(3) { border-left:none; border-top:1.5px solid var(--border); }
  .trust-item:nth-child(4) { border-top:1.5px solid var(--border); }
  .perks-bar { grid-template-columns:1fr 1fr; }
  .perks-item:nth-child(3) { border-left:none; border-top:1px solid var(--border); }
  .perks-item:nth-child(4) { border-top:1px solid var(--border); }

  /* section heads + spacing */
  .sec-head h2,
  .how-title-wrap h2 { font-size:26px; }
  .how-title-wrap { padding:14px 28px; }
  section { padding:48px 0; }

  /* faq */
  .faq-list { max-width:100%; }
  .faq-q { font-size:15px; padding:18px 18px; }
  .faq-a-in { font-size:14px; padding:0 18px 18px; }
}

/* ── SMALL MOBILE <480 (refinements) ── */
@media (max-width:479px) {
  .container { padding:0 14px; }
  .nav-inner { padding:0 14px; }
  .nav-logo-name { font-size:16px; }

  .hero h1 { font-size:30px; }
  .hero-sub { font-size:15px; }
  .btn-primary, .btn-secondary { padding:13px 20px; font-size:14px; }

  .sec-head h2,
  .how-title-wrap h2 { font-size:22px; }
  .how-title-wrap { padding:12px 22px; }

  .feat-card, .how-step, .rev { padding:18px; }

  /* pricing — pill compacts to numbers only on small mobile */
  .price-card { padding:14px; }
  .price-pill-btn .pill-unit { display:none; }
  .price-pill-btn { font-size:15px; }
  .price-num { font-size:60px; letter-spacing:-2px; }
  .price-num-currency { font-size:32px; }
  section { padding:36px 0; }

  /* bars collapse fully on very narrow */
  .trust-bar { grid-template-columns:1fr; }
  .trust-item + .trust-item { border-left:none; border-top:1.5px solid var(--border); }
  .perks-bar { grid-template-columns:1fr; }
  .perks-item + .perks-item { border-left:none; border-top:1px solid var(--border); }
}