:root {
  --bg: #f7f5ef;
  --fg: #16213a;
  --muted: #5b6779;
  --card: #ffffff;
  --border: #dcdfe6;
  --navy: #0f2547;
  --navy-2: #1a3a6e;
  --red: #b8311f;
  --gold: #d4a93a;
  --success: #1f7a4c;
  --radius: 6px;
  --shadow: 0 6px 20px -10px rgba(15, 37, 71, 0.25);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }

.container { max-width: 880px; margin: 0 auto; padding: 0 16px; }

/* Top bar */
.topbar {
  background: var(--navy);
  color: #fff;
  font-size: 12px;
}
.topbar .container {
  display: flex; align-items: center; gap: 8px;
  padding-top: 6px; padding-bottom: 6px;
}
.dot-gold {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold); display: inline-block;
}
.topbar-text { letter-spacing: 0.02em; font-weight: 500; }

/* Header */
.header {
  background: var(--card);
  border-bottom: 1px solid var(--border);
}
.header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; padding-bottom: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.seal {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: grid; place-items: center;
  box-shadow: var(--shadow);
  font-size: 18px;
}
.eyebrow {
  font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--muted);
}
.brand-title { font-weight: 600; font-size: 15px; }
.header-meta {
  font-size: 12px; color: var(--muted);
  display: flex; align-items: center; gap: 6px;
}
.flag-stripe {
  height: 4px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--red) 50%, var(--gold) 100%);
}

/* Hero */
.hero { padding: 40px 0 24px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border); background: #eef1f6;
  border-radius: 999px; padding: 5px 12px;
  font-size: 12px; font-weight: 500; color: var(--navy-2);
}
.pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
h1 {
  margin: 18px 0 0;
  font-size: 36px;
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: -0.01em;
}
h1 .sub {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: #2c3a55;
  margin-top: 10px;
}
.lead {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.cta-wrap { margin-top: 26px; }
.btn {
  display: inline-flex; width: 100%; justify-content: center;
  align-items: center; gap: 8px;
  background: var(--red); color: #fff;
  font-weight: 600; font-size: 17px;
  padding: 16px 24px;
  border: none; border-radius: var(--radius);
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: filter 0.15s, transform 0.05s;
  cursor: pointer;
}
.btn:hover { filter: brightness(1.08); }
.btn:active { transform: translateY(1px); }
.btn-navy { background: var(--navy); }
.cta-note {
  text-align: center; font-size: 12px;
  color: var(--muted); margin-top: 10px;
}

/* Trust strip */
.trust {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  margin-top: 36px;
}
.trust-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 6px; text-align: center; font-size: 13px; font-weight: 500;
}
.trust-item .icon { color: var(--navy); font-size: 18px; }

/* Sections */
section.block { padding: 16px 0 32px; }
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 1px 0 rgba(15,37,71,0.03);
}
h2 {
  margin: 4px 0 0;
  font-size: 22px;
  color: var(--navy);
}
ul.checks { list-style: none; padding: 0; margin: 18px 0 0; }
ul.checks li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 6px 0;
}
.check {
  flex-shrink: 0; width: 20px; height: 20px;
  border-radius: 50%; background: var(--navy);
  color: #fff; display: grid; place-items: center;
  font-size: 12px; margin-top: 2px;
}

/* Steps */
.steps {
  display: grid; gap: 14px; margin-top: 18px;
  grid-template-columns: 1fr;
}
.step {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 8px; padding: 18px;
  transition: border-color 0.15s;
}
.step:hover { border-color: rgba(15,37,71,0.4); }
.step-n {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px; letter-spacing: 0.1em;
  color: var(--red);
}
.step-t { font-weight: 600; color: var(--navy); margin-top: 6px; }
.step-d { color: var(--muted); font-size: 14px; margin-top: 4px; }

/* Payment methods */
.section-lead { color: var(--muted); font-size: 14px; margin: 8px 0 0; }
.pay-grid {
  display: grid; gap: 10px; margin-top: 18px;
  grid-template-columns: repeat(2, 1fr);
}
.pay {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 6px; padding: 12px;
  text-align: center; font-size: 14px; font-weight: 500;
}
@media (min-width: 640px) {
  .pay-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  background: var(--card);
  margin-top: 24px;
}
footer .container {
  padding-top: 14px; padding-bottom: 14px;
  font-size: 9px; color: color-mix(in oklab, var(--muted) 60%, transparent);
  line-height: 1.4;
}
footer p { margin: 0 0 4px; }

/* Toasts */
.toast-stack {
  position: fixed; bottom: 16px; right: 16px;
  display: flex; flex-direction: column; gap: 8px;
  z-index: 50;
  max-width: calc(100% - 32px);
  pointer-events: none;
}
.toast {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 3px solid var(--success);
  border-radius: 6px;
  padding: 10px 14px;
  box-shadow: 0 10px 30px -12px rgba(15,37,71,0.25);
  font-size: 13px;
  min-width: 240px;
  max-width: 320px;
  animation: slideIn 0.3s ease-out, fadeOut 0.4s ease-in 4.1s forwards;
  pointer-events: auto;
}
.toast strong { color: var(--navy); }
.toast .desc { color: var(--muted); font-size: 11px; margin-top: 2px; }
@keyframes slideIn {
  from { transform: translateX(20px); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}
@keyframes fadeOut {
  to { opacity: 0; transform: translateX(20px); }
}

/* Desktop overlay */
.desktop-overlay {
  display: none;
}

/* Responsive */
@media (min-width: 640px) {
  .desktop-overlay {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 100;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: #fff;
    padding: 32px;
    text-align: center;
  }
  .desktop-overlay .phone-icon {
    color: var(--gold);
    margin-bottom: 24px;
  }
  .desktop-overlay h2 {
    color: #fff;
    font-size: 28px;
    margin: 0 0 12px;
  }
  .desktop-overlay p {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    max-width: 480px;
    line-height: 1.6;
    margin: 0;
  }

  .hero { padding: 64px 0 32px; }
  h1 { font-size: 48px; }
  h1 .sub { font-size: 22px; }
  .lead { font-size: 18px; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .card { padding: 32px; }
}
