/* =========================================================
   FinoviaFocus — Design System
   Palette: Deep Teal · Amber Gold · Light Sand · Off White · Dark Charcoal
   ========================================================= */

:root {
  /* Core palette */
  --teal-900: #0a3532;
  --teal-800: #0e4b47;
  --teal-700: #12615b;
  --teal-600: #17766e;
  --teal-500: #2a9187;
  --amber-600: #c8912f;
  --amber-500: #e0a83c;
  --amber-400: #edc06a;
  --amber-100: #f7e7c4;
  --sand-300: #e7dcc5;
  --sand-200: #f0e8d7;
  --sand-100: #f5efe2;
  --offwhite: #faf8f3;
  --charcoal-900: #14191a;
  --charcoal-800: #1c2321;
  --charcoal-700: #2b3230;
  --ink: #222b2a;
  --muted: #5d6b68;
  --line: #e4dcc9;

  /* Typography */
  --font-head: "Fraunces", "Playfair Display", Georgia, serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Layout */
  --maxw: 1200px;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 18px rgba(14, 75, 71, 0.08);
  --shadow: 0 18px 50px rgba(14, 75, 71, 0.12);
  --shadow-lg: 0 30px 80px rgba(10, 53, 50, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--offwhite);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--teal-800);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.3rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }
p { color: var(--muted); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(60px, 9vw, 120px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.center { text-align: center; }
.narrow { max-width: 760px; margin-left: auto; margin-right: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--amber-600);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--amber-500); }
.center .eyebrow::before { display: none; }

.lead { font-size: 1.12rem; color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.98rem;
  padding: 15px 30px; border-radius: 999px; cursor: pointer;
  border: 1.5px solid transparent; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--amber-500); color: var(--charcoal-900); box-shadow: 0 12px 30px rgba(224, 168, 60, 0.35); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(224, 168, 60, 0.45); }
