/* ══════════════════════════════════════════════════════════════
   SHOPIFY SOLUTIONS — UNIQUE CINEMATIC LAYOUT (Shopify Green)
   ══════════════════════════════════════════════════════════════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #020509;
  --bg-soft: #071210;
  --bg-alt: #051010;
  --text: #e5f0ec;
  --muted: #8aaa9b;
  --accent: #95bf47;
  --accent-2: #5e8e3e;
  --accent-glow: rgba(149, 191, 71, 0.15);
  --card: rgba(7, 18, 16, 0.85);
  --border: rgba(255, 255, 255, 0.06);
  --border-accent: rgba(149, 191, 71, 0.25);
  --radius: 16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Manrope", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

/* ── HERO — Centered Cinematic with Floating Store Below ───── */
.hero {
  position: relative;
  width: 100%;
  padding: 160px 0 60px;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(170deg, rgba(2, 5, 9, 0.82) 0%, rgba(2, 5, 9, 0.65) 40%, rgba(2, 5, 9, 0.82) 100%),
    radial-gradient(ellipse 900px 600px at 50% 20%, rgba(149, 191, 71, 0.12), transparent),
    radial-gradient(ellipse 500px 400px at 30% 80%, rgba(94, 142, 62, 0.08), transparent),
    url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(149,191,71,0.06), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.hero-center {
  max-width: 740px;
  margin: 0 auto 48px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s, transform 0.7s;
}
.hero-center.visible { opacity: 1; transform: translateY(0); }

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb i { font-size: 10px; opacity: 0.5; }
.breadcrumb > span { color: var(--accent); font-weight: 600; }

.hero h1 {
  font-family: "Sora", sans-serif;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(149, 191, 71, 0.3);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover {
  border-color: rgba(149, 191, 71, 0.3);
  background: rgba(149, 191, 71, 0.06);
}

/* ── Store Mockup — Full-Width Perspective ─────────────────── */
.hero-mockup-wrap {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  perspective: 1200px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s 0.2s, transform 0.8s 0.2s;
}
.hero-mockup-wrap.visible { opacity: 1; transform: translateY(0); }

.store-mockup {
  background: rgba(7, 18, 16, 0.92);
  border: 1px solid rgba(149, 191, 71, 0.12);
  border-radius: 14px;
  overflow: hidden;
  transform: rotateX(4deg);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 120px rgba(149, 191, 71, 0.04);
  transition: transform 0.4s;
}
.store-mockup:hover { transform: rotateX(0deg); }

.store-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
}
.store-dots { display: flex; gap: 6px; }
.store-dots span { width: 10px; height: 10px; border-radius: 50%; }
.store-dots span:nth-child(1) { background: #ff5f57; }
.store-dots span:nth-child(2) { background: #ffbd2e; }
.store-dots span:nth-child(3) { background: #28ca42; }

.store-url {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.store-url i { color: #28ca42; font-size: 10px; }

.store-body { padding: 24px; }

.mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.mock-logo {
  width: 60px; height: 14px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 3px; opacity: 0.6;
}
.mock-nav-items { display: flex; gap: 10px; }
.mock-nav-pill {
  width: 40px; height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
}
.mock-cart {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: rgba(149,191,71,0.15);
  border: 1px solid rgba(149,191,71,0.2);
}

.mock-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.mock-product {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.mock-product-img {
  height: 56px;
  background: linear-gradient(135deg, rgba(149,191,71,0.08), rgba(94,142,62,0.05));
}
.mock-product-info { padding: 8px; }
.mock-product-name {
  width: 70%; height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px; margin-bottom: 5px;
}
.mock-product-price {
  width: 40%; height: 8px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 3px; opacity: 0.5;
}

/* Floating trust badges */
.hero-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(7, 18, 16, 0.92);
  border: 1px solid var(--border-accent);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  animation: badgeFloat 4s ease-in-out infinite;
  z-index: 5;
}
.hero-badge i { color: var(--accent); font-size: 16px; }

.badge-1 { top: 10px; right: -20px; animation-delay: 0s; }
.badge-2 { top: 50%; left: -30px; animation-delay: 1.3s; }
.badge-3 { bottom: 20px; right: 10%; animation-delay: 2.6s; }

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── STATS — Floating Cards Row ────────────────────────────── */
.stats-strip {
  padding: 0;
  position: relative;
  z-index: 2;
  margin-top: -36px;
}

.stats-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s, transform 0.5s, border-color 0.3s;
}
.stat-card.visible { opacity: 1; transform: translateY(0); }
.stat-card:nth-child(2) { transition-delay: 0.08s; }
.stat-card:nth-child(3) { transition-delay: 0.16s; }
.stat-card:nth-child(4) { transition-delay: 0.24s; }

.stat-card:hover { border-color: var(--border-accent); }

.stat-card i {
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 8px;
  display: block;
}

.stat-card strong {
  font-family: "Sora", sans-serif;
  font-size: 26px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 2px;
}
.stat-card span { font-size: 13px; color: var(--muted); font-weight: 500; }

/* ── GENERIC SECTION ────────────────────────────────────────── */
.sec { padding: 90px 0; position: relative; }

.sec-alt {
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(149, 191, 71, 0.04), transparent),
    var(--bg-soft);
}

.sec-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
}
.sec-head.visible { opacity: 1; transform: translateY(0); }

.sec-head-left {
  text-align: left;
  max-width: none;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
}
.sec-head-left.visible { opacity: 1; transform: translateY(0); }

.kicker {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.sec-head h2, .sec-head-left h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
}

.sec-head h2 em, .sec-head-left h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec-head p, .sec-head-left p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ── SERVICES — Alternating Horizontal Feature Cards ────────── */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 36px;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s, transform 0.5s, border-color 0.3s, box-shadow 0.3s;
}
.feature-row.visible { opacity: 1; transform: translateX(0); }

.feature-row:nth-child(even) { transform: translateX(20px); }
.feature-row:nth-child(even).visible { transform: translateX(0); }

.feature-row:nth-child(1) { transition-delay: 0s; }
.feature-row:nth-child(2) { transition-delay: 0.06s; }
.feature-row:nth-child(3) { transition-delay: 0.12s; }
.feature-row:nth-child(4) { transition-delay: 0.18s; }
.feature-row:nth-child(5) { transition-delay: 0.24s; }
.feature-row:nth-child(6) { transition-delay: 0.3s; }

.feature-row:hover {
  border-color: var(--border-accent);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.feature-icon {
  width: 64px; height: 64px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(149,191,71,0.1), rgba(94,142,62,0.05));
  border: 1px solid rgba(149,191,71,0.15);
  flex-shrink: 0;
  transition: background 0.3s;
}
.feature-row:hover .feature-icon {
  background: linear-gradient(135deg, rgba(149,191,71,0.18), rgba(94,142,62,0.1));
}
.feature-icon i { font-size: 26px; color: var(--accent); }

.feature-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.feature-body p { font-size: 14px; color: var(--muted); line-height: 1.7; }

.feature-tag {
  display: inline-block;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  border-radius: 20px;
}

/* ── INTEGRATIONS — Logo Grid (Static) ──────────────────────── */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.logo-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.4s, transform 0.4s, border-color 0.3s, background 0.3s;
}
.logo-tile.visible { opacity: 1; transform: scale(1); }

.logo-tile:nth-child(1) { transition-delay: 0s; }
.logo-tile:nth-child(2) { transition-delay: 0.04s; }
.logo-tile:nth-child(3) { transition-delay: 0.08s; }
.logo-tile:nth-child(4) { transition-delay: 0.12s; }
.logo-tile:nth-child(5) { transition-delay: 0.16s; }
.logo-tile:nth-child(6) { transition-delay: 0.2s; }
.logo-tile:nth-child(7) { transition-delay: 0.24s; }
.logo-tile:nth-child(8) { transition-delay: 0.28s; }
.logo-tile:nth-child(9) { transition-delay: 0.32s; }
.logo-tile:nth-child(10) { transition-delay: 0.36s; }

.logo-tile:hover {
  border-color: var(--border-accent);
  background: rgba(149, 191, 71, 0.05);
  transform: translateY(-4px);
}

.logo-tile img { width: 32px; height: 32px; }
.logo-tile span { font-size: 12px; font-weight: 600; color: var(--muted); text-align: center; }

/* ── PRICING — Horizontal Comparison Cards ──────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1060px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s, border-color 0.3s, box-shadow 0.3s;
}
.pricing-card.visible { opacity: 1; transform: translateY(0); }
.pricing-card:nth-child(1) { transition-delay: 0s; }
.pricing-card:nth-child(2) { transition-delay: 0.1s; }
.pricing-card:nth-child(3) { transition-delay: 0.2s; }

.pricing-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: var(--border-accent);
  box-shadow: 0 0 60px rgba(149, 191, 71, 0.08);
  background: linear-gradient(180deg, rgba(149,191,71,0.04), var(--card));
}

.pricing-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-card h3 {
  font-family: "Sora", sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-subtitle { font-size: 13px; color: var(--muted); margin-bottom: 20px; }

.pricing-price {
  font-family: "Sora", sans-serif;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 4px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pricing-price span {
  font-size: 14px;
  font-weight: 500;
  -webkit-text-fill-color: var(--muted);
}

.pricing-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}
.pricing-features li {
  font-size: 14px;
  color: var(--muted);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features li i { color: var(--accent); font-size: 14px; }

.pricing-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  border: 1px solid rgba(149,191,71,0.2);
  background: rgba(149,191,71,0.06);
  color: var(--accent);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.pricing-btn:hover {
  background: rgba(149,191,71,0.12);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(149,191,71,0.15);
}

.pricing-card.featured .pricing-btn {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  border-color: transparent;
}
.pricing-card.featured .pricing-btn:hover {
  box-shadow: 0 8px 28px rgba(149,191,71,0.3);
}

/* ── WHY US — Big Number Counter Grid ───────────────────────── */
.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.counter-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s, border-color 0.3s;
}
.counter-card.visible { opacity: 1; transform: translateY(0); }
.counter-card:nth-child(1) { transition-delay: 0s; }
.counter-card:nth-child(2) { transition-delay: 0.08s; }
.counter-card:nth-child(3) { transition-delay: 0.16s; }
.counter-card:nth-child(4) { transition-delay: 0.24s; }

