/* ============================================================
   SiliconVPN — styles.css
   01) Fonts & Variables
   02) Reset & Base
   03) Buttons
   04) Navbar
   05) Mobile Sidebar
   06) Hero
   07) Sections / Layout Helpers
   08) Benefits
   09) How It Works
   10) Pricing
   11) FAQ
   12) CTA Banner
   13) Footer
   14) Back to Top
   15) Animations
   16) Responsive
   ============================================================ */

/* ── 01) Fonts & Variables ─────────────────────────────────── */

@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap");

:root {
  /* Brand palette */
  --brand: #6620cf;
  --brand-2: #376af6;
  --brand-mid: #7c3aed;
  --gold: #f59e0b;
  --gold-2: #fbbf24;

  /* Surfaces */
  --bg: #f8f6ff;
  --surface: #ffffff;
  --surface-2: #f2eeff;
  --border: rgba(102, 32, 207, 0.12);
  --border-soft: rgba(0, 0, 0, 0.06);

  /* Text */
  --text: #160a2b;
  --text-2: #4b3872;
  --text-3: #7b6ea0;
  --text-inv: #ffffff;

  /* Misc */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(102, 32, 207, 0.1);
  --shadow-lg: 0 12px 48px rgba(102, 32, 207, 0.18);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --navbar-h: 74px;
}

/* ── 02) Reset & Base ──────────────────────────────────────── */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  background-image: url("assets/background-image.png");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
ul {
  list-style: none;
}
svg {
  flex-shrink: 0;
}

h1,
h2,
h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.2;
  font-weight: 800;
}

.logo-text {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Scroll offset for anchors */
#benefits,
#how-it-works,
#pricing,
#faq,
#contact {
  scroll-margin-top: calc(var(--navbar-h) + 20px);
}

/* ── 03) Buttons ───────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    opacity var(--transition);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: var(--radius);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: var(--text-inv);
  box-shadow: 0 4px 18px rgba(102, 32, 207, 0.35);
}
.btn-primary:hover {
  box-shadow: 0 8px 28px rgba(102, 32, 207, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
}
.btn-outline:hover {
  background: var(--surface-2);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.15);
  color: var(--text-inv);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.25);
}

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.15);
}

.btn-white {
  background: #fff;
  color: var(--brand);
  font-weight: 800;
}
.btn-white:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #7a4500;
  font-weight: 800;
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.3);
}
.btn-gold:hover {
  box-shadow: 0 8px 28px rgba(245, 158, 11, 0.45);
}

/* ── 04) Navbar ────────────────────────────────────────────── */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  transition:
    background var(--transition),
    box-shadow var(--transition),
    padding var(--transition),
    top var(--transition);
  padding: 12px 0;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 2px 24px rgba(102, 32, 207, 0.1),
    0 1px 0 var(--border-soft);
  padding: 6px 0;
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 32px;
  height: var(--navbar-h);
}

.navbar.scrolled .navbar-inner {
  height: 62px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}
.navbar-logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.navbar-links a {
  text-decoration: none;
  color: var(--text-2);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 8px;
  transition:
    color var(--transition),
    background var(--transition);
}
.navbar-links a:hover {
  color: var(--brand);
  background: var(--surface-2);
}

.navbar-cta {
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  transition: background var(--transition);
}
.hamburger:hover {
  background: var(--surface-2);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition:
    transform var(--transition),
    opacity var(--transition);
}

/* Hamburger → X animation */
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── 05) Mobile Sidebar ────────────────────────────────────── */

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(22, 10, 43, 0.45);
  backdrop-filter: blur(4px);
  z-index: 1400;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-overlay.visible {
  display: block;
  opacity: 1;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(300px, 85vw);
  height: 100dvh;
  background: var(--surface);
  box-shadow: -8px 0 40px rgba(102, 32, 207, 0.18);
  z-index: 1500;
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  gap: 8px;
  transform: translateX(110%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 20px 0 0 20px;
}
.mobile-menu.open {
  transform: translateX(0);
}

.mobile-close {
  align-self: flex-end;
  background: var(--surface-2);
  border: none;
  border-radius: 10px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text);
  transition: background var(--transition);
  margin-bottom: 8px;
}
.mobile-close:hover {
  background: var(--border);
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  padding: 8px 0 16px;
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 8px;
}
.mobile-logo img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.mobile-nav a {
  text-decoration: none;
  color: var(--text-2);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 10px;
  transition:
    color var(--transition),
    background var(--transition);
}
.mobile-nav a:hover {
  color: var(--brand);
  background: var(--surface-2);
}

