/* Vodge — marketing site styles */

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
section[id] { scroll-margin-top: 140px; }
@media (max-width: 720px) {
  section[id] { scroll-margin-top: 180px; }
}

:root {
  --bg: #0a1424;
  --bg-deep: #050b18;
  --surface-1: rgba(255,255,255,0.04);
  --surface-2: rgba(255,255,255,0.06);
  --border-soft: rgba(255,255,255,0.08);
  --border-medium: rgba(255,255,255,0.12);

  --text-primary: #ffffff;
  --text-body: #e7eef8;
  --text-muted: rgba(231,238,248,0.65);
  --text-subtle: rgba(231,238,248,0.45);

  --teal-300: #5eead4;
  --teal-400: #14d4d4;
  --teal-500: #10b3b3;
  --teal-600: #0a8f8f;

  --gold-300: #fcd34d;
  --gold-500: #f59e0b;
  --gold-700: #b45309;

  --green-400: #34d399;
  --indigo-400: #818cf8;
  --indigo-500: #6366f1;
  --rose-400: #fb7185;

  --font-sans: "Geist", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "Geist Mono", ui-monospace, monospace;
  --font-serif: "Instrument Serif", "Times New Roman", serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--text-body);
  font-family: var(--font-sans);
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

/* ---------- Layout ---------- */

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

section { position: relative; padding: 120px 0; }

/* Subtle curved divider centered at the top of each section after the first */
section + section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 420px;
  height: 24px;
  pointer-events: none;
  opacity: 0.55;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 420 24' fill='none'><defs><linearGradient id='g' x1='0' y1='0' x2='1' y2='0'><stop offset='0' stop-color='%2314d4d4' stop-opacity='0'/><stop offset='0.5' stop-color='%235eead4' stop-opacity='0.85'/><stop offset='1' stop-color='%2314d4d4' stop-opacity='0'/></linearGradient></defs><path d='M4 12 Q107 6 210 12 T416 12' stroke='url(%23g)' stroke-width='1.2' stroke-linecap='round'/></svg>");
}

@media (max-width: 720px) {
  section { padding: 56px 0; }
  .container { padding: 0 20px; }
  section + section::before { width: 280px; height: 20px; opacity: 0.45; }
}

/* ---------- Typography ---------- */

h1, h2, h3, h4 { margin: 0; color: var(--text-primary); letter-spacing: -0.03em; line-height: 1.05; font-weight: 700; }

/* Editorial-style eyebrow: short rule + tracked uppercase label. No pills. */
.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  color: var(--teal-400);
  font-size: 13px; font-weight: 600; letter-spacing: 2.4px; text-transform: uppercase;
  margin-bottom: 32px;
  padding: 0;
  background: transparent; border: 0;
}
.eyebrow::before {
  content: ""; display: inline-block;
  width: 32px; height: 1.5px;
  background: currentColor;
  opacity: 0.7;
}
.eyebrow.gold { color: var(--gold-300); }
.eyebrow.green { color: var(--green-400); }
.eyebrow.indigo { color: var(--indigo-400); }
.eyebrow.rose { color: var(--rose-400); }

.display-1 { font-size: clamp(56px, 9.5vw, 116px); font-weight: 700; letter-spacing: -0.045em; line-height: 1.02; }
.display-2 { font-size: clamp(48px, 7.5vw, 92px); font-weight: 700; letter-spacing: -0.04em; line-height: 1.04; }
.display-3 { font-size: clamp(40px, 6vw, 68px); font-weight: 700; letter-spacing: -0.035em; line-height: 1.05; }
.h-section { font-size: clamp(44px, 6.5vw, 84px); font-weight: 700; letter-spacing: -0.04em; line-height: 1.05; margin-bottom: 24px; text-align: center; }

.lead { font-size: clamp(19px, 1.6vw, 23px); line-height: 1.5; color: var(--text-muted); max-width: 820px; margin-left: auto; margin-right: auto; font-weight: 400; text-align: center; }

/* Serif italic emphasis — the 2026 move. Use for highlighted words inside display headlines.
   Stays inline (not inline-block) so multi-word emphasis wraps cleanly within the headline. */
.balance-text {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  color: var(--teal-300);
  letter-spacing: -0.01em;
}
.balance-text.gold { color: var(--gold-300); }
.balance-text.indigo { color: #a5b4fc; }
.balance-text.rose { color: var(--rose-400); }

/* Old gold-text kept for the cost-number-style places (app UI mockups) */
.gold-text {
  background: linear-gradient(135deg, var(--gold-300) 0%, var(--gold-500) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: inline-block;
}
.teal-text { color: var(--teal-400); }

.muted { color: var(--text-muted); }
.subtle { color: var(--text-subtle); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 24px; border-radius: 14px;
  font-family: inherit; font-size: 16px; font-weight: 600; letter-spacing: -0.01em;
  cursor: pointer; border: 0;
  transition: transform .15s ease, box-shadow .2s, background .15s, border-color .15s;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--teal-400) 0%, var(--teal-600) 100%);
  color: #02181c;
  box-shadow: 0 8px 28px rgba(20,212,212,0.35), inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(20,212,212,0.45), inset 0 1px 0 rgba(255,255,255,0.3); }
.btn-secondary {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-medium);
  color: var(--text-primary);
}
.btn-secondary:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); }
.btn-big { padding: 20px 34px; font-size: 18px; border-radius: 16px; font-weight: 600; }

/* ---------- Nav ---------- */

