/* ============================================================
   FreeSpaces — Marketing site
   Aesthetic: premium / Apple-style minimal, light, airy.
   Brand: violet (#6D28D9) → electric blue (#2563EB), used as a
   precise accent against off-white surfaces. Font: Plus Jakarta
   Sans (the app's own typeface) for full visual continuity.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --violet: #6d28d9;
  --violet-light: #8b5cf6;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --pink: #ec4899;
  --cyan: #06b6d4;
  --green: #22c55e;
  --danger: #ff3b6b;

  /* Brand gradients */
  --grad-brand: linear-gradient(135deg, #6d28d9 0%, #2563eb 100%);
  --grad-aurora: linear-gradient(120deg, #7c3aed 0%, #6366f1 35%, #2563eb 68%, #0ea5e9 100%);
  --grad-pink: linear-gradient(135deg, #ec4899 0%, #6d28d9 100%);
  --grad-sunset: linear-gradient(135deg, #f59e0b 0%, #ec4899 100%);
  --grad-green: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
  --grad-danger: linear-gradient(135deg, #ff3b6b 0%, #ff5e62 100%);

  /* Surfaces */
  --bg: #fbfaff;
  --bg-tint: #f4f1fd;
  --surface: #ffffff;
  --surface-2: #f6f4fe;

  /* Ink */
  --ink: #16131f;
  --ink-2: #5b5870;
  --ink-3: #9b97ac;

  /* Lines */
  --line: #ece9f5;
  --line-strong: #ddd8ec;

  /* Shadows (violet-tinted, soft) */
  --sh-sm: 0 2px 8px rgba(109, 40, 217, 0.06);
  --sh-md: 0 18px 40px -18px rgba(109, 40, 217, 0.22);
  --sh-lg: 0 40px 80px -30px rgba(109, 40, 217, 0.30);
  --sh-glow: 0 20px 50px -12px rgba(109, 40, 217, 0.45);

  /* Radii */
  --r-sm: 14px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 36px;
  --r-pill: 999px;

  /* Type */
  --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 40px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-weight: 450;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Atmosphere: fixed background glows + grain ---------- */
.atmosphere {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
}
.glow--violet { width: 620px; height: 620px; top: -260px; right: -160px;
  background: radial-gradient(circle, rgba(124,58,237,0.30), transparent 70%); }
.glow--cyan   { width: 520px; height: 520px; top: 38%; left: -220px;
  background: radial-gradient(circle, rgba(14,165,233,0.18), transparent 70%); }
.glow--pink   { width: 460px; height: 460px; bottom: -180px; right: 8%;
  background: radial-gradient(circle, rgba(236,72,153,0.16), transparent 70%); }
.grain {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Shared layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--violet);
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; border-radius: 2px;
  background: var(--grad-brand);
}

.section { padding: clamp(72px, 11vw, 140px) 0; position: relative; }
.section__head { max-width: 660px; margin-bottom: clamp(40px, 6vw, 64px); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .eyebrow::before { display: none; }

h1, h2, h3 { letter-spacing: -0.03em; line-height: 1.04; font-weight: 800; }
.h-display { font-size: clamp(2.7rem, 7vw, 5rem); }
.h-section { font-size: clamp(2rem, 4.6vw, 3.2rem); margin: 16px 0 18px; }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--ink-2); font-weight: 450; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 1rem; padding: 15px 26px;
  border-radius: var(--r-pill); transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, background .25s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn--primary { color: #fff; background: var(--grad-brand); box-shadow: var(--sh-glow); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 26px 60px -12px rgba(109,40,217,0.55); }
.btn--ghost { color: var(--ink); background: var(--surface); box-shadow: var(--sh-sm); border: 1px solid var(--line); }
.btn--ghost:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn--lg { padding: 17px 32px; font-size: 1.05rem; }

/* App Store button */
.appstore {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--ink); color: #fff; padding: 12px 22px 12px 18px; border-radius: var(--r-md);
  transition: transform .25s, box-shadow .25s; box-shadow: var(--sh-md);
}
.appstore:hover { transform: translateY(-2px); box-shadow: var(--sh-lg); }
.appstore svg { width: 26px; height: 26px; flex-shrink: 0; }
.appstore__txt { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.appstore__txt small { font-size: 0.68rem; font-weight: 500; opacity: 0.8; }
.appstore__txt strong { font-size: 1.18rem; font-weight: 700; letter-spacing: -0.01em; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s, box-shadow .3s, backdrop-filter .3s;
}
.nav.is-scrolled {
  background: rgba(251, 250, 255, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 1px 0 var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; font-size: 1.25rem; letter-spacing: -0.02em; }
.brand__mark { width: 38px; height: 38px; border-radius: 11px; box-shadow: var(--sh-sm); }
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a { font-size: 0.95rem; font-weight: 600; color: var(--ink-2); transition: color .2s; }
.nav__links a:hover { color: var(--ink); }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__burger { display: none; width: 42px; height: 42px; border-radius: 12px; background: var(--surface); box-shadow: var(--sh-sm); align-items: center; justify-content: center; }
.nav__burger span, .nav__burger span::before, .nav__burger span::after {
  content: ""; display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; position: relative; transition: .25s;
}
.nav__burger span::before { position: absolute; top: -6px; }
.nav__burger span::after { position: absolute; top: 6px; }

/* ---------- Hero ---------- */
.hero { padding: 132px 0 clamp(60px, 9vw, 110px); position: relative; }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(24px, 5vw, 70px); align-items: center;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 8px 16px 8px 10px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-pill);
  font-size: 0.85rem; font-weight: 600; color: var(--ink-2); box-shadow: var(--sh-sm); margin-bottom: 26px;
}
.hero__badge b { color: var(--ink); }
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(34,197,94,0.15); }
.hero h1 { margin-bottom: 22px; }
.hero__lead { max-width: 480px; margin-bottom: 34px; }
.hero__actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero__note { margin-top: 22px; font-size: 0.88rem; color: var(--ink-3); display: flex; align-items: center; gap: 8px; }
.hero__note svg { width: 16px; height: 16px; color: var(--green); }

/* Hero stats below */
.hero__stats { display: flex; gap: clamp(22px, 4vw, 48px); margin-top: 52px; }
.hero__stat .num { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 800; letter-spacing: -0.03em; }
.hero__stat .lbl { font-size: 0.84rem; color: var(--ink-3); font-weight: 500; }
.hero__stat .num .grad-text { display: inline; }

/* ---------- Phone mockup ---------- */
.phone-stage { position: relative; display: flex; justify-content: center; perspective: 1600px; }
.phone {
  position: relative; width: 300px; height: 612px; border-radius: 52px;
  background: #14101f; padding: 13px;
  box-shadow: var(--sh-lg), 0 0 0 2px rgba(255,255,255,0.4) inset;
  transform: rotateY(-14deg) rotateX(4deg) rotateZ(1deg);
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.phone-stage:hover .phone { transform: rotateY(-6deg) rotateX(2deg); }
.phone__notch {
  position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 28px; background: #14101f; border-radius: 16px; z-index: 5;
}
.phone__screen {
  position: relative; width: 100%; height: 100%; border-radius: 40px; overflow: hidden;
  background: linear-gradient(180deg, #f0ecff 0%, #f6f4fe 45%, #ffffff 100%);
  display: flex; flex-direction: column;
}
/* in-app top bar */
.app-top { padding: 50px 22px 12px; }
.app-top__greet { font-size: 0.75rem; color: var(--ink-3); font-weight: 600; }
.app-top__title { font-size: 1.35rem; font-weight: 800; letter-spacing: -0.02em; }
.app-top__row { display: flex; justify-content: space-between; align-items: center; margin-top: 4px; }
.app-pill {
  display: inline-flex; align-items: center; gap: 5px; padding: 6px 11px; border-radius: var(--r-pill);
  background: #eee9ff; font-size: 0.72rem; font-weight: 700; color: var(--violet);
}
.app-pill svg { width: 13px; height: 13px; }

/* swipe card */
.swipe-area { flex: 1; position: relative; padding: 8px 22px 18px; }
.swipe-card {
  position: absolute; inset: 8px 22px 70px; border-radius: 26px; overflow: hidden;
  box-shadow: 0 24px 44px -18px rgba(20,16,31,0.45); background: var(--grad-aurora);
}
.swipe-card--back { inset: 18px 34px 80px; opacity: 0.55; transform: scale(0.96); filter: blur(0.4px); z-index: 0; }
.swipe-card--front { z-index: 2; animation: cardFloat 6s ease-in-out infinite; }
@keyframes cardFloat {
  0%,100% { transform: translateY(0) rotate(-1.2deg); }
  50% { transform: translateY(-8px) rotate(0.6deg); }
}
.swipe-card__img {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 20% 10%, rgba(255,255,255,0.35), transparent 45%),
    var(--grad-aurora);
}
.swipe-card__shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(10,7,20,0.55) 100%); }
.swipe-card__meta { position: absolute; left: 16px; bottom: 16px; right: 16px; color: #fff; }
.swipe-card__meta .row { display: flex; align-items: center; gap: 8px; font-size: 0.72rem; font-weight: 600; opacity: 0.92; }
.swipe-card__meta .row svg { width: 13px; height: 13px; }
.swipe-card__size { font-size: 1.1rem; font-weight: 800; margin-top: 3px; letter-spacing: -0.01em; }
/* keep / delete tags */
.swipe-tag {
  position: absolute; top: 18px; padding: 6px 14px; border-radius: var(--r-pill);
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.04em; color: #fff; text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.85); backdrop-filter: blur(4px);
}
.swipe-tag--keep { right: 16px; background: rgba(34,197,94,0.85); transform: rotate(12deg); }
.swipe-tag--del  { left: 16px; background: rgba(255,59,107,0.85); transform: rotate(-12deg); opacity: 0; }
/* action buttons */
.swipe-actions {
  position: absolute; left: 0; right: 0; bottom: 14px; display: flex; justify-content: center; gap: 18px; z-index: 3;
}
.swipe-fab {
  width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--surface); box-shadow: 0 10px 22px -8px rgba(20,16,31,0.4); color: var(--ink);
}
.swipe-fab svg { width: 24px; height: 24px; }
.swipe-fab--del { background: var(--grad-danger); color: #fff; }
.swipe-fab--keep { background: var(--grad-green); color: #fff; }
.swipe-fab--big { width: 64px; height: 64px; }
/* bin bubble */
.bin-bubble {
  position: absolute; top: 96px; right: 18px; z-index: 6;
  display: inline-flex; align-items: center; gap: 6px; padding: 7px 13px; border-radius: var(--r-pill);
  background: var(--grad-danger); color: #fff; font-size: 0.78rem; font-weight: 800;
  box-shadow: 0 10px 22px -8px rgba(255,59,107,0.6);
  animation: bob 3s ease-in-out infinite;
}
.bin-bubble svg { width: 15px; height: 15px; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

/* floating accent chips around phone */
.float-chip {
  position: absolute; background: var(--surface); border-radius: 16px; padding: 12px 15px;
  box-shadow: var(--sh-md); display: flex; align-items: center; gap: 10px; z-index: 4;
  font-size: 0.82rem; font-weight: 700;
}
.float-chip .ic { width: 34px; height: 34px; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }
.float-chip .ic svg { width: 18px; height: 18px; }
.float-chip small { display: block; font-size: 0.7rem; font-weight: 500; color: var(--ink-3); }
.float-chip--1 { top: 14%; left: -8%; animation: bob 4.5s ease-in-out infinite; }
.float-chip--2 { bottom: 16%; right: -10%; animation: bob 5.2s ease-in-out infinite 0.6s; }

/* ---------- Logos / trust strip ---------- */
.trust { padding: 8px 0 4px; }
.trust__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(20px, 5vw, 56px); text-align: center; }
.trust__item { display: flex; flex-direction: column; gap: 2px; }
.trust__item .v { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; }
.trust__item .k { font-size: 0.8rem; color: var(--ink-3); font-weight: 500; }
.trust__sep { width: 1px; height: 36px; background: var(--line-strong); }
.trust__stars { color: #f5a623; letter-spacing: 2px; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step {
  position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 34px 28px; box-shadow: var(--sh-sm); overflow: hidden;
}
.step__no {
  font-size: 0.8rem; font-weight: 800; letter-spacing: 0.1em; color: var(--violet);
  display: inline-block; margin-bottom: 18px;
}
.step__icon {
  width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
  color: #fff; margin-bottom: 18px; box-shadow: var(--sh-md);
}
.step__icon svg { width: 28px; height: 28px; }
.step h3 { font-size: 1.3rem; margin-bottom: 8px; }
.step p { color: var(--ink-2); font-size: 0.96rem; }
.step::after {
  content: ""; position: absolute; right: -40px; top: -40px; width: 130px; height: 130px; border-radius: 50%;
  background: var(--grad-brand); opacity: 0.06;
}

/* ---------- Features ---------- */
.features { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.feature {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px; box-shadow: var(--sh-sm); transition: transform .3s, box-shadow .3s; position: relative; overflow: hidden;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.feature__icon { width: 50px; height: 50px; border-radius: 14px; display: flex; align-items: center; justify-content: center; color: #fff; margin-bottom: 18px; }
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.22rem; margin-bottom: 7px; }
.feature p { color: var(--ink-2); font-size: 0.94rem; }
.feature__tag { position: absolute; top: 22px; right: 22px; font-size: 0.66rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--violet); background: #eee9ff; padding: 4px 9px; border-radius: var(--r-pill); }
/* spans */
.col-6 { grid-column: span 6; }
.col-4 { grid-column: span 4; }
.col-3 { grid-column: span 3; }
/* hero feature (large) */
.feature--hero { background: var(--ink); color: #fff; border: none; }
.feature--hero h3 { color: #fff; font-size: 1.6rem; }
.feature--hero p { color: rgba(255,255,255,0.7); font-size: 1rem; }
.feature--hero .feature__big { font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 800; letter-spacing: -0.03em; margin-top: 14px; }

/* gradient backers for icons */
.bg-brand { background: var(--grad-brand); }
.bg-pink { background: var(--grad-pink); }
.bg-green { background: var(--grad-green); }
.bg-sunset { background: var(--grad-sunset); }
.bg-cyan { background: linear-gradient(135deg,#06b6d4,#2563eb); }
.bg-danger { background: var(--grad-danger); }
.bg-aurora { background: var(--grad-aurora); }

/* ---------- Screenshot gallery ---------- */
.gallery { position: relative; }
.gallery__track {
  display: flex; gap: clamp(18px, 3vw, 34px); padding: 30px 4px 40px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -ms-overflow-style: none;
  align-items: center;
}
.gallery__track::-webkit-scrollbar { display: none; }
.gphone {
  flex: 0 0 auto; width: 244px; scroll-snap-align: center;
  border-radius: 42px; background: #14101f; padding: 9px;
  box-shadow: var(--sh-md); transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s;
}
.gphone:nth-child(odd) { transform: translateY(-14px); }
.gphone:hover { transform: translateY(-22px) scale(1.02); box-shadow: var(--sh-lg); }
.gphone__screen { position: relative; border-radius: 34px; overflow: hidden; aspect-ratio: 1290 / 2796; background: var(--surface-2); }
.gphone__screen img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gphone__notch { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); width: 74px; height: 20px; background: #14101f; border-radius: 12px; z-index: 2; }
.gphone__cap { text-align: center; margin-top: 16px; font-size: 0.9rem; font-weight: 700; color: var(--ink-2); }
.gallery__hint { text-align: center; font-size: 0.85rem; color: var(--ink-3); display: flex; align-items: center; justify-content: center; gap: 8px; }
.gallery__hint svg { width: 16px; height: 16px; }
@media (max-width: 760px) {
  .gphone:nth-child(odd) { transform: none; }
  .gphone { width: 220px; }
}

/* ---------- Privacy band ---------- */
.privacy-band { position: relative; }
.privacy-card {
  background: var(--ink); color: #fff; border-radius: var(--r-xl); padding: clamp(44px, 6vw, 76px);
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(30px, 5vw, 60px); align-items: center;
  position: relative; overflow: hidden; box-shadow: var(--sh-lg);
}
.privacy-card::before {
  content: ""; position: absolute; inset: 0; opacity: 0.5;
  background: radial-gradient(60% 90% at 100% 0%, rgba(124,58,237,0.5), transparent 60%),
              radial-gradient(60% 90% at 0% 100%, rgba(14,165,233,0.4), transparent 60%);
}
.privacy-card > * { position: relative; z-index: 1; }
.privacy-card .eyebrow { color: #c4b5fd; }
.privacy-card .eyebrow::before { background: #c4b5fd; }
.privacy-card h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); margin: 14px 0 16px; }
.privacy-card p { color: rgba(255,255,255,0.72); font-size: 1.05rem; }
.privacy-list { display: grid; gap: 16px; }
.privacy-list li { display: flex; gap: 14px; align-items: flex-start; list-style: none; }
.privacy-list .check { width: 28px; height: 28px; border-radius: 9px; background: rgba(34,197,94,0.2); color: #4ade80; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.privacy-list .check svg { width: 16px; height: 16px; }
.privacy-list b { display: block; font-weight: 700; }
.privacy-list span { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: 1fr 1.15fr 1fr; gap: 22px; align-items: stretch; }
.price {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 36px 30px;
  box-shadow: var(--sh-sm); display: flex; flex-direction: column;
}
.price--feature {
  background: var(--ink); color: #fff; border: none; box-shadow: var(--sh-lg); position: relative; transform: translateY(-10px);
}
.price--feature .price__sub, .price--feature .price__period { color: rgba(255,255,255,0.6); }
.price__tag { position: absolute; top: 24px; right: 24px; font-size: 0.66rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 11px; border-radius: var(--r-pill); background: var(--grad-aurora); color: #fff; }
.price__name { font-size: 1.05rem; font-weight: 700; }
.price__sub { font-size: 0.88rem; color: var(--ink-3); margin-bottom: 22px; }
.price__amt { font-size: 3rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.price__period { font-size: 0.9rem; color: var(--ink-3); margin: 8px 0 26px; }
.price__list { list-style: none; display: grid; gap: 13px; margin-bottom: 28px; flex: 1; }
.price__list li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.94rem; }
.price__list .ck { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.price--feature .price__list .ck { color: #4ade80; }
.price__list svg { width: 17px; height: 17px; }
.price .btn { width: 100%; }
.price__trial { text-align: center; font-size: 0.8rem; color: var(--ink-3); margin-top: 12px; }
.price--feature .price__trial { color: rgba(255,255,255,0.55); }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 26px 4px; text-align: left; font-size: 1.12rem; font-weight: 700; color: var(--ink);
}
.faq__q .pm { width: 30px; height: 30px; border-radius: 50%; background: var(--surface-2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .25s, transform .25s; }
.faq__q .pm svg { width: 16px; height: 16px; transition: transform .3s; }
.faq__item.is-open .pm { background: var(--grad-brand); color: #fff; }
.faq__item.is-open .pm svg { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq__a p { padding: 0 4px 26px; color: var(--ink-2); font-size: 1rem; }

/* ---------- Final CTA ---------- */
.cta-final { text-align: center; position: relative; }
.cta-final__card {
  background: var(--grad-aurora); border-radius: var(--r-xl); padding: clamp(50px, 8vw, 96px) var(--gutter);
  position: relative; overflow: hidden; box-shadow: var(--sh-lg);
}
.cta-final__card::after {
  content: ""; position: absolute; inset: 0; opacity: 0.4; mix-blend-mode: overlay;
  background: radial-gradient(50% 80% at 50% 0%, rgba(255,255,255,0.6), transparent 60%);
}
.cta-final h2 { color: #fff; font-size: clamp(2rem, 5vw, 3.4rem); position: relative; }
.cta-final p { color: rgba(255,255,255,0.85); font-size: 1.15rem; margin: 16px auto 34px; max-width: 480px; position: relative; }
.cta-final .appstore { position: relative; background: #fff; color: var(--ink); }
.cta-final .icon-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ---------- Footer ---------- */
.footer { padding: 70px 0 40px; border-top: 1px solid var(--line); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer__brand p { color: var(--ink-2); font-size: 0.94rem; max-width: 280px; margin-top: 16px; }
.footer__col h4 { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 16px; }
.footer__col a { display: block; color: var(--ink-2); font-size: 0.95rem; padding: 6px 0; transition: color .2s; }
.footer__col a:hover { color: var(--violet); }
.footer__bar { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-top: 28px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.footer__bar p { font-size: 0.86rem; color: var(--ink-3); }

/* ---------- Legal / content pages ---------- */
.page-hero { padding: 150px 0 40px; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.page-hero .updated { color: var(--ink-3); font-size: 0.92rem; margin-top: 14px; }
.legal { max-width: 780px; padding-bottom: 100px; }
.legal__card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 48px); box-shadow: var(--sh-sm); margin-bottom: 22px;
}
.legal__card h2 { font-size: 1.4rem; margin-bottom: 14px; display: flex; align-items: center; gap: 12px; }
.legal__card h2 .ic { width: 38px; height: 38px; border-radius: 11px; display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }
.legal__card h2 .ic svg { width: 20px; height: 20px; }
.legal__card h3 { font-size: 1.08rem; margin: 22px 0 8px; }
.legal__card p, .legal__card li { color: var(--ink-2); font-size: 1rem; margin-bottom: 12px; }
.legal__card ul { padding-left: 22px; }
.legal__card li { margin-bottom: 8px; }
.legal__card a { color: var(--violet); font-weight: 600; }

/* contact cards on support */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 44px; }
.contact-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px;
  box-shadow: var(--sh-sm); transition: transform .3s, box-shadow .3s;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.contact-card .ic { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; color: #fff; margin-bottom: 16px; }
.contact-card .ic svg { width: 24px; height: 24px; }
.contact-card h3 { font-size: 1.12rem; margin-bottom: 6px; }
.contact-card p { color: var(--ink-2); font-size: 0.92rem; margin-bottom: 14px; }
.contact-card a { color: var(--violet); font-weight: 700; font-size: 0.95rem; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__lead { margin-inline: auto; }
  .hero__actions, .hero__badge, .hero__note { justify-content: center; }
  .hero__stats { justify-content: center; }
  .phone-stage { margin-top: 50px; }
  .privacy-card { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .price--feature { transform: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav__links, .nav__cta .appstore { display: none; }
  .nav__burger { display: flex; }
  .nav.is-open .nav__links {
    display: flex; position: absolute; top: 72px; left: var(--gutter); right: var(--gutter);
    flex-direction: column; align-items: flex-start; gap: 4px; background: var(--surface);
    padding: 16px; border-radius: var(--r-md); box-shadow: var(--sh-md); border: 1px solid var(--line);
  }
  .nav.is-open .nav__links a { padding: 10px 6px; width: 100%; }
  .steps { grid-template-columns: 1fr; }
  .features > * { grid-column: 1 / -1 !important; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .float-chip { display: none; }
}
@media (max-width: 420px) {
  .phone { width: 264px; height: 540px; }
}