.mobile-nav-cta {
  margin-top: 12px;
  width: 100%;
  justify-content: center;
}

/* ── 06) Hero ──────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.blob-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(102, 32, 207, 0.4), transparent 70%);
  top: -200px;
  left: -200px;
}
.blob-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(55, 106, 246, 0.35),
    transparent 70%
  );
  bottom: -100px;
  right: -100px;
}

.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(102, 32, 207, 0.12) 1px,
    transparent 1px
  );
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: calc(var(--navbar-h) + 60px) 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-text {
  flex: 1;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(102, 32, 207, 0.08);
  border: 1px solid rgba(102, 32, 207, 0.2);
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand);
  font-family: "Plus Jakarta Sans", sans-serif;
  width: fit-content;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.8);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.8);
  }
  50% {
    box-shadow: 0 0 14px rgba(34, 197, 94, 1);
  }
}

.hero-text h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--text);
  line-height: 1.1;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  width: fit-content;
  flex-wrap: wrap;
  gap: 0;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}
.hero-stat strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat span {
  font-size: 0.72rem;
  color: var(--text-3);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 1px;
}

.stat-sep {
  width: 1px;
  height: 36px;
  background: var(--border-soft);
  flex-shrink: 0;
}

.hero-visual {
  flex: 1;
  max-width: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  background: radial-gradient(
    circle,
    rgba(102, 32, 207, 0.25),
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.hero-img {
  width: 100%;
  max-width: 460px;
  animation: float 5s ease-in-out infinite;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 24px 48px rgba(102, 32, 207, 0.2));
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

.disclaimer {
  position: relative;
  z-index: 1;
  text-align: center;
  color: rgba(75, 56, 114, 0.45);
  font-size: 0.72rem;
  padding: 0 24px 24px;
}

.wave-divider {
  position: relative;
  z-index: 1;
  width: 100%;
  line-height: 0;
  margin-top: auto;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ── 07) Sections / Layout ─────────────────────────────────── */

.section {
  background: var(--surface);
  padding: 96px 0;
}

.section:nth-child(even) {
  background: var(--bg);
}

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

.section-head {
  text-align: center;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.label-tag {
  display: inline-block;
  padding: 4px 14px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--text);
}

.section-head p {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 560px;
  line-height: 1.7;
}

/* ── 08) Benefits ──────────────────────────────────────────── */

.benefits-section {
  background: var(--surface);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 28px 24px;
  transform: translateY(0);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background-color var(--transition);
  will-change: transform;
  animation-delay: var(--d, 0s);
}

.benefit-card:hover,
.benefit-card:focus-within {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(102, 32, 207, 0.2);
}

.bcard-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(102, 32, 207, 0.12),
    rgba(55, 106, 246, 0.12)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--brand);
  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition);
}
.bcard-icon svg {
  width: 24px;
  height: 24px;
}

.benefit-card h3 {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 8px;
  font-weight: 700;
  transition: color var(--transition);
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--text-3);
  line-height: 1.65;
  transition: color var(--transition);
}

.benefit-card:hover .bcard-icon,
.benefit-card:focus-within .bcard-icon {
  background: linear-gradient(
    135deg,
    rgba(102, 32, 207, 0.2),
    rgba(55, 106, 246, 0.22)
  );
  color: var(--brand-2);
  transform: scale(1.04);
}

.benefit-card:hover h3,
.benefit-card:focus-within h3 {
  color: var(--brand);
}

.benefit-card:hover p,
.benefit-card:focus-within p {
  color: var(--text-2);
}

/* ── 09) How It Works ──────────────────────────────────────── */

.how-section {
  background: var(--bg);
}

.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 0 24px;
  animation-delay: var(--d, 0s);
}

.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(102, 32, 207, 0.3);
  flex-shrink: 0;
}

.step h3 {
  font-size: 1.05rem;
  color: var(--text);
}

.step p {
  font-size: 0.9rem;
  color: var(--text-3);
  line-height: 1.65;
  max-width: 240px;
}

.step-arrow {
  flex-shrink: 0;
  color: var(--brand);
  opacity: 0.35;
  margin-top: 22px;
  animation-delay: var(--d, 0s);
}
.step-arrow svg {
  width: 28px;
  height: 28px;
}

/* ── 10) Pricing ───────────────────────────────────────────── */