.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(8,18,29,0.85) 0%, rgba(8,18,29,0.55) 100%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 1px 0 rgba(255,255,255,0.02), 0 20px 40px -20px rgba(0,0,0,0.5);
}
.nav-stack-inner {
  padding-top: 24px;
  padding-bottom: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.nav-brand {
  display: flex; align-items: center; justify-content: center;
}
.nav-brand img {
  display: block; height: 53.2px; width: auto;
}
.nav-row {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 22px;
  padding: 10px 10px 10px 24px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.nav-links {
  display: flex; align-items: center; gap: 6px;
  flex: 1; min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.nav-links::-webkit-scrollbar { display: none; }
.nav-links a {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: 22px;
  color: var(--text);
  font-weight: 700; letter-spacing: 0;
  padding: 8px 18px; border-radius: 999px;
  white-space: nowrap;
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.05); }
.nav-mail {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--teal-300, #5eead4);
}
.nav-mail svg { color: var(--teal-400); opacity: 0.9; }
.nav-mail-text { font-family: var(--font-mono, ui-monospace, monospace); font-size: 14px; letter-spacing: -0.01em; }
.nav-cta {
  flex-shrink: 0;
  padding: 12px 22px;
  font-size: 15px;
  display: inline-flex; align-items: center; gap: 8px;
}

@media (max-width: 860px) {
  .nav-stack-inner { gap: 16px; padding-top: 18px; padding-bottom: 16px; }
  .nav-brand img { height: 30.8px; }
  .nav-row {
    flex-direction: column; gap: 10px;
    border-radius: 20px; padding: 10px 10px;
  }
  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2px 6px;
    overflow-x: visible;
  }
  .nav-links a {
    font-size: 17px;
    padding: 4px 10px;
  }
  .nav-mail { font-size: 13px; }
  .nav-mail-text { font-size: 11.5px; }
  .nav-cta { width: 100%; justify-content: center; padding: 11px 16px; }
}
@media (max-width: 420px) {
  .nav-links a { font-size: 16px; padding: 4px 8px; }
}

footer .foot-mail {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 0 0 18px 18px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(20,212,212,0.08);
  border: 1px solid rgba(20,212,212,0.28);
  color: var(--teal-300, #5eead4);
  font-size: 13px; font-weight: 500;
  font-family: var(--font-mono, ui-monospace, monospace);
  letter-spacing: -0.01em;
  transition: background .15s, color .15s;
}
footer .foot-mail:hover { background: rgba(20,212,212,0.16); color: #fff; }
footer .foot-mail svg { color: var(--teal-400); }

footer .foot-owner {
  color: var(--teal-300, #5eead4);
  font-weight: 500;
  text-decoration: none;
  transition: color .15s;
}
footer .foot-owner:hover { color: #fff; }

/* ---------- Aurora background ---------- */

.aurora {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 70%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 0%, #000 70%, transparent 100%);
}
.aurora .blob { position: absolute; border-radius: 50%; filter: blur(80px); }
.aurora .blob.teal { background: radial-gradient(circle, rgba(20,212,212,0.4) 0%, transparent 65%); }
.aurora .blob.indigo { background: radial-gradient(circle, rgba(99,102,241,0.35) 0%, transparent 65%); }
.aurora .blob.gold { background: radial-gradient(circle, rgba(245,158,11,0.2) 0%, transparent 65%); }

/* Drift animations are slow and respectful */
@keyframes drift1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(10%,-6%) scale(1.1); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-8%,10%) scale(1.08); } }

/* ---------- Hero ---------- */

.hero { padding-top: 110px; padding-bottom: 160px; overflow: hidden; }
.hero-inner {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 72px;
  align-items: center; position: relative; z-index: 1;
}
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 64px; }
}

