/* =========================================================
   PREMIUM JOBS GERMANY — Design System
   Based on: Meta DESIGN.md (getdesign.md/meta/design-md)
   White canvas · Pill CTAs · Montserrat · Cobalt accents
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ── TOKENS (Meta DESIGN.md) ─────────────────────────────── */
:root {
  /* Brand & Accent */
  --primary:        #0064e0;
  --primary-deep:   #0457cb;
  --primary-soft:   #0091ff;
  --ink-button:     #000000;
  --on-ink:         #ffffff;

  /* Surfaces */
  --canvas:         #ffffff;
  --surface-soft:   #f1f4f7;
  --hairline:       #ced0d4;
  --hairline-soft:  #dee3e9;

  /* Text */
  --ink-deep:       #0a1317;
  --ink:            #1c1e21;
  --charcoal:       #444950;
  --steel:          #5d6c7b;
  --stone:          #8595a4;

  /* Semantic */
  --success:        #31a24c;
  --warning:        #f7b928;

  /* Radius (Meta scale) */
  --r-pill:         100px;
  --r-xxxl:         32px;
  --r-xxl:          24px;
  --r-xl:           16px;
  --r-lg:           8px;
  --r-md:           6px;
  --r-sm:           4px;

  /* Spacing */
  --sp-xs:          8px;
  --sp-sm:          10px;
  --sp-md:          12px;
  --sp-base:        16px;
  --sp-lg:          20px;
  --sp-xl:          24px;
  --sp-xxl:         32px;
  --sp-xxxl:        40px;
  --sp-section:     80px;

  /* Layout */
  --max:            1280px;
  --gutter:         32px;
  --header-top-h:   56px;
  --header-lang-h:  40px;
  --header-h:       96px;

  /* Typography */
  --font:           'Montserrat', Helvetica, Arial, 'Noto Sans', sans-serif;

  /* Elevation */
  --shadow-panel:   rgba(20,22,26,.3) 0 1px 4px 0;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -.16px;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }

/* ── PROMO BANNER ────────────────────────────────────────── */
.promo-banner {
  background: var(--ink-deep);
  color: var(--canvas);
  text-align: center;
  padding: var(--sp-md) var(--sp-xl);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.14px;
  line-height: 1.43;
}
.promo-banner a { color: var(--warning); text-decoration: underline; }

/* ── HEADER ──────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--canvas);
  box-shadow: 0 1px 0 var(--hairline-soft);
}

/* Top bar: logo + site nav */
.header-top {
  border-bottom: 1px solid var(--hairline-soft);
}
.header-top-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: var(--header-top-h); gap: var(--sp-base);
}
.logo { display: flex; flex-direction: column; text-decoration: none; line-height: 1.1; flex-shrink: 0; }
.logo-main {
  font-size: 1rem; font-weight: 700; letter-spacing: -.5px;
  color: var(--ink-deep);
}
.logo-sub {
  font-size: .6rem; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--stone);
}
.site-nav { display: flex; align-items: center; gap: var(--sp-sm); }
.site-nav-link {
  display: inline-flex; align-items: center;
  padding: 6px 14px; border-radius: var(--r-pill);
  font-size: 13px; font-weight: 600; letter-spacing: -.13px;
  color: var(--ink); text-decoration: none;
  transition: background .15s, color .15s;
}
.site-nav-link:hover { background: var(--surface-soft); color: var(--ink-deep); }
.site-nav-link.cta {
  background: var(--ink-button); color: var(--on-ink);
}
.site-nav-link.cta:hover { background: var(--charcoal); }

/* Language bar */
.header-lang {
  border-bottom: 1px solid var(--hairline-soft);
  overflow-x: auto;
  scrollbar-width: none;
}
.header-lang::-webkit-scrollbar { display: none; }
.lang-nav {
  display: flex; flex-wrap: nowrap; gap: 3px;
  padding: 6px 0; min-width: max-content;
}
.lang-btn {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 10px;
  font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: var(--ink); background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-pill);
  transition: background .15s, color .15s, border-color .15s;
  white-space: nowrap; text-decoration: none; flex-shrink: 0;
}
.lang-btn:hover   { background: var(--surface-soft); color: var(--ink-deep); }
.lang-btn.active  { background: var(--ink-deep); color: var(--canvas); border-color: var(--ink-deep); }
.flag-sm  { font-size: .82rem; }
.lang-code { font-size: .58rem; }

