/* ============================================
   FX Mustafa - Arabic Funnel (Mobile First, RTL)
   ============================================ */

:root {
  /* Light theme — Evolute-style (navy / teal / orange CTA) */
  --bg-dark: #e8edf5;
  --bg-card: #ffffff;
  --bg-accent: #e4eaf4;
  --blue-deep: #00237e;
  --teal: #009296;
  --teal-muted: #27878a;

  /* Primary CTA — orange (legacy names kept for existing rules) */
  --red: #f77f00;
  --red-light: #ff934f;
  --red-bright: #e06900;
  --red-glow-color: #f77f00;
  --red-dim: #c96a00;

  --text: #0f172a;
  --text-muted: #5c6b8a;
  --border: rgba(0, 35, 126, 0.14);
  --success: #04b67c;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  --glow-red: 0 0 24px rgba(247, 127, 0, 0.2), 0 4px 20px rgba(0, 35, 126, 0.06);
  --glow-red-strong: 0 6px 28px rgba(247, 127, 0, 0.28), 0 4px 16px rgba(0, 35, 126, 0.08);
  --font: 'Tajawal', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  font-family: var(--font);
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f9 42%, #f4f7fd 100%);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
  padding-top: calc(44px + env(safe-area-inset-top));
}

html[lang='en'] body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Top language toggle */
.lang-switch {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  justify-content: flex-end;
  padding: calc(6px + env(safe-area-inset-top)) 12px 8px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.96) 0%, rgba(248, 250, 252, 0.85) 65%, transparent 100%);
}

html[dir='rtl'] .lang-switch {
  justify-content: flex-start;
}

.lang-switch-btn {
  pointer-events: auto;
  appearance: none;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--blue-deep);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}

html[lang='en'] .lang-switch-btn {
  font-family: 'Inter', inherit;
}

.lang-switch-btn:hover {
  border-color: rgba(247, 127, 0, 0.35);
  box-shadow: var(--glow-red);
}

.lang-switch-btn:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

@media (min-width: 480px) {
  .container { padding: 0 1.25rem; }
}

@media (min-width: 768px) {
  .container { max-width: 720px; padding: 0 1.5rem; }
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dim) 100%);
  color: #fff;
  text-align: center;
  padding: 1rem 1rem;
  padding-bottom: calc(1rem + env(safe-area-inset-bottom));
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  z-index: 100;
  box-shadow: 0 -4px 24px rgba(247, 127, 0, 0.22), 0 0 20px rgba(0, 35, 126, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

@media (min-width: 480px) {
  .floating-cta { padding: 1rem 1.25rem; padding-bottom: 1rem; font-size: 1.05rem; }
}

.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-red-strong);
  color: #fff;
}

body {
  padding-bottom: 70px; /* space for floating CTA */
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

@media (max-width: 480px) {
  body { padding-bottom: 76px; }
}

/* Hero */
.hero {
  padding: 2rem 0 1rem;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

@media (min-width: 480px) {
  .hero { padding: 2.5rem 0 1.25rem; }
}

.hero-badge {
  display: inline-block;
  background: rgba(247, 127, 0, 0.14);
  color: var(--red-dim);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--glow-red);
  text-align: center;
}

.hero-title {
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.hero-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* VSL block — padding set on .section.vsl-block (below) so .section doesn’t add a top gap */
.vsl-block {
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
}
.vsl-intro {
  text-align: center;
  max-width: 34rem;
  margin: 0 auto 1.25rem;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.75;
  font-weight: 500;
}
.vsl-video-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #e2e8f0;
  max-width: min(100%, 900px);
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow), var(--glow-red);
  aspect-ratio: 16 / 9;
  max-height: min(72svh, 560px);
}

.vsl-youtube {
  display: none;
  width: 100%;
  height: 100%;
  border: 0;
  vertical-align: middle;
}

.vsl-video-wrap--youtube .vsl-youtube {
  display: block;
}

.vsl-video-wrap--youtube .vsl-video {
  display: none !important;
}

.vsl-video-wrap .vsl-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
  vertical-align: middle;
  -webkit-tap-highlight-color: transparent;
}

/* Fallback if aspect-ratio unsupported: keep readable height on old browsers */
@supports not (aspect-ratio: 16 / 9) {
  .vsl-video-wrap {
    max-height: none;
  }
  .vsl-video-wrap .vsl-video {
    max-height: min(72vh, 560px);
    height: auto;
  }
}

.vsl-after {
  text-align: center;
  max-width: 28rem;
  margin: 0 auto 1rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}
.section-kicker {
  text-align: center;
  color: var(--red);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}
.media-placeholder {
  border: 2px dashed var(--border);
  border-radius: var(--radius-sm);
  padding: 2rem 1rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 1rem 0;
  background: rgba(247, 127, 0, 0.06);
}

