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

:root {
  --navy:        #0A0F1E;
  --navy-card:   #111827;
  --navy-mid:    #1C2740;
  --orange:      #E8640A;
  --orange-dark: #B84D08;
  --orange-glow: rgba(232, 100, 10, 0.15);
  --white:       #FFFFFF;
  --slate:       #8892A4;
  --slate-light: #C4CBD8;
  --border:      rgba(255,255,255,0.07);
  --border-mid:  rgba(255,255,255,0.12);

  --font-display: 'Syne', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius:    12px;
  --radius-lg: 20px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

/* ─── TYPOGRAPHY ──────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.eyebrow--light { color: rgba(255,255,255,0.5); }

.highlight {
  color: var(--orange);
  position: relative;
}

/* ─── BUTTONS ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--orange {
  background: var(--orange);
  color: var(--white);
}
.btn--orange:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(232, 100, 10, 0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--slate-light);
  border: 1px solid var(--border-mid);
}
.btn--ghost:hover {
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
  background: rgba(255,255,255,0.05);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border-mid);
}
.btn--outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn--nav {
  background: var(--orange);
  color: var(--white);
  padding: 9px 20px;
  font-size: 0.85rem;
}
.btn--nav:hover { background: var(--orange-dark); }

.btn--lg { padding: 15px 30px; font-size: 0.95rem; }
.btn--full { width: 100%; justify-content: center; }

/* ─── NAV ─────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all var(--transition);
}

.nav.scrolled {
  background: rgba(10, 15, 30, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 18px 24px;
  max-width: 1160px;
  margin: 0 auto;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: -0.03em;
  color: var(--white);
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}
.logo-text em {
  font-style: normal;
  color: var(--slate);
  font-weight: 400;
  margin-left: 3px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav__links a {
  font-size: 0.875rem;
  color: var(--slate-light);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--white); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav__mobile {
  display: none;
  background: rgba(10, 15, 30, 0.98);
  border-top: 1px solid var(--border);
  padding: 20px 24px;
}
.nav__mobile ul { display: flex; flex-direction: column; gap: 16px; }
.nav__mobile a { font-size: 1rem; color: var(--slate-light); }
.nav__mobile a:hover { color: var(--white); }
.nav__mobile.open { display: block; }

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

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

.hero::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 100, 10, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content { max-width: 560px; }

.hero__headline {
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero__sub {
  font-size: 1.1rem;
  color: var(--slate-light);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--slate);
}
.trust-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
  flex-shrink: 0;
}

/* ── Order Ticker ─────────────────────────────────────────────────────────── */
.hero__ticker-wrap {
  background: var(--navy-card);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4), 0 0 0 1px var(--border);
}

.ticker__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--slate-light);
}

.ticker__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ticker__dot--live {
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34,197,94,0.6);
  animation: pulse-green 2s ease infinite;
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 6px rgba(34,197,94,0.6); }
  50%       { box-shadow: 0 0 14px rgba(34,197,94,0.9); }
}

.ticker__time {
  margin-left: auto;
  font-variant-numeric: tabular-nums;
}

.ticker__screen {
  padding: 0;
  min-height: 200px;
  max-height: 260px;
  overflow-y: auto;
}
.ticker__screen::-webkit-scrollbar { width: 4px; }
.ticker__screen::-webkit-scrollbar-track { background: transparent; }
.ticker__screen::-webkit-scrollbar-thumb { background: var(--border-mid); border-radius: 4px; }