/* ── BUTTONS ─────────────────────────────────────────────── */

/* button-primary: black pill, marketing CTA */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink-button); color: var(--on-ink);
  padding: 14px 30px; border-radius: var(--r-pill);
  font-size: 14px; font-weight: 700; letter-spacing: -.14px; line-height: 1.43;
  text-decoration: none; transition: background .15s, transform .1s;
  border: none; cursor: pointer; white-space: nowrap;
}
.btn-primary:active { background: var(--charcoal); transform: translateY(1px); }

/* button-primary alias for WA button */
.btn-wa { display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink-button); color: var(--on-ink);
  padding: 14px 30px; border-radius: var(--r-pill);
  font-size: 14px; font-weight: 700; letter-spacing: -.14px; line-height: 1.43;
  text-decoration: none; transition: background .15s, transform .1s;
  white-space: nowrap;
}
.btn-wa:active { background: var(--charcoal); }
.btn-wa-lg { font-size: 16px; padding: 16px 36px; }

/* button-secondary: ghost outlined pill */
.btn-more {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--ink-deep);
  padding: 12px 28px; border-radius: var(--r-pill);
  font-size: 14px; font-weight: 700; letter-spacing: -.14px; line-height: 1.43;
  border: 2px solid var(--ink-deep); text-decoration: none;
  transition: background .15s, color .15s; white-space: nowrap;
}
.btn-more:hover { background: var(--ink-deep); color: var(--canvas); }

/* button-buy-cta: cobalt pill (for secondary emphasis) */
.btn-cobalt {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--primary); color: var(--canvas);
  padding: 14px 30px; border-radius: var(--r-pill);
  font-size: 14px; font-weight: 700; letter-spacing: -.14px; line-height: 1.43;
  text-decoration: none; transition: background .15s;
  white-space: nowrap;
}
.btn-cobalt:active { background: var(--primary-deep); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  padding: calc(var(--header-h) + 80px) var(--gutter) var(--sp-section);
  text-align: center;
  position: relative; overflow: hidden;
  background-image: url('/assets/img/hero-banner.png');
  background-size: cover;
  background-position: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(
    160deg,
    rgba(0,10,35,.25) 0%,
    rgba(0,10,35,.12) 50%,
    rgba(0,8,28,.28) 100%
  );
}
.hero-inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }

/* ── Hero text: force white on photo background ── */
.hero, .hero h1, .hero h2, .hero p,
.hero .hero-pre, .hero .hero-tagline, .hero .hero-intro,
.hero .hero-eyebrow { color: #fff; }
.hero-pill { color: rgba(255,255,255,.9); background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.25); }

/* ── Hero decorations (Premium: Clean Agency) ── */
.hero-glow {
  position: absolute; pointer-events: none;
  width: 900px; height: 500px;
  top: -80px; left: 50%; transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(0,100,224,.05) 0%, transparent 65%);
}

.hero-pills {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center; margin-bottom: 28px;
}
.hero-pill {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  color: var(--cobalt);
  background: rgba(0,100,224,.07);
  padding: 4px 14px; border-radius: var(--r-pill);
  letter-spacing: .01em; white-space: nowrap;
  border: 1px solid rgba(0,100,224,.15);
}

/* ── nanobanana mark ── */
.nb-mark {
  margin-top: 36px;
  font-size: .6rem; letter-spacing: .25em;
  text-transform: lowercase; font-weight: 400;
  color: rgba(0,100,224,.18);
}

.hero-eyebrow {
  display: inline-block; margin-bottom: 24px;
  font-size: 12px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: #fff;
}

/* badge-promo-yellow style above hero */
.hero-badge {
  display: inline-block; margin-bottom: 20px;
  background: var(--warning); color: var(--ink-deep);
  font-size: 12px; font-weight: 700; line-height: 1.33;
  padding: 4px 14px; border-radius: var(--r-pill);
  letter-spacing: 0;
}

/* hero-display: 64px/500/1.16 → clamp */
.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 500;
  line-height: 1.16;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -.5px;
}