@media (min-width: 480px) {
  .hero-title { font-size: 1.85rem; }
  .hero-subtitle { font-size: 1.2rem; margin-bottom: 1rem; }
  .hero-desc { font-size: 1rem; margin-bottom: 1.75rem; }
}

@media (min-width: 640px) {
  .hero-title { font-size: 2.25rem; }
  .hero-subtitle { font-size: 1.35rem; }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.95rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1.05rem;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: var(--font);
}

.btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dim) 100%);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(247, 127, 0, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-red-strong);
}

/* Success page - WhatsApp CTA (high-converting) */
.btn-success-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.1rem 1.75rem;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 0 30px rgba(37, 211, 102, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 1rem;
  border: none;
  cursor: pointer;
}
.btn-success-wa:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55), 0 0 40px rgba(37, 211, 102, 0.3);
  color: #fff;
}
.btn-success-wa .btn-wa-icon {
  font-size: 1.4em;
}
@media (max-width: 479px) {
  .btn-success-wa {
    width: 100%;
    padding: 1.2rem 1.5rem;
    font-size: 1.05rem;
    margin-top: 1.25rem;
  }
}

.btn-option {
  width: 100%;
  min-height: 48px;
  background: var(--bg-card);
  color: var(--text);
  border: 2px solid var(--border);
  padding: 0.9rem 1rem;
  text-align: center;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  cursor: pointer;
}

@media (min-width: 480px) {
  .btn-option { padding: 1rem 1.25rem; }
}

.btn-option:hover,
.btn-option.selected {
  border-color: var(--red);
  background: rgba(247, 127, 0, 0.12);
  box-shadow: 0 0 15px rgba(247, 127, 0, 0.25);
}

/* Sections */
.section {
  padding: 2rem 0;
}

@media (min-width: 480px) {
  .section { padding: 2.5rem 0; }
}

/* Hero flows into VSL: .section was adding 2rem top — remove gap */
.section.vsl-block {
  padding-top: 0;
  padding-bottom: 2rem;
}

@media (min-width: 480px) {
  .section.vsl-block {
    padding-bottom: 2.5rem;
  }
}

.section-dark {
  background: #f1f5f9;
}

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

.section-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text);
}

@media (min-width: 480px) {
  .section-title { font-size: 1.5rem; margin-bottom: 1.25rem; }
}

@media (min-width: 640px) {
  .section-title { font-size: 1.75rem; }
}

.body-text {
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-size: 1rem;
}

@media (min-width: 480px) {
  .body-text { margin-bottom: 1.25rem; font-size: 1.05rem; }
}

.body-text.highlight {
  color: var(--red);
  font-weight: 600;
}

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

/* Examples */
.examples-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 480px) {
  .examples-grid { gap: 1.25rem; margin-bottom: 1.5rem; }
}

.example-card {
  background: var(--bg-card);
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-align: center;
}

@media (min-width: 480px) {
  .example-card { padding: 1.25rem; }
}

.example-num {
  display: inline-block;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.example-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  text-align: center;
}

.examples-conclusion {
  font-weight: 600;
  color: var(--red);
  margin-bottom: 1.5rem;
}

/* Solution */
.solution-list, .program-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.solution-list li, .program-list li {
  position: relative;
  padding-right: 0;
  margin-bottom: 0.75rem;
  text-align: center;
}

.solution-list li::before, .program-list li::before {
  content: "✓ ";
  position: static;
  color: var(--red);
  font-weight: 700;
}

/* 7 Layers */
.layers-list {
  list-style: none;
  counter-reset: layer;
}

.layers-list li {
  counter-increment: layer;
  position: relative;
  padding-right: 0;
  margin-bottom: 1.25rem;
  color: var(--text-muted);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.layers-list li::before {
  content: counter(layer);
  width: 1.75rem;
  height: 1.75rem;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 2px 12px rgba(247, 127, 0, 0.35);
  flex-shrink: 0;
}

.layers-result {
  font-weight: 700;
  color: var(--red);
  margin-top: 1.5rem;
}

/* Who it's for */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .two-col { grid-template-columns: 1fr 1fr; }
}

.col {
  background: var(--bg-card);
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

@media (min-width: 480px) {
  .col { padding: 1.5rem; }
}

.col h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  text-align: center;
  color: var(--text);
}