/* Centered hero variant (text-only, like the closing CTA design) */
.hero-center { padding-top: 130px; padding-bottom: 130px; position: relative; }
.hero-center-inner {
  position: relative; z-index: 1; text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.display-hero {
  font-size: clamp(56px, 10vw, 132px);
  font-weight: 700; letter-spacing: -0.045em; line-height: 1.0;
  margin-bottom: 36px; max-width: 1100px;
}
.hero-center .lead {
  max-width: 1140px; margin: 0 auto 44px; text-align: center;
  font-size: 19px;
  text-wrap: balance;
}
.hero-center .lead strong {
  color: var(--teal-300, #5eead4); font-weight: 600;
}
.hero-center .lead .lead-line {
  display: block;
}
.hero-center .lead .lead-highlight {
  display: inline-block;
  margin-top: 10px;
  color: var(--teal-300, #5eead4);
  font-weight: 700;
  font-size: 1.08em;
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
  padding: 0;
  margin: 0 0 30px;
  list-style: none;
  max-width: 880px;
}
.hero-proof li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 14px;
  border: 1px solid rgba(94, 234, 212, 0.24);
  border-left-color: rgba(94, 234, 212, 0.65);
  border-left-width: 2px;
  border-radius: 10px;
  background: rgba(255,255,255,0.045);
  color: rgba(231,238,248,0.86);
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-style: normal;
  font-weight: 650;
  letter-spacing: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.hero-center .ctas {
  display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center;
}

/* Language flags strip below the CTA */
.lang-strip {
  margin-top: 64px;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.lang-strip-label {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: clamp(18px, 1.56vw, 21.6px);
  color: var(--text-muted);
  letter-spacing: 0;
}
.lang-flags {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 22px;
  list-style: none; padding: 0; margin: 0;
}
.lang-flags li { display: inline-flex; }
.lang-flags img {
  width: 43.2px; height: 32.4px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
  object-fit: cover;
  transition: transform .15s ease, box-shadow .2s ease;
}
.lang-flags img:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.45);
}

/* "+10" chip with hover tooltip listing the additional languages */
.lang-more {
  position: relative;
  cursor: help;
}
.lang-more-chip {
  display: inline-flex; align-items: center; justify-content: center;
  width: 43.2px; height: 32.4px;
  border-radius: 4px;
  border: 1px solid rgba(20,212,212,0.4);
  background: rgba(20,212,212,0.10);
  color: var(--teal-300);
  font-family: var(--font-mono);
  font-size: 13.2px;
  font-weight: 700;
  letter-spacing: -0.02em;
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
  transition: transform .15s ease, box-shadow .2s ease, background .15s ease;
}
.lang-more:hover .lang-more-chip,
.lang-more:focus-visible .lang-more-chip {
  transform: translateY(-2px);
  background: rgba(20,212,212,0.18);
  box-shadow: 0 8px 18px rgba(0,0,0,0.45);
}
.lang-more-tip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: rgba(8,18,29,0.95);
  border: 1px solid var(--border-medium);
  color: var(--text-body);
  font-size: 13px;
  line-height: 1.4;
  font-family: var(--font-sans);
  padding: 10px 14px;
  border-radius: 10px;
  white-space: nowrap;
  box-shadow: 0 14px 32px rgba(0,0,0,0.5);
  opacity: 0; visibility: hidden;
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
  pointer-events: none;
  z-index: 5;
}
.lang-more-tip::after {
  content: "";
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: rgba(8,18,29,0.95);
}
.lang-more:hover .lang-more-tip,
.lang-more:focus-visible .lang-more-tip {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 720px) {
  .lang-strip { margin-top: 44px; gap: 14px; }
  .lang-flags { gap: 14px; }
  .lang-flags img { width: 33.6px; height: 25.2px; }
  .lang-more-chip { width: 33.6px; height: 25.2px; font-size: 11.4px; }
  .lang-more-tip { font-size: 13.2px; padding: 8px 10px; white-space: normal; max-width: 240px; }
}

.hero-tagline {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 24px;
  color: var(--teal-300, #5eead4);
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 400;
  letter-spacing: 0;
}
.hero-tagline::before,
.hero-tagline::after {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: rgba(94, 234, 212, 0.45);
}
.hero-center .badges {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-top: 56px;
}
@media (max-width: 720px) {
  .hero-center { padding-top: 56px; padding-bottom: 72px; }
  .display-hero { margin-bottom: 26px; }
  .hero-center .lead { margin-bottom: 32px; }
  .hero-proof { margin: 0 0 24px; gap: 8px; }
  .hero-proof li { font-size: 12.5px; min-height: 32px; padding: 7px 10px; border-radius: 9px; }
}

/* Phone showcase section (moved out of hero) */
.phone-showcase { padding: 80px 0 120px; position: relative; overflow: hidden; }
.phone-showcase-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.phone-showcase .ps-copy .h-section { margin-top: 18px; }
@media (max-width: 980px) {
  .phone-showcase-inner { grid-template-columns: 1fr; gap: 56px; }
  .phone-showcase .ps-copy { text-align: center; }
  .phone-showcase .hero-visual { display: flex; justify-content: center; }
}

/* Compact closing CTA variant */
.cta-section-compact { padding: 110px 0 130px; }
.cta-section-compact h2 { font-size: clamp(44px, 7vw, 88px); margin-bottom: 22px; }
.cta-section-compact .eyebrow { margin-bottom: 18px; display: inline-block; }

.hero h1 { margin-bottom: 32px; }
.hero p.lead { margin-bottom: 44px; max-width: 600px; }
.hero-center p.lead { max-width: 1140px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; font-size: 14px; color: var(--text-subtle); }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust svg { color: var(--green-400); }

.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-visual .phone-wrap { position: relative; }
.hero-visual .phone-wrap::before {
  content: ""; position: absolute; inset: -40px -60px -40px -60px;
  background: radial-gradient(ellipse at center, rgba(20,212,212,0.35) 0%, transparent 60%);
  filter: blur(40px); z-index: -1;
}

/* ---------- Phone mockup (reusable) ---------- */

.phone {
  width: 360px; height: 740px;
  border-radius: 32px; overflow: hidden;
  background: var(--bg);
  border: 8px solid #181818;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 12px 32px rgba(20,212,212,0.15);
  display: flex; flex-direction: column;
  position: relative;
}
.phone-sm { width: 300px; height: 620px; }
.phone .status { height: 26px; padding: 0 18px; flex-shrink: 0; display: flex; align-items: center; justify-content: space-between; font-size: 12px; font-weight: 600; color: #fff; }
.phone .pheader { height: 48px; padding: 0 16px; flex-shrink: 0; display: flex; align-items: center; justify-content: space-between; }
.phone .pheader .back { width: 32px; height: 32px; border-radius: 9px; background: transparent; border: 0; color: var(--text-body); display: flex; align-items: center; justify-content: center; }
.phone .pheader .title { font-size: 15px; font-weight: 600; }
.phone .pcontent { flex: 1; overflow: hidden; padding: 8px 16px 16px; display: flex; flex-direction: column; gap: 14px; position: relative; }

/* ---------- Phone — Novo Card (hero) ---------- */

.p-cost {
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid var(--border-medium);
  border-radius: 16px; padding: 13px 14px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.06);
}
.p-cost .lbl { font-size: 9.5px; letter-spacing: 1.4px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; }
.p-cost .num-row { display: flex; align-items: baseline; gap: 4px; margin-top: 3px; }
.p-cost .num { font-size: 26px; font-weight: 700; letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--gold-300) 0%, var(--gold-500) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-variant-numeric: tabular-nums; }
.p-cost .unit { font-size: 11.5px; color: var(--text-muted); }
.p-cost .summary { font-size: 10.5px; color: var(--text-subtle); margin-top: 1px; }
.p-cost .pers-btn {
  padding: 8px 11px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(20,212,212,0.18) 0%, rgba(10,143,143,0.08) 100%);
  border: 1px solid rgba(20,212,212,0.4);
  color: var(--teal-400);
  font-weight: 600; font-size: 11.5px;
  display: inline-flex; align-items: center; gap: 5px;
  box-shadow: 0 0 18px rgba(20,212,212,0.15);
}