.pricing-section {
  background: var(--surface);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pcard {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(var(--pcard-base-y, 0px));
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background var(--transition);
  will-change: transform;
  animation-delay: var(--d, 0s);
  position: relative;
}
.pcard:hover,
.pcard:focus-within {
  transform: translateY(calc(var(--pcard-base-y, 0px) - 10px));
  box-shadow: var(--shadow-lg);
  border-color: rgba(102, 32, 207, 0.24);
}

.pcard-featured {
  --pcard-base-y: -12px;
  background: linear-gradient(160deg, #1a0845 0%, #0f2150 100%);
  border-color: transparent;
  box-shadow: 0 16px 56px rgba(102, 32, 207, 0.35);
}

.pcard-badge {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 20px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background: var(--surface-2);
  color: var(--brand);
  border: 1px solid var(--border);
  width: fit-content;
  transition:
    color var(--transition),
    background var(--transition),
    border-color var(--transition);
}
.pcard-badge-pop {
  background: rgba(102, 32, 207, 0.1);
  color: var(--brand);
  border-color: rgba(102, 32, 207, 0.25);
}
.pcard-badge-gold {
  background: rgba(245, 158, 11, 0.12);
  color: #92400e;
  border-color: rgba(245, 158, 11, 0.3);
}

.pcard-name {
  font-size: 1.4rem;
  color: var(--text);
  font-weight: 800;
  transition: color var(--transition);
}
.pcard-featured .pcard-name {
  color: #fff;
}

.pcard-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.price-num {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pcard-featured .price-num {
  background: linear-gradient(135deg, #a78bfa, #60a5fa);
  -webkit-background-clip: text;
  background-clip: text;
}
.price-per {
  font-size: 0.95rem;
  color: var(--text-3);
  font-weight: 500;
  transition: color var(--transition);
}
.pcard-featured .price-per {
  color: rgba(255, 255, 255, 0.45);
}

.pcard-desc {
  font-size: 0.88rem;
  color: var(--text-3);
  line-height: 1.55;
  border-top: 1px solid var(--border-soft);
  padding-top: 16px;
  transition:
    color var(--transition),
    border-color var(--transition);
}
.pcard-featured .pcard-desc {
  color: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.1);
}

.pcard-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pcard-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.9rem;
  color: var(--text-2);
  font-weight: 500;
  transition: color var(--transition);
}
.pcard-featured .pcard-features li {
  color: rgba(255, 255, 255, 0.8);
}

.feat-on svg {
  color: #22c55e;
  flex-shrink: 0;
}
.feat-off {
  opacity: 0.4;
}
.feat-off svg {
  color: var(--text-3);
  flex-shrink: 0;
}

.pcard-cta {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.pcard:not(.pcard-featured):hover .pcard-name,
.pcard:not(.pcard-featured):focus-within .pcard-name {
  color: var(--brand);
}

.pcard:not(.pcard-featured):hover .price-per,
.pcard:not(.pcard-featured):focus-within .price-per {
  color: var(--text-2);
}

.pcard:not(.pcard-featured):hover .pcard-desc,
.pcard:not(.pcard-featured):focus-within .pcard-desc {
  color: var(--text-2);
  border-color: rgba(102, 32, 207, 0.2);
}

.pcard:not(.pcard-featured):hover .pcard-features li,
.pcard:not(.pcard-featured):focus-within .pcard-features li {
  color: var(--text);
}

.pcard:not(.pcard-featured):hover .pcard-badge,
.pcard:not(.pcard-featured):focus-within .pcard-badge {
  border-color: rgba(102, 32, 207, 0.32);
}

.pcard-featured:hover .pcard-name,
.pcard-featured:focus-within .pcard-name {
  color: #fff;
}

/* ── 11) FAQ — tabbed two-column redesign ───────────────────── */

.faq-section {
  background: var(--surface);
}

/* Category tabs */
.faq-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.faq-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  border-radius: 30px;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text-3);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    color var(--transition),
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
  white-space: nowrap;
}
.faq-tab svg {
  opacity: 0.7;
  transition: opacity var(--transition);
}
.faq-tab:hover {
  color: var(--brand);
  border-color: rgba(102, 32, 207, 0.3);
  background: var(--surface-2);
}
.faq-tab.active {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(102, 32, 207, 0.3);
}
.faq-tab.active svg {
  opacity: 1;
}

/* Panels */
.faq-panels {
  position: relative;
}

.faq-panel {
  display: none;
  animation: fadePanel 0.35s ease forwards;
}
.faq-panel.active {
  display: block;
}

@keyframes fadePanel {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Two-column layout inside each panel */
.faq-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

.faq-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Individual FAQ items */
.faq-item {
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}
.faq-item:hover {
  border-color: rgba(102, 32, 207, 0.2);
}
.faq-item.open {
  border-color: rgba(102, 32, 207, 0.3);
  box-shadow: var(--shadow);
  background: var(--surface);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  transition: color var(--transition);
  line-height: 1.35;
}
.faq-q:hover {
  color: var(--brand);
}
.faq-item.open .faq-q {
  color: var(--brand);
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--brand);
  transition: transform var(--transition);
  opacity: 0.6;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 20px;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 20px 18px;
}

.faq-a p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.72;
  border-top: 1px solid var(--border-soft);
  padding-top: 12px;
}