.col.suitable h3 { color: var(--success); }
.col.not-suitable h3 { color: #ef4444; }

.col ul {
  list-style: none;
}

.col ul li {
  padding-right: 0;
  margin-bottom: 0.5rem;
  position: relative;
  text-align: center;
}

.col ul li::before {
  content: "• ";
  position: static;
}

.col.suitable ul li::before { color: var(--success); }
.col.not-suitable ul li::before { color: #ef4444; }

/* Steps */
.steps-list {
  list-style: none;
  counter-reset: step;
}

.steps-list li {
  counter-increment: step;
  position: relative;
  padding-right: 0;
  margin-bottom: 1rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.steps-list li::before {
  content: counter(step);
  width: 1.75rem;
  height: 1.75rem;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 2px 12px rgba(247, 127, 0, 0.35);
  flex-shrink: 0;
}

.steps-note {
  margin-top: 1rem;
  font-style: italic;
  color: var(--text-muted);
  text-align: center;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: var(--bg-card);
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
  box-shadow: var(--shadow);
}

@media (min-width: 480px) {
  .faq-item { padding: 1.25rem; }
}

.faq-item h4 {
  color: var(--red);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.faq-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  text-align: center;
}

/* Form Section */
.section-form {
  background: var(--bg-accent);
  padding: 2rem 0 2.5rem;
}

@media (min-width: 480px) {
  .section-form { padding: 2.5rem 0 3rem; }
}

.form-urgency {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35em;
  background: rgba(247, 127, 0, 0.1);
  color: var(--red-dim);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
  width: 100%;
  border: 1px solid rgba(247, 127, 0, 0.4);
}

.form-intro {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  text-align: center;
}

.qualification-form {
  background: var(--bg-card);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.form-progress {
  position: relative;
  height: 6px;
  background: var(--bg-dark);
  border-radius: 999px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.form-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--red-dim), var(--red));
  width: 0%;
  transition: width 0.3s ease;
  box-shadow: 0 0 8px rgba(247, 127, 0, 0.35);
}

.form-progress-text {
  display: block;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

.form-steps {
  position: relative;
  min-height: 240px;
}

.form-step {
  display: none;
  animation: fadeIn 0.3s ease;
}

.form-step.active {
  display: block;
}

.form-step.form-success {
  text-align: center;
  padding: 2rem 0;
  animation: successReveal 0.6s ease;
  min-height: 400px;
}

/* Success Card - Pro Design */
.success-card {
  background: linear-gradient(160deg, #ffffff 0%, #f4f7fd 100%);
  border: 1px solid rgba(0, 35, 126, 0.1);
  border-radius: 24px;
  padding: 2.75rem 1.75rem;
  box-shadow: var(--shadow), 0 24px 48px rgba(15, 23, 42, 0.06);
  position: relative;
  overflow: hidden;
}

.success-page .success-card {
  padding: 3rem 2rem;
}

@media (min-width: 640px) {
  .success-page .success-card {
    padding: 3.5rem 2.5rem;
  }
}

.success-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(247, 127, 0, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* Animated Checkmark */
.success-check-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  margin: 0 auto 1.75rem;
}

.success-check-ring {
  position: absolute;
  inset: 0;
  border: 3px solid var(--red);
  border-radius: 50%;
  opacity: 0.4;
  animation: successRingPulse 2s ease-out infinite;
}

.success-check-ring-2 {
  inset: -8px;
  opacity: 0.2;
  animation-delay: 0.5s;
}

.success-check-icon {
  width: 44px;
  height: 44px;
  color: var(--red-bright);
  position: relative;
  z-index: 1;
}

.success-check-icon path {
  stroke-dasharray: 70;
  stroke-dashoffset: 70;
  animation: successCheckDraw 0.6s ease forwards 0.3s;
}

@keyframes successRingPulse {
  0% { transform: scale(0.95); opacity: 0.5; }
  50% { transform: scale(1.05); opacity: 0.2; }
  100% { transform: scale(0.95); opacity: 0.4; }
}

@keyframes successCheckDraw {
  to { stroke-dashoffset: 0; }
}

@keyframes successReveal {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Success Typography */
.success-headline {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.success-page .success-headline {
  font-size: 2rem;
}

@media (min-width: 640px) {
  .success-headline { font-size: 2rem; }
  .success-page .success-headline { font-size: 2.25rem; }
}

.success-subhead {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Timeline */
.success-timeline {
  text-align: right;
  margin-bottom: 2rem;
}

.success-step-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: successStepFade 0.5s ease forwards;
}

.success-step-item:nth-child(1) { animation-delay: 0.5s; }
.success-step-item:nth-child(2) { animation-delay: 0.65s; }
.success-step-item:nth-child(3) { animation-delay: 0.8s; }

.success-step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dim) 100%);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 0 16px rgba(247, 127, 0, 0.4);
}

.success-step-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

@keyframes successStepFade {
  from {
    opacity: 0;
    transform: translateX(12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Trust Badge */
.success-trust {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.success-trust-icon {
  font-size: 1.1rem;
}

/* Success page - enhanced */
.success-page {
  padding-bottom: 0;
  position: relative;
}

.success-page-inner {
  min-height: 100%;
}

.success-page-glow {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at top, rgba(247, 127, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.success-hero {
  padding: 2rem 0 2.5rem;
}

@media (min-width: 480px) {
  .success-hero { padding: 3rem 0 4rem; }
}

.success-badge-done {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.success-hero .hero-badge {
  margin-bottom: 1rem;
}

.success-hero-title {
  font-size: 2.1rem;
}

@media (min-width: 640px) {
  .success-hero-title { font-size: 2.5rem; }
}

.success-hero-sub {
  font-size: 1.25rem;
}

.success-check-wrap-landing {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
}

.success-check-wrap-landing .success-check-icon {
  width: 48px;
  height: 48px;
}

.success-check-glow {
  position: absolute;
  inset: -12px;
  background: radial-gradient(circle, rgba(247, 127, 0, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

/* Success steps - enhanced cards */
.success-steps-section {
  padding: 2rem 0;
}

@media (min-width: 480px) {
  .success-steps-section { padding: 3rem 0; }
}

.success-steps-intro {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 480px) {
  .success-steps-intro { font-size: 1rem; margin-bottom: 2rem; }
}

.success-steps-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1.5rem;
}

@media (min-width: 480px) {
  .success-steps-wrapper { margin-bottom: 2rem; }
}

.success-step-card {
  background: var(--bg-card);
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  opacity: 0;
  animation: successCardFade 0.6s ease forwards;
}

@media (min-width: 480px) {
  .success-step-card { padding: 1.5rem; }
}

.success-step-card-1 { animation-delay: 0.2s; }
.success-step-card-2 { animation-delay: 0.4s; }
.success-step-card-3 { animation-delay: 0.6s; }

@keyframes successCardFade {
  to { opacity: 1; }
}

.success-step-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.success-step-num-landing {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dim) 100%);
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  box-shadow: 0 0 20px rgba(247, 127, 0, 0.4);
}

.success-step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.success-step-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

.success-step-connector {
  width: 2px;
  height: 24px;
  background: linear-gradient(180deg, var(--red), transparent);
  margin: 0 auto;
  opacity: 0.5;
}

/* WhatsApp callout */
.success-whatsapp-callout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.12) 0%, rgba(37, 211, 102, 0.06) 100%);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: var(--radius);
  text-align: right;
}

@media (min-width: 480px) {
  .success-whatsapp-callout { gap: 1rem; padding: 1.25rem 1.5rem; }
}

.success-wa-icon {
  font-size: 2rem;
}

.success-whatsapp-callout strong {
  display: block;
  color: var(--text);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.success-whatsapp-callout span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Trust card */
.success-trust-section {
  padding: 2rem 0;
}

@media (min-width: 480px) {
  .success-trust-section { padding: 2.5rem 0; }
}

.success-trust-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  text-align: right;
}

@media (min-width: 480px) {
  .success-trust-card { gap: 1rem; padding: 1.5rem; }
}

.success-trust-lock {
  font-size: 2rem;
  flex-shrink: 0;
}

.success-trust-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--red-bright);
  margin-bottom: 0.5rem;
}

.success-trust-card .body-text {
  margin-bottom: 0;
}

/* Success page - mobile: single screen, no scroll */
@media (max-width: 479px) {
  .success-page {
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }

  .success-page-inner {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .success-hero {
    flex-shrink: 0;
    padding: 1rem 0 0.75rem;
  }

  .success-hero .hero-desc {
    display: none;
  }

  .success-hero-title {
    font-size: 1.5rem;
    line-height: 1.25;
    margin-top: 0.25rem;
  }

  .success-hero-sub {
    font-size: 1rem;
    margin-bottom: 0;
  }

  .success-check-wrap-landing {
    width: 56px;
    height: 56px;
    margin: 0 auto 0.75rem;
  }

  .success-check-wrap-landing .success-check-icon {
    width: 28px;
    height: 28px;
  }

  .success-steps-section {
    flex: 1;
    min-height: 0;
    padding: 0.75rem 0 0.5rem;
    display: flex;
    flex-direction: column;
  }

  .success-steps-section .container {
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .success-section-title {
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }

  .success-steps-intro {
    display: none;
  }

  .success-steps-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 0.5rem;
  }

  .success-step-connector {
    flex-shrink: 0;
    height: 12px;
  }

  .success-step-card {
    flex: 1;
    min-height: 0;
    padding: 0.75rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
  }

  .success-step-card p {
    display: block;
    font-size: 0.8rem;
    line-height: 1.45;
    margin: 0;
  }

  .success-step-icon {
    font-size: 1.35rem;
    margin-bottom: 0.3rem;
  }

  .success-step-num-landing {
    width: 26px;
    height: 26px;
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
  }

  .success-step-title {
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
  }

  .success-whatsapp-callout {
    flex-shrink: 0;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
  }

  .success-whatsapp-callout strong {
    font-size: 0.95rem;
  }

  .success-whatsapp-callout span {
    font-size: 0.82rem;
  }

  .success-wa-icon {
    font-size: 1.35rem;
  }

  .success-trust-section {
    flex-shrink: 0;
    padding: 0.5rem 0;
  }

  .success-trust-card {
    gap: 0.5rem;
    padding: 0.6rem 1rem;
  }

  .success-trust-card .body-text {
    display: none;
  }

  .success-trust-lock {
    font-size: 1.35rem;
  }

  .success-trust-title {
    font-size: 0.95rem;
    margin-bottom: 0;
  }

  .success-footer {
    flex-shrink: 0;
    padding: 0.6rem 0;
    padding-bottom: calc(0.5rem + env(safe-area-inset-bottom));
  }

  .success-footer .footer-brand {
    font-size: 0.9rem;
  }

  .success-footer .footer-copy {
    font-size: 0.75rem;
  }

  .success-page-glow {
    height: 200px;
  }
}

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

@keyframes optionSelected {
  0% { transform: scale(0.98); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

.btn-option:active {
  transform: scale(0.98);
}

.step-message {
  margin-bottom: 1rem;
  color: var(--text-muted);
  text-align: center;
}

.step-question {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--text);
  text-align: center;
}

.step-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (max-width: 480px) {
  .step-buttons { gap: 0.65rem; }
}

.step-input {
  margin-bottom: 1rem;
  position: relative;
}

.step-input-phone {
  display: flex;
  flex-direction: row-reverse;
  align-items: stretch;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: #f8fafc;
  overflow: hidden;
}

.step-input-phone .phone-prefix,
.step-input-phone .phone-country {
  display: flex;
  align-items: center;
  padding: 0.9rem 0.7rem;
  background: rgba(247, 127, 0, 0.12);
  color: var(--red-bright);
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  border-inline-start: 1px solid var(--border);
  font-family: var(--font);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23e06900' d='M6 8L2 4h8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.6rem center;
  padding-inline-end: 1.6rem;
}

.step-input-phone .phone-country {
  min-width: 6rem;
  color: var(--red-bright);
  -webkit-appearance: none;
  -moz-appearance: none;
}

.step-input-phone .phone-country option {
  background: #ffffff;
  color: var(--text);
}

@media (min-width: 480px) {
  .step-input-phone .phone-prefix,
  .step-input-phone .phone-country { padding: 1rem 0.85rem; font-size: 0.95rem; }
}

.step-input-phone input {
  flex: 1;
  border: none;
  border-radius: 0;
  margin: 0;
  min-width: 0;
  text-align: left;
  direction: ltr;
  padding: 0.9rem 1rem;
}

.step-input-phone input:focus {
  outline: none;
  box-shadow: none;
}

.step-input-phone.input-error-wrap {
  border-color: #ef4444;
}

.input-error {
  display: block;
  color: #ef4444;
  font-size: 0.85rem;
  margin-top: 0.35rem;
}

.step-input input.input-error-border {
  border-color: #ef4444;
}

.btn-option-pulse {
  animation: optionSelected 0.3s ease;
}

.step-input input {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: #f8fafc;
  color: var(--text);
  font-size: 16px;
  font-family: var(--font);
}

@media (min-width: 480px) {
  .step-input input { padding: 1rem 1.25rem; }
}

.step-input input::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

.step-input input:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(247, 127, 0, 0.2);
}

/* Phone input override: container has border, input must not (prevents double border) */
.step-input-phone input,
.step-input-phone input:focus {
  border: none;
  box-shadow: none;
}

.btn-next-input, .btn-submit {
  width: 100%;
  margin-top: 0.75rem;
}

.step-input-phone + .btn-submit {
  margin-top: 1rem;
}

.form-nav {
  margin-top: 1.25rem;
  text-align: center;
}

.btn-back {
  background: transparent;
  color: var(--red-bright);
  font-size: 0.95rem;
}

.btn-back:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  padding: 1.5rem 0;
  text-align: center;
  border-top: 1px solid var(--border);
}

@media (min-width: 480px) {
  .footer { padding: 2rem 0; }
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-social {
  margin: 0 0 1rem;
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 4px 18px rgba(188, 24, 136, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 26px rgba(188, 24, 136, 0.45);
  color: #fff;
}

.btn-instagram:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.btn-instagram-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

/* ========== Scroll reveal animations ========== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.animate-on-scroll.animate-visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-on-scroll.animate-delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.animate-delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.animate-delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.animate-delay-4 { transition-delay: 0.4s; }

/* Typewriter */
.typewriter {
  display: inline-block;
  min-height: 1.35em;
}
.typewriter-text {
  display: inline;
}
.typewriter-cursor {
  display: inline-block;
  margin-inline-start: 2px;
}
.typewriter-cursor-blink {
  animation: typewriter-blink 0.7s step-end infinite;
}
@keyframes typewriter-blink {
  50% { opacity: 0; }
}

/* ========== Page visuals: blobs, motion, graphics ========== */
.page-blobs {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.page-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  opacity: 0.45;
  animation: blob-drift 22s ease-in-out infinite;
}

.page-blob--1 {
  width: min(420px, 90vw);
  height: min(420px, 90vw);
  top: -8%;
  left: -12%;
  background: radial-gradient(circle, rgba(0, 146, 150, 0.35) 0%, transparent 70%);
  animation-delay: 0s;
}

.page-blob--2 {
  width: min(380px, 85vw);
  height: min(380px, 85vw);
  top: 35%;
  right: -15%;
  background: radial-gradient(circle, rgba(247, 127, 0, 0.22) 0%, transparent 68%);
  animation-delay: -7s;
}

.page-blob--3 {
  width: min(480px, 100vw);
  height: min(480px, 100vw);
  bottom: -12%;
  left: 10%;
  background: radial-gradient(circle, rgba(0, 35, 126, 0.12) 0%, transparent 72%);
  animation-delay: -14s;
}

@keyframes blob-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(4%, 3%) scale(1.05); }
  66% { transform: translate(-3%, 2%) scale(0.96); }
}

.hero,
.wave-divider,
.section,
.footer {
  position: relative;
  z-index: 1;
}

.hero {
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 35, 126, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 35, 126, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, transparent 85%);
  pointer-events: none;
}

.hero-emoji-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
  margin-bottom: 1rem;
}

.emoji-float {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.35rem, 4.5vw, 1.85rem);
  line-height: 1;
  animation: emoji-bob 3.2s ease-in-out infinite;
  filter: drop-shadow(0 2px 6px rgba(15, 23, 42, 0.08));
}

.emoji-float--1 { animation-delay: 0s; }
.emoji-float--2 { animation-delay: -0.5s; }
.emoji-float--3 { animation-delay: -1s; }
.emoji-float--4 { animation-delay: -1.5s; }
.emoji-float--5 { animation-delay: -2s; }

@keyframes emoji-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.wave-divider {
  color: #ffffff;
  line-height: 0;
  margin-top: -1px;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: clamp(28px, 5vw, 40px);
}

.vsl-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 0 auto 0.75rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(247, 127, 0, 0.12);
  color: var(--red-dim);
  font-weight: 700;
  font-size: 0.88rem;
}

.vsl-kicker-icon {
  display: inline-flex;
  width: 1.35rem;
  height: 1.35rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dim) 100%);
  color: #fff;
  font-size: 0.55rem;
  line-height: 1;
  animation: play-pulse 2s ease-in-out infinite;
}

