/* =====================================================
   PUX LANDING PAGE — styles.css
   Mobile-first | Lighthouse 95+ ready
   Sections: Reset → Tokens → Base → Layout →
             Nav → Hero → Pain → Solution →
             How → Features → Niches → Objections →
             Testimonials → Demo → CTA → Footer →
             Utilities → Animations → Responsive
===================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

input,
button,
select,
textarea {
  font: inherit;
}

ul[role="list"],
ol[role="list"] {
  list-style: none;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   DESIGN TOKENS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
:root {
  /* Colors */
  --navy:         #080d1a;
  --navy-mid:     #0e1629;
  --navy-light:   #151f38;
  --navy-card:    #111827;

  --primary:       #4F46E5;
  --primary-dark:  #4338CA;
  --primary-light: #6366F1;
  --accent:        #7C3AED;
  --accent-light:  #A78BFA;

  --green:  #10B981;
  --red:    #EF4444;
  --yellow: #F59E0B;

  --white:     #FFFFFF;
  --gray-50:   #F9FAFB;
  --gray-100:  #F3F4F6;
  --gray-200:  #E5E7EB;
  --gray-300:  #D1D5DB;
  --gray-400:  #9CA3AF;
  --gray-500:  #6B7280;
  --gray-600:  #4B5563;
  --gray-700:  #374151;
  --gray-800:  #1F2937;
  --gray-900:  #111827;

  /* Gradients */
  --grad-primary: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  --grad-text:    linear-gradient(135deg, #818CF8 0%, #A78BFA 100%);
  --grad-glow:    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(79,70,229,.35) 0%, transparent 70%);
  --grad-hero:    radial-gradient(ellipse 60% 40% at 60% 30%, rgba(124,58,237,.25) 0%, transparent 60%),
                  radial-gradient(ellipse 50% 40% at 30% 60%, rgba(79,70,229,.2) 0%, transparent 50%);

  /* Shadows */
  --shadow-sm:  0 1px 2px rgba(0,0,0,.05);
  --shadow:     0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1);
  --shadow-md:  0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
  --shadow-lg:  0 20px 25px -5px rgba(0,0,0,.15), 0 8px 10px -6px rgba(0,0,0,.1);
  --shadow-xl:  0 40px 60px -10px rgba(0,0,0,.3);
  --shadow-glow: 0 0 0 1px rgba(79,70,229,.15), 0 20px 50px rgba(79,70,229,.3);
  --shadow-card: 0 4px 24px rgba(0,0,0,.08);

  /* Border radius */
  --r-sm:   6px;
  --r:      10px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 9999px;

  /* Typography */
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  /* Layout */
  --max-w:   1160px;
  --pad-x:   20px;
  --nav-h:   68px;

  /* Transitions */
  --ease:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.0, 0, 0.2, 1);
  --dur-fast: 150ms;
  --dur:      250ms;
  --dur-slow: 400ms;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BASE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

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

strong {
  font-weight: 700;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   LAYOUT UTILITIES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

section {
  padding-block: 80px;
}

.br-desktop { display: none; }

/* ─── Section typography ─── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(79,70,229,.08);
  border: 1px solid rgba(79,70,229,.2);
  border-radius: var(--r-full);
  padding: 5px 14px;
  margin-bottom: 20px;
}
.section-label--light {
  color: var(--accent-light);
  background: rgba(167,139,250,.1);
  border-color: rgba(167,139,250,.2);
}
.section-label--red {
  color: var(--red);
  background: rgba(239,68,68,.08);
  border-color: rgba(239,68,68,.2);
}
.section-label--white {
  color: white;
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
}

.section-title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.section-title.text-dark {
  color: var(--navy);
}
.section-title--light {
  color: var(--white);
}

.section-subtitle {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--gray-500);
  max-width: 560px;
  margin-bottom: 56px;
  line-height: 1.7;
}
.section-subtitle--light {
  color: rgba(255,255,255,.65);
}

.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-dark  { color: var(--navy); }
.text-red   { color: var(--red); }
.text-accent-bright { color: var(--accent-light); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BUTTONS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  border-radius: var(--r-full);
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease),
              opacity var(--dur-fast);
  white-space: nowrap;
  user-select: none;
}
.btn:focus-visible {
  outline: 3px solid var(--primary-light);
  outline-offset: 3px;
}
.btn:active {
  transform: scale(0.97) !important;
}

/* Sizes */
.btn--sm  { font-size: 13px; padding: 8px 18px; }
.btn--md  { font-size: 15px; padding: 12px 24px; }
.btn--lg  { font-size: 16px; padding: 15px 32px; }
.btn--xl  { font-size: 15px; padding: 14px 24px; max-width: 280px; width: 100%; }
.btn--full { width: 100%; }

/* btn--xl desktop */
@media (min-width: 640px) {
  .btn--xl { font-size: 18px; padding: 18px 42px; max-width: none; }
}

/* Variants */
.btn--primary {
  background: var(--grad-primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(79,70,229,.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(79,70,229,.5);
}

.btn--ghost {
  background: rgba(255,255,255,.07);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.15);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.25);
  transform: translateY(-1px);
}

.btn--white {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-lg);
}
.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0,0,0,.2);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NAVIGATION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              backdrop-filter var(--dur);
}

