/* =====================
   RESET & BASE
===================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --violet: #A855F7;
  --violet-bright: #C084FC;
  --violet-dark: #7C3AED;
  --violet-dim: rgba(168, 85, 247, 0.12);
  --violet-border: rgba(168, 85, 247, 0.25);
  --pink: #EC4899;
  --bg: #0d0d0d;
  --bg-1: #111111;
  --bg-2: #161616;
  --bg-3: #1e1e1e;
  --text: #FAFAFA;
  --text-secondary: #A1A1AA;
  --text-muted: #52525B;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --glow: 0 0 40px rgba(168, 85, 247, 0.2), 0 0 80px rgba(168, 85, 247, 0.06);
  --glow-strong: 0 0 20px rgba(168, 85, 247, 0.55), 0 0 60px rgba(168, 85, 247, 0.2);
  --radius: 12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  background-image: radial-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 40px 40px;
}

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

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =====================
   TYPOGRAPHY HELPERS
===================== */
.gradient-text {
  background: linear-gradient(135deg, #C084FC 0%, #EC4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-block;
  color: var(--violet-bright);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.section-sub {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 560px;
}

/* =====================
   BUTTONS
===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  font-family: inherit;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--violet) 0%, var(--pink) 100%);
  color: white;
  box-shadow: 0 0 28px rgba(168, 85, 247, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(168, 85, 247, 0.6), 0 8px 24px rgba(0, 0, 0, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--violet-bright);
  border: 1px solid var(--violet-border);
}

.btn-outline:hover {
  background: var(--violet-dim);
  border-color: var(--violet);
}

.btn-lg { padding: 18px 36px; font-size: 18px; }
.btn-sm { padding: 10px 20px; font-size: 14px; }

@keyframes pulse-btn {
  0%, 100% { box-shadow: 0 0 28px rgba(168, 85, 247, 0.35); }
  50%       { box-shadow: 0 0 55px rgba(168, 85, 247, 0.65), 0 0 100px rgba(168, 85, 247, 0.18); }
}
.btn-pulse { animation: pulse-btn 2.8s ease-in-out infinite; }

/* =====================
   NAV
===================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.35s ease;
}

nav.scrolled {
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 15px 32px;
  border-bottom: 1px solid var(--border-subtle);
}

.logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.logo-accent { color: var(--violet); }

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 9px;
}

.logo-dot {
  width: 8px;
  height: 8px;
  background: var(--violet);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--violet);
  animation: blink 2.2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.25; }
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switch {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid var(--border-subtle);
  transition: all 0.2s;
}

.lang-switch:hover {
  color: var(--violet-bright);
  border-color: var(--violet-border);
}

/* =====================
   HERO
===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -15%;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(168, 85, 247, 0.09) 0%, rgba(236, 72, 153, 0.04) 40%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--violet-dim);
  border: 1px solid var(--violet-border);
  color: var(--violet-bright);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 44px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
}

.hero-note-dot {
  width: 6px;
  height: 6px;
  background: #4ADE80;
  border-radius: 50%;
  box-shadow: 0 0 6px #4ADE80;
  flex-shrink: 0;
}

/* =====================
   INSTAGRAM MOCK CHAT
===================== */
.insta-wrap {
  display: flex;
  justify-content: center;
  position: relative;
}

.insta-glow-bg {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse, rgba(168, 85, 247, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.insta-mock {
  background: #111;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  box-shadow: var(--glow-strong), 0 40px 80px rgba(0, 0, 0, 0.6);
  width: 100%;
  max-width: 360px;
  position: relative;
  z-index: 1;
}

/* Top bar — fake Instagram UI */
.insta-topbar {
  background: #000;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.insta-back {
  font-size: 18px;
  color: var(--text-secondary);
  margin-right: 4px;
}

.insta-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.insta-info { flex: 1; }

.insta-name {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.insta-status {
  font-size: 11px;
  color: #4ADE80;
}

.insta-icons {
  display: flex;
  gap: 14px;
  font-size: 18px;
  color: var(--text-secondary);
}

/* Messages */
.insta-messages {
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #0d0d0d;
  min-height: 280px;
}

.msg {
  padding: 10px 14px;
  border-radius: 20px;
  font-size: 14px;
  line-height: 1.5;
  max-width: 78%;
  opacity: 0;
  animation: msg-appear 0.35s ease forwards;
}

.msg-in {
  background: #2a2a2a;
  color: #fff;
  align-self: flex-start;
  border-bottom-left-radius: 5px;
}

.msg-out {
  background: linear-gradient(135deg, #6D28D9, #A855F7);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 5px;
}

.msg-link {
  background: var(--violet-dim);
  border: 1px solid var(--violet-border);
  color: var(--violet-bright);
  align-self: flex-end;
  border-radius: 14px;
  font-weight: 600;
  font-size: 13px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 85%;
}

.msg-confirmed {
  align-self: flex-end;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.2);
  color: #4ADE80;
  font-size: 13px;
  font-weight: 600;
  border-radius: 14px;
  padding: 8px 14px;
}

@keyframes msg-appear {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.msg:nth-child(1) { animation-delay: 0.4s; }
.msg:nth-child(2) { animation-delay: 1.4s; }
.msg:nth-child(3) { animation-delay: 2.6s; }
.msg:nth-child(4) { animation-delay: 3.6s; }
.msg:nth-child(5) { animation-delay: 4.4s; }
.msg:nth-child(6) { animation-delay: 5.2s; }

/* Typing indicator */
.typing-indicator {
  align-self: flex-end;
  background: linear-gradient(135deg, #6D28D9, #A855F7);
  border-radius: 20px;
  border-bottom-right-radius: 5px;
  padding: 12px 16px;
  display: flex;
  gap: 5px;
  align-items: center;
  opacity: 0;
  animation: typing-show 0.3s ease 0.8s forwards, typing-hide 0.3s ease 1.3s forwards;
}

.typing-indicator + .msg-out {
  margin-top: -2px;
}

@keyframes typing-show { to { opacity: 1; } }
@keyframes typing-hide { to { opacity: 0; height: 0; padding: 0; margin: 0; overflow: hidden; } }

.typing-dot {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: dot-bounce 1.1s ease-in-out infinite;
}

.typing-dot:nth-child(2) { animation-delay: 0.18s; }
.typing-dot:nth-child(3) { animation-delay: 0.36s; }

@keyframes dot-bounce {
  0%, 80%, 100% { transform: translateY(0); }
  40%           { transform: translateY(-5px); }
}

/* Bottom bar */
.insta-input-bar {
  background: #111;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.insta-input-fake {
  flex: 1;
  background: #1e1e1e;
  border-radius: 24px;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.insta-send-btn {
  color: var(--violet-bright);
  font-size: 20px;
}

/* Caption */
.insta-caption {
  text-align: center;
  padding: 10px 16px 14px;
  font-size: 12px;
  color: var(--text-muted);
  border-top: 1px solid var(--border-subtle);
  background: #0d0d0d;
}

.insta-caption span {
  color: var(--violet-bright);
}

/* =====================
   STATS BAR
===================== */
.stats-bar {
  background: var(--bg-1);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 52px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}

.stat-item { padding: 16px 24px; }

.stat-divider {
  border-left: 1px solid var(--border-subtle);
}

.stat-number {
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #C084FC, #EC4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.4;
}

/* =====================
   SECTION LAYOUT
===================== */
.section { padding: 100px 0; }

.section-centered {
  text-align: center;
}

.section-centered .section-sub {
  margin: 0 auto;
}

/* =====================
   PROBLEM CARDS
===================== */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.problem-card {
  background: var(--bg-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.problem-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--violet), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.problem-card:hover {
  border-color: var(--violet-border);
  transform: translateY(-6px);
  box-shadow: var(--glow);
}

.problem-card:hover::after { opacity: 1; }

.problem-icon {
  font-size: 38px;
  margin-bottom: 20px;
  display: block;
}

.problem-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.problem-card p {
  color: var(--text-secondary);
  line-height: 1.75;
  font-size: 15px;
}

/* =====================
   HOW IT WORKS
===================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
  position: relative;
}

.steps-connector {
  position: absolute;
  top: 34px;
  left: calc(16.66% + 14px);
  right: calc(16.66% + 14px);
  height: 1px;
  background: linear-gradient(90deg, var(--violet), var(--pink));
  opacity: 0.2;
}

.step-card {
  text-align: center;
  padding: 28px 20px;
}

.step-num {
  width: 68px;
  height: 68px;
  background: var(--bg);
  border: 1px solid var(--violet-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 24px;
  font-weight: 800;
  color: var(--violet-bright);
  box-shadow: var(--glow);
  position: relative;
  z-index: 1;
}

.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.step-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.75;
}

/* =====================
   BENEFITS
===================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.benefit-card {
  background: var(--bg-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  border-color: var(--violet-border);
  box-shadow: var(--glow);
  transform: translateY(-4px);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: var(--violet-dim);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  border: 1px solid var(--violet-border);
}

.benefit-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.benefit-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.75;
}

/* =====================
   TESTIMONIAL
===================== */
.testi-card {
  max-width: 740px;
  margin: 52px auto 0;
  background: var(--bg-1);
  border: 1px solid var(--violet-border);
  border-radius: var(--radius-lg);
  padding: 60px;
  position: relative;
  box-shadow: var(--glow);
}

.quote-mark {
  font-size: 96px;
  line-height: 0.6;
  color: var(--violet);
  opacity: 0.2;
  position: absolute;
  top: 44px;
  left: 44px;
  font-family: Georgia, serif;
}

.testi-stars {
  color: #FBBF24;
  font-size: 17px;
  margin-bottom: 24px;
  letter-spacing: 3px;
}

.testi-text {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.8;
  font-style: italic;
  color: var(--text);
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--violet), var(--pink));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 17px;
  color: white;
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  font-size: 15px;
}

.author-role {
  color: var(--text-secondary);
  font-size: 13px;
}

/* =====================
   FAQ
===================== */
.faq-list {
  max-width: 720px;
  margin: 56px auto 0;
}

details {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--bg);
  transition: border-color 0.25s;
}

details[open] {
  border-color: var(--violet-border);
  background: var(--bg-2);
}

summary {
  padding: 20px 26px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  user-select: none;
  gap: 16px;
}

summary::-webkit-details-marker { display: none; }

summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--violet);
  min-width: 22px;
  text-align: center;
  flex-shrink: 0;
}

details[open] summary::after { content: '−'; }

.faq-answer {
  padding: 0 26px 22px;
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 15px;
}

/* =====================
   CTA / FORM SECTION
===================== */
.cta-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(168, 85, 247, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.cta-content h2 {
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}

.cta-content > p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 32px;
}

.trust-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
}

.trust-check {
  width: 22px;
  height: 22px;
  background: rgba(168, 85, 247, 0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--violet-bright);
  flex-shrink: 0;
  border: 1px solid var(--violet-border);
}

.form-card {
  background: var(--bg-1);
  border: 1px solid var(--violet-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--glow);
}

.form-card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.form-card-sub {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 26px;
}

.form-group { margin-bottom: 15px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 6px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

input, select {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}

input:focus, select:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

input::placeholder { color: var(--text-muted); }

select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 38px;
}

select option { background: #1d1d1d; }

.btn-full {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}

.form-legal {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
  line-height: 1.6;
}

.success-state {
  display: none;
  text-align: center;
  padding: 32px 16px;
}

.success-icon { font-size: 48px; margin-bottom: 14px; }
.success-title { font-size: 21px; font-weight: 700; margin-bottom: 8px; }
.success-sub { color: var(--text-secondary); font-size: 15px; line-height: 1.7; }

/* =====================
   FOOTER
===================== */
footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border-subtle);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand-sub {
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 4px;
}

.footer-links { display: flex; gap: 28px; }

.footer-links a {
  color: var(--text-muted);
  font-size: 14px;
  transition: color 0.2s;
}

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

/* =====================
   FADE-IN ANIMATIONS
===================== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .insta-mock { max-width: 100%; }

  .problem-grid,
  .benefits-grid { grid-template-columns: 1fr; }

  .cta-inner { grid-template-columns: 1fr; gap: 48px; }

  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .steps-connector { display: none; }

  .stats-grid { grid-template-columns: 1fr; }
  .stat-divider { border-left: none; border-top: 1px solid var(--border-subtle); }

  .testi-card { padding: 40px 28px; }
  .quote-mark { display: none; }

  .form-row { grid-template-columns: 1fr; }

  nav .btn-sm { display: none; }
}

@media (max-width: 600px) {
  .hero { padding: 110px 0 72px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .testi-card { padding: 32px 20px; }
  .form-card { padding: 28px 20px; }
}
