:root {
  --navy: #0f1f3d;
  --navy-2: #16294f;
  --blue: #1e5eff;
  --blue-dark: #1548c7;
  --red: #d92d3a;
  --red-dark: #b81f2c;
  --ink: #1a2233;
  --muted: #5b6b85;
  --bg: #f7f9fc;
  --card: #ffffff;
  --line: #e3e9f2;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(15, 31, 61, 0.08);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* Header */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo { font-weight: 800; font-size: 1.25rem; color: var(--navy); text-decoration: none; letter-spacing: -0.02em; }
.logo span { color: var(--blue); }
.logo .flag { color: var(--red); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 0.95rem; font-weight: 500; }
.nav-links a:hover { color: var(--navy); }
.nav-links a.active { color: var(--navy); font-weight: 700; }
.btn {
  display: inline-block; padding: 13px 28px; border-radius: 999px;
  font-weight: 600; font-size: 1rem; text-decoration: none; cursor: pointer;
  border: none; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 4px 14px rgba(217,45,58,.25); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(217,45,58,.32); }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.5); }
.btn-ghost:hover { border-color: #fff; }
.nav .btn { padding: 9px 20px; font-size: 0.9rem; }
.nav-links a.btn-primary, .nav-links a.btn-primary:hover, .nav-links a.btn-primary.active { color: #fff; }

/* Floating quote pill */
.floating-quote {
  position: fixed; bottom: 24px; right: 24px; z-index: 100;
  background: var(--red); color: #fff; padding: 14px 28px; border-radius: 999px;
  font-weight: 700; font-size: 1rem; text-decoration: none;
  box-shadow: 0 8px 24px rgba(217,45,58,.45);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.floating-quote:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(217,45,58,.5); }
@media (max-width: 640px) { .floating-quote { bottom: 16px; right: 16px; padding: 12px 22px; font-size: .95rem; } }

/* Hero (home) */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 55%, #1c3a75 100%);
  color: #fff; padding: 96px 0 110px; text-align: center; position: relative; overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(600px 300px at 15% 10%, rgba(30,94,255,.25), transparent 60%),
    radial-gradient(500px 260px at 85% 90%, rgba(217,45,58,.18), transparent 60%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.eyebrow {
  display: inline-block; padding: 6px 16px; border-radius: 999px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  font-size: 0.85rem; font-weight: 600; letter-spacing: .04em; margin-bottom: 22px;
}
.eyebrow .dot-red { color: #ff6b76; }
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1.15; letter-spacing: -0.03em; margin-bottom: 18px; font-weight: 800; }
h1 .accent { color: #7ea4ff; }
.hero p.sub { font-size: 1.2rem; color: #c6d2e8; max-width: 640px; margin: 0 auto 34px; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; justify-content: center; margin-top: 56px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat b { display: block; font-size: 1.6rem; font-weight: 800; }
.stat span { color: #9fb0cc; font-size: .9rem; }

/* Interior page banner */
.page-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff; padding: 64px 0; text-align: center;
}
.page-hero h1 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 8px; }
.page-hero p { color: #c6d2e8; font-size: 1.1rem; max-width: 620px; margin: 0 auto; }

/* Sections */
section { padding: 84px 0; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 52px; }
.section-head .kicker { color: var(--blue); font-weight: 700; font-size: .9rem; letter-spacing: .08em; text-transform: uppercase; }
.section-head h2 { font-size: clamp(1.7rem, 3.5vw, 2.3rem); letter-spacing: -0.02em; margin: 10px 0 12px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* Feature cards */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.feature {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow);
}
.feature .icon {
  width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; background: #e9efff; margin-bottom: 16px;
}
.feature h3 { font-size: 1.1rem; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: .95rem; }

/* Chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.chip {
  background: var(--card); border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 18px; font-size: .9rem; font-weight: 600; color: var(--ink);
}

/* Pricing tiers */
.tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 24px; align-items: stretch; }
.tier {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; display: flex; flex-direction: column; position: relative;
  box-shadow: var(--shadow);
}
.tier.popular { border: 2px solid var(--red); box-shadow: 0 16px 40px rgba(217,45,58,.12); }
.badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: #fff; font-size: .78rem; font-weight: 700;
  padding: 5px 16px; border-radius: 999px; letter-spacing: .03em; white-space: nowrap;
}
.tier h3 { font-size: 1.25rem; margin-bottom: 4px; }
.tier .tagline { color: var(--muted); font-size: .92rem; margin-bottom: 18px; }
.price { font-size: 2.4rem; font-weight: 800; letter-spacing: -0.02em; }
.price small { font-size: 1rem; font-weight: 500; color: var(--muted); }
.price-note { color: var(--muted); font-size: .85rem; margin-bottom: 22px; }
.tier ul { list-style: none; margin-bottom: 28px; flex: 1; }
.tier li { padding: 7px 0; font-size: .95rem; color: var(--ink); display: flex; gap: 10px; align-items: flex-start; }
.tier li::before { content: "✓"; color: var(--blue); font-weight: 800; flex-shrink: 0; }
.tier li.dim { color: #a6b2c6; }
.tier li.dim::before { content: "—"; color: #cad3e0; }
.tier .btn { text-align: center; }
.tier-outline { background: transparent; color: var(--red); border: 1.5px solid var(--red); }
.tier-outline:hover { background: #fdeeef; }

/* Rush banner */
.rush-banner {
  max-width: 820px; margin: 36px auto 0;
  background: linear-gradient(135deg, #fff7e8, #fff1f0);
  border: 1px solid #f3ddc0; border-radius: var(--radius);
  padding: 24px 30px; text-align: center;
}
.rush-banner p { font-size: 1.05rem; }

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; }
.step { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.step .num {
  width: 38px; height: 38px; border-radius: 50%; background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 700; margin-bottom: 14px;
}
.step h3 { font-size: 1.05rem; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: .92rem; }

/* CTA band */
.cta-band {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff; text-align: center; padding: 76px 0;
}
.cta-band h2 { font-size: clamp(1.7rem, 3.5vw, 2.3rem); margin-bottom: 12px; }
.cta-band p { color: #c6d2e8; font-size: 1.1rem; margin-bottom: 28px; }

/* Contact */
.contact-section { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%); color: #fff; }
.contact-section .section-head h2 { color: #fff; }
.contact-section .section-head .kicker { color: #7ea4ff; }
.contact-section .section-head p { color: #c6d2e8; }
.contact-card {
  max-width: 640px; margin: 0 auto; background: #fff; border-radius: var(--radius);
  padding: 40px; color: var(--ink); box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { font-size: .88rem; font-weight: 600; display: block; margin-bottom: 6px; }
input, select, textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px;
  font-size: 1rem; font-family: inherit; margin-bottom: 18px; background: #fff; color: var(--ink);
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--blue); }
textarea { resize: vertical; min-height: 110px; }
.contact-card .btn { width: 100%; font-size: 1.05rem; padding: 14px; }
.form-note { text-align: center; color: var(--muted); font-size: .85rem; margin-top: 14px; }
.form-note a { color: var(--blue); }
.check-label { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; font-weight: 500; cursor: pointer; }
.check-label input { width: auto; margin: 0; accent-color: var(--red); }

/* Includes panel */
.includes-panel {
  max-width: 820px; margin: 44px auto 0; background: var(--bg);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 34px;
}
.includes-panel h3 { text-align: center; font-size: 1.15rem; margin-bottom: 16px; }
.includes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 10px 24px; font-size: .95rem; }

/* Articles */
.article-wrap { max-width: 840px; margin: 0 auto; padding: 56px 24px; }
.article-body {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(28px, 5vw, 56px); box-shadow: var(--shadow);
}
.article-body h2 { font-size: 1.5rem; letter-spacing: -0.01em; margin: 40px 0 14px; }
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { font-size: 1.15rem; margin: 28px 0 10px; }
.article-body p { margin: 0 0 16px; }
.article-body ul, .article-body ol { margin: 0 0 18px 22px; }
.article-body li { margin: 6px 0; }
.article-body blockquote {
  border-left: 4px solid var(--blue); padding: 12px 20px; background: var(--bg);
  border-radius: 0 10px 10px 0; margin: 0 0 18px; color: var(--muted); font-style: italic;
}
.article-body hr { border: none; border-top: 1px solid var(--line); margin: 36px 0; }
.article-meta { color: #c6d2e8; font-size: .9rem; margin-top: 12px; }
.article-cta { text-align: center; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--line); }
.article-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow); display: block; text-decoration: none; color: var(--ink);
  transition: transform .15s ease, box-shadow .15s ease;
}
.article-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(15,31,61,.12); }
.article-card .tag { color: var(--blue); font-weight: 700; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; }
.article-card h3 { font-size: 1.2rem; margin: 8px 0; }
.article-card p { color: var(--muted); font-size: .95rem; margin-bottom: 12px; }
.article-card .read-more { color: var(--red); font-weight: 600; font-size: .92rem; }

/* Footer */
footer { background: var(--navy); color: #9fb0cc; padding: 36px 0; font-size: .9rem; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
footer a { color: #c6d2e8; text-decoration: none; }
footer a:hover { color: #fff; }

@media (max-width: 640px) {
  .nav-links a:not(.btn) { display: none; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
}