.nav--scrolled {
  background: rgba(8,13,26,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-text {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
}

.nav__logo-img {
  height: 70px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
  z-index: 10000;
  justify-content: center;
  align-items: center;
  -webkit-tap-highlight-color: transparent;
}
.nav__toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease),
              opacity var(--dur),
              width var(--dur);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__links {
  display: none;
  list-style: none;
}

.nav__links--open {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
  background: var(--navy);
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 9999;
  padding: 80px 24px 40px;
  opacity: 1;
  animation: navOpen 0.25s ease-out forwards;
}

.nav__links--open li {
  width: 100%;
  text-align: center;
  list-style: none;
}

.nav__links--open a {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--white) !important;
  padding: 12px 0;
  -webkit-text-fill-color: var(--white) !important;
}

@keyframes navOpen {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav__login {
  color: rgba(255,255,255,.7) !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  transition: color var(--dur-fast);
}
.nav__login:hover {
  color: var(--white) !important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero {
  position: relative;
  background: var(--navy);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: 0;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
  pointer-events: none;
}

.hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 80%);
}

.hero__inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding-block: 60px;
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: 600px;
}

/* Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-light);
  background: rgba(124,58,237,.1);
  border: 1px solid rgba(124,58,237,.25);
  border-radius: var(--r-full);
  padding: 6px 16px 6px 10px;
  margin-bottom: 28px;
}

.badge-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* H1 */
.hero__title {
  font-size: clamp(36px, 6.5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: 24px;
}

/* Subtitle */
.hero__subtitle {
  font-size: clamp(17px, 2.2vw, 20px);
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  margin-bottom: 28px;
}

/* Urgency microcopy */
.hero__urgency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(239,68,68,.85);
  background: rgba(239,68,68,.06);
  border: 1px solid rgba(239,68,68,.15);
  border-radius: var(--r-full);
  padding: 6px 14px;
  margin-bottom: 36px;
}

/* CTAs */
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

/* Social proof */
.hero__social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: rgba(255,255,255,.5);
}
.hero__social-proof strong { color: rgba(255,255,255,.8); }

