:root {
  /* TipGo brand — assets/img/image.png */
  --brand: #4F46E5;          /* Main · Trust */
  --brand-soft: #EEF2FF;
  --brand-glow: rgba(79, 70, 229, 0.25);
  --action: #10B981;         /* Action · Confirmation */
  --action-soft: #ECFDF5;
  --action-glow: rgba(16, 185, 129, 0.3);
  --bg: #F8FAFC;             /* Background · Clean readability */
  --surface: #FFFFFF;
  --surface-hover: #F1F5F9;
  --border: #E2E8F0;
  --border-light: #CBD5E1;

  --text: #0F172A;
  --text-muted: #64748B;

  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 24px 48px rgba(15, 23, 42, 0.1);

  --radius: 20px;
  --radius-sm: 12px;

  --max: 1120px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 12% 0%, rgba(79, 70, 229, 0.08) 0%, transparent 42%),
    radial-gradient(circle at 88% 18%, rgba(16, 185, 129, 0.08) 0%, transparent 40%);
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; transition: 0.2s; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards; opacity: 0; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* Topbar */
.topbar {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(248, 250, 252, 0.85);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-weight: 800; letter-spacing: -0.03em; font-size: 18px;
  color: var(--brand);
  text-transform: uppercase;
}
.brand-logo {
  display: block;
  height: 36px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}
.brand-logo-footer {
  height: 32px;
  max-width: 140px;
}
.logo {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--brand);
  box-shadow: 0 6px 16px var(--brand-glow);
  position: relative;
}
.logo::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0; height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #fff;
  transform: translateX(1px);
}

.navlinks {
  display: flex; gap: 32px;
  font-size: 14px; font-weight: 500;
  color: var(--text-muted);
}
.navlinks a:hover { color: var(--brand); }

.navcta { display: flex; gap: 12px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 18px;
  border-radius: 99px;
  font-weight: 600; font-size: 14px;
  cursor: pointer; transition: all 0.2s ease;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
.btn:hover {
  background: var(--surface-hover);
  border-color: var(--border-light);
  transform: translateY(-1px);
}
.btn.primary {
  border: 1px solid transparent;
  background: var(--action);
  color: #fff;
  box-shadow: 0 8px 20px var(--action-glow);
}
.btn.primary:hover {
  background: #059669;
  box-shadow: 0 10px 24px rgba(16, 185, 129, 0.4);
}

/* Hero */
.hero { padding: 80px 0 60px; overflow: hidden; }
.grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 99px;
  background: var(--brand-soft);
  border: 1px solid rgba(79, 70, 229, 0.18);
  color: var(--brand); font-size: 13px; font-weight: 600;
  margin-bottom: 24px;
}
.dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--action);
  box-shadow: 0 0 8px var(--action);
}

.h1 {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.1; font-weight: 800; letter-spacing: -0.03em;
  margin: 0 0 20px;
  color: var(--text);
  background: none;
  -webkit-text-fill-color: unset;
}
.lead {
  color: var(--text-muted); font-size: 18px;
  line-height: 1.6; max-width: 90%; margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 16px; margin-bottom: 32px; }

.mini {
  display: flex; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: var(--text-muted); font-weight: 500;
}
.check { display: flex; align-items: center; gap: 6px; }
.check svg { color: var(--action); }

/* Hero Card */
.hero-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow-lg);
}
.hero-card::before {
  content: ''; position: absolute;
  top: 20%; left: 50%; transform: translateX(-50%);
  width: 220px; height: 220px;
  background: var(--brand);
  filter: blur(90px); opacity: 0.12;
  pointer-events: none;
}

.phone {
  width: 280px; margin: 0 auto;
  border-radius: 36px;
  border: 6px solid #E2E8F0;
  background: #fff;
  padding: 10px;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.2);
  transform: rotate(-3deg);
  transition: transform 0.5s ease;
  position: relative;
  z-index: 1;
}
.hero-card:hover .phone { transform: rotate(0deg) translateY(-5px); }