@keyframes play-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(247, 127, 0, 0.35); }
  50% { transform: scale(1.06); box-shadow: 0 0 0 8px rgba(247, 127, 0, 0); }
}

.vsl-video-wrap--glow {
  box-shadow:
    var(--shadow),
    var(--glow-red),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
}

.section-title--with-icon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35em 0.5em;
}

.section-title-emoji {
  font-size: 1.15em;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(15, 23, 42, 0.06));
}

.example-card-emoji {
  display: block;
  font-size: 2.25rem;
  line-height: 1;
  margin-bottom: 0.5rem;
  animation: emoji-bob 3.5s ease-in-out infinite;
}

.example-card:nth-child(2) .example-card-emoji { animation-delay: -0.8s; }
.example-card:nth-child(3) .example-card-emoji { animation-delay: -1.6s; }

.inline-emoji {
  margin-inline-end: 0.2em;
}

.section-accent--pattern {
  background-image:
    radial-gradient(rgba(0, 35, 126, 0.06) 1px, transparent 1px);
  background-size: 20px 20px;
}

.media-placeholder--rich {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 8.5rem;
  padding: 1.75rem 1rem;
  background:
    linear-gradient(135deg, rgba(247, 127, 0, 0.07) 0%, rgba(0, 146, 150, 0.06) 50%, rgba(0, 35, 126, 0.05) 100%);
  border-style: solid;
  border-width: 2px;
  border-color: rgba(0, 35, 126, 0.12);
}