.counter-card:hover { border-color: var(--border-accent); }

.counter-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0;
  transition: opacity 0.3s;
}
.counter-card:hover::after { opacity: 1; }

.counter-card i {
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.counter-card strong {
  font-family: "Sora", sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: #fff;
  display: block;
  margin-bottom: 4px;
}

.counter-card h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}
.counter-card p { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* ── VERTICAL PROCESS STEPS ─────────────────────────────────── */
.v-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  counter-reset: step;
}

.v-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  counter-increment: step;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s, transform 0.5s, border-color 0.3s;
}
.v-step.visible { opacity: 1; transform: translateY(0); }

.v-step:nth-child(1) { transition-delay: 0s; }
.v-step:nth-child(2) { transition-delay: 0.06s; }
.v-step:nth-child(3) { transition-delay: 0.12s; }
.v-step:nth-child(4) { transition-delay: 0.18s; }
.v-step:nth-child(5) { transition-delay: 0.24s; }
.v-step:nth-child(6) { transition-delay: 0.3s; }

.v-step:hover { border-color: var(--border-accent); }

.step-num {
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(149,191,71,0.12), rgba(94,142,62,0.06));
  border: 1px solid rgba(149,191,71,0.15);
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--accent);
  flex-shrink: 0;
}

.step-body h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.step-body p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── FAQ — Split Layout ─────────────────────────────────────── */
.faq-split {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 120px;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s, transform 0.5s;
}
.faq-intro.visible { opacity: 1; transform: translateX(0); }