.p-mic-stage { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; }
.p-mic-title { font-size: 21px; font-weight: 700; letter-spacing: -0.025em; color: #fff; }
.p-hint-chip { padding: 7px 11px; background: transparent; border: 1px solid var(--border-soft); border-radius: 999px; display: inline-flex; align-items: center; gap: 7px; }
.p-hint-chip .q { width: 13px; height: 13px; border-radius: 50%; border: 1px solid rgba(231,238,248,0.4); color: rgba(231,238,248,0.6); display: inline-flex; align-items: center; justify-content: center; font-size: 8.5px; font-weight: 700; }
.p-hint-chip .lbl { font-size: 11px; color: rgba(231,238,248,0.6); font-weight: 500; }
.p-hint-chip .ex { font-size: 10.5px; color: rgba(20,212,212,0.75); font-family: var(--font-mono); }

.p-mic-wrap { position: relative; width: 144px; height: 144px; display: flex; align-items: center; justify-content: center; }
.p-mic-ring { position: absolute; border-radius: 50%; background: var(--teal-500); }
.p-mic-ring.outer { width: 128px; height: 128px; opacity: 0.15; animation: pulseRing 2.6s ease-in-out infinite; }
.p-mic-ring.inner { width: 110px; height: 110px; opacity: 0.22; animation: pulseRing 2.6s ease-in-out infinite -0.9s; }
@keyframes pulseRing { 0%,100% { transform: scale(1); opacity: 0.5; } 50% { transform: scale(1.18); opacity: 0; } }
.p-mic-btn {
  position: relative; width: 94px; height: 94px; border-radius: 50%;
  background: linear-gradient(135deg, #1ee0e0 0%, var(--teal-600) 100%);
  border: 0; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 36px rgba(16,179,179,0.5), inset 0 2px 8px rgba(255,255,255,0.25), inset 0 -3px 8px rgba(0,0,0,0.25);
}
.p-auto { font-size: 10.5px; color: rgba(231,238,248,0.5); display: inline-flex; align-items: center; gap: 5px; }
.p-auto .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--teal-400); box-shadow: 0 0 8px rgba(20,212,212,0.8); }

.p-fallback {
  margin: 0; padding: 11px; background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-soft); border-radius: 12px;
  color: rgba(231,238,248,0.7); font-size: 12px; font-weight: 500;
  display: flex; align-items: center; justify-content: center; gap: 7px;
}

/* ---------- Problem section ---------- */

.problem-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
  margin-top: 60px;
}
@media (max-width: 720px) { .problem-grid { grid-template-columns: 1fr; } }
.problem-card {
  background: var(--surface-1);
  border: 1px solid var(--border-soft);
  border-radius: 18px; padding: 28px;
  position: relative; overflow: hidden;
}
.problem-card .label { font-size: 12px; letter-spacing: 1.4px; color: var(--rose-400); text-transform: uppercase; font-weight: 700; margin-bottom: 12px; }
.problem-card .what-you-do { font-size: 23px; font-weight: 600; color: #fff; letter-spacing: -0.025em; margin-bottom: 18px; line-height: 1.2; }
.problem-card .what-goes-wrong { font-size: 16px; color: var(--text-muted); line-height: 1.5; display: flex; align-items: flex-start; gap: 10px; }
.problem-card .what-goes-wrong svg { color: var(--rose-400); flex-shrink: 0; margin-top: 2px; }

/* ---------- Solution / steps ---------- */

/* New: How-to slide carousel */
.howto { padding: 100px 0 120px; position: relative; }
.ht-stage {
  position: relative;
  margin: 56px auto 0;
  max-width: 70%;
  background: var(--surface-1);
  border: 1px solid var(--border-soft);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  touch-action: pan-y;
}
.ht-slide img { -webkit-user-drag: none; user-select: none; }
@media (max-width: 880px) {
  .ht-stage { max-width: 100%; }
}
.ht-track {
  display: flex;
  width: 100%;
  transition: transform 700ms cubic-bezier(.7,.02,.2,1);
}
.ht-slide {
  flex: 0 0 100%;
  display: block;
  padding: 0;
  background: #f4f5f7;
  line-height: 0;
}
.ht-slide img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1672 / 941;
  object-fit: cover;
}
@media (max-width: 880px) {
  .ht-slide img { aspect-ratio: 1672 / 941; }
}

.ht-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(10, 20, 34, 0.7);
  border: 1px solid var(--border-soft);
  color: var(--text-body);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 180ms, transform 180ms;
  z-index: 2;
}
.ht-arrow:hover { background: rgba(20, 212, 212, 0.18); border-color: var(--teal-500); color: #fff; }
.ht-prev { left: 18px; }
.ht-next { right: 18px; }
@media (max-width: 880px) { .ht-arrow { display: none; } }

.ht-controls {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 18px;
  z-index: 2;
  padding: 6px 14px 6px 6px;
  background: rgba(10, 20, 34, 0.65);
  border: 1px solid var(--border-soft);
  backdrop-filter: blur(8px);
  border-radius: 999px;
}
.ht-playpause {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(20, 212, 212, 0.18);
  border: 1px solid rgba(20, 212, 212, 0.45);
  color: var(--teal-300, #5eead4);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; padding: 0;
  transition: background 180ms;
}
.ht-playpause:hover { background: rgba(20, 212, 212, 0.30); color: #fff; }
.ht-playpause .ht-icon-play { display: none; }
.ht-playpause[data-state="paused"] .ht-icon-pause { display: none; }
.ht-playpause[data-state="paused"] .ht-icon-play { display: block; }

.ht-dots {
  display: flex; gap: 10px;
}
.ht-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.18); border: 0;
  cursor: pointer; padding: 0;
  transition: all 200ms;
}
.ht-dot.active { background: var(--teal-400); width: 28px; border-radius: 4px; }
.ht-dot:hover { background: rgba(20,212,212,0.5); }

/* legacy steps-grid (kept just in case) */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 60px; }
@media (max-width: 880px) { .steps-grid { grid-template-columns: 1fr; } }