.screen {
  background: #fff; border-radius: 26px;
  border: 1px solid var(--border);
  padding: 20px; min-height: 340px;
  display: flex; flex-direction: column;
  color: var(--text);
  position: relative;
}
.demo-step {
  display: flex;
  flex-direction: column;
  flex: 1;
  animation: fadeInUp 0.35s ease both;
}
.demo-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  opacity: 0.6;
  font-size: 12px;
  font-weight: 600;
}
.demo-label {
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 10px;
}
.tip-title { font-size: 18px; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.tip-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }

.chips { display: flex; gap: 8px; margin-bottom: 16px; }
.chip {
  flex: 1; text-align: center; padding: 12px 0;
  border-radius: 12px; font-size: 14px; font-weight: 600;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  cursor: pointer;
  font-family: inherit;
  transition: 0.18s ease;
}
.chip:hover {
  border-color: rgba(79, 70, 229, 0.3);
  background: var(--brand-soft);
}
.chip.best,
.chip.is-selected {
  background: var(--action-soft);
  border-color: rgba(16, 185, 129, 0.35);
  color: #059669;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.12);
}
.paybtn {
  appearance: none;
  border: none;
  width: 100%;
  background: var(--action); color: white;
  border-radius: 12px; padding: 14px;
  font-weight: 700; font-size: 14px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: auto;
  box-shadow: 0 8px 18px var(--action-glow);
  cursor: pointer;
  font-family: inherit;
  transition: 0.2s ease;
}
.paybtn:hover:not(:disabled) {
  background: #059669;
  transform: translateY(-1px);
}
.paybtn:disabled {
  opacity: 0.7;
  cursor: wait;
}
.demo-hint {
  margin: 10px 0 0;
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
}
.demo-success-icon {
  width: 52px;
  height: 52px;
  margin: 12px auto 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--action-soft);
  color: var(--action);
}
.demo-success-note {
  margin: 0 0 16px;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.45;
}
.demo-cta {
  width: 100%;
  margin-top: 10px;
  text-align: center;
}

.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.info-card {
  background: var(--bg); border-radius: 16px; padding: 16px;
  border: 1px solid var(--border);
}
.info-title { font-weight: 700; font-size: 14px; color: var(--action); margin-bottom: 4px; }
.info-desc { font-size: 12px; color: var(--text-muted); line-height: 1.4; }

/* Sections */
section { padding: 100px 0; }
.section-head { margin-bottom: 48px; max-width: 640px; }
.section-title { font-size: 32px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 12px; color: var(--text); }
.section-lead { font-size: 18px; color: var(--text-muted); max-width: 600px; margin-bottom: 40px; }
.section-head .section-lead { margin-bottom: 0; }

.cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.card:hover {
  transform: translateY(-5px);
  background: var(--surface);
  border-color: rgba(79, 70, 229, 0.25);
  box-shadow: var(--shadow-lg);
}
.icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg); margin-bottom: 16px;
  color: var(--text);
}
.icon.brand { background: var(--brand-soft); color: var(--brand); }
.icon.green { background: var(--action-soft); color: var(--action); }

.card h3 { font-size: 18px; margin: 0 0 8px; font-weight: 600; color: var(--text); }
.card p { font-size: 15px; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
  position: relative; padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.badge {
  font-size: 24px; font-weight: 800; color: rgba(79, 70, 229, 0.15);
  position: absolute; top: 20px; right: 24px;
}
.step h3 { font-size: 20px; margin-bottom: 10px; color: var(--text); }
.step p { color: var(--text-muted); margin: 0; }

/* Modos de cobro */
.modes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.mode-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.mode-card-featured {
  background: linear-gradient(180deg, var(--action-soft) 0%, #fff 50%);
  border-color: rgba(16, 185, 129, 0.35);
}
.mode-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-soft);
  border-radius: 99px;
  padding: 4px 10px;
  margin-bottom: 16px;
}
.mode-badge-action {
  color: #047857;
  background: var(--action-soft);
}
.mode-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--text);
}
.mode-card > p {
  color: var(--text-muted);
  margin: 0 0 20px;
  line-height: 1.6;
}
.mode-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mode-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.45;
}
.mode-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
}
.mode-card-featured .mode-list li::before {
  background: var(--action);
}

