/* Progrise VPN v2.1 — premium dark + motion */
:root {
  --bg: #070b14;
  --bg-elevated: #0e1524;
  --bg-card: rgba(18, 26, 43, 0.72);
  --fg: #f4f7fb;
  --muted: #8b9bb4;
  --muted-2: #64748b;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --blue: #3b82f6;
  --blue-2: #60a5fa;
  --blue-deep: #1d4ed8;
  --green: #22c55e;
  --green-soft: #4ade80;
  --cyan: #22d3ee;
  --violet: #818cf8;
  --danger: #ef4444;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.28);
  --font-h: "Space Grotesk", system-ui, sans-serif;
  --font-b: "DM Sans", system-ui, sans-serif;
  --max: 1180px;
  --header-h: 72px;
  --sticky-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
  padding-bottom: calc(var(--sticky-h) + env(safe-area-inset-bottom, 0px));
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(ellipse 900px 500px at 15% -10%, rgba(59, 130, 246, 0.28), transparent 60%),
    radial-gradient(ellipse 700px 480px at 90% 5%, rgba(34, 211, 238, 0.12), transparent 55%),
    radial-gradient(ellipse 600px 400px at 70% 80%, rgba(129, 140, 248, 0.1), transparent 50%),
    radial-gradient(ellipse 500px 300px at 10% 70%, rgba(34, 197, 94, 0.06), transparent 50%),
    linear-gradient(180deg, #070b14 0%, #0a1020 50%, #070b14 100%);
}

/* subtle animated grain */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--blue-2); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: #93c5fd; }

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

h1, h2, h3 {
  font-family: var(--font-h);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0 0 1rem;
}

h1 { font-size: clamp(2.15rem, 5.6vw, 3.75rem); }
h2 { font-size: clamp(1.55rem, 3.4vw, 2.35rem); }
h3 { font-size: 1.12rem; margin-bottom: 0.55rem; letter-spacing: -0.02em; }

p { margin: 0 0 1rem; color: var(--muted); }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* ===== Reveal always visible (no blank-page risk) ===== */
.reveal,
.reveal-stagger > * {
  opacity: 1 !important;
  transform: none;
}


/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(7, 11, 20, 0.78);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom-color: var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--fg);
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 1.05rem;
}

.logo img {
  height: 34px;
  width: auto;
  filter: drop-shadow(0 0 12px rgba(59, 130, 246, 0.35));
}

.nav-links {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.6rem;
  align-items: center;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}

.nav-links a:hover { color: var(--fg); }
.nav-links a:hover::after { transform: scaleX(1); }

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

.menu-toggle {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: var(--fg);
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.menu-toggle:hover { background: rgba(255,255,255,0.06); border-color: var(--line-strong); }

.nav-mobile {
  display: none;
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  padding: 0.5rem 1rem 1rem;
  background: rgba(7, 11, 20, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0.7rem 0.4rem;
  color: var(--fg);
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .menu-toggle { display: none; }
  .nav-mobile { display: none !important; }
}

/* ===== Buttons ===== */
.btn {
  --btn-bg: transparent;
  --btn-fg: var(--fg);
  --btn-bd: var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.75rem 1.25rem;
  border-radius: 14px;
  border: 1px solid var(--btn-bd);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-b);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.55s var(--ease);
}

.btn:hover::before { transform: translateX(120%); }
.btn:hover { transform: translateY(-2px); color: var(--btn-fg); }
.btn:active { transform: translateY(0); }

.btn-primary {
  --btn-bg: linear-gradient(135deg, #3b82f6 0%, #2563eb 55%, #1d4ed8 100%);
  --btn-fg: #fff;
  --btn-bd: transparent;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.35), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-primary:hover {
  box-shadow: 0 14px 36px rgba(37, 99, 235, 0.45), inset 0 1px 0 rgba(255,255,255,0.25);
}

.btn-accent {
  --btn-bg: linear-gradient(135deg, #34d399 0%, #22c55e 50%, #16a34a 100%);
  --btn-fg: #052e16;
  --btn-bd: transparent;
  box-shadow: 0 10px 28px rgba(34, 197, 94, 0.28), inset 0 1px 0 rgba(255,255,255,0.25);
}

.btn-secondary {
  --btn-bg: rgba(255,255,255,0.03);
  --btn-fg: var(--fg);
  --btn-bd: var(--line-strong);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  --btn-bg: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.22);
}

.btn-ghost {
  --btn-bg: transparent;
  --btn-fg: var(--muted);
  --btn-bd: transparent;
  min-height: 40px;
  padding-inline: 0.8rem;
}
.btn-ghost:hover { --btn-fg: var(--fg); transform: none; }
.btn-ghost::before { display: none; }

.btn-block { width: 100%; }
.btn-sm { min-height: 42px; padding: 0.55rem 0.95rem; font-size: 0.88rem; border-radius: 12px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: clamp(2.2rem, 5vw, 4.5rem) 0 clamp(2.5rem, 5vw, 4rem);
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: 1.12fr 0.88fr;
    gap: 3rem;
  }
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.75rem 0.4rem 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, 0.25);
  background: rgba(34, 197, 94, 0.08);
  color: var(--green-soft);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}