/* Bottom CTA strip */
.faq-cta-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
  padding: 24px 28px;
  background: linear-gradient(
    135deg,
    rgba(102, 32, 207, 0.06),
    rgba(55, 106, 246, 0.06)
  );
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  flex-wrap: wrap;
}

.faq-cta-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(102, 32, 207, 0.12),
    rgba(55, 106, 246, 0.12)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  flex-shrink: 0;
}

.faq-cta-text {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.faq-cta-text strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
}
.faq-cta-text span {
  font-size: 0.88rem;
  color: var(--text-3);
}

/* ── 11b) Feature Split Sections ────────────────────────────── */

.feature-split {
  background: var(--surface);
  overflow: hidden;
}
.feature-split-dark {
  background: linear-gradient(160deg, #0f0824 0%, #091540 100%);
}

.fsplit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.fsplit-img-right {
}
.fsplit-img-left {
}
.fsplit-img-left .fsplit-visual {
  order: -1;
}

.fsplit-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fsplit-text h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--text);
  line-height: 1.15;
}
.feature-split-dark .fsplit-text h2 {
  color: #fff;
}

.fsplit-text > p {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 480px;
}
.feature-split-dark .fsplit-text > p {
  color: rgba(255, 255, 255, 0.55);
}

.label-tag-light {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
}

/* Feature points list */
.fsplit-points {
  display: flex;
  flex-direction: column;
  gap: 18px;
  list-style: none;
  padding: 0;
}
.fsplit-points li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.fsplit-point-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    rgba(102, 32, 207, 0.12),
    rgba(55, 106, 246, 0.12)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  margin-top: 1px;
}
.fsplit-point-icon-light {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
}
.fsplit-points li > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.fsplit-points li strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}
.feature-split-dark .fsplit-points li strong {
  color: rgba(255, 255, 255, 0.9);
}
.fsplit-points li span {
  font-size: 0.88rem;
  color: var(--text-3);
  line-height: 1.55;
}
.feature-split-dark .fsplit-points li span {
  color: rgba(255, 255, 255, 0.45);
}

/* Visual side — card scene */
.fsplit-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}

.fsplit-card-scene {
  position: relative;
  width: 100%;
  max-width: 380px;
}

.fsplit-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(102, 32, 207, 0.25),
    transparent 65%
  );
  filter: blur(48px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}
.fsplit-glow-gold {
  background: radial-gradient(circle, rgba(245, 158, 11, 0.2), transparent 65%);
}

/* VPN status mock card */
.fsplit-mockcard {
  position: relative;
  z-index: 2;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow:
    0 20px 60px rgba(102, 32, 207, 0.18),
    0 4px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fmc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fmc-status {
  display: flex;
  align-items: center;
  gap: 8px;
}
.fmc-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.fmc-dot.connected {
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.7);
  animation: pulse-dot 2s ease-in-out infinite;
}
.fmc-status-txt {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #22c55e;
}
.fmc-proto {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-3);
  background: var(--surface-2);
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.fmc-ip {
  background: var(--bg);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.fmc-ip-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.fmc-ip-value {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}
.fmc-redact {
  color: var(--brand);
}

.fmc-loc-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--surface-2);
  border-radius: 10px;
  border: 1px solid var(--border);
}
.fmc-flag {
  font-size: 1.4rem;
  line-height: 1;
}
.fmc-loc-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
}
.fmc-loc-info strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}
.fmc-loc-info span {
  font-size: 0.75rem;
  color: var(--text-3);
}
.fmc-signal {
  display: flex;
  align-items: flex-end;
  gap: 3px;
}
.fmc-signal span {
  display: block;
  width: 4px;
  border-radius: 2px;
  background: var(--brand);
}
.fmc-signal span:nth-child(1) {
  height: 6px;
}
.fmc-signal span:nth-child(2) {
  height: 10px;
}
.fmc-signal span:nth-child(3) {
  height: 14px;
}
.fmc-signal span:nth-child(4) {
  height: 18px;
}