/* Pricing */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.price-card {
  padding: 32px 28px; border-radius: 24px;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.price-card.featured {
  background: linear-gradient(180deg, var(--brand-soft) 0%, #fff 55%);
  border: 1px solid rgba(79, 70, 229, 0.35);
  position: relative;
  transform: scale(1.02);
  box-shadow: 0 20px 40px -18px var(--brand-glow);
}
.price-tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--brand); color: white;
  font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 99px;
  box-shadow: 0 4px 12px var(--brand-glow);
  white-space: nowrap;
}
.plan-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 4px 10px;
  margin-bottom: 12px;
}
.plan-label-brand {
  color: var(--brand);
  background: var(--brand-soft);
  border-color: rgba(79, 70, 229, 0.2);
}
.plan {
  font-size: 18px; font-weight: 700; letter-spacing: -0.02em;
  color: var(--text);
}
.plan-featured {
  color: var(--brand); font-weight: 800;
}
.plan-for {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
  min-height: 36px;
}
.price { font-size: 40px; font-weight: 800; letter-spacing: -1px; margin: 16px 0; color: var(--text); }
.price small { font-size: 14px; color: var(--text-muted); font-weight: 500; margin-left: 6px; }

.features-list { list-style: none; padding: 0; margin: 24px 0 32px; flex-grow: 1; }
.features-list li { display: flex; gap: 12px; margin-bottom: 14px; color: var(--text-muted); font-size: 14px; line-height: 1.4; }
.features-list svg { color: var(--brand); flex-shrink: 0; margin-top: 2px; }
.price-card .btn { width: 100%; }

/* FAQ */
details {
  border-bottom: 1px solid var(--border); padding: 24px 0;
}
summary {
  font-weight: 600; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 18px; color: var(--text);
}
summary::-webkit-details-marker { display: none; }
details[open] summary { margin-bottom: 16px; color: var(--brand); }
details p { color: var(--text-muted); line-height: 1.6; margin: 0; }