.kicker .pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
  animation: pulse 2.2s var(--ease) infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.hero h1 .grad {
  background: linear-gradient(105deg, #fff 10%, #93c5fd 45%, #22d3ee 75%, #4ade80 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 160% 100%;
  animation: gradShift 8s ease infinite alternate;
}

@keyframes gradShift {
  from { background-position: 0% 50%; }
  to { background-position: 100% 50%; }
}

.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  max-width: 36rem;
  color: #a8b7cf;
  margin-bottom: 1.6rem;
  line-height: 1.65;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.25rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.1rem;
  color: var(--muted-2);
  font-size: 0.88rem;
  margin: 0;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-meta svg { opacity: 0.8; color: var(--blue-2); }

/* Product visual card */
.visual {
  position: relative;
}

.visual-glow {
  position: absolute;
  inset: 10% 5%;
  background: radial-gradient(circle, rgba(59,130,246,0.35), transparent 65%);
  filter: blur(30px);
  z-index: 0;
  animation: glowBreath 5s ease-in-out infinite alternate;
}

@keyframes glowBreath {
  from { opacity: 0.55; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1.05); }
}

.panel {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(96,165,250,0.55), rgba(34,211,238,0.2), rgba(34,197,94,0.35), rgba(129,140,248,0.3));
  background-size: 220% 220%;
  animation: borderFlow 10s linear infinite;
  box-shadow: var(--shadow);
}

@keyframes borderFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.panel-inner {
  border-radius: 23px;
  background: linear-gradient(165deg, rgba(14, 21, 36, 0.96), rgba(10, 15, 28, 0.98));
  padding: 1.35rem 1.35rem 1.2rem;
  backdrop-filter: blur(12px);
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.15rem;
}

.panel-title {
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--fg);
}

.badge-live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green-soft);
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.22);
  border-radius: 999px;
  padding: 0.3rem 0.6rem;
}

.badge-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  display: block;
  box-shadow: 0 0 10px rgba(34,197,94,0.8);
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.metric {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.85rem 0.9rem;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), background 0.25s var(--ease);
}

.metric:hover {
  border-color: rgba(96,165,250,0.35);
  background: rgba(59,130,246,0.06);
  transform: translateY(-2px);
}

.metric b {
  display: block;
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.15rem;
}

.metric span {
  font-size: 0.78rem;
  color: var(--muted);
}

.route {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line);
  margin-bottom: 0.7rem;
}

.route-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(34,197,94,0.7);
  flex-shrink: 0;
}

.route-line {
  flex: 1;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(34,197,94,0.7), rgba(59,130,246,0.7), rgba(34,211,238,0.5));
  position: relative;
  overflow: hidden;
}

.route-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.7), transparent);
  width: 40%;
  animation: shuttle 2.2s var(--ease) infinite;
}

@keyframes shuttle {
  from { transform: translateX(-120%); }
  to { transform: translateX(280%); }
}

.route strong { font-size: 0.88rem; color: var(--fg); font-weight: 600; }
.route span { font-size: 0.8rem; color: var(--muted); }

.panel-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.35rem;
  color: var(--muted-2);
  font-size: 0.8rem;
}

/* ===== Sections ===== */
.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
}

.section-head {
  max-width: 640px;
  margin-bottom: 2rem;
}

.section-head p {
  font-size: 1.05rem;
  margin: 0;
  color: #93a4bd;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-2);
  margin-bottom: 0.7rem;
}

/* Trust */
.trust-strip {
  padding: 0 0 1rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (min-width: 860px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
}

.trust-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
  min-height: 118px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.trust-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(59,130,246,0.2), transparent 70%);
  pointer-events: none;
}