/* heading-md light editorial style */
.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 300;
  line-height: 1.21;
  color: rgba(255,255,255,.88);
  margin-bottom: 20px;
  letter-spacing: 0;
}

/* subtitle-md body lead */
.hero-intro {
  font-size: 18px; font-weight: 400; line-height: 1.44;
  color: rgba(255,255,255,.78); max-width: 600px;
  margin: 0 auto var(--sp-xxxl);
}

/* dual-CTA row */
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* btn-more inside hero: white on dark banner */
.hero .btn-more {
  color: #fff;
  border-color: rgba(255,255,255,.55);
}
.hero .btn-more:hover {
  background: rgba(255,255,255,.15);
  color: #fff;
}

/* ── PROMO STRIP (card-promo-strip) ──────────────────────── */
.promo-strip {
  background: var(--ink-deep);
  color: var(--canvas);
  border-radius: var(--r-xxxl);
  padding: var(--sp-section) var(--sp-xxl);
  text-align: center;
  margin: 0 var(--gutter);
}
.promo-strip h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 500; line-height: 1.17;
  margin-bottom: var(--sp-base);
}
.promo-strip p {
  font-size: 18px; font-weight: 400; line-height: 1.44;
  color: rgba(255,255,255,.75); margin-bottom: var(--sp-xxl);
}

/* ── BENEFITS (feature-icon-row) ─────────────────────────── */
.benefits {
  padding: var(--sp-section) 0;
  background: var(--canvas);
}
.section-header { text-align: center; margin-bottom: 48px; }
.section-eyebrow {
  display: block; font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--primary); margin-bottom: var(--sp-md);
}
.section-header h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 500; line-height: 1.28;
  color: var(--ink-deep); letter-spacing: -.5px;
}

/* card-icon-feature: white, 16px radius, hairline border */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-xl);
}
.benefit-card {
  background: var(--canvas);
  border: 1px solid var(--hairline-soft);
  border-radius: var(--r-xl);
  padding: var(--sp-xxl) var(--sp-xl);
  display: flex; flex-direction: column; align-items: flex-start;
  transition: box-shadow .2s, border-color .2s;
}
.benefit-card:hover {
  border-color: var(--hairline);
  box-shadow: var(--shadow-panel);
}
.benefit-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface-soft);
  border-radius: var(--r-pill);
  margin-bottom: var(--sp-lg);
  font-size: .9rem; font-weight: 700;
  color: var(--ink-deep);
  flex-shrink: 0;
}
.benefit-card h3 {
  font-size: 18px; font-weight: 700; line-height: 1.44;
  color: var(--ink-deep); margin-bottom: var(--sp-xs);
}
.benefit-card p {
  font-size: 14px; font-weight: 400; line-height: 1.43;
  color: var(--steel); letter-spacing: -.14px;
}

/* ── ABOUT / TRUST ───────────────────────────────────────── */
.about {
  padding: var(--sp-section) 0;
  background: var(--surface-soft);
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}
.about-text h2 {
  font-size: clamp(1.4rem, 3.5vw, 2.25rem);
  font-weight: 500; line-height: 1.28;
  color: var(--ink-deep); margin: var(--sp-md) 0 var(--sp-xxl);
  letter-spacing: -.5px;
}
.about-text p {
  font-size: 16px; color: var(--steel); line-height: 1.5; letter-spacing: -.16px;
}
.about-text > * + * { margin-top: var(--sp-base); }

/* Stats row */
.about-facts { display: flex; gap: var(--sp-xxl); margin-bottom: var(--sp-xxl); }
.fact { display: flex; flex-direction: column; align-items: flex-start; }
.fact-num {
  font-size: 2.5rem; font-weight: 700; line-height: 1;
  color: var(--primary); letter-spacing: -.5px;
}
.fact-label {
  font-size: 12px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--stone);
  margin-top: 4px;
}