.ticker__row {
  display: grid;
  grid-template-columns: 70px 110px 1fr 70px;
  gap: 8px;
  padding: 10px 18px;
  font-size: 0.78rem;
  border-bottom: 1px solid var(--border);
  animation: slide-in 0.4s ease forwards;
}
@keyframes slide-in {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.ticker__row--head {
  color: var(--slate);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.02);
  animation: none;
}
.ticker__row--new { background: rgba(232, 100, 10, 0.06); }
.ticker__row span:last-child { color: #22c55e; font-weight: 600; }

.ticker__footer {
  display: flex;
  justify-content: space-between;
  padding: 12px 18px;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.ticker__stat { font-size: 0.78rem; color: var(--slate); }
.ticker__stat strong { color: var(--white); margin-right: 2px; }

/* ─── PAIN STRIP ──────────────────────────────────────────────────────────── */
.pain-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--navy-card);
  padding: 40px 0;
}
.pain-strip__inner {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.pain-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pain-item strong {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.03em;
  line-height: 1;
}
.pain-item span { font-size: 0.8rem; color: var(--slate); line-height: 1.4; }
.pain-divider {
  width: 1px;
  height: 50px;
  background: var(--border-mid);
  flex-shrink: 0;
}

/* ─── SECTIONS ────────────────────────────────────────────────────────────── */
.section { padding: 100px 0; }

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section__header h2 { margin-bottom: 16px; }
.section__header p { color: var(--slate-light); font-size: 1.05rem; line-height: 1.7; }

/* ─── SERVICES ────────────────────────────────────────────────────────────── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-card:hover {
  border-color: var(--border-mid);
  transform: translateY(-2px);
}
.service-card--featured {
  border-color: rgba(232, 100, 10, 0.3);
  background: linear-gradient(135deg, rgba(232, 100, 10, 0.06) 0%, var(--navy-card) 60%);
}
.service-card--featured:hover { border-color: rgba(232, 100, 10, 0.5); }

.service-card__tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

.service-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(232, 100, 10, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}

.service-card h3 { font-size: 1.25rem; }
.service-card p { color: var(--slate-light); font-size: 0.9rem; line-height: 1.6; }

.service-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.service-card__list li {
  font-size: 0.85rem;
  color: var(--slate-light);
  padding-left: 18px;
  position: relative;
}
.service-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.service-card .btn { margin-top: auto; align-self: flex-start; }

/* ─── VOICE SECTION ───────────────────────────────────────────────────────── */
.voice-section {
  background: var(--navy-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.voice__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Phone mockup */
.phone-mockup {
  background: var(--navy-mid);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 320px;
  margin: 0 auto;
}
.phone-screen { padding: 20px; }
.call-status {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.call-avatar {
  width: 40px;
  height: 40px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.call-info { flex: 1; }
.call-info strong { display: block; font-size: 0.9rem; }
.call-live {
  font-size: 0.75rem;
  color: #22c55e;
  display: flex;
  align-items: center;
  gap: 5px;
}
.call-live::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-green 2s ease infinite;
}
.call-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 24px;
}
.call-wave span {
  width: 3px;
  background: var(--orange);
  border-radius: 2px;
  animation: wave 1.2s ease infinite;
}
.call-wave span:nth-child(1) { height: 8px;  animation-delay: 0s; }
.call-wave span:nth-child(2) { height: 16px; animation-delay: 0.1s; }
.call-wave span:nth-child(3) { height: 24px; animation-delay: 0.2s; }
.call-wave span:nth-child(4) { height: 16px; animation-delay: 0.3s; }
.call-wave span:nth-child(5) { height: 8px;  animation-delay: 0.4s; }
@keyframes wave {
  0%, 100% { transform: scaleY(0.5); opacity: 0.5; }
  50%       { transform: scaleY(1);   opacity: 1; }
}

.call-transcript { display: flex; flex-direction: column; gap: 10px; }
.transcript-line {
  font-size: 0.82rem;
  line-height: 1.5;
  padding: 10px 14px;
  border-radius: 12px;
  max-width: 90%;
}
.transcript-zara {
  background: rgba(232,100,10,0.15);
  border: 1px solid rgba(232,100,10,0.2);
  color: var(--white);
  align-self: flex-start;
}
.transcript-customer {
  background: rgba(255,255,255,0.07);
  color: var(--slate-light);
  align-self: flex-end;
  text-align: right;
}

.voice__arrow {
  text-align: center;
  font-size: 1.5rem;
  color: var(--orange);
  margin: 16px auto;
  animation: bounce-down 2s ease infinite;
}
@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

.voice__outputs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 320px;
  margin: 0 auto;
}
.output-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--slate-light);
}
.output-icon { font-size: 1.1rem; }

/* Packages */
.voice__packages {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.package {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.package--pro {
  border-color: rgba(232,100,10,0.35);
  background: linear-gradient(135deg, rgba(232,100,10,0.08) 0%, var(--navy-mid) 60%);
}
.package__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.package__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
}
.package--pro .package__name { color: var(--orange); }
.package__sub { font-size: 0.8rem; color: var(--slate); font-style: italic; }
.package__features { display: flex; flex-direction: column; gap: 8px; }
.package__features li {
  font-size: 0.85rem;
  color: var(--slate-light);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.check { color: var(--orange); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ─── HOW IT WORKS ────────────────────────────────────────────────────────── */
.how-section { background: transparent; }

.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}
.step {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color var(--transition);
}
.step:hover { border-color: rgba(232,100,10,0.3); }

.step__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  opacity: 0.4;
  line-height: 1;
}
.step h3 { font-size: 1rem; }
.step p { font-size: 0.85rem; color: var(--slate); line-height: 1.6; }

.step__connector {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--border-mid), rgba(232,100,10,0.3), var(--border-mid));
  margin-top: 48px;
  flex-shrink: 0;
}

