/* PikScan — Landing premium responsive */

:root {
  --bg: #f8fafc;
  --bg-2: #eef2ff;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-solid: #ffffff;
  --text: #0f172a;
  --text-muted: #64748b;
  --border: rgba(15, 23, 42, 0.08);
  --brand: #0066ff;
  --brand-2: #00b4ff;
  --brand-glow: rgba(0, 102, 255, 0.35);
  --accent: #f59e0b;
  --accent-2: #fb923c;
  --gradient-brand: linear-gradient(135deg, #00b4ff 0%, #0066ff 55%, #0047cc 100%);
  --gradient-hero: linear-gradient(135deg, #030712 0%, #0a1628 45%, #0c2d6b 100%);
  --gradient-text: linear-gradient(135deg, #00b4ff, #0066ff, #003d99);
  --gradient-accent: linear-gradient(135deg, #f59e0b, #fb923c);
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 40px -12px rgba(15, 23, 42, 0.15);
  --shadow-glow: 0 0 60px -12px var(--brand-glow);
  --radius: 1rem;
  --radius-xl: 1.5rem;
  --header-h: 4.25rem;
  --container: 76rem;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html.dark {
  --bg: #030712;
  --bg-2: #0f172a;
  --surface: rgba(15, 23, 42, 0.65);
  --surface-solid: #111827;
  --text: #f8fafc;
  --text-muted: #94a3b8;
  --border: rgba(148, 163, 184, 0.12);
  --brand-glow: rgba(0, 180, 255, 0.22);
  --gradient-hero: linear-gradient(135deg, #030712 0%, #0f172a 40%, #0c2d6b 100%);
  --shadow-md: 0 12px 40px -12px rgba(0, 0, 0, 0.5);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(0, 102, 255, 0.06) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  position: relative;
  z-index: 1;
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-14px) rotate(1deg); }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.05); }
}

@keyframes shimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Header glass */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.logo__img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 0.5rem;
}

.logo__text {
  line-height: 1;
}

.logo--footer .logo__img {
  width: 2rem;
  height: 2rem;
}

.nav-desktop { display: none; gap: 2rem; }
.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-desktop a:hover { color: var(--brand-2); }

.header-actions { display: flex; align-items: center; gap: 0.5rem; }

.lang-link {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all 0.2s;
}
.lang-link:hover { border-color: var(--brand); color: var(--brand); }

.theme-toggle, .menu-toggle {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: var(--surface);
  color: var(--text-muted);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.2s;
}
.theme-toggle:hover, .menu-toggle:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.theme-toggle .icon-sun { display: none; }
html.dark .theme-toggle .icon-moon { display: none; }
html.dark .theme-toggle .icon-sun { display: block; }

.menu-toggle { display: grid; }
.header-actions .btn-glow { display: none; }

.nav-mobile {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 199;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 1.5rem;
  flex-direction: column;
  gap: 0.5rem;
}
.nav-mobile.is-open { display: flex; }
.nav-mobile a {
  font-size: 1.125rem;
  font-weight: 700;
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--surface-solid);
  border: 1px solid var(--border);
}

@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .menu-toggle { display: none; }
  .header-actions .btn-glow { display: inline-flex; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
  white-space: nowrap;
}

.btn:active { transform: scale(0.97); }

.btn-glow {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 8px 32px -8px var(--brand-glow);
}
.btn-glow:hover {
  box-shadow: 0 12px 40px -8px var(--brand-glow);
  transform: translateY(-2px);
}

.btn-glass {
  background: var(--surface);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  color: var(--text);
}
.btn-glass:hover { border-color: var(--brand); }

.btn-brand {
  background: var(--gradient-brand);
  color: #fff;
  width: 100%;
  box-shadow: 0 8px 28px -8px var(--brand-glow);
}
.btn-brand:hover { transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  width: 100%;
}
.btn-outline:hover { border-color: var(--brand); color: var(--brand); }

.btn-sm { padding: 0.625rem 1.125rem; font-size: 0.8125rem; }

/* Hero premium */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 2rem) 0 4rem;
  overflow: hidden;
}

.hero__mesh {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 0;
}

.hero__mesh::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 20%, rgba(0, 180, 255, 0.28), transparent),
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(0, 102, 255, 0.18), transparent),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(0, 71, 204, 0.22), transparent);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero__content { animation: fade-up 0.9s var(--ease) both; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem 0.4rem 0.5rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ccfbf1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  margin-bottom: 1.5rem;
}

.hero__badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 12px #34d399;
  animation: pulse-glow 2s ease infinite;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
}

.hero__subtitle {
  margin: 1.5rem 0 0;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.72);
  max-width: 32rem;
  line-height: 1.65;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.hero__stat span {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-top: 2rem;
}

.hero__trial {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero__trial::before {
  content: "✓";
  color: #34d399;
  font-weight: 700;
}

.hero__mockup-wrap {
  display: flex;
  justify-content: center;
  perspective: 1200px;
}

.hero__mockup-wrap .phone {
  animation: float 5s ease-in-out infinite;
}

@media (min-width: 992px) {
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; }
  .hero__mockup-wrap { justify-content: flex-end; }
}

