/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #07403F;
  color: #1E1E1E;
  min-height: 100vh;
}

/* ── NAV ── */
nav {
  background: #07403F;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo img { height: 34px; width: auto; }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(71,223,140,0.25);
  padding: 6px 14px; border-radius: 20px;
}
.nav-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: #47DF8C; }
.nav-badge span { font-size: 10px; color: #47DF8C; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.nav-ole { font-size: 10px; color: rgba(255,255,255,0.35); }

/* ── HERO — desktop two-column ── */
.hero {
  background: #07403F;
  padding: 56px 40px 64px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}
.hero::after {
  content: '';
  position: fixed;
  right: -100px; bottom: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 40px solid rgba(0,149,96,0.08);
  box-shadow: 0 0 0 40px rgba(0,149,96,0.05), 0 0 0 80px rgba(0,149,96,0.03);
  pointer-events: none;
}

/* hero left */
.hero-left { z-index: 2; }
.event-chip {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 16px; border-radius: 4px;
  margin-bottom: 24px;
}
.event-chip .ec-date { font-size: 11px; color: rgba(255,255,255,0.5); }
.event-chip .ec-sep { width: 1px; height: 14px; background: rgba(255,255,255,0.15); }
.event-chip .ec-time { font-size: 11px; color: #D8E64C; font-weight: 700; }
.hero h1 {
  font-size: 46px; font-weight: 800; color: #fff;
  line-height: 1.06; margin-bottom: 18px;
}
.hero h1 em { color: #47DF8C; font-style: normal; display: block; }
.hero-desc {
  font-size: 14px; color: rgba(255,255,255,0.55);
  line-height: 1.8; max-width: 480px; margin-bottom: 32px;
}
.learn-points { list-style: none; }
.learn-points li {
  display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px;
}
.lp-dot {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(0,149,96,0.2); border: 1px solid #009560;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.lp-dot svg { width: 8px; height: 8px; }
.learn-points li span { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.5; }
.learn-points li strong { color: #fff; }
.price-row {
  margin-top: 32px;
  display: flex; align-items: center; gap: 0;
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px; overflow: hidden;
  max-width: 480px;
}
.pr-item {
  flex: 1; padding: 14px 18px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.pr-item:last-child { border-right: none; }
.pr-label { font-size: 9px; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 4px; }
.pr-val { font-size: 15px; font-weight: 800; color: #D8E64C; }

/* ── FORM CARD ── */
.form-card {
  background: #fff;
  border-radius: 10px;
  padding: 32px;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  /* Ensure form never collapses */
  min-width: 0;
}
.form-card h2 { font-size: 18px; font-weight: 800; color: #07403F; margin-bottom: 4px; }
.form-card .fc-sub {
  font-size: 11px; color: #888; margin-bottom: 20px;
  padding-bottom: 18px; border-bottom: 1px solid #f0f0e8;
}
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block; font-size: 10px; font-weight: 700;
  color: #666; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 5px;
}
.form-group input {
  width: 100%; padding: 11px 14px;
  border: 1px solid #e0e0e0; border-radius: 4px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 13px; color: #333; background: #fff;
  outline: none; transition: border-color 0.2s;
  /* Prevent iOS zoom */
  font-size: max(16px, 13px);
}
.form-group input:focus { border-color: #009560; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.submit-btn {
  width: 100%; background: #009560; color: #fff;
  font-size: 13px; font-weight: 700; padding: 14px;
  border-radius: 4px; border: none; cursor: pointer;
  text-transform: uppercase; letter-spacing: 0.5px;
  margin-top: 4px; transition: background 0.2s;
  font-family: 'Open Sans', Arial, sans-serif;
}
.submit-btn:hover { background: #007a4e; }
.gift-pill {
  display: flex; align-items: center; gap: 8px;
  background: #F5F7EC; border-radius: 4px;
  padding: 10px 12px; margin-top: 12px;
}
.gift-pill .gp-icon { font-size: 16px; flex-shrink: 0; }
.gift-pill p { font-size: 10px; color: #555; line-height: 1.4; }
.gift-pill strong { color: #07403F; }
.form-tnc {
  font-size: 9px; color: #bbb;
  text-align: center; margin-top: 10px; line-height: 1.5;
}

/* ── TRUST STRIP ── */
.trust-strip {
  background: #002927;
  padding: 12px 40px;
  display: flex; align-items: center;
  gap: 16px; flex-wrap: wrap;
  justify-content: center;
}
.ts-label { font-size: 9px; color: rgba(255,255,255,0.25); letter-spacing: 1.5px; text-transform: uppercase; white-space: nowrap; }
.ts-sep { width: 1px; height: 14px; background: rgba(255,255,255,0.08); flex-shrink: 0; }
.ts-item { font-size: 10px; color: rgba(255,255,255,0.35); font-weight: 600; white-space: nowrap; }

/* ── FOOTER ── */
footer {
  background: #002927;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 40px;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-logo img { height: 28px; width: auto; opacity: 0.4; }
footer p { font-size: 10px; color: rgba(255,255,255,0.25); line-height: 1.7; }
footer .fr { text-align: right; }

/* ══════════════════════════════════════
   TABLET  (max 900px)
══════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-ole { display: none; }
  nav { padding: 0 24px; }

  .hero {
    grid-template-columns: 1fr;
    padding: 40px 24px 48px;
    gap: 40px;
  }
  .hero::after { display: none; }
  .hero h1 { font-size: 36px; }
  .hero-desc { max-width: 100%; }
  .price-row { max-width: 100%; }

  .form-card { padding: 28px 24px; }

  .trust-strip { padding: 12px 24px; gap: 10px; }
  .ts-sep { display: none; }

  footer { padding: 20px 24px; flex-direction: column; gap: 12px; }
  footer .fr { text-align: left; }
}

/* ══════════════════════════════════════
   MOBILE  (max 480px)
══════════════════════════════════════ */
@media (max-width: 480px) {
  nav { padding: 0 16px; height: 60px; }
  .nav-badge span { display: none; }
  .nav-badge { padding: 6px 10px; }

  .hero {
    padding: 28px 16px 36px;
    gap: 32px;
  }
  .hero h1 { font-size: 28px; }
  .event-chip { flex-wrap: wrap; gap: 6px; }

  .learn-points li span { font-size: 12px; }
  .price-row { flex-direction: column; border-radius: 6px; }
  .pr-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .pr-item:last-child { border-bottom: none; }

  .form-card { padding: 24px 16px; border-radius: 8px; }
  .form-card h2 { font-size: 16px; }
  .form-row { grid-template-columns: 1fr; }

  .trust-strip { padding: 10px 16px; }

  footer { padding: 16px; }
}