.fmc-enc {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-3);
  background: var(--bg);
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--border-soft);
}
.fmc-enc svg {
  color: #22c55e;
  flex-shrink: 0;
}

/* Floating badge pills */
.fsplit-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 30px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  box-shadow: 0 8px 24px rgba(102, 32, 207, 0.14);
  z-index: 3;
  color: var(--text);
  white-space: nowrap;
}
.fsplit-badge svg {
  color: var(--brand);
}
.fsplit-badge-1 {
  top: -12px;
  right: -16px;
  animation: float-badge 4s ease-in-out infinite;
}
.fsplit-badge-2 {
  bottom: -10px;
  left: -12px;
  animation: float-badge 4s ease-in-out infinite 1.5s;
}

@keyframes float-badge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Device split scene */
.fsplit-scene-devices {
  max-width: 340px;
}

.fdev-stack {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.fdev-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  overflow: hidden;
}

.fdev-laptop {
  width: 100%;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}
.fdev-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.fdev-dots {
  display: flex;
  gap: 5px;
}
.fdev-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}
.fdev-addr {
  flex: 1;
  text-align: center;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 500;
}
.fdev-lock {
  font-size: 0.75rem;
}
.fdev-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fdev-line {
  height: 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
}
.fdev-line.fw {
  width: 100%;
}
.fdev-line.fm {
  width: 70%;
}
.fdev-line.fs {
  width: 45%;
}