.trust-card:hover {
  transform: translateY(-4px);
  border-color: rgba(96,165,250,0.3);
  box-shadow: var(--shadow-soft);
}

.trust-card .ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 0.8rem;
  background: linear-gradient(145deg, rgba(59,130,246,0.18), rgba(34,211,238,0.08));
  color: var(--blue-2);
  border: 1px solid rgba(96,165,250,0.15);
}

.trust-card strong {
  display: block;
  color: var(--fg);
  font-size: 0.98rem;
  margin-bottom: 0.25rem;
}

.trust-card span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.4;
}

/* Cards generic */
.cards {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .cards.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .cards.cols-2 { grid-template-columns: repeat(2, 1fr); }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  backdrop-filter: blur(10px);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(96,165,250,0.28);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.step-num {
  font-family: var(--font-h);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-soft);
  margin-bottom: 0.7rem;
}

.card p { margin: 0; font-size: 0.95rem; color: #91a1b9; }

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--blue-2);
  background: linear-gradient(145deg, rgba(59,130,246,0.16), rgba(129,140,248,0.08));
  border: 1px solid rgba(96,165,250,0.14);
}

/* Pricing */
.pricing-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.price-card {
  position: relative;
  background: rgba(14, 21, 36, 0.85);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.45rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(148,163,184,0.25);
  box-shadow: var(--shadow-soft);
}

.price-card.featured {
  border-color: rgba(59, 130, 246, 0.55);
  box-shadow: 0 0 0 1px rgba(59,130,246,0.15), 0 24px 60px rgba(37,99,235,0.18);
  background:
    radial-gradient(circle at 80% 0%, rgba(59,130,246,0.18), transparent 45%),
    rgba(14, 21, 36, 0.92);
}

.price-card.featured:hover {
  box-shadow: 0 0 0 1px rgba(59,130,246,0.25), 0 28px 70px rgba(37,99,235,0.25);
}

.badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(37,99,235,0.35);
}

.price-name {
  font-family: var(--font-h);
  font-size: 1.2rem;
  margin: 0;
  color: var(--fg);
}

.price-value {
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.03em;
  color: var(--fg);
}

.price-value small {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
}

.price-list {
  list-style: none;
  margin: 0 0 auto;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.price-list li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.92rem;
}

.price-list li svg {
  color: var(--green);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.pay-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.1rem;
  margin-top: 1.5rem;
}

.pay-row img {
  height: 28px;
  opacity: 0.85;
  filter: brightness(1.08);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.4rem;
}

.chip {
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: var(--muted);
  font-size: 0.84rem;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease), background 0.2s var(--ease);
}

.chip:hover {
  border-color: rgba(96,165,250,0.35);
  color: var(--fg);
  background: rgba(59,130,246,0.08);
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.7rem;
  max-width: 780px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.25s var(--ease);
}

.faq-item[open] { border-color: rgba(96,165,250,0.28); }

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.05rem 1.2rem;
  font-weight: 600;
  color: var(--fg);
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  transition: transform 0.25s var(--ease);
  flex-shrink: 0;
}

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

.faq-body {
  padding: 0 1.2rem 1.15rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.faq-body p:last-child { margin-bottom: 0; }

/* Final CTA */
.final-cta {
  position: relative;
  overflow: hidden;
  margin: 1rem 0 3rem;
  border-radius: 28px;
  padding: clamp(1.8rem, 4vw, 3rem);
  text-align: center;
  border: 1px solid rgba(96,165,250,0.25);
  background:
    radial-gradient(circle at 20% 0%, rgba(59,130,246,0.25), transparent 40%),
    radial-gradient(circle at 80% 100%, rgba(34,197,94,0.12), transparent 40%),
    linear-gradient(160deg, rgba(18,26,43,0.95), rgba(10,15,28,0.98));
  box-shadow: var(--shadow);
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: -40% auto auto 30%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(34,211,238,0.15), transparent 70%);
  pointer-events: none;
}

.final-cta h2 { position: relative; }
.final-cta p {
  position: relative;
  max-width: 38rem;
  margin: 0 auto 1.5rem;
  color: #a3b4cc;
  font-size: 1.05rem;
}

.final-cta .hero-cta {
  position: relative;
  justify-content: center;
  margin-bottom: 0;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem 0 calc(2rem + env(safe-area-inset-bottom, 0px));
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
}