.media-placeholder-text {
  margin: 0;
  max-width: 28rem;
  line-height: 1.6;
}

.media-placeholder-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.ph-ico {
  font-size: clamp(1.75rem, 6vw, 2.5rem);
  line-height: 1;
  animation: ph-float 4s ease-in-out infinite;
}

.ph-ico--b { animation-delay: -1.3s; }
.ph-ico--c { animation-delay: -2.6s; }

@keyframes ph-float {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-10px) rotate(3deg); }
}

/* ========== Empty mockups: horizontal carousel (results + testimonials) ========== */
.mockups-block {
  margin: 1.25rem 0 1rem;
  padding: 1.25rem 0.75rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(241, 245, 249, 0.95) 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.mockups-block--carousel {
  padding-inline: 0;
  padding-block: 1rem 1.1rem;
  position: relative;
  overflow: hidden;
}

.mockups-block--carousel::before,
.mockups-block--carousel::after {
  content: '';
  position: absolute;
  top: 0.5rem;
  bottom: 0.85rem;
  width: 1.25rem;
  z-index: 1;
  pointer-events: none;
}

.mockups-block--carousel::before {
  inset-inline-start: 0;
  background: linear-gradient(to inline-end, rgba(255, 255, 255, 0.97), transparent);
}

.mockups-block--carousel::after {
  inset-inline-end: 0;
  background: linear-gradient(to inline-start, rgba(255, 255, 255, 0.97), transparent);
}

.mockups-carousel-outer {
  width: 100%;
}

.mockups-carousel {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 1rem;
  padding-inline: 1rem;
  padding-block: 0.25rem 0.65rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(247, 127, 0, 0.45) rgba(0, 35, 126, 0.06);
}

.mockups-carousel::-webkit-scrollbar {
  height: 6px;
}

.mockups-carousel::-webkit-scrollbar-track {
  background: rgba(0, 35, 126, 0.06);
  border-radius: 999px;
}

.mockups-carousel::-webkit-scrollbar-thumb {
  background: rgba(247, 127, 0, 0.45);
  border-radius: 999px;
}

.mockups-carousel-item {
  flex: 0 0 auto;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  width: min(78vw, 260px);
}

.mockups-carousel--videos .mockups-carousel-item {
  width: min(82vw, 300px);
}

.mockups-carousel-item .mock-browser,
.mockups-carousel-item .mock-phone,
.mockups-carousel-item .mock-video-card {
  width: 100%;
  max-width: none;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .mockups-carousel-item {
    width: 228px;
  }

  .mockups-carousel--videos .mockups-carousel-item {
    width: 268px;
  }
}

/* Review videos (same carousel wrapper — avoid clipping tall frames) */
.reviews-video-block.mockups-block--carousel {
  overflow: visible;
}

.reviews-video-block.mockups-block--carousel::before {
  background: linear-gradient(to inline-end, rgba(255, 255, 255, 0.98), transparent);
}

.reviews-video-block.mockups-block--carousel::after {
  background: linear-gradient(to inline-start, rgba(255, 255, 255, 0.98), transparent);
}

ul.reviews-video-carousel {
  list-style: none;
  margin: 0;
}

ul.mockups-carousel.reviews-video-carousel {
  overflow-x: auto;
  overflow-y: visible;
  align-items: flex-start;
}

.reviews-video-item .reviews-video-card {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.14);
}