.step-illus {
  width: 100%;
  aspect-ratio: 240 / 200;
  margin: 0 auto 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(20,212,212,0.06), rgba(99,102,241,0.04));
  border: 1px solid var(--border-soft);
  padding: 8px;
  display: flex; align-items: center; justify-content: center;
}
.step-illus svg { width: 100%; height: 100%; display: block; }
.step {
  position: relative;
  padding: 40px 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  overflow: hidden;
}
.step::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at top, rgba(20,212,212,0.08) 0%, transparent 60%);
}
.step .num {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(20,212,212,0.2) 0%, rgba(10,143,143,0.08) 100%);
  border: 1px solid rgba(20,212,212,0.3);
  color: var(--teal-400);
  font-size: 24px; font-weight: 600; letter-spacing: -0.02em;
  margin-bottom: 26px;
  font-family: var(--font-mono);
}
.step h3 { font-size: 28px; font-weight: 700; letter-spacing: -0.025em; line-height: 1.15; margin-bottom: 14px; position: relative; }
.step p { font-size: 17px; line-height: 1.55; color: var(--text-muted); position: relative; }

/* ---------- Card anatomy ---------- */

.anatomy-wrap {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px;
  align-items: center;
  margin-top: 70px;
}
@media (max-width: 980px) { .anatomy-wrap { grid-template-columns: 1fr; gap: 50px; } }
.anatomy-card {
  background: linear-gradient(180deg, #1a2c4a 0%, #0d1a2c 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px; padding: 24px;
  display: flex; flex-direction: column; gap: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 0 60px rgba(20,212,212,0.12);
  position: relative; overflow: hidden;
}
.anatomy-card::before { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at top right, rgba(99,102,241,0.18) 0%, transparent 60%); }
.anatomy-card .ac-head { display: flex; gap: 16px; align-items: flex-start; position: relative; }
.anatomy-card .ac-img {
  width: 96px; height: 96px; border-radius: 16px;
  background: linear-gradient(135deg, #2563eb, #db2777);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); font-size: 11px;
  font-family: var(--font-mono);
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.anatomy-card .ac-phrase { font-size: 24px; font-weight: 700; color: #fff; letter-spacing: -0.02em; }
.anatomy-card .ac-trans { font-size: 14px; color: var(--text-muted); margin-top: 4px; }
.anatomy-card .ac-meta { display: flex; gap: 6px; margin-top: 10px; flex-wrap: wrap; }
.anatomy-card .ac-meta .chip { font-size: 10.5px; padding: 3px 9px; border-radius: 999px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); color: rgba(231,238,248,0.75); font-weight: 500; }
.anatomy-card .ac-meta .chip.gold { background: rgba(252,211,77,0.15); border-color: rgba(245,158,11,0.4); color: var(--gold-300); }

.anatomy-card .ac-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; position: relative; }
.anatomy-card .ac-opt {
  padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  font-size: 14px; color: rgba(231,238,248,0.75); font-weight: 500;
  display: flex; align-items: center; gap: 8px;
}
.anatomy-card .ac-opt.correct { background: rgba(20,212,212,0.12); border-color: rgba(20,212,212,0.4); color: var(--teal-400); font-weight: 600; }
.anatomy-card .ac-opt .check { color: var(--teal-400); }

.anatomy-card .ac-audio {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  background: rgba(99,102,241,0.08);
  border: 1px solid rgba(99,102,241,0.25);
  border-radius: 12px;
}
.anatomy-card .ac-audio .play {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo-400), var(--indigo-500));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.anatomy-card .ac-audio .wave { flex: 1; height: 24px; display: flex; align-items: center; gap: 2px; }
.anatomy-card .ac-audio .wave span {
  flex: 1; background: linear-gradient(180deg, var(--indigo-400) 0%, var(--indigo-500) 100%);
  border-radius: 2px; opacity: 0.7;
}

.anatomy-features { display: flex; flex-direction: column; gap: 22px; }
.anatomy-feature { display: flex; gap: 16px; }
.anatomy-feature .icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(20,212,212,0.12);
  border: 1px solid rgba(20,212,212,0.25);
  color: var(--teal-400);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.anatomy-feature .icon svg { width: 26px; height: 26px; }
.anatomy-feature h4 { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 8px; line-height: 1.2; }
.anatomy-feature p { font-size: 16px; color: var(--text-muted); line-height: 1.55; margin: 0; }

/* ---------- Quiz levels ---------- */