/* Highlight cards (why-buy-tile style) */
.about-highlights { display: flex; flex-direction: column; gap: var(--sp-base); }
.highlight-card {
  background: var(--canvas);
  border: 1px solid var(--hairline-soft);
  border-radius: var(--r-xl);
  padding: var(--sp-xxl) var(--sp-xl);
  display: flex; gap: var(--sp-xl); align-items: flex-start;
  transition: border-color .2s, box-shadow .2s;
}
.highlight-card:hover {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,100,224,.08);
}
.highlight-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface-soft); border-radius: var(--r-xl);
  color: var(--primary);
}
.highlight-icon svg { width: 22px; height: 22px; }
.highlight-card h4 {
  font-size: 18px; font-weight: 700; line-height: 1.44;
  color: var(--ink-deep); margin-bottom: 6px;
}
.highlight-card p {
  font-size: 14px; color: var(--steel); line-height: 1.43; letter-spacing: -.14px;
}

/* ── CTA SECTION ─────────────────────────────────────────── */
.cta-section {
  padding: var(--sp-section) var(--gutter);
  text-align: center;
  background: var(--canvas);
}
.cta-inner {
  background: var(--ink-deep);
  border-radius: var(--r-xxxl);
  padding: var(--sp-section) var(--sp-xxl);
  max-width: 860px; margin: 0 auto;
}
.cta-inner h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 500; line-height: 1.17;
  color: var(--canvas); margin-bottom: var(--sp-base);
  letter-spacing: -.5px;
}
.cta-inner p {
  font-size: 18px; font-weight: 400; line-height: 1.44;
  color: rgba(255,255,255,.75); margin-bottom: var(--sp-xxl);
}
.cta-inner .btn-wa { background: var(--canvas); color: var(--ink-deep); }
.cta-inner .btn-wa:active { background: var(--surface-soft); }

/* ── LANG SELECTOR ───────────────────────────────────────── */
.lang-selector-hero {
  min-height: 100vh; display: flex; align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 60px) var(--gutter) 80px;
  text-align: center; background: var(--canvas);
}
.lang-selector-hero .container { width: 100%; }
.lang-selector-hero h1 {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 500; line-height: 1.17;
  color: var(--ink-deep); margin-bottom: 24px;
  letter-spacing: -.5px;
}
.lang-selector-hero h1 span { color: var(--primary); }
.lang-selector-hero .hero-eyebrow { margin-bottom: 24px; }
.lang-selector-hero .hero-tagline { margin-bottom: var(--sp-xxxl); }
.flag-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-md); max-width: 680px; margin: 40px auto 0;
}
.flag-item {
  display: flex; flex-direction: column; align-items: center;
  padding: var(--sp-lg) var(--sp-md);
  background: var(--canvas); border: 1px solid var(--hairline-soft);
  border-radius: var(--r-xl); text-decoration: none;
  transition: border-color .15s, box-shadow .15s, transform .1s;
}
.flag-item:hover {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,100,224,.08);
  transform: translateY(-2px);
}
.flag-emoji { font-size: 1.75rem; margin-bottom: 8px; line-height: 1; }
.flag-label { font-size: .75rem; color: var(--ink); margin-bottom: 2px; font-weight: 500; }
.flag-code  { font-size: .65rem; color: var(--steel); letter-spacing: .1em; text-transform: uppercase; font-weight: 700; }

/* ── FOOTER (footer-region) ──────────────────────────────── */
.site-footer {
  background: var(--canvas);
  border-top: 1px solid var(--hairline-soft);
  padding: 48px 0 32px;
  text-align: center;
}
.footer-legal {
  font-size: 12px; color: var(--stone); line-height: 1.33;
  max-width: 740px; margin: 0 auto var(--sp-xl);
  padding: var(--sp-xl); text-align: left;
  background: var(--surface-soft); border-radius: var(--r-xl);
}
.footer-nav {
  display: flex; gap: var(--sp-base); justify-content: center;
  align-items: center; flex-wrap: wrap; margin-bottom: var(--sp-base);
}
.footer-nav a {
  font-size: 14px; font-weight: 700; color: var(--steel);
  letter-spacing: -.14px; transition: color .15s;
}
.footer-nav a:hover { color: var(--ink-deep); }
.footer-nav span { color: var(--hairline); font-size: .6rem; }
.copyright { font-size: 12px; color: var(--stone); line-height: 1.33; }