/* ─── TRIAL SECTION ───────────────────────────────────────────────────────── */
.trial-section {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.trial-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232,100,10,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.trial-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.trial-text h2 { margin-bottom: 16px; }
.trial-text p { color: var(--slate-light); line-height: 1.7; margin-bottom: 24px; }
.trial-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.trial-list li {
  font-size: 0.9rem;
  color: var(--slate-light);
  padding-left: 22px;
  position: relative;
}
.trial-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
}

.trial-card {
  background: var(--navy-card);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}
.trial-card__top {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}
.trial-days {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.04em;
}
.trial-label {
  font-size: 1.1rem;
  color: var(--slate-light);
  font-weight: 500;
}
.trial-card p { color: var(--slate); font-size: 0.9rem; line-height: 1.6; }

/* ─── WHY AWEAX ───────────────────────────────────────────────────────────── */
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--transition);
}
.why-card:hover { border-color: var(--border-mid); }
.why-card__icon { font-size: 1.8rem; }
.why-card h3 { font-size: 1rem; }
.why-card p { font-size: 0.85rem; color: var(--slate); line-height: 1.6; }

/* ─── CONTACT ─────────────────────────────────────────────────────────────── */
.contact-section { background: var(--navy-card); border-top: 1px solid var(--border); }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact__options {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-option {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: all var(--transition);
}
.contact-option:hover {
  border-color: var(--border-mid);
  background: rgba(255,255,255,0.04);
  transform: translateX(4px);
}
.contact-option--whatsapp:hover { border-color: rgba(37,211,102,0.4); }
.contact-option--info { cursor: default; }
.contact-option--info:hover { transform: none; border-color: var(--border); }

.contact-option__icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.contact-option--whatsapp .contact-option__icon { color: #25d366; background: rgba(37,211,102,0.1); }

.contact-option__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-option__text strong { font-size: 0.95rem; }
.contact-option__text span { font-size: 0.82rem; color: var(--slate); }
.contact-option__arrow { color: var(--slate); font-size: 1.1rem; }

.contact-note {
  background: rgba(232,100,10,0.06);
  border: 1px solid rgba(232,100,10,0.15);
  border-radius: var(--radius);
  padding: 18px 20px;
  font-size: 0.85rem;
  color: var(--slate-light);
  line-height: 1.6;
  margin-top: 6px;
}

/* Form */
.contact-form {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--slate-light);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-mid);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--slate); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(232,100,10,0.04);
}
.form-group select { cursor: pointer; appearance: none; }
.form-group textarea { resize: vertical; }
.form-group select option { background: var(--navy-card); color: var(--white); }

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--slate);
}

/* ─── FOOTER ──────────────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding-top: 60px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
}
.footer__brand { display: flex; flex-direction: column; gap: 16px; }
.footer__brand p { font-size: 0.85rem; color: var(--slate); line-height: 1.6; max-width: 320px; }
.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate);
  transition: all var(--transition);
}
.footer__social a:hover { color: var(--white); border-color: var(--border-mid); background: rgba(255,255,255,0.08); }

.footer__links { display: flex; gap: 40px; }
.footer__col { display: flex; flex-direction: column; gap: 14px; }
.footer__col strong { font-size: 0.85rem; font-weight: 600; }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col li a {
  font-size: 0.85rem;
  color: var(--slate);
  transition: color var(--transition);
}
.footer__col li a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--slate);
}

/* ─── WHATSAPP FLOAT ──────────────────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}
.whatsapp-float__pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: wa-pulse 2.5s ease infinite;
  opacity: 0;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ─── SCROLL HINT ─────────────────────────────────────────────────────────── */
.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--slate);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--slate), transparent);
  animation: scroll-drop 2s ease infinite;
}
@keyframes scroll-drop {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ─── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__ticker-wrap { max-width: 480px; }
  .services__grid { grid-template-columns: 1fr; }
  .voice__grid { grid-template-columns: 1fr; }
  .steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .step__connector {
    width: 2px;
    height: 32px;
    margin: 0 0 0 44px;
    background: linear-gradient(to bottom, var(--border-mid), rgba(232,100,10,0.3), var(--border-mid));
  }
  .trial-section__inner { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__links { gap: 24px; }
  .pain-strip__inner { flex-direction: column; }
  .pain-divider { width: 100%; height: 1px; }
}

@media (max-width: 640px) {
  .nav__links { display: none; }
  .btn--nav { display: none; }
  .nav__toggle { display: flex; }
  .hero { padding: 100px 0 60px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .footer__links { flex-direction: column; }
  .footer__bottom .container { flex-direction: column; gap: 8px; text-align: center; }
  .steps { gap: 0; }
  .section { padding: 64px 0; }
}

/* ─── REDUCED MOTION ──────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