.levels { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 60px; }
@media (max-width: 880px) { .levels { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .levels { grid-template-columns: 1fr; } }

.level {
  position: relative; padding: 28px 24px; border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid var(--border-soft);
  display: flex; flex-direction: column; gap: 18px;
  min-height: 280px;
}
.level .level-num { display: none; }
.level .level-num-hidden {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 11px;
  background: rgba(20,212,212,0.15); border: 1px solid rgba(20,212,212,0.3);
  color: var(--teal-400); font-weight: 700; font-size: 16px; font-family: var(--font-mono);
}
.level h4 { font-size: 21px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.2; min-height: 50px; }
.level .train { font-size: 14.5px; color: var(--text-muted); margin-top: auto; line-height: 1.5; }
.level .viz { display: flex; align-items: center; justify-content: center; gap: 8px; }
.level .viz svg { width: 100%; height: auto; max-width: 260px; }
.level .viz .ico { width: 48px; height: 48px; border-radius: 12px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); color: var(--text-muted); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 600; }
.level .viz .ico.t { background: rgba(20,212,212,0.12); border-color: rgba(20,212,212,0.3); color: var(--teal-400); }
.level .viz .ico.i { background: linear-gradient(135deg, rgba(99,102,241,0.3), rgba(219,39,119,0.2)); border-color: rgba(99,102,241,0.4); color: #fff; }
.level .viz .ico.a { background: rgba(252,211,77,0.12); border-color: rgba(245,158,11,0.3); color: var(--gold-300); }
.level .viz .arrow { color: var(--text-subtle); }

/* ---------- Features grid ---------- */

.features {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 60px;
}
@media (max-width: 980px) { .features { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .features { grid-template-columns: 1fr; } }

.feature {
  padding: 36px 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  display: flex; flex-direction: column; gap: 20px;
  transition: border-color .15s, transform .15s;
}
.feature:hover { border-color: rgba(255,255,255,0.14); transform: translateY(-2px); }
.feature .icon {
  width: 56px; height: 56px; border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
}
.feature .icon svg { width: 26px; height: 26px; }
.feature .icon.teal { background: rgba(20,212,212,0.12); border: 1px solid rgba(20,212,212,0.25); color: var(--teal-400); }
.feature .icon.gold { background: rgba(252,211,77,0.12); border: 1px solid rgba(245,158,11,0.3); color: var(--gold-300); }
.feature .icon.indigo { background: rgba(99,102,241,0.15); border: 1px solid rgba(99,102,241,0.3); color: var(--indigo-400); }
.feature .icon.green { background: rgba(52,211,153,0.12); border: 1px solid rgba(52,211,153,0.3); color: var(--green-400); }
.feature .icon.rose { background: rgba(251,113,133,0.12); border: 1px solid rgba(251,113,133,0.3); color: var(--rose-400); }
.feature h3 { font-size: 26px; font-weight: 700; letter-spacing: -0.025em; line-height: 1.15; }
.feature p { font-size: 16.5px; color: var(--text-muted); line-height: 1.55; margin: 0; }
.feature ul { padding-left: 18px; margin: 0; color: var(--text-muted); font-size: 15px; line-height: 1.7; }

/* ---------- Comparison table ---------- */

.compare-wrap { margin-top: 50px; overflow: visible; border-radius: 22px; border: 1px solid var(--border-medium); background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%); position: relative; }
.compare {
  width: 100%; border-collapse: separate; border-spacing: 0;
}
.compare th, .compare td {
  padding: 22px 26px; text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 17px;
}
.compare thead th {
  font-size: 13.5px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--text-muted);
  font-weight: 700; padding: 20px 26px;
  background: rgba(0,0,0,0.2);
}
.compare thead th:first-child { border-top-left-radius: 22px; }
.compare thead th:last-child { border-top-right-radius: 22px; }
.compare tbody tr:last-child td:first-child { border-bottom-left-radius: 22px; }
.compare tbody tr:last-child td:last-child { border-bottom-right-radius: 22px; }
.compare th:not(:first-child),
.compare td:not(:first-child) {
  text-align: center;
}
.compare-hint {
  position: relative;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  border-bottom: 1px dotted rgba(231,238,248,0.45);
  cursor: help;
}
.compare-hint:focus-visible {
  outline: 2px solid rgba(94,234,212,0.7);
  outline-offset: 4px;
  border-radius: 4px;
}
.compare-hint::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  width: max-content;
  max-width: 220px;
  transform: translateX(-50%) translateY(4px);
  padding: 9px 11px;
  border-radius: 8px;
  background: #08121d;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
  color: var(--text-body);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  white-space: normal;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
  z-index: 5;
}
.compare-hint::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(100% + 6px);
  width: 10px;
  height: 10px;
  background: #08121d;
  border-right: 1px solid rgba(255,255,255,0.14);
  border-bottom: 1px solid rgba(255,255,255,0.14);
  transform: translateX(-50%) rotate(45deg);
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease;
  z-index: 6;
}
.compare-hint:hover::after,
.compare-hint:focus-visible::after,
.compare-hint:hover::before,
.compare-hint:focus-visible::before {
  opacity: 1;
}
.compare-hint:hover::after,
.compare-hint:focus-visible::after {
  transform: translateX(-50%) translateY(0);
}