/* Marquee */
.marquee {
  background: var(--surface-solid);
  border-block: 1px solid var(--border);
  overflow: hidden;
  padding: 0.875rem 0;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 35s linear infinite;
}

.marquee__track:hover { animation-play-state: paused; }

.marquee__group {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-right: 3rem;
}

.marquee__item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

.marquee__item svg { width: 1.125rem; height: 1.125rem; color: var(--brand); flex-shrink: 0; }

/* Phone */
.phone { position: relative; width: min(290px, 88vw); }

.phone__ring {
  position: absolute;
  inset: -20px;
  border-radius: 3rem;
  background: var(--gradient-brand);
  opacity: 0.35;
  filter: blur(40px);
  animation: pulse-glow 4s ease infinite;
}

.phone__frame {
  position: relative;
  border-radius: 2.75rem;
  border: 3px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(145deg, #1e293b, #0f172a);
  padding: 0.625rem;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255,255,255,0.1);
}

.phone__notch {
  position: absolute;
  top: 0.875rem;
  left: 50%;
  transform: translateX(-50%);
  width: 5.5rem;
  height: 1.375rem;
  border-radius: 999px;
  background: #000;
  z-index: 2;
}

.phone__screen {
  border-radius: 2.25rem;
  overflow: hidden;
  background: #020617;
}

.phone__status {
  display: flex;
  justify-content: space-between;
  padding: 0.625rem 1.25rem 0.25rem;
  font-size: 0.625rem;
  color: rgba(255,255,255,0.45);
}

.phone__app { padding: 0.25rem 1rem 1.25rem; }

.phone__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.875rem;
}

.phone__header span:first-child { color: #fff; font-weight: 800; font-size: 0.9375rem; }

.phone__offline {
  font-size: 0.5625rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: rgba(52, 211, 153, 0.15);
  color: #34d399;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.phone__scan-box {
  background: linear-gradient(145deg, rgba(30,41,59,0.9), rgba(15,23,42,0.9));
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 1rem;
  padding: 0.875rem;
  margin-bottom: 0.75rem;
}

.phone__scan-label {
  font-size: 0.5625rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
}

.phone__scan-title {
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  margin-top: 0.25rem;
}

.phone__scan-area {
  margin-top: 0.625rem;
  height: 5.5rem;
  border-radius: 0.75rem;
  border: 2px dashed rgba(6, 182, 212, 0.35);
  background: rgba(6, 182, 212, 0.05);
  display: grid;
  place-items: center;
  color: #22d3ee;
  position: relative;
  overflow: hidden;
}

.phone__scan-area::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #22d3ee, transparent);
  animation: scan-line 2.5s ease-in-out infinite;
}

@keyframes scan-line {
  0%, 100% { top: 15%; opacity: 0; }
  10%, 90% { opacity: 1; }
  50% { top: 85%; }
}

.phone__tags { display: flex; gap: 0.375rem; margin-bottom: 0.625rem; }

.phone__tag {
  font-size: 0.5625rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: #334155;
  color: #94a3b8;
}

.phone__tag--hot {
  background: var(--gradient-brand);
  color: #fff;
}

.phone__contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.625rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 0.375rem;
}

.phone__avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 0.625rem;
  background: var(--gradient-brand);
  display: grid;
  place-items: center;
  font-size: 0.6875rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.phone__contact-name { font-size: 0.75rem; font-weight: 700; color: #fff; }
.phone__contact-co { font-size: 0.625rem; color: #64748b; }

/* Sections */
.section { padding: clamp(4rem, 10vw, 6rem) 0; position: relative; z-index: 1; }
.section--alt { background: var(--bg-2); }

.section__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.75rem;
}

.section__title {
  margin: 0;
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.section__subtitle {
  margin: 1rem auto 0;
  max-width: 38rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 1.0625rem;
}

.section__head { text-align: center; margin-bottom: 3rem; }

/* Compare cards */
.compare-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) { .compare-grid { grid-template-columns: 1fr 1fr; } }

.glass-card {
  background: var(--surface);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.glass-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.glass-card--win {
  border-color: rgba(13, 148, 136, 0.35);
  background: linear-gradient(145deg, rgba(13, 148, 136, 0.08), var(--surface));
  box-shadow: var(--shadow-glow);
}

.card__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
  font-size: 1.0625rem;
}

.card__icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  display: grid;
  place-items: center;
  font-size: 0.875rem;
}