.avatars {
  display: flex;
}
.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2.5px solid var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: white;
  margin-left: -10px;
  flex-shrink: 0;
}
.avatar:first-child { margin-left: 0; }
.av1 { background: linear-gradient(135deg, #6366F1, #4F46E5); }
.av2 { background: linear-gradient(135deg, #7C3AED, #6D28D9); }
.av3 { background: linear-gradient(135deg, #EC4899, #BE185D); }
.av4 { background: linear-gradient(135deg, #10B981, #059669); }

/* ─── Phone Mockup ─── */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.phone-wrap {
  position: relative;
  display: inline-flex;
  justify-content: center;
}

.phone {
  position: relative;
  width: 270px;
  aspect-ratio: 9/19;
  background: #1a1f35;
  border-radius: 38px;
  border: 2px solid rgba(255,255,255,.1);
  overflow: hidden;
  box-shadow:
    0 0 0 6px rgba(255,255,255,.04),
    inset 0 0 0 1px rgba(255,255,255,.06),
    var(--shadow-xl),
    0 0 60px rgba(79,70,229,.25);
}

.phone__notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: #0e1220;
  border-radius: 50px;
  z-index: 10;
}

.phone__screen {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #0a0f1a;
}

/* WA Header */
.wa-header {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #128c7e;
  padding: 14px 12px 10px;
  padding-top: 46px;
  flex-shrink: 0;
}

.wa-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

.wa-info { flex: 1; min-width: 0; }
.wa-name {
  font-size: 13px;
  font-weight: 700;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wa-status {
  font-size: 10px;
  color: rgba(255,255,255,.75);
  display: flex;
  align-items: center;
  gap: 4px;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  display: inline-block;
}

.wa-dots { flex-shrink: 0; }

/* Chat area */
.wa-chat {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
  background:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
    #0d1117;
}

.wa-date {
  text-align: center;
  font-size: 10px;
  color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.05);
  border-radius: 10px;
  padding: 2px 8px;
  align-self: center;
}

.msg {
  font-size: 11px;
  line-height: 1.5;
  padding: 7px 10px;
  border-radius: 10px;
  max-width: 85%;
  color: white;
  word-break: break-word;
}
.msg--in {
  background: rgba(255,255,255,.08);
  align-self: flex-start;
  border-bottom-left-radius: 2px;
}
.msg--out {
  background: linear-gradient(135deg, rgba(79,70,229,.7), rgba(124,58,237,.7));
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}

.wa-typing {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 8px 10px;
  background: rgba(255,255,255,.06);
  border-radius: 10px;
  width: 52px;
  border-bottom-left-radius: 2px;
  align-self: flex-start;
}
.wa-typing span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  animation: typing 1.4s ease-in-out infinite;
}
.wa-typing span:nth-child(2) { animation-delay: .2s; }
.wa-typing span:nth-child(3) { animation-delay: .4s; }

/* WA Input */
.wa-input {
  padding: 8px;
  background: #0a0f1a;
  flex-shrink: 0;
}
.wa-input-bar {
  background: rgba(255,255,255,.06);
  border-radius: 30px;
  padding: 8px 14px;
  font-size: 11px;
  color: rgba(255,255,255,.25);
}

/* ─── Stat Pills ─── */
.stat-pill {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(8,13,26,.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-md);
  padding: 10px 16px;
  box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out infinite;
}

.stat-pill--top {
  top: 20%;
  left: -50px;
  animation-delay: 0s;
}
.stat-pill--bottom {
  bottom: 20%;
  right: -50px;
  animation-delay: 2s;
}

.stat-pill__icon {
  font-size: 20px;
  flex-shrink: 0;
}
.stat-pill__value {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-pill__label {
  font-size: 11px;
  color: rgba(255,255,255,.5);
  white-space: nowrap;
}

/* ─── Logos Bar ─── */
.hero__logos {
  background: rgba(255,255,255,.03);
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 24px 0;
  position: relative;
  z-index: 1;
}
.logos__label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.3);
  text-align: center;
  margin-bottom: 16px;
}
.logos__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.logo-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.4);
  transition: color var(--dur-fast);
}
.logo-badge:hover { color: rgba(255,255,255,.7); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PAIN SECTION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.pain {
  background: var(--white);
}

.pain__layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 16px;
}

.pain__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pain__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 17px;
  color: var(--gray-700);
  line-height: 1.5;
  padding: 18px 20px;
  background: var(--gray-50);
  border-radius: var(--r-md);
  border: 1px solid var(--gray-200);
  transition: border-color var(--dur), transform var(--dur-fast);
}
.pain__item:hover {
  border-color: rgba(239,68,68,.2);
  transform: translateX(4px);
}

.pain__x {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(239,68,68,.08);
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

.pain__callout {
  background: var(--navy);
  border-radius: var(--r-xl);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.pain__callout::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
  pointer-events: none;
}

.pain__quote-mark {
  font-size: 80px;
  line-height: .5;
  font-weight: 900;
  color: rgba(255,255,255,.9);
  font-family: Georgia, serif;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.pain__callout blockquote {
  position: relative;
  z-index: 1;
}
.pain__callout blockquote p {
  font-size: clamp(17px, 2.5vw, 22px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 20px;
}

.pain__verdict {
  font-size: 16px;
  font-weight: 800;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SOLUTION SECTION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.solution {
  background: var(--gray-50);
}

.solution__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.sol__card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              border-color var(--dur);
}
.sol__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(79,70,229,.2);
}

.sol__card--accent {
  background: linear-gradient(135deg, #312e81 0%, #4c1d95 100%);
  border-color: transparent;
  color: white;
}
.sol__card--accent h3 {
  color: #ffffff;
}
.sol__card--accent p {
  color: #ffffff !important;
  opacity: 1;
  text-shadow: 0 1px 3px rgba(0,0,0,.4);
}

.sol__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: rgba(79,70,229,.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.sol__icon--white {
  background: rgba(255,255,255,.15);
  color: white;
}

.sol__card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.sol__card p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HOW IT WORKS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.how {
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}
.how::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-glow);
  pointer-events: none;
}

.how__steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
  margin-top: 16px;
  margin-bottom: 56px;
}

.how__step {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-xl);
  padding: 32px;
  width: 100%;
  max-width: 360px;
  text-align: center;
  position: relative;
  transition: background var(--dur), border-color var(--dur), transform var(--dur);
}
.how__step:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(79,70,229,.3);
  transform: translateY(-4px);
}

.step__num {
  font-size: 56px;
  font-weight: 900;
  color: rgba(255,255,255,.04);
  line-height: 1;
  letter-spacing: -.04em;
  position: absolute;
  top: 16px;
  right: 20px;
}

.step__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: var(--grad-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(79,70,229,.4);
}

.how__step h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.how__step p {
  font-size: 15px;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
}

.how__arrow {
  color: rgba(255,255,255,.15);
  transform: rotate(90deg);
}

.how__cta {
  text-align: center;
  position: relative;
  z-index: 1;
}
.how__hint {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255,255,255,.35);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FEATURES GRID
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.features {
  background: var(--white);
}

.features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 60px;
}