/* Vodge column: highlighted, elevated */
.compare thead th.vodge {
  color: #02181c;
  background: linear-gradient(180deg, #34e3e3 0%, #14d4d4 100%);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 1.2px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  position: relative;
  z-index: 2;
}
.compare tbody td.vodge {
  color: var(--teal-300, #5eead4);
  font-weight: 700;
  background: linear-gradient(180deg, rgba(20,212,212,0.14) 0%, rgba(20,212,212,0.06) 100%);
  border-left: 1.5px solid rgba(20,212,212,0.35);
  border-right: 1.5px solid rgba(20,212,212,0.35);
  box-shadow: inset 0 0 0 0 transparent;
  font-size: 18px;
  position: relative;
}
.compare tbody tr:last-child td.vodge {
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  border-bottom: 1.5px solid rgba(20,212,212,0.35);
}
.compare tbody td.vodge .check-yes { color: #5eead4; }

.compare tbody td:first-child { color: #fff; font-weight: 500; }
.compare tbody td:not(:first-child) {
  font-size: 21px;
  font-weight: 600;
}
.compare tbody td { color: var(--text-muted); }
.compare tbody tr:last-child td { border-bottom: 0; }
.check-yes { color: var(--green-400); display: inline-flex; align-items: center; justify-content: center; gap: 6px; }
.check-no { color: var(--rose-400); opacity: 0.8; display: inline-flex; align-items: center; justify-content: center; gap: 6px; }
.check-mid { color: var(--gold-300); display: inline-flex; align-items: center; justify-content: center; gap: 6px; }
@media (max-width: 720px) {
  .compare th, .compare td { padding: 12px 14px; font-size: 13px; }
  .compare tbody td:not(:first-child),
  .compare tbody td.vodge { font-size: 18px; }

  .compare-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .compare { min-width: 560px; }

  .compare th:first-child,
  .compare td:first-child {
    position: sticky;
    left: 0;
    z-index: 3;
    background: #0a1424;
    box-shadow: 6px 0 12px -8px rgba(0,0,0,0.6);
  }
  .compare thead th:first-child {
    z-index: 4;
    background: #0d1a2e;
  }
  .compare-hint::after {
    top: calc(100% + 12px);
    bottom: auto;
    left: 0;
    max-width: 180px;
    transform: translateY(-4px);
  }
  .compare-hint::before {
    top: calc(100% + 6px);
    bottom: auto;
    left: 18px;
    transform: rotate(225deg);
  }
  .compare-hint:hover::after,
  .compare-hint:focus-visible::after {
    transform: translateY(0);
  }
}

/* ---------- Personas ---------- */

.personas { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 60px; }
@media (max-width: 880px) { .personas { grid-template-columns: 1fr; } }
.persona {
  position: relative;
  padding: 36px 32px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--border-soft);
  overflow: hidden;
}
.persona::before { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at top right, var(--persona-glow, rgba(20,212,212,0.1)) 0%, transparent 60%); }
.persona .avatar {
  width: 64px; height: 64px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 700; letter-spacing: -0.02em;
  margin-bottom: 22px; position: relative;
  background: var(--persona-bg, linear-gradient(135deg, #14d4d4, #6366f1));
  color: #02181c;
  box-shadow: 0 6px 18px var(--persona-glow, rgba(20,212,212,0.3)), inset 0 1px 2px rgba(255,255,255,0.3);
}
.persona h3 { font-size: 28px; font-weight: 700; letter-spacing: -0.025em; margin-bottom: 6px; position: relative; line-height: 1.15; }
.persona .role { font-size: 14.5px; color: var(--teal-400); font-weight: 500; margin-bottom: 18px; position: relative; }
.persona p { font-size: 16.5px; color: var(--text-muted); line-height: 1.6; margin: 0; position: relative; }

/* ---------- Pricing (free-to-study) ---------- */

.pricing-free .pf-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
  margin-top: 64px;
}
@media (max-width: 900px) { .pricing-free .pf-grid { grid-template-columns: 1fr; } }

.pf-card {
  position: relative;
  background: var(--surface-1);
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  padding: 32px;
  overflow: hidden;
}
.pf-card.pf-free::before,
.pf-card.pf-paid::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at top right, var(--glow, transparent) 0%, transparent 60%);
  opacity: .55;
}
.pf-card.pf-free { --glow: rgba(52, 211, 153, 0.18); border-color: rgba(52, 211, 153, 0.35); }
.pf-card.pf-paid { --glow: rgba(252, 211, 77, 0.16); border-color: rgba(252, 211, 77, 0.30); }

.pf-illus {
  width: 100%;
  aspect-ratio: 320 / 220;
  border-radius: 16px;
  margin-bottom: 24px;
  background: linear-gradient(180deg, rgba(20,212,212,0.05), rgba(99,102,241,0.03));
  border: 1px solid var(--border-soft);
  padding: 10px;
  display: flex; align-items: center; justify-content: center;
}
.pf-illus svg { width: 100%; height: 100%; display: block; }

.pf-tag {
  display: inline-block; padding: 5px 11px; border-radius: 999px;
  font-size: 11px; letter-spacing: 1.6px; font-weight: 700; text-transform: uppercase;
  margin-bottom: 12px;
}
.pf-tag-green { background: rgba(52, 211, 153, 0.14); color: #34d399; border: 1px solid rgba(52, 211, 153, 0.35); }
.pf-tag-gold { background: rgba(252, 211, 77, 0.14); color: #fcd34d; border: 1px solid rgba(252, 211, 77, 0.35); }

.pf-card h3 {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700; letter-spacing: -0.025em; line-height: 1.1;
  color: #fff; margin: 0 0 16px;
}
.pf-card > p {
  color: var(--text-muted); font-size: 18px; line-height: 1.5;
  margin: 0 0 24px;
}
.pf-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.pf-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 17px; color: var(--text-body);
}
.pf-free .pf-list li svg { color: #34d399; }
.pf-paid .pf-list li svg { color: #fcd34d; }

.pf-bonus {
  margin-top: 22px;
  display: flex; align-items: center; gap: 14px;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.10), rgba(99, 102, 241, 0.06));
  border: 1px solid rgba(167, 139, 250, 0.30);
  border-radius: 16px;
  color: var(--text-body); font-size: 17px;
}
.pf-bonus svg { color: #a78bfa; flex-shrink: 0; }
.pf-bonus strong { color: #fff; }



.pricing-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin-top: 60px; }
@media (max-width: 980px) { .pricing-wrap { grid-template-columns: 1fr; gap: 40px; } }
.pricing-card-stack { display: flex; flex-direction: column; gap: 12px; }
.price-row {
  display: grid; grid-template-columns: 48px 1fr auto; gap: 14px; align-items: center;
  padding: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  position: relative;
}
.price-row .ico { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.price-row .ico.indigo { background: linear-gradient(135deg, rgba(99,102,241,0.22), rgba(99,102,241,0.08)); border: 1px solid rgba(99,102,241,0.3); color: #a5b4fc; }
.price-row .ico.teal { background: linear-gradient(135deg, rgba(20,212,212,0.25), rgba(10,143,143,0.08)); border: 1px solid rgba(20,212,212,0.4); color: var(--teal-400); }
.price-row .ico.gold { background: linear-gradient(135deg, #fcd34d 0%, #f59e0b 60%, #b45309 100%); color: #4a2a05; box-shadow: 0 4px 16px rgba(245,158,11,0.3); }
.price-row .name { font-size: 21px; font-weight: 700; color: #fff; letter-spacing: -0.02em; }
.price-row .credits { font-size: 15px; color: var(--text-muted); margin-top: 4px; }
.price-row .credits .bonus { color: var(--green-400); font-weight: 600; }
.price-row .price { font-size: 28px; font-weight: 700; letter-spacing: -0.03em; color: #fff; font-variant-numeric: tabular-nums; }
.price-row .price .small { font-size: 15px; color: var(--text-muted); font-weight: 600; }
.price-row.featured { background: linear-gradient(180deg, rgba(20,212,212,0.1) 0%, rgba(20,212,212,0.02) 100%); border-color: rgba(20,212,212,0.35); box-shadow: 0 0 28px rgba(20,212,212,0.18); }
.price-row.featured .price { color: var(--teal-400); }
.price-row.premium { background: linear-gradient(180deg, rgba(245,158,11,0.08) 0%, rgba(245,158,11,0.02) 100%); border-color: rgba(245,158,11,0.32); box-shadow: 0 0 28px rgba(245,158,11,0.15); }
.price-row.premium .price { background: linear-gradient(135deg, var(--gold-300) 0%, var(--gold-500) 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.price-row .badge {
  position: absolute; top: -1px; right: 16px;
  padding: 3px 10px; font-size: 9.5px; font-weight: 700; letter-spacing: 0.4px;
  border-radius: 0 0 8px 8px; text-transform: uppercase;
}
.price-row .badge.popular { background: linear-gradient(135deg, var(--teal-400), var(--teal-600)); color: #02181c; }
.price-row .badge.best { background: linear-gradient(135deg, var(--gold-300), var(--gold-500)); color: #4a2a05; }

.payment-methods { display: flex; gap: 12px; margin-top: 22px; flex-wrap: wrap; }
.pay-chip { padding: 10px 16px; border-radius: 11px; background: rgba(255,255,255,0.04); border: 1px solid var(--border-soft); font-size: 15px; color: var(--text-body); font-weight: 500; display: inline-flex; align-items: center; gap: 7px; }
.pay-chip svg { color: var(--green-400); }

/* "How credits work" list */
.how-credits-title { font-size: clamp(28px, 3vw, 36px); font-weight: 700; letter-spacing: -0.03em; margin-bottom: 22px; line-height: 1.1; }
.how-credits { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 22px; }
.how-credits li { display: flex; gap: 16px; }
.how-credits .how-ico { width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.how-credits .how-ico.teal { background: rgba(20,212,212,0.12); border: 1px solid rgba(20,212,212,0.25); color: var(--teal-400); }
.how-credits .how-ico.green { background: rgba(52,211,153,0.12); border: 1px solid rgba(52,211,153,0.3); color: var(--green-400); }
.how-credits .how-ico.gold { background: rgba(252,211,77,0.12); border: 1px solid rgba(245,158,11,0.3); color: var(--gold-300); }
.how-credits .how-ico.indigo { background: rgba(99,102,241,0.15); border: 1px solid rgba(99,102,241,0.3); color: var(--indigo-400); }
.how-title { font-size: 19px; font-weight: 600; color: #fff; margin-bottom: 4px; letter-spacing: -0.015em; }
.how-body { font-size: 16px; color: var(--text-muted); line-height: 1.55; }

/* ---------- CTA + Footer ---------- */

.cta-section {
  text-align: center;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.cta-section h2 { font-size: clamp(56px, 10vw, 124px); font-weight: 700; letter-spacing: -0.045em; line-height: 1.02; margin-bottom: 32px; }
.cta-section p.lead { margin: 0 auto 40px; max-width: 540px; text-align: center; }
.cta-section .ctas { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.badges { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 56px; }
.badge-chip {
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-soft);
  font-size: 12.5px; color: var(--text-muted);
  display: inline-flex; align-items: center; gap: 7px;
}

footer {
  padding: 60px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  font-size: 13px; color: var(--text-subtle);
}
footer .brand { justify-content: center; margin-bottom: 16px; }
footer .foot-brand {
  display: flex; justify-content: center; align-items: center;
  margin: 0 auto 22px;
}
footer .foot-brand img {
  display: block; height: 39.2px; width: auto;
}
footer .links {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  max-width: 100%;
  margin-bottom: 18px;
}
footer .links a:hover { color: #fff; }

@media (max-width: 720px) {
  footer .links { gap: 10px 16px; }
  footer .foot-mail { margin-left: 0; }
}

@media (max-width: 720px) {
  .phone-showcase { padding: 56px 0 64px; }
  .howto { padding: 64px 0 72px; }
  .cta-section,
  .cta-section-compact { padding: 72px 0; }
}
