:root {
  --navy: #0b1f3a;
  --blue: #1c62b5;
  --blue-light: #e8f1ff;
  --gold: #b8973a;
  --gold-light: #fdf6e3;
  --gray: #6c7a90;
  --gray-bg: #f6f8fb;
  --white: #ffffff;
  --text: #1a2636;
  --danger: #c0352b;
  --success: #1a7a3c;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Segoe UI', 'Trebuchet MS', sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
}

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── NAVBAR ── */
.pub-nav {
  background: var(--navy);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.pub-nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}
.pub-nav-mark {
  background: var(--gold);
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  padding: 6px 10px;
  border-radius: 6px;
  letter-spacing: 1px;
}
.pub-nav-title {
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0.9;
  line-height: 1.3;
}
.pub-nav-cta {
  background: var(--gold);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.15s;
}
.pub-nav-cta:hover { background: #9f7e2a; text-decoration: none; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1c3a6a 100%);
  color: var(--white);
  padding: 80px 24px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-badge {
  display: inline-block;
  background: rgba(184,151,58,0.25);
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  max-width: 680px;
  margin: 0 auto 20px;
}
.hero-sub {
  font-size: 1.15rem;
  opacity: 0.85;
  max-width: 560px;
  margin: 0 auto 40px;
}
.hero-cta-wrap { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s, transform 0.1s;
}
.btn-primary:hover { background: #9f7e2a; transform: translateY(-1px); text-decoration: none; }
.btn-outline {
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--white);
  padding: 14px 34px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.15s;
}
.btn-outline:hover { border-color: var(--white); text-decoration: none; }

/* ── SECTION ── */
.section { padding: 72px 24px; max-width: 1100px; margin: 0 auto; }
.section-center { text-align: center; }
.section-label {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-lead {
  color: var(--gray);
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto 48px;
}

/* ── WHY CARDS ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.why-card {
  background: var(--gray-bg);
  border-radius: 12px;
  padding: 32px 24px;
  border-left: 4px solid var(--blue);
}
.why-icon { font-size: 2rem; margin-bottom: 16px; }
.why-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.why-card p { color: var(--gray); font-size: 0.95rem; }

/* ── PLANS ── */
.plans-section { background: var(--gray-bg); padding: 72px 24px; }
.plans-inner { max-width: 1100px; margin: 0 auto; }
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.plan-card {
  background: var(--white);
  border-radius: 16px;
  border: 2px solid var(--gray-bg);
  padding: 32px 24px;
  position: relative;
  transition: box-shadow 0.15s, transform 0.15s;
}
.plan-card:hover { box-shadow: 0 8px 32px rgba(28,98,181,0.12); transform: translateY(-2px); }
.plan-card.featured {
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(184,151,58,0.18);
}
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}
.plan-name { font-size: 1.3rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.plan-subtitle { color: var(--gray); font-size: 0.85rem; margin-bottom: 20px; }
.plan-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 4px;
}
.plan-price span { font-size: 1rem; font-weight: 400; color: var(--gray); }
.plan-divider { border: none; border-top: 1px solid #e8edf4; margin: 20px 0; }
.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 8px;
}
.plan-feature .yes { color: var(--success); font-size: 1rem; }
.plan-feature .no { color: #bbb; font-size: 1rem; }
.plan-cta-wrap { margin-top: 24px; }
.plan-cta {
  display: block;
  text-align: center;
  background: var(--blue);
  color: var(--white);
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.15s;
}
.plan-cta:hover { background: var(--navy); text-decoration: none; }
.plan-card.featured .plan-cta { background: var(--gold); }
.plan-card.featured .plan-cta:hover { background: #9f7e2a; }

/* ── STEPS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  margin-top: 48px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--blue-light), var(--blue), var(--blue-light));
  z-index: 0;
}
.step-item {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 3px var(--blue);
}
.step-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-item p { font-size: 0.85rem; color: var(--gray); }

/* ── TRUST ── */
.trust-strip {
  background: var(--navy);
  color: var(--white);
  padding: 40px 24px;
  text-align: center;
}
.trust-strip p { font-size: 1.05rem; opacity: 0.85; max-width: 700px; margin: 0 auto; }
.trust-strip strong { color: var(--gold); }

/* ── CTA FINAL ── */
.cta-final {
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  padding: 80px 24px;
  text-align: center;
  color: var(--white);
}
.cta-final h2 { font-size: 2rem; font-weight: 800; margin-bottom: 16px; }
.cta-final p { opacity: 0.85; font-size: 1.05rem; max-width: 520px; margin: 0 auto 36px; }

/* ── FOOTER ── */
.pub-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.55);
  padding: 32px 24px;
  text-align: center;
  font-size: 0.85rem;
}
.pub-footer a { color: rgba(255,255,255,0.7); }

/* ── FORM PAGE ── */
.form-page { max-width: 680px; margin: 48px auto; padding: 0 24px 48px; }
.form-page h1 { font-size: 1.8rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.form-page .subtitle { color: var(--gray); margin-bottom: 36px; }
.form-card {
  background: var(--white);
  border: 1px solid #dce4ef;
  border-radius: 14px;
  padding: 36px;
  box-shadow: 0 4px 20px rgba(11,31,58,0.07);
}
.form-section-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 28px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--blue-light);
}
.form-section-title:first-child { margin-top: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group label .req { color: var(--danger); margin-left: 2px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #c8d3e0;
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.15s;
  font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(28,98,181,0.1);
}
.form-group .errorlist {
  list-style: none;
  color: var(--danger);
  font-size: 0.82rem;
  margin-top: 4px;
}
.form-checkbox { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.form-checkbox input[type=checkbox] { margin-top: 3px; width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--blue); }
.form-checkbox label { font-size: 0.9rem; color: var(--text); cursor: pointer; }
.form-checkbox .errorlist { color: var(--danger); font-size: 0.82rem; }
.form-submit {
  width: 100%;
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 16px;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 24px;
  transition: background 0.15s;
  font-family: inherit;
}
.form-submit:hover { background: var(--navy); }
.form-note { font-size: 0.82rem; color: var(--gray); text-align: center; margin-top: 16px; }

/* ── THANKS PAGE ── */
.thanks-page {
  max-width: 560px;
  margin: 80px auto;
  text-align: center;
  padding: 0 24px;
}
.thanks-icon { font-size: 4rem; margin-bottom: 24px; }
.thanks-page h1 { font-size: 2rem; font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.thanks-page p { color: var(--gray); font-size: 1.05rem; margin-bottom: 12px; }
.thanks-steps { background: var(--gray-bg); border-radius: 12px; padding: 24px; margin: 32px 0; text-align: left; }
.thanks-steps h3 { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.thanks-step { display: flex; gap: 12px; margin-bottom: 12px; font-size: 0.9rem; color: var(--text); }
.thanks-step-n {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--blue); color: var(--white);
  font-weight: 700; font-size: 0.8rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .hero h1 { font-size: 1.8rem; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 24px 20px; }
  .steps-grid::before { display: none; }
  .pub-nav-cta { padding: 8px 14px; font-size: 0.85rem; }
}