.reviews-video {
  width: 100%;
  height: auto;
  max-height: min(72vh, 520px);
  display: block;
  object-fit: contain;
  vertical-align: middle;
  -webkit-tap-highlight-color: transparent;
}

.reviews-video-hint {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 auto 1.25rem;
  max-width: 28rem;
  line-height: 1.55;
}

/* Results screenshots carousel */
.results-screens-block.mockups-block--carousel {
  overflow: visible;
}

ul.results-screens-carousel {
  list-style: none;
  margin: 0;
  align-items: flex-start;
  overflow-y: visible;
}

.results-screens-carousel .mockups-carousel-item {
  width: min(76vw, 270px);
}

@media (min-width: 640px) {
  .results-screens-carousel .mockups-carousel-item {
    width: 240px;
  }
}

.results-screen-card {
  margin: 0;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.14);
}

.results-screen-img {
  width: 100%;
  height: auto;
  display: block;
  max-height: min(68vh, 520px);
  object-fit: contain;
  object-position: top center;
  vertical-align: middle;
  -webkit-tap-highlight-color: transparent;
}

.results-screens-hint {
  margin-top: 0.35rem;
  margin-bottom: 1rem;
}

.section-dark .results-screens-hint {
  color: rgba(248, 250, 252, 0.72);
}