.card__icon--bad { background: rgba(239, 68, 68, 0.12); color: #ef4444; }
.card__icon--good { background: rgba(13, 148, 136, 0.15); color: var(--brand); }

.check-list { list-style: none; margin: 0; padding: 0; }

.check-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.check-list li::before {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.1rem;
  background-size: 0.625rem;
  background-repeat: no-repeat;
  background-position: center;
}

.check-list--bad li::before {
  background-color: rgba(239, 68, 68, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ef4444' stroke-width='3'%3E%3Cpath stroke-linecap='round' d='M6 18L18 6M6 6l12 12'/%3E%3C/svg%3E");
}

.check-list--good li::before {
  background-color: rgba(13, 148, 136, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230d9488' stroke-width='3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
}

/* Features bento */
.features-bento {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) { .features-bento { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) {
  .features-bento {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
  }
  .feature-card--wide { grid-column: span 2; }
}

.feature-card {
  background: var(--surface-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(13, 148, 136, 0.25);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(13,148,136,0.12), rgba(6,182,212,0.12));
  color: var(--brand);
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
}

.feature-card h3 { margin: 0 0 0.5rem; font-size: 1.0625rem; font-weight: 700; }
.feature-card p { margin: 0; font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* Steps */
.steps-row {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 768px) { .steps-row { grid-template-columns: repeat(3, 1fr); } }

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  position: relative;
}

.step-card__num {
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 auto 1.25rem;
  border-radius: 1rem;
  background: var(--gradient-brand);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px -8px var(--brand-glow);
}

.step-card h3 { margin: 0 0 0.5rem; font-size: 1.0625rem; }
.step-card p { margin: 0; font-size: 0.875rem; color: var(--text-muted); }

/* Pricing premium */
.pricing-grid {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}

@media (min-width: 992px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: center; }
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: transform 0.3s var(--ease);
}

.pricing-card--featured {
  border: none;
  background: linear-gradient(145deg, #0f172a, #134e4a);
  color: #fff;
  padding: 2px;
  transform: scale(1);
}

@media (min-width: 992px) {
  .pricing-card--featured { transform: scale(1.06); }
}

.pricing-card--featured .pricing-card__inner {
  background: linear-gradient(160deg, #0f172a 0%, #115e59 100%);
  border-radius: calc(var(--radius-xl) - 2px);
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card__badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-brand);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.375rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4);
}

.pricing-card h3 { margin: 0; font-size: 1.125rem; font-weight: 700; }

.pricing-card--featured h3,
.pricing-card--featured .pricing-card__amount,
.pricing-card--featured .pricing-card__period { color: #fff; }

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-top: 1rem;
}

.pricing-card__amount {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.pricing-card__period { font-size: 0.9375rem; color: var(--text-muted); }

.pricing-card__equiv {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-2);
}

.pricing-card--featured .pricing-card__equiv { color: #5eead4; }

.pricing-card__launch {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
}

.pricing-card__features {
  list-style: none;
  margin: 1.75rem 0;
  padding: 0;
  flex: 1;
}

.pricing-card__features li {
  display: flex;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.pricing-card--featured .pricing-card__features li { color: rgba(255,255,255,0.75); }

.pricing-card__features svg { width: 1.125rem; height: 1.125rem; color: var(--brand); flex-shrink: 0; }
.pricing-card--featured .pricing-card__features svg { color: #34d399; }

.pricing-roi {
  margin-top: 2.5rem;
  text-align: center;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(245,158,11,0.08), rgba(13,148,136,0.08));
  border: 1px solid var(--border);
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.pricing-roi strong { color: var(--text); }

/* FAQ */
.faq-list { max-width: 44rem; margin: 3rem auto 0; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.375rem 0;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  transition: color 0.2s;
}

.faq-item summary:hover { color: var(--brand); }
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--brand);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
  margin: 0 0 1.375rem;
  padding-right: 2rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* CTA banner */
.cta-banner {
  margin: 0 clamp(1rem, 4vw, 2rem);
  padding: clamp(2.5rem, 6vw, 4rem);
  border-radius: 2rem;
  background: var(--gradient-hero);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(6,182,212,0.3), transparent 60%);
}

.cta-banner__inner { position: relative; z-index: 1; }

.cta-banner h2 {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}

.cta-banner p {
  margin: 1rem auto 0;
  max-width: 28rem;
  color: rgba(255,255,255,0.7);
  font-size: 1.0625rem;
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.875rem;
  margin-top: 2rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface-solid);
  padding: 3rem 0 1.5rem;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-tagline { margin: 0.375rem 0 0; font-size: 0.875rem; color: var(--text-muted); }

.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
.footer-nav a { font-size: 0.875rem; font-weight: 600; color: var(--text-muted); transition: color 0.2s; }
.footer-nav a:hover { color: var(--brand); }

.footer-stores { display: flex; gap: 0.625rem; }

.footer-stores a {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--text-muted);
  transition: all 0.2s;
}

.footer-stores a:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }

.footer-copy {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Legal pages */
.page-legal { padding: calc(var(--header-h) + 3rem) 0 5rem; }
.page-legal h1 { margin: 0 0 0.5rem; font-size: 2rem; font-weight: 800; }
.page-legal .meta { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 2rem; }
.page-legal section { margin-bottom: 2rem; }
.page-legal h2 { font-size: 1.125rem; font-weight: 700; margin: 0 0 0.5rem; }
.page-legal p { color: var(--text-muted); margin: 0; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 2rem;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