.feat__card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              border-color var(--dur);
}
.feat__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(79,70,229,.2);
}
.feat__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity var(--dur);
}
.feat__card:hover::before { opacity: 1; }

.feat__card--featured {
  background: var(--navy);
  border-color: rgba(79,70,229,.2);
}
.feat__card--featured::before { opacity: 1; }
.feat__card--featured h3 { color: #ffffff !important; }
.feat__card--featured p { color: #ffffff !important; }

.feat__icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.feat__card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.feat__card p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
}

.feat__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  background: var(--grad-primary);
  color: white;
  border-radius: var(--r-full);
  padding: 3px 10px;
  margin-top: 14px;
  letter-spacing: .03em;
}

/* ─── Dashboard Preview ─── */
.dashboard-preview {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.dashboard-preview__inner {
  background: var(--navy);
}

.db-topbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.db-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.db-dot--red    { background: #FF5F57; }
.db-dot--yellow { background: #FFBD2E; }
.db-dot--green  { background: #28C840; }

.db-url {
  margin-left: 8px;
  font-size: 11px;
  color: rgba(255,255,255,.3);
  font-family: 'Courier New', monospace;
}

.db-body {
  display: flex;
  min-height: 200px;
}

.db-sidebar {
  width: 56px;
  background: rgba(255,255,255,.03);
  border-right: 1px solid rgba(255,255,255,.05);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.db-nav-item {
  height: 32px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.06);
}
.db-nav-item--active {
  background: var(--grad-primary);
  opacity: .6;
}

.db-main {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.db-stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.db-stat-box {
  flex: 1;
  min-width: 80px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r);
  padding: 14px 16px;
}

.db-stat-num {
  font-size: 22px;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 4px;
}

.db-stat-lbl {
  font-size: 11px;
  color: rgba(255,255,255,.4);
}

.db-chart {
  flex: 1;
  min-height: 80px;
  background: rgba(255,255,255,.03);
  border-radius: var(--r);
  border: 1px solid rgba(255,255,255,.05);
  position: relative;
  overflow: hidden;
}
.db-chart::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(79,70,229,.25), transparent);
  border-radius: var(--r);
}

.dashboard-preview__caption {
  font-size: 12px;
  color: var(--gray-400);
  padding: 16px;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NICHES / IDEAL FOR
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.niches {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.niches::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
  pointer-events: none;
}

.niches__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.niche__card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-xl);
  padding: 32px;
  transition: background var(--dur), border-color var(--dur), transform var(--dur);
}
.niche__card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(79,70,229,.3);
  transform: translateY(-4px);
}

.niche__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.niche__emoji {
  font-size: 36px;
  flex-shrink: 0;
}

.niche__header h3 {
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.niche__card p {
  font-size: 15px;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin-bottom: 20px;
}

.niche__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.niche__list li {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  padding-left: 20px;
  position: relative;
}
.niche__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary-light);
  font-weight: 700;
}

.niches__more {
  position: relative;
  z-index: 1;
  margin-top: 40px;
  text-align: center;
}
.niches__more > p {
  font-size: 15px;
  color: rgba(255,255,255,.45);
  margin-bottom: 16px;
}

