:root {
  --navy: #0a2e5c;
  --navy-deep: #072241;
  --red: #e11d2e;
  --blue: #2b5fd9;
  --cyan: #17b8d4;
  --ink: #0f1a2b;
  --muted: #5a6b82;
  --bg: #ffffff;
  --bg-soft: #f5f8fc;
  --line: #e3e9f2;
  --radius: 14px;
  --wrap: 1120px;
  --font: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 1.25rem; }
.center { text-align: center; }
.hl { color: var(--red); }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .8rem;
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 .75rem;
}
.eyebrow.center { text-align: center; }

h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 .6rem; color: var(--navy); font-weight: 800; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); letter-spacing: -.01em; }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1rem; }

.skip {
  position: absolute; left: -999px; top: 0;
  background: var(--navy); color: #fff; padding: .6rem 1rem; z-index: 100;
}
.skip:focus { left: 1rem; top: 1rem; }

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand-logo { height: 34px; width: auto; }
.brand-text { font-weight: 800; font-size: 1.5rem; color: var(--navy); letter-spacing: -.02em; }
.brand-text b { color: var(--red); font-weight: 800; }
.nav { display: flex; align-items: center; gap: 1.4rem; }
.nav > a:not(.btn) { color: var(--ink); font-weight: 600; font-size: .95rem; }
.nav > a:not(.btn):hover { color: var(--blue); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .7rem 1.3rem; border-radius: 999px;
  font-weight: 700; font-size: .95rem; cursor: pointer;
  border: 2px solid transparent; transition: transform .06s ease, background .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-lg { padding: .95rem 1.7rem; font-size: 1rem; }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: #c4121f; }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--navy); }
.btn-ghost-invert { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-ghost-invert:hover { border-color: #fff; }

.nav-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; cursor: pointer; }
.nav-toggle span { display: block; height: 2px; background: var(--navy); margin: 5px auto; width: 24px; transition: .2s; }

/* ── Hero ── */
.hero { background: linear-gradient(180deg, var(--bg-soft), #fff); padding: clamp(3rem, 7vw, 5.5rem) 0; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 34rem; }
.hero-cta { display: flex; gap: .9rem; flex-wrap: wrap; margin: 1.5rem 0 1.25rem; }
.hero-points { list-style: none; margin: 0; padding: 0; display: flex; gap: 1.25rem; flex-wrap: wrap; }
.hero-points li { position: relative; padding-left: 1.4rem; font-weight: 600; font-size: .92rem; color: var(--navy); }
.hero-points li::before { content: "✓"; position: absolute; left: 0; color: var(--cyan); font-weight: 800; }

.hero-art { display: flex; justify-content: center; }
.squares {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  width: min(320px, 80vw); transform: rotate(8deg);
}
.squares span { aspect-ratio: 1; border-radius: 8px; }
.squares span:nth-child(1) { background: var(--navy); }
.squares span:nth-child(2) { background: var(--cyan); }
.squares span:nth-child(3) { background: var(--red); }
.squares span:nth-child(4) { background: var(--blue); }
.squares span:nth-child(5) { background: var(--navy); opacity:.15; }
.squares span:nth-child(6) { background: var(--red); }
.squares span:nth-child(7) { background: var(--cyan); }
.squares span:nth-child(8) { background: var(--blue); }
.squares span:nth-child(9) { background: var(--navy); }

/* ── Sections ── */
.section { padding: clamp(3rem, 6vw, 5rem) 0; }
.section-lead { font-size: 1.1rem; color: var(--muted); max-width: 46rem; }
.section-lead.center { margin-left: auto; margin-right: auto; }

.problem { background: var(--navy-deep); color: #dbe6f5; }
.problem h2 { color: #fff; }
.problem .section-lead { color: #b9c8de; }
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2rem; }
.mini { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 1.4rem; }
.mini h3 { color: #fff; }
.mini p { color: #b9c8de; margin: 0; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.step { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; }
.step-n { font-weight: 800; color: var(--red); font-size: 1.1rem; letter-spacing: .05em; }
.step h3 { margin-top: .5rem; }
.step p { color: var(--muted); margin: 0; }

.cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 2rem; }
.cat {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem;
  transition: box-shadow .15s ease, transform .15s ease; background: #fff;
}
.cat:hover { box-shadow: 0 12px 32px rgba(10,46,92,.10); transform: translateY(-2px); }
.cat-tag {
  display: inline-block; background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff; font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; padding: .3rem .7rem; border-radius: 999px; margin-bottom: .8rem;
}
.cat p { color: var(--muted); }
.cat-link { font-weight: 700; }

.benefits { background: var(--bg-soft); }
.ben-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 2rem; }
.ben { text-align: center; }
.ben-ico {
  width: 56px; height: 56px; margin: 0 auto .8rem; border-radius: 14px;
  display: grid; place-items: center; font-size: 1.5rem;
  background: #fff; border: 1px solid var(--line);
}
.ben p { color: var(--muted); font-size: .95rem; }

.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2rem; }
.news-card { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; display: flex; flex-direction: column; }
.news-card .news-body { padding: 1.3rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.news-date { font-size: .8rem; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: .06em; }
.news-card h3 { font-size: 1.05rem; margin: 0; }
.news-card p { color: var(--muted); font-size: .92rem; margin: 0; flex: 1; }
.news-card a { font-weight: 700; font-size: .9rem; }
.news-empty { text-align: center; color: var(--muted); margin-top: 2rem; }

.cta-final { background: linear-gradient(135deg, var(--navy), var(--navy-deep)); color: #fff; padding: clamp(3.5rem, 7vw, 5.5rem) 0; text-align: center; }
.cta-final h2 { color: #fff; max-width: 42rem; margin: 0 auto .8rem; }
.cta-final p { color: #c3d2e8; max-width: 40rem; margin: 0 auto 1.6rem; font-size: 1.1rem; }

/* ── Footer ── */
.site-footer { background: var(--navy-deep); color: #a9bcd6; padding: 3rem 0 1.5rem; font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; }
.footer-brand { color: #fff; }
.site-footer h4 { color: #fff; font-size: .95rem; margin-bottom: .8rem; }
.site-footer nav { display: flex; flex-direction: column; gap: .45rem; }
.site-footer a { color: #a9bcd6; }
.site-footer a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 2rem; padding-top: 1.25rem; font-size: .85rem; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { display: none; }
  .cards-3, .steps, .cat-grid, .ben-grid, .news-grid { grid-template-columns: 1fr; }
  .ben-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav {
    position: fixed; inset: 68px 0 auto 0; background: #fff; flex-direction: column;
    align-items: stretch; gap: .25rem; padding: 1rem 1.25rem 1.5rem;
    border-bottom: 1px solid var(--line); transform: translateY(-120%); transition: transform .22s ease;
  }
  .nav.open { transform: translateY(0); }
  .nav > a:not(.btn) { padding: .7rem 0; border-bottom: 1px solid var(--line); }
  .nav .btn { margin-top: .5rem; }
  .nav-toggle { display: block; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
@media (max-width: 520px) {
  .ben-grid, .footer-grid { grid-template-columns: 1fr; }
}
