/* ─── Reset & Design Tokens ─── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0a0a0a;
  --primary: #c9a84c;
  --secondary: #1a1a2e;
  --text: #e0e0e0;
  --highlight: #f5f5f5;
  --font-body: 'Inter', sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  --text-muted: rgba(224, 224, 224, 0.55);
  --text-faint: rgba(224, 224, 224, 0.35);
  --border-subtle: rgba(201, 168, 76, 0.1);
  --border-hover: rgba(201, 168, 76, 0.25);
  --card-bg: rgba(255, 255, 255, 0.02);
  --card-bg-hover: rgba(255, 255, 255, 0.04);
  --glass-bg: rgba(10, 10, 10, 0.85);
  --success: #4ade80;
  --error: #ef4444;

  --max-width: 1000px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ─── Navbar ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}

.navbar.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.85rem 2rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.nav-logo {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--highlight);
  letter-spacing: 0.02em;
}

.nav-logo .dot {
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(224, 224, 224, 0.6);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--primary);
  color: var(--primary) !important;
  font-weight: 500 !important;
  transition: background 0.3s, color 0.3s;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--primary);
  color: var(--bg) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(900px, 90vw);
  height: min(900px, 90vw);
  opacity: 0.04;
}

.hero-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
}

.hero-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--highlight);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-tagline em {
  font-style: italic;
  color: var(--primary);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 3rem;
  font-weight: 300;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.35s, color 0.35s, transform 0.3s;
  cursor: pointer;
  background: transparent;
}

.cta-btn:hover {
  background: var(--primary);
  color: var(--bg);
  transform: translateY(-2px);
}

.cta-btn-primary {
  background: var(--primary);
  color: var(--bg);
}

.cta-btn-primary:hover {
  background: #d4b35a;
  color: var(--bg);
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.3;
}

.scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ─── Section Base ─── */
section {
  padding: 7rem 2rem;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--highlight);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-subtext {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.8;
}

.section-subtext.center {
  margin: 0 auto;
  text-align: center;
}

.divider {
  max-width: var(--max-width);
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.15), transparent);
}

/* ─── Problem Section ─── */
.problem-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.9;
  margin-bottom: 3rem;
}

.problem-intro strong {
  color: var(--highlight);
  font-weight: 500;
}

.problem-closer {
  margin-top: 3rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--highlight);
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.pain-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  padding: 2rem;
  transition: border-color 0.4s, transform 0.3s, background 0.4s;
  position: relative;
  overflow: hidden;
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.pain-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  background: var(--card-bg-hover);
}

.pain-card:hover::before {
  opacity: 1;
}

.pain-card-icon {
  width: 36px;
  height: 36px;
  color: var(--primary);
  opacity: 0.7;
  margin-bottom: 1.25rem;
}

.pain-card h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--highlight);
  margin-bottom: 0.75rem;
}

.pain-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ─── Features Section ─── */
#features {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(26, 26, 46, 0.15) 50%, var(--bg) 100%);
}

.features-intro {
  text-align: center;
  margin-bottom: 3.5rem;
}

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

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  padding: 2rem;
  transition: border-color 0.4s, transform 0.3s, background 0.4s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  background: var(--card-bg-hover);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 36px;
  height: 36px;
  color: var(--primary);
  opacity: 0.7;
  margin-bottom: 1.25rem;
}

.feature-card h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--highlight);
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ─── How It Works ─── */
.steps-flow {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

.steps-flow::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.66% + 28px);
  right: calc(16.66% + 28px);
  height: 1px;
  border-top: 1px dashed rgba(201, 168, 76, 0.25);
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--primary);
  background: var(--bg);
  position: relative;
  z-index: 1;
}

.step h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--highlight);
  margin-bottom: 0.75rem;
}

.step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 260px;
  margin: 0 auto;
}

/* ─── Who It's For ─── */
.audience-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.audience-tag {
  padding: 0.85rem 1.75rem;
  border: 1px solid var(--border-subtle);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text);
  transition: border-color 0.3s, color 0.3s, transform 0.3s;
}

.audience-tag:hover {
  border-color: var(--border-hover);
  color: var(--primary);
  transform: translateY(-2px);
}

.audience-closer {
  text-align: center;
  margin-top: 3rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--highlight);
}

/* ─── Why Now ─── */
#why-now {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(26, 26, 46, 0.12) 50%, var(--bg) 100%);
}

.why-now-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.9;
  margin-bottom: 3rem;
}