.btn--ghost { background: transparent; border-color: rgba(255,255,255,0.4); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,0.12); transform: translateY(-3px); }
.btn--outline { background: transparent; border-color: var(--teal-700); color: var(--teal-800); }
.btn--outline:hover { background: var(--teal-800); color: #fff; transform: translateY(-3px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 248, 243, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo { width: 42px; height: 42px; }
.brand__name { font-family: var(--font-head); font-weight: 600; font-size: 1.3rem; color: var(--teal-800); letter-spacing: -0.02em; }
.brand__name b { color: var(--amber-600); font-weight: 600; }

.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__links a {
  font-weight: 500; font-size: 0.97rem; color: var(--charcoal-700);
  padding: 9px 16px; border-radius: 999px; transition: background .2s, color .2s;
}
.nav__links a:hover { background: var(--sand-200); color: var(--teal-800); }
.nav__links a.active { background: var(--teal-800); color: #fff; }

.nav__toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--teal-800); margin: 5px 0; transition: .3s; border-radius: 2px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--teal-900); color: #fff; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.28; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(10,53,50,0.96) 0%, rgba(14,75,71,0.82) 45%, rgba(10,53,50,0.55) 100%);
}
.hero__inner { position: relative; z-index: 2; padding: clamp(90px, 14vw, 150px) 0 clamp(80px, 12vw, 130px); }
.hero__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 60px; align-items: center; }
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero h1 em { color: var(--amber-400); font-style: normal; }
.hero .eyebrow { color: var(--amber-400); }
.hero__lead { color: rgba(255,255,255,0.82); font-size: 1.15rem; max-width: 540px; margin-bottom: 34px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__card {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(6px); border-radius: var(--radius-lg); padding: 30px;
}
.hero__card h3 { color: #fff; font-size: 1.15rem; margin-bottom: 18px; }
.hero__stat { display: flex; align-items: baseline; gap: 12px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
.hero__stat:last-child { border-bottom: none; }
.hero__stat b { font-family: var(--font-head); font-size: 1.9rem; color: var(--amber-400); min-width: 90px; }
.hero__stat span { color: rgba(255,255,255,0.78); font-size: 0.92rem; }

/* page hero (interior) */
.page-hero { position: relative; overflow: hidden; background: var(--teal-800); color: #fff; }
.page-hero__bg { position: absolute; inset: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.22; }
.page-hero__bg::after { content:""; position:absolute; inset:0; background: linear-gradient(115deg, rgba(10,53,50,0.94), rgba(14,75,71,0.7)); }
.page-hero__inner { position: relative; z-index: 2; padding: clamp(70px, 10vw, 120px) 0; max-width: 780px; }
.page-hero h1 { color: #fff; margin-bottom: 18px; }
.page-hero .eyebrow { color: var(--amber-400); }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.12rem; }
.crumbs { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.crumbs a:hover { color: var(--amber-400); }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.card__icon {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: var(--sand-100); color: var(--teal-700); margin-bottom: 22px;
}
.card__icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 12px; }
.card p { font-size: 0.98rem; }
.card--feature { position: relative; overflow: hidden; }
.card--feature::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--amber-500), var(--teal-600)); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.card--feature:hover::before { transform: scaleX(1); }
.card__num { font-family: var(--font-head); font-size: 2.4rem; color: var(--amber-500); opacity: .5; line-height: 1; margin-bottom: 14px; }

/* ---------- Split / alternating ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 4/3.2; }
.split__media { position: relative; }
.split__badge {
  position: absolute; bottom: -22px; left: -22px; background: var(--amber-500); color: var(--charcoal-900);
  border-radius: var(--radius); padding: 20px 26px; box-shadow: var(--shadow); max-width: 220px;
}
.split__badge b { font-family: var(--font-head); font-size: 1.7rem; display: block; }
.split__badge span { font-size: 0.85rem; font-weight: 600; }

.checklist { margin-top: 24px; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; color: var(--ink); }
.checklist svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--teal-600); margin-top: 3px; }
.checklist b { color: var(--teal-800); }

/* ---------- Stats band ---------- */
.stats-band { background: var(--teal-800); color: #fff; }
.stats-band .grid-4 { gap: 20px; }
.stat {
  text-align: center; padding: 30px 18px; border-radius: var(--radius);
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
}
.stat b { font-family: var(--font-head); font-size: clamp(2.2rem, 4vw, 3rem); color: var(--amber-400); display: block; line-height: 1; }
.stat span { color: rgba(255,255,255,0.78); font-size: 0.92rem; margin-top: 10px; display: block; }

/* ---------- Section headings ---------- */
.section-head { max-width: 680px; margin-bottom: 54px; }
.section-head.center { margin-left: auto; margin-right: auto; }
.section-head p { margin-top: 14px; font-size: 1.08rem; }

/* backgrounds */
.bg-sand { background: var(--sand-100); }
.bg-offwhite { background: var(--offwhite); }
.bg-teal { background: var(--teal-900); color: #fff; }
.bg-teal h2, .bg-teal h3 { color: #fff; }
.bg-teal p { color: rgba(255,255,255,0.8); }

/* ---------- Timeline ---------- */
.timeline { position: relative; margin-top: 30px; }
.timeline::before { content: ""; position: absolute; left: 22px; top: 8px; bottom: 8px; width: 2px; background: var(--line); }
.tl-item { position: relative; padding: 0 0 42px 68px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item__dot {
  position: absolute; left: 0; top: 0; width: 46px; height: 46px; border-radius: 50%;
  background: #fff; border: 2px solid var(--amber-500); color: var(--teal-800);
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 600; z-index: 1;
}
.tl-item h3 { margin-bottom: 8px; }
.tl-item p { font-size: 0.98rem; }

/* ---------- Team ---------- */
.team-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s; }
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.team-card__img { aspect-ratio: 1/1; overflow: hidden; }
.team-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.team-card:hover .team-card__img img { transform: scale(1.06); }
.team-card__body { padding: 24px; }
.team-card__body h3 { font-size: 1.2rem; margin-bottom: 4px; }
.team-card__role { color: var(--amber-600); font-weight: 600; font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.05em; }
.team-card__body p { font-size: 0.94rem; margin-top: 12px; }

/* ---------- Article (Analize) ---------- */
.article { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.article__media { aspect-ratio: 16/6.5; overflow: hidden; }
.article__media img { width: 100%; height: 100%; object-fit: cover; }
.article__body { padding: clamp(30px, 5vw, 60px); }
.article__meta { display: flex; gap: 16px; align-items: center; font-size: 0.82rem; color: var(--amber-600); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 18px; }
.article__body h2 { margin-bottom: 20px; }
.article__body h3 { margin: 34px 0 14px; }
.article__body p { margin-bottom: 16px; color: var(--ink); }
.article__body p.lead { color: var(--muted); font-size: 1.12rem; }
.article__body ul.dotted { margin: 8px 0 20px; display: grid; gap: 10px; }
.article__body ul.dotted li { position: relative; padding-left: 28px; color: var(--ink); }
.article__body ul.dotted li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 8px; height: 8px; border-radius: 50%; background: var(--amber-500); }
.example-box {
  background: var(--sand-100); border-left: 4px solid var(--teal-600);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 24px 28px; margin: 24px 0;
}
.example-box h4 { font-family: var(--font-body); font-weight: 700; color: var(--teal-800); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.78rem; margin-bottom: 10px; }
.example-box p { margin-bottom: 0; }
.takeaways {
  background: var(--teal-800); color: #fff; border-radius: var(--radius); padding: 30px 32px; margin-top: 34px;
}
.takeaways h4 { color: var(--amber-400); font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.8rem; margin-bottom: 16px; }
.takeaways ul { display: grid; gap: 12px; }
.takeaways li { display: flex; gap: 12px; align-items: flex-start; color: rgba(255,255,255,0.9); font-size: 0.98rem; }
.takeaways svg { width: 20px; height: 20px; color: var(--amber-400); flex-shrink: 0; margin-top: 3px; }

/* jump nav */
.jumpnav { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 34px; }
.jumpnav a { background: #fff; border: 1px solid var(--line); padding: 10px 20px; border-radius: 999px; font-weight: 600; font-size: 0.9rem; color: var(--teal-800); transition: .2s; }
.jumpnav a:hover { background: var(--teal-800); color: #fff; border-color: var(--teal-800); }

/* ---------- Quote / callout ---------- */
.callout {
  background: linear-gradient(135deg, var(--teal-800), var(--teal-900));
  color: #fff; border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 70px); position: relative; overflow: hidden;
}
.callout::before { content: "\201C"; position: absolute; top: -20px; right: 30px; font-family: var(--font-head); font-size: 12rem; color: rgba(224,168,60,0.18); line-height: 1; }
.callout blockquote { font-family: var(--font-head); font-size: clamp(1.4rem, 3vw, 2.1rem); line-height: 1.35; color: #fff; position: relative; z-index: 1; max-width: 900px; }
.callout cite { display: block; margin-top: 22px; font-style: normal; color: var(--amber-400); font-family: var(--font-body); font-weight: 600; }

/* ---------- Contact ---------- */
.contact-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; height: 100%;
  transition: transform .35s var(--ease), box-shadow .35s;
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.contact-card__icon { width: 54px; height: 54px; border-radius: 14px; background: var(--sand-100); color: var(--teal-700); display: grid; place-items: center; margin-bottom: 20px; }
.contact-card__icon svg { width: 26px; height: 26px; }
.contact-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.contact-card a.mail { color: var(--amber-600); font-weight: 600; word-break: break-all; }
.contact-card a.mail:hover { text-decoration: underline; }

.socials { display: flex; gap: 14px; flex-wrap: wrap; }
.socials a {
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  background: #fff; border: 1px solid var(--line); color: var(--teal-800); transition: .25s;
}
.socials a:hover { background: var(--teal-800); color: #fff; transform: translateY(-4px); }
.socials svg { width: 22px; height: 22px; }

/* faq */
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 28px; margin-bottom: 16px; }
.faq-item h3 { font-size: 1.1rem; margin-bottom: 8px; }
.faq-item p { font-size: 0.98rem; margin: 0; }

/* legal pages */
.legal { max-width: 840px; }
.legal h2 { font-size: 1.5rem; margin: 40px 0 14px; }
.legal h3 { font-size: 1.15rem; margin: 26px 0 10px; }
.legal p, .legal li { color: var(--ink); margin-bottom: 12px; }
.legal ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.legal ul li { margin-bottom: 8px; }
.legal .updated { color: var(--muted); font-size: 0.9rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--amber-500), var(--amber-400));
  border-radius: var(--radius-lg); padding: clamp(44px, 6vw, 72px); text-align: center; color: var(--charcoal-900);
}
.cta-band h2 { color: var(--charcoal-900); margin-bottom: 14px; }
.cta-band p { color: rgba(20,25,26,0.75); max-width: 620px; margin: 0 auto 30px; }
.cta-band .btn--primary { background: var(--teal-800); color: #fff; box-shadow: 0 12px 30px rgba(14,75,71,0.3); }
.cta-band .btn--primary:hover { box-shadow: 0 18px 40px rgba(14,75,71,0.4); }

/* pill tags */
.pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.pill { background: var(--sand-100); border: 1px solid var(--line); color: var(--teal-800); padding: 8px 16px; border-radius: 999px; font-size: 0.85rem; font-weight: 600; }

/* value grid */
.value-item { display: flex; gap: 18px; align-items: flex-start; padding: 24px 0; border-bottom: 1px solid var(--line); }
.value-item:last-child { border-bottom: none; }
.value-item__no { font-family: var(--font-head); font-size: 1.6rem; color: var(--amber-500); flex-shrink: 0; width: 48px; }
.value-item h3 { font-size: 1.2rem; margin-bottom: 6px; }
.value-item p { font-size: 0.98rem; margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal-900); color: rgba(255,255,255,0.72); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand .brand__name { color: #fff; }
.footer-brand p { margin: 18px 0; font-size: 0.95rem; max-width: 320px; color: rgba(255,255,255,0.6); }
.site-footer h4 { color: #fff; font-family: var(--font-body); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 18px; }
.site-footer ul li { margin-bottom: 11px; }
.site-footer ul a { font-size: 0.95rem; color: rgba(255,255,255,0.66); transition: color .2s; }
.site-footer ul a:hover { color: var(--amber-400); }
.footer-bottom { margin-top: 50px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 0.86rem; color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--amber-400); }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a { width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,0.06); display: grid; place-items: center; color: rgba(255,255,255,0.72); transition: .25s; }
.footer-socials a:hover { background: var(--amber-500); color: var(--charcoal-900); transform: translateY(-3px); }
.footer-socials svg { width: 20px; height: 20px; }

/* ---------- Cookie banner ---------- */
.cookie {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 200; max-width: 960px; margin: 0 auto;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 24px 28px; display: none; gap: 22px; align-items: center; flex-wrap: wrap;
}
.cookie.show { display: flex; animation: slideUp .5s var(--ease); }
.cookie__icon { width: 46px; height: 46px; border-radius: 12px; background: var(--sand-100); color: var(--amber-600); display: grid; place-items: center; flex-shrink: 0; }
.cookie__text { flex: 1; min-width: 240px; }
.cookie__text b { color: var(--teal-800); font-family: var(--font-head); font-size: 1.05rem; }
.cookie__text p { font-size: 0.88rem; margin-top: 4px; }
.cookie__text a { color: var(--amber-600); text-decoration: underline; }
.cookie__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie .btn { padding: 11px 22px; font-size: 0.9rem; }
.cookie .btn--sm-ghost { background: var(--sand-100); color: var(--teal-800); }
.cookie .btn--sm-ghost:hover { background: var(--sand-300); }

@keyframes slideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse .split__media { order: 0; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav__links {
    position: fixed; top: 77px; left: 0; right: 0;
    background: var(--offwhite); flex-direction: column; align-items: stretch;
    padding: 10px 20px 20px; gap: 0; border-bottom: 1px solid var(--line);
    transform: translateY(-150%); transition: transform .35s var(--ease); box-shadow: var(--shadow);
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links li { border-bottom: 1px solid var(--line); }
  .nav__links li:last-child { border-bottom: none; }
  .nav__links a {
    display: block; padding: 16px 14px; margin: 4px 0;
    border-radius: 12px; font-size: 1.05rem; font-weight: 600;
  }
  .nav__toggle { display: block; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .split__badge { position: static; margin-top: 18px; max-width: none; left: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cookie { padding: 20px; }
  .hero__actions { gap: 12px; }
  .hero__actions .btn { flex: 0 1 auto; padding: 13px 24px; font-size: 0.95rem; }
}

@media (max-width: 460px) {
  .grid-4 { grid-template-columns: 1fr; }
  .container { padding: 0 18px; }
}
