
:root {
  --bg: #F1F8FE; --card: #FFFFFF; --primary: #1462A0; --accent: #54C0A6;
  --text: #0E2438; --muted: #4E6478; --radius: 18px; --shadow: 0 12px 28px rgba(20,98,160,.12);
  --font-h: 'Nunito', serif; --font-b: 'Source Sans Pro', sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-b); color: var(--text); background: var(--bg); line-height: 1.6; }
h1, h2, h3 { font-family: var(--font-h); line-height: 1.15; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, 92%); margin-inline: auto; }
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .85rem 1.6rem; border-radius: var(--radius);
  font-weight: 600; cursor: pointer; border: none; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-accent { background: var(--accent); color: #111; }
.wa-fab { position: fixed; right: 20px; bottom: 20px; background: #25D366; color: #fff; width: 56px; height: 56px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px rgba(0,0,0,.25); z-index: 40; font-size: 1.5rem; }
.cookie-banner { position: fixed; left: 0; right: 0; bottom: 0; background: #1462A0; color: #F1F8FE;
  padding: .9rem 1.2rem; display: flex; gap: 1rem; align-items: center; justify-content: space-between; flex-wrap: wrap; z-index: 50; font-size: .85rem; }
.cookie-banner button { background: #54C0A6; color: #111; border: none; padding: .5rem 1rem; border-radius: 6px; font-weight: 700; cursor: pointer; }
footer { padding: 3rem 0 6rem; font-size: .9rem; color: var(--muted); }
footer .foot-grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
footer nav a { display: block; margin-bottom: .4rem; color: var(--muted); }
.section-title { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: .6rem; }
.section-sub { color: var(--muted); max-width: 640px; }

header { position: sticky; top:0; background: rgba(241,248,254,.9); backdrop-filter: blur(6px); z-index: 30; border-bottom: 2px solid var(--primary); }
header .bar { display:flex; align-items:center; justify-content:space-between; padding: 1rem 0; }
.logo { font-family: var(--font-h); font-weight:800; color: var(--primary); }
nav.main a { margin-left: 1.3rem; font-weight:600; }
.hero { padding: 4.5rem 0 3rem; text-align:center; }
.hero .tag { color: var(--primary); font-weight:800; text-transform:uppercase; font-size:.82rem; letter-spacing:.08em; }
.hero h1 { font-size: clamp(2rem,4vw,3.1rem); margin: .8rem auto 1rem; max-width: 760px; }
.badges { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; margin-top:2rem; }
.badges span { background: var(--card); border-radius: 999px; box-shadow: var(--shadow); padding: .6rem 1.2rem; font-weight:700; color: var(--primary); }
section { padding: 3.5rem 0; }
.cards { display:grid; grid-template-columns: repeat(auto-fit,minmax(230px,1fr)); gap: 1.4rem; }
.card { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.8rem; text-align:center; }
.card h3 { color: var(--primary); margin: .6rem 0; }
.diff-list { list-style:none; display:grid; gap:.9rem; margin-top:1.2rem; }
.diff-list li { padding: 1rem 1.2rem; background: var(--card); border-radius: var(--radius); border-left: 4px solid var(--accent); }