/* CTA / Waitlist */
.cta-box {
  background: linear-gradient(125deg, var(--brand) 0%, #3730A3 55%, #047857 120%);
  border-radius: 30px; padding: 60px;
  text-align: center; border: 1px solid transparent;
  position: relative; overflow: hidden;
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.cta-box::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.16), transparent 50%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 2; }
.cta-box .btn {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  color: #fff;
  box-shadow: none;
}
.cta-box .btn:hover {
  background: rgba(255,255,255,0.2);
}
.cta-box .btn.primary {
  background: var(--action);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.cta-box .btn.primary:hover {
  background: #059669;
}

.waitlist-box {
  text-align: left;
  padding: 48px;
}
.waitlist-eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.waitlist-title {
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 800;
  margin: 0 0 12px;
  color: #fff;
  letter-spacing: -0.02em;
}
.waitlist-lead {
  margin: 0 0 28px;
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  line-height: 1.55;
  max-width: 560px;
}
.waitlist-remaining {
  margin: -12px 0 24px;
  font-size: 14px;
  font-weight: 600;
  color: #A7F3D0;
}
.waitlist-remaining strong {
  color: #fff;
  font-weight: 800;
}
.waitlist-remaining.is-low {
  color: #FDE68A;
}
.waitlist-remaining.is-full {
  color: #FECACA;
}
.waitlist-form.is-full {
  opacity: 0.72;
  pointer-events: none;
}
.waitlist-form { max-width: 720px; }
.waitlist-plan-pick {
  border: 0;
  padding: 0;
  margin: 0 0 20px;
}
.waitlist-plan-pick legend {
  margin-bottom: 12px;
}
.plan-pick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.plan-pick-card {
  position: relative;
  cursor: pointer;
  margin: 0;
}
.plan-pick-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.plan-pick-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  height: 100%;
  padding: 16px;
  border-radius: 16px;
  border: 2px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.plan-pick-body::after {
  content: '';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.35);
  background: transparent;
  box-sizing: border-box;
}
.plan-pick-card input:checked + .plan-pick-body {
  border-color: #fff;
  background: var(--action);
  box-shadow: 0 10px 28px rgba(16, 185, 129, 0.45);
  transform: translateY(-1px);
}
.plan-pick-card input:checked + .plan-pick-body::after {
  border-color: #fff;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310B981' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 14px 14px no-repeat;
}
.plan-pick-card:hover .plan-pick-body {
  border-color: rgba(255,255,255,0.5);
}
.plan-pick-card input:checked + .plan-pick-body .plan-pick-name,
.plan-pick-card input:checked + .plan-pick-body .plan-pick-price,
.plan-pick-card input:checked + .plan-pick-body .plan-pick-price span,
.plan-pick-card input:checked + .plan-pick-body .plan-pick-desc {
  color: #fff;
}
.plan-pick-name {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  padding-right: 28px;
}
.plan-pick-price {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.plan-pick-price span {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  margin-left: 4px;
}
.plan-pick-desc {
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
}
.waitlist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.field-optional {
  font-style: normal;
  font-weight: 500;
  opacity: 0.65;
}
.waitlist-contact-hint {
  margin: -8px 0 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}
.waitlist-contact-hint.is-error {
  color: #FECACA;
  font-weight: 600;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}
.field span,
.field legend {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}
.field-full { margin-bottom: 16px; }
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255,255,255,0.45);
}
.field select option {
  color: #0F172A;
  background: #fff;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.18);
}
.waitlist-modo {
  border: 0;
  padding: 0;
  margin: 0 0 16px;
}
.waitlist-modo legend {
  margin-bottom: 12px;
}
.mode-pick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.mode-pick-card {
  position: relative;
  cursor: pointer;
  margin: 0;
}
.mode-pick-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.mode-pick-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  height: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 2px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  position: relative;
  padding-right: 42px;
}
.mode-pick-body::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 14px;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.35);
  box-sizing: border-box;
}
.mode-pick-card input:checked + .mode-pick-body {
  border-color: #fff;
  background: var(--action);
  box-shadow: 0 8px 22px rgba(16, 185, 129, 0.4);
}
.mode-pick-card input:checked + .mode-pick-body::after {
  border-color: #fff;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310B981' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px 12px no-repeat;
}
.mode-pick-card:hover .mode-pick-body {
  border-color: rgba(255,255,255,0.5);
}
.mode-pick-card input:checked + .mode-pick-body .mode-pick-name,
.mode-pick-card input:checked + .mode-pick-body .mode-pick-desc {
  color: #fff;
}
.mode-pick-name {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
}
.mode-pick-desc {
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255,255,255,0.72);
}
.waitlist-submit {
  width: 100%;
  max-width: 320px;
  padding: 14px 22px;
  font-size: 15px;
  margin-top: 4px;
}
.waitlist-submit:disabled {
  opacity: 0.7;
  cursor: wait;
}
.waitlist-note {
  margin: 12px 0 0;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}
.waitlist-status {
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
}
.waitlist-status.is-ok {
  background: rgba(16, 185, 129, 0.2);
  color: #D1FAE5;
}
.waitlist-status.is-error {
  background: rgba(239, 68, 68, 0.2);
  color: #FECACA;
}
.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  pointer-events: none;
}

/* Footer */
footer { border-top: 1px solid var(--border); padding: 40px 0; margin-top: 60px; color: var(--text-muted); font-size: 14px; }
.footer-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; }
.footer-grid .logo { box-shadow: none; }

@media (max-width: 1024px) {
  .pricing { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .price-card.featured { transform: none; }
}

@media (max-width: 900px) {
  .grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-actions { justify-content: center; }
  .mini { justify-content: center; }
  .navlinks { display: none; }
  .phone { transform: rotate(0); }
  .steps { grid-template-columns: 1fr; }
  .modes { grid-template-columns: 1fr; }
  .section-head { text-align: center; margin-left: auto; margin-right: auto; }
  .section-lead { margin-left: auto; margin-right: auto; }
  .waitlist-box { padding: 28px 22px; }
  .waitlist-grid { grid-template-columns: 1fr; }
  .plan-pick { grid-template-columns: 1fr; }
  .mode-pick { grid-template-columns: 1fr; }
  .waitlist-submit { max-width: none; }
}