.footer-brand {
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.55rem;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.footer-links strong {
  color: var(--fg);
  margin-bottom: 0.2rem;
  font-size: 0.9rem;
}

.footer-links a {
  color: var(--muted);
  min-height: 28px;
  width: fit-content;
}

.footer-links a:hover { color: var(--fg); }

.footer-meta {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
  font-size: 0.84rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  display: flex;
  gap: 0.55rem;
  padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom, 0px));
  background: rgba(7, 11, 20, 0.9);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
}

.sticky-cta .btn { flex: 1; }

@media (min-width: 960px) {
  .sticky-cta { display: none; }
  body { padding-bottom: 0; }
}

/* Floating orbs in hero */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

.orb-a {
  width: 220px;
  height: 220px;
  background: rgba(59,130,246,0.35);
  top: -40px;
  right: 8%;
  animation: floatY 9s ease-in-out infinite alternate;
}

.orb-b {
  width: 160px;
  height: 160px;
  background: rgba(34,211,238,0.2);
  bottom: 10%;
  left: 5%;
  animation: floatY 11s ease-in-out infinite alternate-reverse;
}

@keyframes floatY {
  from { transform: translateY(0) translateX(0); }
  to { transform: translateY(18px) translateX(10px); }
}

@media (prefers-reduced-motion: reduce) {
  .orb, .kicker .pulse, .route-line::after, .hero h1 .grad, .panel, .visual-glow {
    animation: none !important;
  }
  .btn:hover { transform: none; }
  .card:hover, .trust-card:hover, .price-card:hover, .metric:hover { transform: none; }
}

/* === PRO MAX MOTION POLISH v3 === */
:root {
  --dur-micro: 160ms;
  --dur-ui: 240ms;
  --dur-reveal: 620ms;
}

.btn, .btn-sm, .btn-block, .btn-ghost, .btn-primary, .btn-secondary, .btn-accent {
  transition:
    transform var(--dur-micro) var(--ease),
    box-shadow var(--dur-ui) var(--ease),
    filter var(--dur-ui) var(--ease),
    background var(--dur-ui) var(--ease),
    border-color var(--dur-ui) var(--ease),
    color var(--dur-ui) var(--ease) !important;
}
.btn:active { transform: translateY(1px) scale(0.985); }

.site-header {
  transition: background var(--dur-ui) var(--ease), border-color var(--dur-ui) var(--ease), backdrop-filter var(--dur-ui) var(--ease), box-shadow var(--dur-ui) var(--ease);
}
.site-header.is-scrolled {
  box-shadow: 0 10px 40px rgba(0,0,0,.35);
}

.nav-mobile {
  transition: opacity var(--dur-ui) var(--ease), transform var(--dur-ui) var(--ease);
}
.nav-mobile:not(.open) { pointer-events: none; }
.nav-mobile.open {
  animation: menuIn 0.28s var(--ease-out) both;
}
@keyframes menuIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}

.nav-mobile a {
  transition: background var(--dur-micro) var(--ease), color var(--dur-micro) var(--ease), transform var(--dur-micro) var(--ease);
}
.nav-mobile a:active { transform: scale(0.98); }

.pricing-grid .price-card,
.feature-card,
.step-card,
.trust-item {
  transition:
    transform var(--dur-ui) var(--ease),
    border-color var(--dur-ui) var(--ease),
    box-shadow var(--dur-ui) var(--ease),
    background var(--dur-ui) var(--ease);
}
.pricing-grid .price-card:hover,
.feature-card:hover,
.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(96,165,250,.28);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
}

.sticky-cta {
  transition: transform var(--dur-ui) var(--ease), opacity var(--dur-ui) var(--ease);
}

details.faq-item,
.faq details {
  transition: border-color var(--dur-ui) var(--ease), background var(--dur-ui) var(--ease);
}
details[open] summary,
.faq details[open] summary {
  color: var(--fg);
}

/* softer continuous ambient */
.orb {
  animation: orbFloat 12s ease-in-out infinite alternate;
}
.orb-b { animation-duration: 15s; animation-delay: -3s; }
@keyframes orbFloat {
  from { transform: translate3d(0,0,0) scale(1); opacity: .9; }
  to { transform: translate3d(3%, -4%, 0) scale(1.08); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .orb, body::before { animation: none !important; }
  .pricing-grid .price-card:hover,
  .feature-card:hover,
  .step-card:hover { transform: none; }
}
