* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 40%, #312e81 70%, #0f172a 100%);
  background-attachment: fixed;
  min-height: 100vh;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  color: #141414;
}

.scene {
  width: 100%;
  max-width: 1250px;
}

/* MAIN CARD */
.main-card {
  width: 100%;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 36px;
  box-shadow: 0 40px 80px rgba(0, 0, 30, 0.4), 0 0 0 1px rgba(255,255,255,0.08);
  overflow: hidden;
  padding: 20px 28px 28px;
  transform: rotate(1.5deg);
  min-height: 720px;
  position: relative;
  backdrop-filter: blur(10px);
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 6px 12px 6px 6px;
  border: 1px solid rgba(59,110,248,0.08);
}

.logo img {
  height: 100px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  transition: opacity 0.15s;
}

.nav-link:hover {
  opacity: 0.8;
}

.nav-home     { background: #ffe8f0; color: #d63384; }
.nav-how      { background: #e8f0ff; color: #3b6ef8; }
.nav-security { background: #e8faf2; color: #1a9e6e; }
.nav-reviews  { background: #fff4e0; color: #d97706; }

.nav-btn {
  background: linear-gradient(135deg, #3b6ef8 0%, #6c44fc 100%);
  color: #fff;
  padding: 11px 22px;
  border-radius: 999px;
  border: none;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 4px 14px rgba(59, 110, 248, 0.35);
  transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
  letter-spacing: 0.01em;
}

.nav-btn::before {
  content: "▶";
  font-size: 9px;
  opacity: 0.85;
}

.nav-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(59, 110, 248, 0.45);
  opacity: 0.95;
}

.nav-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(59, 110, 248, 0.3);
}

/* MAIN BODY */
.card-body {
  border-radius: 28px;
  background: linear-gradient(160deg, #ffffff 0%, #f0f5ff 50%, #eef4ff 100%);
  min-height: 580px;
  padding: 10px 40px 30px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
  align-items: start;
  position: relative;
  overflow: hidden;
}

.card-body::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59,110,248,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.card-body::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(108,68,252,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.left-col {
  display: flex;
  flex-direction: column;
}

/* MOVE CONTENT UP */
.hero-copy {
  margin-top: -30px;
}

/* TEXT */
.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a93a8;
  margin-bottom: 14px;
}

.hero-copy h1 {
  font-size: clamp(36px, 5.2vw, 66px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
  color: #0a0f1e;
}

.hero-copy h1 span {
  background: linear-gradient(135deg, #3b6ef8 0%, #6c44fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-copy .lead {
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 480px;
  background: linear-gradient(
    90deg,
    #1a2230 0%,
    #2e3f52 20%,
    #4a6070 35%,
    #6b8096 50%,
    #4a6070 65%,
    #2e3f52 80%,
    #1a2230 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: silverShine 3s linear infinite;
}

@keyframes silverShine {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #3b6ef8 0%, #6c44fc 100%);
  color: #fff;
  padding: 15px 26px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}

.cta-primary:hover {
  background: #2a5ce6;
}

.cta-pulse {
  animation: ctaGlow 2.5s ease-in-out infinite;
}

@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 4px 14px rgba(59, 110, 248, 0.35); }
  50%       { box-shadow: 0 4px 28px rgba(59, 110, 248, 0.7), 0 0 0 6px rgba(59, 110, 248, 0.12); }
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #111;
  padding: 13px 22px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid #d0d5e2;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.cta-secondary:hover {
  border-color: #aab1c8;
  background: #f5f6fa;
}

.cta-arrow {
  font-size: 16px;
}

.cta-urgency {
  font-size: 12px;
  font-weight: 600;
  color: #92400e;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 8px;
  padding: 8px 12px;
  margin-top: 4px;
  line-height: 1.5;
}

/* FORM BOX */
.waitlist-box {
  background: #fff;
  border-radius: 24px;
  padding: 28px 24px 20px;
  box-shadow: 0 20px 60px rgba(27, 40, 80, 0.13), 0 0 0 1px rgba(59,110,248,0.07);
  max-width: 520px;
  border: 1px solid #e8eeff;
  position: relative;
  overflow: hidden;
}

.waitlist-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b6ef8, #6c44fc, #3b6ef8);
  background-size: 200% auto;
  animation: silverShine 3s linear infinite;
}

.waitlist-box h3 {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #1a1a2e 0%, #3b6ef8 50%, #6c44fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.waitlist-box p.small {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 20px;
  background: linear-gradient(
    90deg,
    #2e3f52 0%,
    #4a6070 30%,
    #6b8096 60%,
    #4a6070 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: silverShine 4s linear infinite;
}

/* TRUST BAR */
.trust-bar {
  background: linear-gradient(135deg, #f0f4ff 0%, #edfaf4 100%);
  border: 1.5px solid #d1e0ff;
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 16px;
}

.trust-bar-header {
  font-size: 12px;
  font-weight: 800;
  color: #1e3a8a;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}

.trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px 10px;
}

.trust-list li {
  font-size: 12px;
  font-weight: 600;
  color: #1a9e6e;
}

/* FORM */
.form-grid {
  display: grid;
  gap: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-size: 12px;
  font-weight: 700;
  color: #374151;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.field input,
.field select {
  width: 100%;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  padding: 13px 14px;
  font: inherit;
  font-size: 14px;
  color: #111;
  background: #fafafa;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
  appearance: none;
  -webkit-appearance: none;
}

.field input:focus,
.field select:focus {
  border-color: #3b6ef8;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(59, 110, 248, 0.12);
}

.field input::placeholder {
  color: #b0b7c3;
}

.field input.input-err,
.field select.input-err {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.10);
}

/* Phone row */
.phone-row {
  display: flex;
  gap: 8px;
}

.phone-row select {
  width: 120px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
}

.phone-row input {
  flex: 1;
}

/* Corridor select custom arrow */
.field > select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

/* Error messages */
.ferr {
  font-size: 11px;
  color: #ef4444;
  font-weight: 500;
  display: none;
}

.ferr.show {
  display: block;
}

.join-btn {
  margin-top: 4px;
  background: linear-gradient(135deg, #3b6ef8 0%, #6c44fc 100%);
  color: #fff;
  border-radius: 14px;
  padding: 16px;
  font-size: 16px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  width: 100%;
  letter-spacing: 0.02em;
  transition: opacity 0.15s, transform 0.1s, box-shadow 0.15s;
  box-shadow: 0 6px 20px rgba(59, 110, 248, 0.45);
}

.join-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.join-btn:active {
  transform: translateY(0);
}

.join-sub-text {
  font-size: 11px;
  color: #6b7280;
  text-align: center;
  line-height: 1.5;
  margin-top: 2px;
}

/* FOOT TEXT */
.legal-note {
  margin-top: 14px;
  font-size: 11px;
  color: #9ca3af;
  text-align: center;
  line-height: 1.6;
}

.legal-note a {
  color: #3b6ef8;
  text-decoration: none;
  font-weight: 600;
}

.legal-note a:hover {
  text-decoration: underline;
}

.stats {
  margin-top: 14px;
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  text-align: center;
  padding-top: 14px;
  border-top: 1px solid #f3f4f6;
}

.refund-badge {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #1a9e6e;
  background: #edfaf4;
  border: 1px solid #b6ead8;
  border-radius: 8px;
  padding: 8px 12px;
  margin-top: 6px;
}

.disclaimer {
  margin-top: 12px;
  font-size: 11px;
  color: #92400e;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 8px;
  padding: 10px 12px;
  text-align: center;
  line-height: 1.65;
  font-style: italic;
}

.page-footer {
  margin-top: 14px;
  font-size: 12px;
}

/* IMAGE SIDE */
.hero-visual {
  position: relative;
  min-height: 520px;
}

/* ✅ CONTROLLED BIG IMAGE */
.hero-img {
  position: absolute;
  right: -10px;
  top: -10px;

  width: 620px;
  height: auto;

  max-width: none;
}

.hero-img-caption {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #9ca3af;
  margin-top: 10px;
  font-style: italic;
  letter-spacing: 0.02em;
}

/* CHAT BUBBLE */
.chat-bubble {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  font-size: 12px;
}

.bubble-two {
  right: 40px;
  top: 140px;
}

/* ===================== */
/* RESPONSIVE */
/* ===================== */

@media (max-width: 980px) {
  .main-card {
    transform: none;
    padding: 20px;
  }

  /* Stack navbar vertically */
  .navbar {
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  /* Stack grid to single column */
  .card-body {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .hero-copy {
    margin-top: 0;
  }

  /* Hero image: pull out of absolute, center it */
  .hero-visual {
    min-height: auto;
  }

  .hero-img {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    display: block;
    right: auto;
    top: auto;
  }

  .waitlist-box {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  body {
    padding: 12px;
  }

  .main-card {
    padding: 16px 14px;
    border-radius: 20px;
  }

  /* Navbar: logo + button on same row, nav links below */
  .navbar {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
  }

  .logo img {
    height: 60px;
  }

  .nav-btn {
    padding: 9px 14px;
    font-size: 13px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .nav-link {
    text-align: center;
    padding: 8px 10px;
    font-size: 12px;
  }

  /* Hero copy */
  .hero-copy h1 {
    font-size: clamp(28px, 8vw, 40px);
    line-height: 1.1;
  }

  .hero-copy .lead {
    font-size: 14px;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 10px;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }

  /* Hero image */
  .hero-img {
    max-width: 100%;
  }

  /* Form */
  .waitlist-box {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .waitlist-box h3 {
    font-size: 18px;
  }

  .phone-row {
    flex-direction: column;
    gap: 10px;
  }

  .phone-row select {
    width: 100%;
  }

  .join-btn {
    padding: 15px;
    font-size: 15px;
  }

  /* Footer */
  .page-footer {
    text-align: center;
    font-size: 11px;
  }
}

@media (max-width: 400px) {
  .hero-copy h1 {
    font-size: 26px;
  }

  .nav-links {
    grid-template-columns: 1fr 1fr;
  }
}

/* SUCCESS VIEW */
#success-view {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 4px 8px;
  gap: 14px;
  width: 100%;
}


/* Three icons row */
.sv-icons-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 14px;
}

.sv-icon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.sv-icon-img {
  object-fit: contain;
}

.sv-icon-robot { width: 80px; height: 80px; }
.sv-icon-card  { width: 96px; height: 66px; }
.sv-icon-ten   { width: 80px; height: 80px; }

.sv-icon-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b7280;
}

/* Welcome heading */
.sv-title {
  font-size: 22px;
  font-weight: 900;
  color: #0a0f1e;
  letter-spacing: -0.03em;
}

.sv-body {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.65;
}

/* Sections (perks + corridors) */
.sv-section {
  width: 100%;
  background: #f4f7ff;
  border: 1px solid #dde6ff;
  border-radius: 14px;
  padding: 14px 16px;
  text-align: left;
}

.sv-section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.sv-section-icon {
  font-size: 20px;
}

.sv-section-label {
  font-size: 12px;
  font-weight: 800;
  color: #1e3a8a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sv-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sv-list li {
  font-size: 13px;
  color: #1f2937;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sv-tick {
  color: #1a9e6e;
  font-size: 14px;
  font-weight: 700;
  background: #e8f8f2;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sv-flag {
  font-size: 14px;
  background: #e8eeff;
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 600;
  color: #1e3a8a;
  flex-shrink: 0;
}

/* Closing note */
.sv-closing {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.7;
}

/* Share button */
.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: linear-gradient(135deg, #3b6ef8, #6c44fc);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 15px 28px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.1s;
  box-shadow: 0 6px 20px rgba(59,110,248,0.4);
  box-sizing: border-box;
}

.share-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

/* Trust line */
.sv-trust {
  font-size: 12px;
  color: #9ca3af;
  font-weight: 500;
}

/* ===================== */
/* EARLY ACCESS MODAL */
/* ===================== */

.ea-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.7);
  backdrop-filter: blur(4px);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.22s ease;
}

.ea-overlay.open { opacity: 1; }

.ea-box {
  background: #fff;
  border-radius: 24px;
  padding: 32px 28px 28px;
  width: 100%;
  max-width: 420px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
  transform: scale(0.94) translateY(12px);
  transition: transform 0.26s cubic-bezier(0.34,1.56,0.64,1);
}

.ea-overlay.open .ea-box { transform: scale(1) translateY(0); }

.ea-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: #f1f5f9;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 13px;
  cursor: pointer;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.ea-close:hover { background: #e2e8f0; }

.ea-header { text-align: center; margin-bottom: 22px; }

.ea-icon { font-size: 32px; margin-bottom: 8px; }

.ea-title {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.ea-sub {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
}

.ea-field {
  margin-bottom: 16px;
}

.ea-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 6px;
}

.ea-optional {
  font-weight: 400;
  color: #94a3b8;
  font-size: 11px;
}

.ea-field input[type="email"],
.ea-field input[type="tel"] {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  color: #0f172a;
  background: #f8fafc;
  transition: border-color 0.15s;
  outline: none;
}

.ea-field input:focus { border-color: #3b6ef8; background: #fff; }
.ea-field input.ea-input-err { border-color: #ef4444; }

.ea-err {
  font-size: 11px;
  color: #ef4444;
  margin-top: 4px;
  display: none;
}
.ea-err.show { display: block; }

.ea-field-hint {
  font-size: 11px;
  color: #94a3b8;
  margin-top: 5px;
}

.ea-interest-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ea-interest-option {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: #334155;
  font-weight: 500;
  cursor: pointer;
  padding: 9px 12px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  transition: border-color 0.15s, background 0.15s;
}

.ea-interest-option:has(input:checked) {
  border-color: #3b6ef8;
  background: #eff4ff;
  color: #1e40af;
}

.ea-interest-option input[type="radio"] {
  accent-color: #3b6ef8;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.ea-submit-btn {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, #3b6ef8 0%, #6c44fc 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 4px;
  transition: opacity 0.15s, transform 0.15s;
  font-family: inherit;
}
.ea-submit-btn:hover { opacity: 0.92; transform: translateY(-1px); }

.ea-trust {
  text-align: center;
  font-size: 11px;
  color: #94a3b8;
  margin-top: 8px;
}

.ea-legal {
  text-align: center;
  font-size: 11px;
  color: #94a3b8;
  margin-top: 10px;
  line-height: 1.5;
}

.ea-link { color: #3b6ef8; text-decoration: none; }
.ea-link:hover { text-decoration: underline; }

/* Success state */
#ea-success-state {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 12px 0 8px;
  gap: 10px;
}

.ea-success-icon { font-size: 48px; }

.ea-success-title {
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.03em;
}

.ea-success-sub {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
}

.ea-whatsapp-card {
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
  border-radius: 12px;
  padding: 14px 18px;
  width: 100%;
  text-align: center;
}

.ea-whatsapp-label {
  font-size: 13px;
  font-weight: 700;
  color: #15803d;
  margin-bottom: 4px;
}

.ea-whatsapp-sub {
  font-size: 12px;
  color: #166534;
}

.ea-coming-soon {
  font-size: 11px;
  color: #94a3b8;
  font-weight: 400;
}

.ea-done-btn {
  width: 100%;
  padding: 12px;
  background: #f1f5f9;
  color: #334155;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
}
.ea-done-btn:hover { background: #e2e8f0; }

/* ===================== */
/* VIDEO MODAL */
/* ===================== */

.video-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.82);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.22s ease;
}

.video-overlay.open {
  opacity: 1;
}

.video-modal-box {
  position: relative;
  width: 100%;
  max-width: 760px;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  transform: scale(0.95);
  transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1);
}

.video-overlay.open .video-modal-box {
  transform: scale(1);
}

.video-modal-box video {
  width: 100%;
  display: block;
  max-height: 80vh;
}

.video-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: rgba(0,0,0,0.55);
  color: white;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 14px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.video-close:hover {
  background: rgba(0,0,0,0.8);
}

/* ===================== */
/* MODAL */
/* ===================== */

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
}

.modal-overlay.closing {
  opacity: 0;
}

.modal-box {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 560px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  transform: scale(0.85);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.open .modal-box {
  transform: scale(1);
}

.modal-overlay.closing .modal-box {
  transform: scale(0.85);
}

/* Modal banner replaces old header */
.modal-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 22px 18px;
  border-radius: 20px 20px 0 0;
  position: relative;
}

.modal-banner-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.modal-banner-text {
  flex: 1;
}

.modal-banner-text h2 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 2px;
}

.modal-banner-text p {
  font-size: 12px;
  margin: 0;
  opacity: 0.75;
}

/* Privacy — teal/green theme */
.modal-privacy .modal-banner {
  background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
  color: #fff;
}

.modal-privacy .modal-banner-icon {
  background: rgba(255,255,255,0.2);
}

.modal-privacy .modal-body h3 {
  color: #0f766e;
}

.modal-privacy .modal-body h3::before {
  content: "▸ ";
  color: #14b8a6;
}

.modal-privacy .modal-ok {
  background: linear-gradient(135deg, #0f766e, #14b8a6);
}

/* Terms — blue/purple theme */
.modal-terms .modal-banner {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b6ef8 100%);
  color: #fff;
}

.modal-terms .modal-banner-icon {
  background: rgba(255,255,255,0.2);
}

.modal-terms .modal-body h3 {
  color: #1e3a8a;
}

.modal-terms .modal-body h3::before {
  content: "▸ ";
  color: #3b6ef8;
}

.modal-terms .modal-ok {
  background: linear-gradient(135deg, #1e3a8a, #3b6ef8);
}

.modal-close {
  background: rgba(255,255,255,0.25);
  border: none;
  font-size: 14px;
  cursor: pointer;
  color: #fff;
  line-height: 1;
  padding: 6px 9px;
  border-radius: 999px;
  position: absolute;
  top: 16px;
  right: 16px;
  transition: background 0.15s;
}

.modal-close:hover {
  background: rgba(255,255,255,0.4);
}

.modal-body {
  padding: 20px 24px;
  overflow-y: auto;
  flex: 1;
  font-size: 14px;
  line-height: 1.7;
  color: #444;
}

.modal-body h3 {
  font-size: 14px;
  font-weight: 700;
  color: #111;
  margin-top: 20px;
  margin-bottom: 6px;
}

.modal-body h3:first-child {
  margin-top: 0;
}

.modal-body p {
  margin-bottom: 10px;
}

.modal-body ul {
  padding-left: 18px;
  margin-bottom: 10px;
}

.modal-body li {
  margin-bottom: 4px;
}

.modal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-top: 1px solid #eee;
}

.modal-date {
  font-size: 12px;
  color: #aaa;
}

.modal-ok {
  background: #111;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.modal-ok:hover {
  background: #333;
}

/* HOW IT WORKS MODAL */
.hiw-intro {
  background: #f0f4ff;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #374151;
  line-height: 1.65;
  border-left: 4px solid #3b6ef8;
}

.hiw-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hiw-steps li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.hiw-num {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b6ef8, #6c44fc);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hiw-steps li div strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #111;
  margin-bottom: 3px;
}

.hiw-steps li div p {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.55;
  margin: 0;
}

.hiw-steps li div em {
  color: #3b6ef8;
  font-style: normal;
  font-weight: 600;
}

.sec-intro {
  background: #edfaf4;
  border-left-color: #1a9e6e;
}

.sec-num {
  background: linear-gradient(135deg, #1a9e6e, #0d7a53);
  font-size: 15px;
}

/* FEEDBACK MODAL */
.feedback-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 0 8px;
  gap: 8px;
}

.feedback-question {
  font-size: 20px;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.02em;
  margin: 0;
}

.feedback-sub {
  font-size: 14px;
  color: #6b7280;
  margin: 0 0 16px;
}

.feedback-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 320px;
}

.fb-btn {
  padding: 14px 20px;
  border-radius: 14px;
  border: 2px solid transparent;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  width: 100%;
}

.fb-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.10);
}

.fb-yes {
  background: #edfaf4;
  color: #1a9e6e;
  border-color: #b6ead8;
}

.fb-yes:hover {
  background: #d6f5e8;
}

.fb-maybe {
  background: #fff8ec;
  color: #d97706;
  border-color: #fde8a8;
}

.fb-maybe:hover {
  background: #fef0c7;
}

.fb-no {
  background: #fff0f0;
  color: #dc2626;
  border-color: #fecaca;
}

.fb-no:hover {
  background: #fee2e2;
}

.feedback-thanks {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  animation: fadeUp 0.35s ease forwards;
}

.feedback-thanks.show {
  display: flex;
}

.feedback-thanks-icon {
  font-size: 36px;
}

.feedback-thanks p {
  font-size: 15px;
  font-weight: 600;
  color: #374151;
  margin: 0;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