/* ── COOKIE BANNER ───────────────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  background: var(--canvas); border-top: 1px solid var(--hairline-soft);
  box-shadow: rgba(20,22,26,.15) 0 -4px 16px;
  padding: var(--sp-base) var(--sp-xl);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-base); font-size: 14px;
}
.cookie-banner p { color: var(--steel); flex: 1; line-height: 1.43; letter-spacing: -.14px; }
.cookie-banner a { color: var(--primary); font-weight: 700; }
.btn-cookie-accept {
  background: var(--ink-button); color: var(--canvas);
  border: none; border-radius: var(--r-pill);
  padding: 10px 24px; font-family: var(--font);
  font-size: 14px; font-weight: 700; letter-spacing: -.14px;
  cursor: pointer; flex-shrink: 0; transition: background .15s;
  white-space: nowrap;
}
.btn-cookie-accept:active { background: var(--charcoal); }

/* ── LEGAL PAGES ─────────────────────────────────────────── */
.legal-page { padding: calc(var(--header-h) + 60px) 0 80px; min-height: 100vh; }
.legal-page .page-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 500; color: var(--ink-deep);
  margin-bottom: 8px; letter-spacing: -.5px;
}
.legal-page .page-sub { color: var(--steel); margin-bottom: 40px; font-size: 14px; }
.legal-content { max-width: 760px; }
.legal-content h2 {
  font-size: 18px; font-weight: 700; color: var(--primary);
  margin: 36px 0 10px; line-height: 1.44;
}
.legal-content p  { color: var(--steel); font-size: 14px; margin-bottom: 12px; line-height: 1.43; letter-spacing: -.14px; }
.legal-content a  { color: var(--primary); font-weight: 700; }
.legal-content a:hover { text-decoration: underline; }
.legal-content ul { color: var(--steel); font-size: 14px; padding-left: 20px; margin-bottom: 12px; }
.legal-content ul li { margin-bottom: 6px; }
.legal-rule { width: 40px; height: 1px; background: var(--hairline-soft); margin: 40px 0; }

/* ── PARTNER PAGE ───────────────────────────────────────── */
.partner-page {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px var(--gutter);
}
.partner-inner { max-width: 560px; text-align: center; }
.partner-inner h1 { font-size: clamp(1.6rem, 4vw, 2.2rem); margin-bottom: 12px; }
.partner-inner > p { color: var(--ink-secondary); margin-bottom: 40px; }
.partner-links { display: flex; flex-direction: column; gap: 16px; align-items: center; }
.partner-links .partner-link { min-width: 320px; justify-content: center; }

/* ── FEATURES ────────────────────────────────────────────── */
.features { padding: var(--sp-section) 0; }
.features .section-header { margin-bottom: 40px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--surface-soft);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  border: 1px solid var(--hairline-soft);
  transition: box-shadow .2s ease, transform .2s ease;
}
.feature-card:hover {
  box-shadow: 0 4px 20px rgba(0,100,224,.08);
  transform: translateY(-2px);
}
.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(0,100,224,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature-icon svg { width: 34px; height: 34px; stroke: var(--primary); }
.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--ink-primary); }
.feature-card p { font-size: .875rem; color: var(--ink-secondary); line-height: 1.65; }

/* ── STICKY WHATSAPP ─────────────────────────────────────── */
.wa-sticky {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.45);
  z-index: 900;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-sticky:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,.55); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  :root { --gutter: 24px; }
}
@media (max-width: 768px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; gap: 14px; }
  .site-nav .site-nav-link:not(.cta) { display: none; }
  :root { --header-h: 88px; --header-top-h: 48px; --header-lang-h: 40px; }
  .flag-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .about-facts { gap: var(--sp-lg); }
  .hero-ctas { flex-direction: column; align-items: center; }
  .cookie-banner { flex-direction: column; text-align: center; }
  .promo-strip { margin: 0 var(--sp-base); padding: var(--sp-xl) var(--sp-base); }
  .cta-inner { padding: var(--sp-xl) var(--sp-base); border-radius: var(--r-xxl); }
  :root { --sp-section: 64px; }
}
@media (max-width: 480px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .flag-grid { grid-template-columns: repeat(2, 1fr); }
  .about-facts { flex-wrap: wrap; }
  :root { --gutter: 16px; }
}