.faq-intro h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
}
.faq-intro h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.faq-intro > p { color: var(--muted); font-size: 14px; line-height: 1.7; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s, transform 0.4s, border-color 0.3s;
}
.faq-item.visible { opacity: 1; transform: translateY(0); }

.faq-item[open] { border-color: var(--border-accent); }

.faq-item summary {
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 12px;
}
.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p { padding: 0 24px 20px; font-size: 14px; color: var(--muted); line-height: 1.7; }

.faq-item:nth-child(1) { transition-delay: 0s; }
.faq-item:nth-child(2) { transition-delay: 0.06s; }
.faq-item:nth-child(3) { transition-delay: 0.12s; }
.faq-item:nth-child(4) { transition-delay: 0.18s; }
.faq-item:nth-child(5) { transition-delay: 0.24s; }

/* ── CTA BANNER — Full-Width Gradient ───────────────────────── */
.cta-banner {
  padding: 90px 0;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(149,191,71,0.05), rgba(2,5,9,0.95) 60%),
    var(--bg);
}

.cta-content {
  position: relative;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  z-index: 1;
}

.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 500px; height: 300px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(149, 191, 71, 0.1), transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.cta-banner h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 800;
  margin-bottom: 14px;
}

.cta-banner p { color: var(--muted); font-size: 16px; margin-bottom: 32px; }

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .stats-cards { grid-template-columns: repeat(2, 1fr); }
  .logo-grid { grid-template-columns: repeat(4, 1fr); }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card:nth-child(3) { grid-column: span 2; max-width: 400px; margin: 0 auto; }
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-split { grid-template-columns: 1fr; gap: 32px; }
  .faq-intro { position: static; }
}

@media (max-width: 768px) {
  .hero { padding: 120px 0 50px; }
  .hero h1 { font-size: 34px; }
  .hero-badge { display: none; }
  .store-mockup { transform: none; }
  .store-mockup:hover { transform: none; }
  .stats-strip { margin-top: -24px; }
  .stats-cards { grid-template-columns: 1fr 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 16px; padding: 24px; }
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card:nth-child(3) { grid-column: span 1; max-width: none; }
  .counters-grid { grid-template-columns: 1fr 1fr; }
  .v-steps { grid-template-columns: 1fr; }
  .sec { padding: 60px 0; }
  .mock-products { grid-template-columns: repeat(3, 1fr); }
  .mock-products .mock-product:nth-child(4) { display: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .hero-desc { font-size: 15px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { width: 100%; justify-content: center; }
  .stats-cards { 
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .stat-card {
    padding: 18px 16px;
  }
  .stat-card strong {
    font-size: 22px;
  }
  .stat-card span {
    font-size: 12px;
  }
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .counters-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; }
  .cta-actions a { width: 100%; justify-content: center; }
  .mock-products { grid-template-columns: repeat(2, 1fr); }
  .mock-products .mock-product:nth-child(3),
  .mock-products .mock-product:nth-child(4) { display: none; }
}