.niches__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.niche__tag {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-full);
  padding: 6px 16px;
  transition: background var(--dur-fast), color var(--dur-fast);
}
.niche__tag:hover {
  background: rgba(79,70,229,.2);
  color: var(--white);
  border-color: rgba(79,70,229,.4);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   OBJECTIONS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.objections {
  background: var(--gray-50);
}

.objections__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.obj__card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 32px;
  transition: box-shadow var(--dur), border-color var(--dur);
}
.obj__card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(79,70,229,.2);
}

.obj__header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}

.obj__icon {
  font-size: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}

.obj__header h3 {
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 700;
  color: var(--navy);
  font-style: italic;
  line-height: 1.35;
}

.obj__card p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.75;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TESTIMONIALS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.testimonials {
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-glow);
  pointer-events: none;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}

.testi__card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-xl);
  padding: 32px;
  transition: background var(--dur), border-color var(--dur), transform var(--dur);
}
.testi__card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(79,70,229,.25);
  transform: translateY(-4px);
}

.testi__stars {
  font-size: 16px;
  color: var(--yellow);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testi__card p {
  font-size: 16px;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.testi__card footer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

.testi__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  font-style: normal;
  display: block;
  margin-bottom: 2px;
}

.testi__role {
  font-size: 12px;
  color: rgba(255,255,255,.4);
}

/* Video teaser */
.video-teaser {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255,255,255,.04);
  border: 1px dashed rgba(255,255,255,.15);
  border-radius: var(--r-xl);
  padding: 24px 28px;
  cursor: pointer;
  transition: background var(--dur), border-color var(--dur);
  position: relative;
  z-index: 1;
}
.video-teaser:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(79,70,229,.3);
}

.video-teaser__play {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(79,70,229,.4);
}

.video-teaser__label {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.video-teaser__sub {
  font-size: 13px;
  color: rgba(255,255,255,.45);
}

.video-teaser__badge {
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-full);
  padding: 4px 12px;
  color: rgba(255,255,255,.45);
  flex-shrink: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   DEMO FORM
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.demo {
  background: linear-gradient(160deg, #0e1629 0%, #0f1e3a 50%, #12102a 100%);
  position: relative;
  overflow: hidden;
}
.demo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
  pointer-events: none;
}

.demo__inner {
  display: flex;
  flex-direction: column;
  gap: 56px;
  position: relative;
  z-index: 1;
}

.demo__title {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 24px;
}

.demo__subtitle {
  font-size: 17px;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin-bottom: 32px;
}

.demo__includes {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.demo__includes li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,.75);
  font-weight: 500;
}

/* Form */
.demo__form-wrap {
  width: 100%;
}

.demo__form {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  box-shadow: 0 40px 80px rgba(0,0,0,.4);
}

.demo__form h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 28px;
  letter-spacing: -.02em;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form__group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-700);
  letter-spacing: .01em;
}

.form__group input,
.form__group select {
  height: 48px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r);
  padding: 0 16px;
  font-size: 15px;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  -webkit-appearance: none;
  appearance: none;
}

.form__group input:focus,
.form__group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(79,70,229,.12);
}

.form__group input::placeholder {
  color: var(--gray-400);
}

.form__group select {
  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='%236B7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.form__group input:invalid,
.form__group select:invalid {
  box-shadow: none;
}

.form__privacy {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--gray-400);
  text-align: center;
  justify-content: center;
  margin-top: 14px;
}

/* Form success state */
.form__success {
  text-align: center;
  padding: 20px 0;
}
.form__success .success-icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.form__success h3 {
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 12px;
}
.form__success p {
  font-size: 15px;
  color: var(--gray-600);
  margin-bottom: 12px;
}
.form__success .btn {
  margin-top: 20px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FINAL CTA
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cta-final {
  background: var(--navy);
  text-align: center;
  padding-block: 100px;
  position: relative;
  overflow: hidden;
}

.cta-final__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(79,70,229,.4) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(124,58,237,.2) 0%, transparent 60%);
  pointer-events: none;
}

.cta-final__inner {
  position: relative;
  z-index: 1;
}

.cta-final__title {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  letter-spacing: -.03em;
  margin-bottom: 24px;
}

.cta-final__sub {
  font-size: clamp(16px, 2vw, 18px);
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-bottom: 44px;
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 44px;
}