.fdev-phone {
  width: 120px;
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  align-self: flex-end;
  margin-top: -40px;
  margin-right: 10px;
}
.fdev-phone-bar {
  padding: 8px;
  display: flex;
  justify-content: center;
}
.fdev-phone-dot {
  width: 40px;
  height: 5px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  display: block;
}
.fdev-phone-body {
  padding: 14px 10px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.fdev-shield-icon {
  color: var(--gold);
}
.fdev-phone-connected {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  color: #22c55e;
}

.fdev-count-badge {
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.35);
  animation: float-badge 5s ease-in-out infinite 0.5s;
}
.fdev-count-badge strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: #7a4500;
  line-height: 1;
}
.fdev-count-badge span {
  font-size: 0.65rem;
  font-weight: 700;
  color: #92400e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── 12) CTA Banner ────────────────────────────────────────── */

.cta-banner {
  background: linear-gradient(135deg, #1a0845 0%, #0b1f5e 100%);
  padding: 80px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cta-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(102, 32, 207, 0.35),
    transparent 65%
  );
  border-radius: 50%;
  filter: blur(60px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff;
}

.cta-banner p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
}

.cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

/* ── 13) Footer ────────────────────────────────────────────── */

.footer {
  background: #0c0618;
  border-top: 1px solid rgba(102, 32, 207, 0.15);
  padding: 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 0.9fr 1.1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 32px 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.footer-logo-link img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.65;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.soc-btn {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition:
    background var(--transition),
    border-color var(--transition),
    transform var(--transition);
}
.soc-btn:hover {
  background: rgba(102, 32, 207, 0.2);
  border-color: rgba(102, 32, 207, 0.4);
  transform: translateY(-3px);
}

.soc-btn img {
  position: absolute;
  width: 18px;
  height: 18px;
  object-fit: contain;
  transition: opacity 0.25s ease;
}
.soc-hov {
  opacity: 0;
}
.soc-btn:hover .soc-def {
  opacity: 0;
}
.soc-btn:hover .soc-hov {
  opacity: 1;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 4px;
}

.footer-col a {
  text-decoration: none;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  transition:
    color var(--transition),
    transform var(--transition);
  display: inline-block;
}
.footer-col a:hover {
  color: rgba(255, 255, 255, 0.9);
  transform: translateX(3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 32px;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.22);
}

.footer-note {
  color: rgba(102, 32, 207, 0.5) !important;
}

/* ── 14) Back to Top ───────────────────────────────────────── */

.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(102, 32, 207, 0.4);
  z-index: 1100;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(102, 32, 207, 0.5);
}

/* ── 15) Animations ────────────────────────────────────────── */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeIn 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.fade-delay {
  animation-delay: 0.25s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: var(--d, 0s);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Preserve card hover transitions when combined with .fade-up */
.benefit-card.fade-up {
  transition:
    opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow var(--transition),
    border-color var(--transition),
    background-color var(--transition);
}

.pcard.fade-up {
  transition:
    opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow var(--transition),
    border-color var(--transition),
    background var(--transition);
}

/* Keep card hover-lift after fade-up animation sets transform. */
.benefit-card.fade-up.visible:hover,
.benefit-card.fade-up.visible:focus-within {
  transform: translateY(-10px);
}

.pcard.fade-up.visible:hover,
.pcard.fade-up.visible:focus-within {
  transform: translateY(calc(var(--pcard-base-y, 0px) - 10px));
}

/* ── 16) Responsive ────────────────────────────────────────── */

/* Tablet (≤ 1024px) */
@media (max-width: 1024px) {
  .hero-inner {
    gap: 40px;
    padding-left: 40px;
    padding-right: 40px;
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .pcard-featured {
    --pcard-base-y: 0px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }
  .footer-tagline {
    max-width: 100%;
  }

  /* Feature splits — stack at tablet */
  .fsplit-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .fsplit-img-left .fsplit-visual {
    order: 0;
  }
  .fsplit-card-scene {
    max-width: 360px;
    margin: 0 auto;
  }
  .fsplit-scene-devices {
    max-width: 300px;
  }

  /* FAQ two columns → single column */
  .faq-two-col {
    grid-template-columns: 1fr;
  }
}

/* Large phone (≤ 768px) */
@media (max-width: 768px) {
  :root {
    --navbar-h: 64px;
  }

  body {
    background-attachment: scroll;
  }

  .navbar-links,
  .navbar-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .navbar-inner {
    padding: 0 20px;
  }
  .navbar.scrolled .navbar-inner {
    height: 56px;
  }

  .hero-inner {
    flex-direction: column;
    text-align: center;
    padding: calc(var(--navbar-h) + 40px) 24px 32px;
    gap: 32px;
  }
  .hero-text {
    align-items: center;
  }
  .hero-badge {
    align-self: center;
  }
  .hero-sub {
    max-width: 100%;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-visual {
    max-width: 320px;
  }
  .hero-img {
    max-width: 280px;
  }

  .section {
    padding: 64px 0;
  }
  .section-head {
    margin-bottom: 40px;
  }
  .container {
    padding: 0 20px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .steps-row {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .step-arrow {
    transform: rotate(90deg);
    margin-top: 0;
  }
  .step p {
    max-width: 100%;
  }

  /* FAQ */
  .faq-tabs {
    gap: 6px;
  }
  .faq-tab {
    padding: 8px 14px;
    font-size: 0.82rem;
  }
  .faq-cta-strip {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  /* Feature splits */
  .fsplit-inner {
    gap: 40px;
  }
  .fsplit-badge-1 {
    top: -8px;
    right: 0;
  }
  .fsplit-badge-2 {
    bottom: -8px;
    left: 0;
  }
  .fdev-count-badge {
    left: -8px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    padding: 48px 20px 32px;
    gap: 32px;
  }
  .footer-brand {
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 16px 20px calc(16px + env(safe-area-inset-bottom));
    gap: 6px;
  }

  .back-to-top {
    bottom: 20px;
    right: 18px;
  }
}

/* Small phone (≤ 480px) */
@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2rem;
  }
  .hero-btns {
    flex-direction: column;
    width: 100%;
  }
  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-stats {
    width: 100%;
    justify-content: space-between;
    padding: 14px;
  }
  .hero-stat {
    padding: 0 10px;
  }
  .hero-stat strong {
    font-size: 1rem;
  }
  .section-head h2 {
    font-size: 1.6rem;
  }
  .cta-banner {
    padding: 60px 20px;
  }
  .cta-btns {
    flex-direction: column;
    width: 100%;
  }
  .cta-btns .btn {
    width: 100%;
    justify-content: center;
  }

  /* FAQ tabs — scroll horizontally on very small */
  .faq-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 4px;
  }
  .faq-tabs::-webkit-scrollbar {
    height: 3px;
  }
  .faq-tabs::-webkit-scrollbar-track {
    background: transparent;
  }
  .faq-tabs::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 2px;
  }
  .faq-tab {
    flex-shrink: 0;
  }

  /* Feature split points stack cleanly */
  .fsplit-points li {
    gap: 10px;
  }
  .fsplit-point-icon {
    width: 30px;
    height: 30px;
  }
}

/* Very small (≤ 360px) */
@media (max-width: 360px) {
  .navbar-inner {
    padding: 0 14px;
  }
  .hero-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
  .container {
    padding: 0 14px;
  }
}
