* {
  box-sizing: border-box;
}

:root {
  --bg: #050509;
  --bg-soft: #111018;
  --bg-softer: #181625;
  --primary: #a855f7;
  --primary-soft: rgba(168, 85, 247, 0.1);
  --text: #f9fafb;
  --muted: #9ca3af;
  --danger: #f97373;
  --border: #27272f;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 999px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.55);
}

body {
  margin: 0;
  font-family: 'Cairo', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top left, #1e1635, var(--bg));
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero {
  padding: 3.5rem 0 2.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(90deg, rgba(168, 85, 247, 0.2), rgba(15, 23, 42, 0.9));
  font-size: 0.8rem;
  color: var(--muted);
}

.hero h1 {
  font-size: 2.4rem;
  margin: 1.5rem 0 1rem;
}

.hero p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.hero-points {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  color: var(--muted);
}

.hero-points li {
  margin-bottom: 0.4rem;
}

.hero-cta {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  border-radius: 999px;
  padding: 0.85rem 1.6rem;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #a855f7, #ec4899);
  color: #f9fafb;
  box-shadow: 0 12px 25px rgba(168, 85, 247, 0.45);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 35px rgba(168, 85, 247, 0.7);
}

.btn-ghost {
  background: rgba(15, 23, 42, 0.9);
  color: var(--muted);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.98);
}

.btn-block {
  width: 100%;
}

.hero-offer {
  margin-top: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-offer .price {
  font-weight: 700;
  color: #f97316;
}

.hero-offer .note {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.mobile-frame {
  width: 100%;
  max-width: 330px;
  border-radius: 32px;
  padding: 0.9rem;
  background: radial-gradient(circle at top, #3b0764, #020617);
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: var(--shadow-soft);
}

.mobile-frame video,
.mobile-frame iframe {
  width: 100%;
  border-radius: 24px;
  display: block;
}

.test-note {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 480px;
}

.video-caption {
  font-size: 0.8rem;
  color: var(--muted);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

section {
  padding: 2.4rem 0;
}

h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  color: var(--muted);
}

.list li {
  margin-bottom: 0.4rem;
}

.card-highlight {
  background: linear-gradient(145deg, rgba(168, 85, 247, 0.12), rgba(15, 23, 42, 0.96));
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.4rem;
  border: 1px solid rgba(168, 85, 247, 0.35);
  box-shadow: var(--shadow-soft);
}

.card-highlight h3 {
  margin-top: 0;
}

.pain-section {
  background: radial-gradient(circle at top right, rgba(239, 68, 68, 0.12), transparent);
}

.how-section {
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.12), transparent);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.6rem;
}

.step {
  background: rgba(15, 23, 42, 0.96);
  border-radius: var(--radius-md);
  padding: 1.2rem 1rem;
  border: 1px solid var(--border);
}

.icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.who-section {
  background: radial-gradient(circle at bottom, rgba(168, 85, 247, 0.12), transparent);
}

.tags-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.tag-card {
  background: rgba(15, 23, 42, 0.96);
  border-radius: var(--radius-md);
  padding: 1.2rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.offer-section {
  background: linear-gradient(135deg, #020617, #020617 45%, #1e1035 100%);
}

.offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: stretch;
}

.offer-card {
  background: rgba(15, 23, 42, 0.96);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.4rem;
  border: 1px solid rgba(168, 85, 247, 0.6);
  box-shadow: var(--shadow-soft);
}

.badge-ghost {
  margin-top: 1rem;
  display: inline-flex;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  background: rgba(168, 85, 247, 0.1);
  color: var(--primary);
  font-size: 0.8rem;
}

.form-card {
  background: rgba(15, 23, 42, 0.96);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.4rem 1.8rem;
  border: 1px solid rgba(55, 65, 81, 0.8);
}

.field {
  margin-bottom: 0.9rem;
}

.field label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: rgba(15, 23, 42, 0.98);
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(168, 85, 247, 0.7);
  outline-offset: 1px;
}

.form-note {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.hidden {
  display: none;
}

.features-section {
  background: radial-gradient(circle at top, rgba(37, 99, 235, 0.16), transparent);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.feature {
  background: rgba(15, 23, 42, 0.96);
  border-radius: var(--radius-md);
  padding: 1.2rem 1rem;
  border: 1px solid var(--border);
}

.footer {
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  padding: 1.6rem 0 2.4rem;
  background: #020617;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  align-items: center;
}

.footer p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-cta {
  font-size: 0.9rem;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  background: rgba(15, 23, 42, 0.96);
}

.footer-cta:hover {
  background: rgba(15, 23, 42, 1);
}

/* Thank you page */

.thank-body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top left, #1e1635, var(--bg));
}

.thank-main {
  width: 100%;
  max-width: 520px;
  padding: 1.5rem;
}

.thank-card {
  background: rgba(15, 23, 42, 0.98);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.6rem 2rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.thank-card h1 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.thank-card p {
  color: var(--muted);
  margin-top: 0.4rem;
}

.whatsapp-box {
  margin: 0.8rem 0 1.2rem;
  padding: 0.75rem 0.8rem;
  border-radius: 12px;
  background: rgba(22, 163, 74, 0.12);
  border: 1px solid rgba(22, 163, 74, 0.6);
  font-size: 0.95rem;
}

@media (max-width: 960px) {
  .hero-grid,
  .section-grid,
  .offer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 2.2rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tags-grid,
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .steps-grid,
  .tags-grid,
  .features-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-cta {
    flex-direction: column;
  }
}