/* Browser / dashboard frame */
.mock-browser {
  width: 100%;
  max-width: 220px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(0, 35, 126, 0.1);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
}

.mock-browser--tall .mock-browser-body {
  min-height: 140px;
}

.mock-browser-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0.45rem 0.65rem;
  background: linear-gradient(180deg, #e8edf5 0%, #dce3ee 100%);
  border-bottom: 1px solid rgba(0, 35, 126, 0.08);
}

.mock-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #cbd5e1;
}

.mock-dot:nth-child(1) { background: #fca5a5; }
.mock-dot:nth-child(2) { background: #fcd34d; }
.mock-dot:nth-child(3) { background: #86efac; }

.mock-browser-body {
  padding: 0.75rem;
  min-height: 110px;
  background: linear-gradient(165deg, #f8fafc 0%, #eef2f7 100%);
}

.mock-chart-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 6px;
  height: 52px;
  margin-bottom: 0.65rem;
  padding: 0 0.15rem;
}

.mock-chart-bars span {
  flex: 1;
  max-width: 28px;
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(180deg, rgba(0, 146, 150, 0.45) 0%, rgba(0, 146, 150, 0.2) 100%);
}

.mock-chart-bars span:nth-child(1) { height: 38%; }
.mock-chart-bars span:nth-child(2) { height: 58%; }
.mock-chart-bars span:nth-child(3) { height: 45%; }
.mock-chart-bars span:nth-child(4) { height: 78%; }
.mock-chart-bars span:nth-child(5) { height: 52%; }

.mock-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mock-lines span {
  display: block;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, #e2e8f0 0%, #cbd5e1 100%);
}

.mock-lines span:nth-child(2) { width: 88%; margin-inline-start: auto; }
.mock-lines span:nth-child(3) { width: 72%; }

.mock-lines--narrow span:nth-child(1) { width: 100%; }
.mock-lines--narrow span:nth-child(2) { width: 85%; margin-inline: auto; }
.mock-lines--narrow span:nth-child(3) { width: 70%; margin-inline-start: 0; }
.mock-lines--narrow span:nth-child(4) { width: 92%; }

.mock-pills {
  display: flex;
  gap: 6px;
  margin-bottom: 0.65rem;
  flex-wrap: wrap;
}

.mock-pills span {
  height: 22px;
  width: 48%;
  min-width: 72px;
  border-radius: 999px;
  background: rgba(247, 127, 0, 0.15);
  border: 1px solid rgba(247, 127, 0, 0.2);
}

.mock-grid-cells {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.mock-grid-cells span {
  aspect-ratio: 1.2;
  border-radius: 6px;
  background: linear-gradient(145deg, #e2e8f0 0%, #f1f5f9 100%);
  border: 1px solid rgba(0, 35, 126, 0.06);
}

/* Phone frame */
.mock-phone {
  width: 100%;
  max-width: 200px;
  padding: 8px 10px 12px;
  border-radius: 22px;
  background: linear-gradient(145deg, #1e293b 0%, #334155 100%);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.18);
}

.mock-phone-notch {
  width: 36%;
  height: 5px;
  margin: 0 auto 8px;
  border-radius: 0 0 8px 8px;
  background: #0f172a;
}

.mock-phone-screen {
  border-radius: 14px;
  overflow: hidden;
  padding: 0.75rem;
  min-height: 128px;
  background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
}

.mock-spark {
  width: 44px;
  height: 44px;
  margin: 0 auto 0.65rem;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(247, 127, 0, 0.35) 0%, rgba(0, 146, 150, 0.15) 50%, transparent 70%);
  border: 2px dashed rgba(247, 127, 0, 0.25);
}

/* Video testimonial cards */
.mock-video-card {
  width: 100%;
  max-width: 280px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.07);
}

.mock-video-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 45%, #94a3b8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-video-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -12deg,
    transparent,
    transparent 8px,
    rgba(255, 255, 255, 0.06) 8px,
    rgba(255, 255, 255, 0.06) 9px
  );
  pointer-events: none;
}

.mock-play-btn {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.15);
}

.mock-play-btn::after {
  content: '';
  position: absolute;
  left: 52%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 14px;
  border-color: transparent transparent transparent var(--red);
}

.mock-video-meta {
  padding: 0.55rem 0.65rem 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: stretch;
}

.mock-video-line {
  display: block;
  height: 7px;
  border-radius: 4px;
  background: #e2e8f0;
  width: 100%;
}

.mock-video-line--short {
  width: 55%;
  margin-inline-start: auto;
}

.faq-q-emoji {
  margin-inline-end: 0.35em;
}

.form-urgency-emoji {
  animation: hourglass-tilt 2.5s ease-in-out infinite;
}

@keyframes hourglass-tilt {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-8deg); }
  75% { transform: rotate(8deg); }
}

.floating-cta-emoji {
  font-size: 1.05em;
  animation: sparkle-wiggle 2.2s ease-in-out infinite;
}

@keyframes sparkle-wiggle {
  0%, 100% { transform: scale(1) rotate(0deg); }
  40% { transform: scale(1.15) rotate(-12deg); }
  60% { transform: scale(1.1) rotate(10deg); }
}

.floating-cta--pulse {
  animation: cta-bar-glow 3s ease-in-out infinite;
}

@keyframes cta-bar-glow {
  0%, 100% { box-shadow: 0 -4px 24px rgba(247, 127, 0, 0.22), 0 0 20px rgba(0, 35, 126, 0.06); }
  50% { box-shadow: 0 -6px 32px rgba(247, 127, 0, 0.32), 0 0 28px rgba(0, 146, 150, 0.1); }
}

.footer-brand-ico {
  font-size: 1.15em;
  animation: emoji-bob 4s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .page-blob,
  .emoji-float,
  .example-card-emoji,
  .ph-ico,
  .form-urgency-emoji,
  .floating-cta-emoji,
  .floating-cta--pulse,
  .vsl-kicker-icon,
  .footer-brand-ico {
    animation: none !important;
  }

  .page-blob {
    transform: none !important;
  }
}