.cta-final__hint {
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255,255,255,.35);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.05);
}

.footer__top {
  padding-top: 64px;
  padding-bottom: 56px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.footer__brand {
  max-width: 320px;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 16px;
}

.footer__logo-img {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer__brand p {
  font-size: 14px;
  color: rgba(255,255,255,.4);
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer__tagline {
  font-size: 13px !important;
  font-weight: 600;
  color: rgba(255,255,255,.25) !important;
  font-style: italic;
}

.footer__cols {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer__col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.footer__col a {
  font-size: 14px;
  color: rgba(255,255,255,.4);
  transition: color var(--dur-fast);
  text-decoration: none;
}
.footer__col a:hover { color: rgba(255,255,255,.8); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding-block: 24px;
}
.footer__bottom .container {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  text-align: center;
}
.footer__bottom p {
  font-size: 13px;
  color: rgba(255,255,255,.25);
}
.footer__bottom a {
  color: rgba(255,255,255,.4);
  transition: color var(--dur-fast);
}
.footer__bottom a:hover { color: rgba(255,255,255,.7); }
.footer__disclaimer {
  font-size: 11px !important;
  color: rgba(255,255,255,.15) !important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ANIMATIONS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.sol__card:nth-child(1)  { transition-delay: 0ms; }
.sol__card:nth-child(2)  { transition-delay: 60ms; }
.sol__card:nth-child(3)  { transition-delay: 120ms; }
.sol__card:nth-child(4)  { transition-delay: 180ms; }
.sol__card:nth-child(5)  { transition-delay: 240ms; }
.sol__card:nth-child(6)  { transition-delay: 300ms; }
.feat__card:nth-child(1) { transition-delay: 0ms; }
.feat__card:nth-child(2) { transition-delay: 60ms; }
.feat__card:nth-child(3) { transition-delay: 120ms; }
.feat__card:nth-child(4) { transition-delay: 180ms; }
.feat__card:nth-child(5) { transition-delay: 240ms; }
.feat__card:nth-child(6) { transition-delay: 300ms; }

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

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .7; transform: scale(1.2); }
}

@keyframes typing {
  0%, 80%, 100% { transform: scale(0.7); opacity: .4; }
  40%            { transform: scale(1); opacity: 1; }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE — TABLET (640px+)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (min-width: 640px) {
  :root {
    --pad-x: 32px;
  }

  section {
    padding-block: 96px;
  }

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

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

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

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

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

  .pain__layout {
    flex-direction: row;
    align-items: stretch;
  }
  .pain__list { flex: 1; }
  .pain__callout { flex: 1; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE — DESKTOP (1024px+)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (min-width: 1024px) {
  :root {
    --pad-x: 40px;
  }

  section { padding-block: 120px; }

  .br-desktop { display: inline; }

  /* Nav */
  .nav__toggle { display: none; }

  .nav__links {
    display: flex;
    align-items: center;
    gap: 8px;
    position: static;
    background: none;
    flex-direction: row;
    padding: 0;
    animation: none;
  }

  .nav__links li { list-style: none; }

  .nav__links a {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: rgba(255,255,255,.65) !important;
    transition: color var(--dur-fast);
    padding: 8px 12px;
    border-radius: var(--r);
    display: inline-block;
  }
  .nav__links a:hover { color: var(--white) !important; }
  .nav__links .btn--primary { padding: 10px 22px !important; }

  /* Hero */
  .hero__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  .hero__content { max-width: 540px; }
  .hero__visual {
    flex-shrink: 0;
    justify-content: flex-end;
  }

  .phone { width: 300px; }

  .stat-pill--top  { left: -70px; }
  .stat-pill--bottom { right: -70px; }

  /* Solution */
  .solution__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* How */
  .how__steps {
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 0;
  }
  .how__step { max-width: 280px; }
  .how__arrow { transform: none; align-self: center; margin: 0 8px; }

  /* Features */
  .features__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Niches */
  .niches__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Objections */
  .objections__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Testimonials */
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Demo */
  .demo__inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 80px;
  }
  .demo__content { flex: 1; }
  .demo__form-wrap {
    width: 440px;
    flex-shrink: 0;
  }

  /* Footer */
  .footer__top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer__bottom .container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PRINT
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media print {
  .nav, .hero__visual, .video-teaser, .cta-final { display: none; }
  .fade-up { opacity: 1; transform: none; }
  body { color: #000; background: #fff; }
}