.stats-row {
  display: flex;
  justify-content: flex-start;
  gap: 4rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--primary);
  font-weight: 600;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-faint);
  margin-top: 0.5rem;
}

/* ─── FAQ ─── */
.faq-list {
  max-width: 720px;
  margin: 3rem auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-item summary {
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--highlight);
  cursor: pointer;
  list-style: none;
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::marker {
  display: none;
  content: '';
  font-size: 0;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--text-faint);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item[open] summary::after {
  content: '\2212';
}

.faq-item summary:hover {
  color: var(--primary);
}

.faq-item p {
  padding: 0 0 1.25rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ─── Waitlist ─── */
.waitlist-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.waitlist-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--highlight);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.waitlist-copy p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.waitlist-perks {
  list-style: none;
}

.waitlist-perks li {
  font-size: 0.92rem;
  color: var(--text);
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.waitlist-perks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--primary);
  opacity: 0.6;
}

.waitlist-form {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.3s;
  outline: none;
}

.form-input:focus {
  border-color: var(--primary);
}

.form-input::placeholder {
  color: var(--text-faint);
}

.form-select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.3s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(224,224,224,0.35)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.form-select:focus {
  border-color: var(--primary);
}

.form-select option {
  background: var(--bg);
  color: var(--text);
}

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--primary);
  color: var(--bg);
  border: 1px solid var(--primary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.35s, transform 0.3s;
  margin-top: 0.5rem;
}

.form-submit:hover {
  background: #d4b35a;
  transform: translateY(-2px);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-error {
  font-size: 0.78rem;
  color: var(--error);
  margin-top: 0.35rem;
}

.form-success {
  text-align: center;
  padding: 2rem 0;
}

.form-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  animation: successPop 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-success-icon svg {
  width: 24px;
  height: 24px;
  color: var(--success);
}

.form-success h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--highlight);
  margin-bottom: 0.75rem;
}

.form-success p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.share-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.share-row span {
  font-size: 0.8rem;
  color: var(--text-faint);
}

.share-btn {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.share-btn:hover { opacity: 0.85; }

.share-whatsapp { background: #25d366; color: #fff; }
.share-twitter { background: #1d9bf0; color: #fff; }
.share-linkedin { background: #0a66c2; color: #fff; }

@keyframes successPop {
  0% { transform: scale(0.5); opacity: 0; }
  60% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

/* ─── Trust / Channels ─── */
.channels-text {
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 2.5rem;
}

.channels-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.channel-logo {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(224, 224, 224, 0.25);
  letter-spacing: 0.04em;
  transition: color 0.3s;
}

.channel-logo:hover {
  color: rgba(224, 224, 224, 0.5);
}

/* ─── Footer ─── */
footer {
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  padding: 3rem 2rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(224, 224, 224, 0.45);
  padding: 0.3rem 0;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.06);
}

.footer-brand {
  font-size: 0.82rem;
  color: rgba(224, 224, 224, 0.35);
}

.footer-brand a {
  color: rgba(224, 224, 224, 0.45);
  transition: color 0.3s;
}

.footer-brand a:hover {
  color: var(--primary);
}

.footer-right {
  text-align: right;
}

.footer-right p {
  font-size: 0.78rem;
  color: rgba(224, 224, 224, 0.25);
  line-height: 1.8;
}

.footer-right .made-in {
  font-size: 0.75rem;
  color: rgba(224, 224, 224, 0.35);
  margin-top: 0.25rem;
}

/* ─── Reveal Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    padding: 5rem 2.5rem;
    gap: 2rem;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-left: 1px solid rgba(201, 168, 76, 0.08);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1rem;
    color: var(--text);
  }

  .nav-cta {
    display: inline-block;
    width: fit-content;
  }

  .hero {
    padding: 5rem 1.5rem 3rem;
  }

  section {
    padding: 5rem 1.5rem;
  }

  .navbar {
    padding: 1rem 1.5rem;
  }

  .pain-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps-flow {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }

  .steps-flow::before {
    top: 28px;
    left: 50%;
    right: auto;
    width: 1px;
    height: calc(100% - 56px);
    border-top: none;
    border-left: 1px dashed rgba(201, 168, 76, 0.25);
  }

  .step {
    width: 100%;
    max-width: 300px;
  }

  .waitlist-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .stats-row {
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-top {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

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

@media (max-width: 480px) {
  .hero-tagline {
    font-size: 2.4rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .pain-card,
  .feature-card,
  .waitlist-form {
    padding: 1.75rem;
  }

  .channels-row {
    gap: 2rem;
  }
}
