/* =========================================================
   Parzer Digital Ventures
   ========================================================= */

/* ---------- Schrift (lokal ausgeliefert, kein Google-Aufruf) ----------
   Manrope, SIL Open Font License 1.1 – https://github.com/sharpType/Manrope
   Variable Font: deckt alle Schnitte von 400 bis 800 in einer Datei ab. */
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/manrope-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0,
    U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --ink: #0b0d12;
  --ink-2: #1b1e26;
  --text: #2a2d36;
  --muted: #6b707c;
  --line: #e7e8ec;
  --bg: #ffffff;
  --bg-soft: #f7f8fa;
  --accent: #5b5bf0;

  --radius: 10px;
  --radius-lg: 16px;
  --container: 1200px;
  --header-h: 84px;

  --font: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1, h2, p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.dot { color: var(--accent); }

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.eyebrow--light { color: rgba(255, 255, 255, 0.75); }

.h2 {
  font-size: clamp(30px, 3.4vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  height: 46px;
  padding: 0 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn .icon { transition: transform 0.2s ease; }
.btn:hover .icon { transform: translateX(3px); }

.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #262a35; }

.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: #eceef2; }

.btn--outline-light {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
}
.btn--outline-light:hover { border-color: #fff; background: rgba(255, 255, 255, 0.06); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.link-arrow .icon { color: var(--accent); width: 16px; height: 16px; transition: transform 0.2s ease; }
.link-arrow:hover .icon { transform: translateX(3px); }

/* ---------- Logo ---------- */
.logo { display: inline-flex; flex-direction: column; line-height: 1; color: var(--ink); }
.logo__img { display: block; height: 42px; width: auto; }

/* Textfassung des Logos – nur noch Rückfallebene, falls kein SVG verwendet wird */
.logo__word {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.16em;
}
.logo__a {
  /* "A" ohne Querstrich, mit Akzent-Bein wie im Markenzeichen */
  background: linear-gradient(90deg, var(--ink) 0 55%, var(--accent) 55% 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.logo__sub {
  margin-top: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 4px 20px rgba(11, 13, 18, 0.04); }

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1280px;
}

.nav { display: flex; gap: 30px; }
.nav__link {
  position: relative;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  padding: 6px 0;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }

.header__actions { display: flex; align-items: center; gap: 56px; }
.header__actions .btn { box-shadow: 0 6px 16px rgba(11, 13, 18, 0.18); }

.lang { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; }
.lang__btn { color: var(--muted); padding: 2px; transition: color 0.2s; }
.lang__btn.is-active, .lang__btn:hover { color: var(--ink); }
.lang__sep { color: var(--ink); }

.burger { display: none; width: 40px; height: 40px; position: relative; }
.burger span {
  position: absolute;
  left: 9px;
  right: 9px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, top 0.25s ease;
}
.burger span:first-child { top: 15px; }
.burger span:last-child { top: 23px; }
.burger[aria-expanded="true"] span:first-child { top: 19px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { top: 19px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  background: #0c0e13;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  /* Eigenes Bild: assets/hero.jpg ablegen – sonst greift das Fallback-Bild */
  background-image:
    linear-gradient(90deg, #0b0d12 0%, rgba(11, 13, 18, 0.92) 30%, rgba(11, 13, 18, 0.35) 62%, rgba(11, 13, 18, 0.2) 100%),
    linear-gradient(0deg, #0b0d12 0%, rgba(11, 13, 18, 0) 35%),
    url("assets/hero.jpg"),
    url("https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=2000&q=80");
  background-size: cover, cover, cover, cover;
  background-position: center, center, right center, right center;
  filter: grayscale(1) contrast(1.1);
  transform: scale(1.04);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  padding-top: 64px;
  padding-bottom: 0;
}
.hero__content { max-width: 620px; }

.hero__title {
  font-size: clamp(40px, 5.2vw, 60px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 26px;
}
.hero__lead {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  max-width: 460px;
  margin-bottom: 38px;
}
.hero__buttons { display: flex; flex-wrap: wrap; gap: 22px; }

.hero__side {
  justify-self: end;
  padding-top: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}
.hero__side-line { display: block; width: 24px; height: 1px; background: rgba(255, 255, 255, 0.8); margin-bottom: 18px; }

.stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1.1fr 1.6fr auto;
  margin-top: 46px;
  padding: 28px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  position: relative;
}
.stats::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 26px;
  height: 2px;
  background: #fff;
}
.stat {
  padding: 4px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  padding-left: 64px;
}
.stat:first-child { padding-left: 0; }
.stat__num { display: block; font-size: 26px; font-weight: 700; line-height: 1.2; }
.stat__num small { font-size: 21px; font-weight: 600; }
.stat__label { font-size: 13px; color: rgba(255, 255, 255, 0.72); }
.stat--claim {
  border-right: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  padding-left: 46px;
  display: flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}
.stats .stat:nth-child(3) { border-right: 0; }

/* ---------- Ventures ---------- */
.section { padding: 50px 0 38px; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 38px;
}
.section-head__aside { max-width: 350px; font-size: 13.5px; color: var(--muted); }
.section-head__aside p { margin-bottom: 12px; }

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0 -6px;
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 196px;
  padding: 26px 22px 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(120% 90% at 100% 100%, var(--tint) 0%, transparent 60%);
  opacity: 0.9;
  transition: opacity 0.3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(11, 13, 18, 0.08); }
.card:hover::before { opacity: 1; }

.card--blue { --tint: #d6e6ff; }
.card--green { --tint: #dcefd9; }
.card--orange { --tint: #ffe1cc; }
.card--violet { --tint: #ddd6ff; }

.card__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.card__logo { width: 38px; height: 38px; fill: var(--ink); color: var(--ink); }
.card__wordmark {
  display: block;
  height: 36px;
  width: auto;
  max-width: 100%;
  margin: 1px 0;
  object-fit: contain;
  object-position: left center;
}
.card__name { font-size: 18px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
.card__text { font-size: 13px; line-height: 1.55; color: var(--text); }

.card__foot {
  margin-top: auto;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card__tag {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.card__tag--cta { color: var(--ink); font-weight: 700; }
.card__arrow {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(11, 13, 18, 0.1);
  transition: background 0.25s ease, color 0.25s ease;
}
.card:hover .card__arrow { background: var(--ink); color: #fff; }

/* Ventures, die noch nicht online sind: milchiger Schleier + Hinweis */
.card--soon { cursor: default; }
.card--soon:hover { transform: none; box-shadow: none; }
.card--soon::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(1.4px) saturate(0.7);
  -webkit-backdrop-filter: blur(1.4px) saturate(0.7);
  pointer-events: none;
}
.card__soon {
  position: relative;
  z-index: 3;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

/* ---------- Antrieb ---------- */
.drive {
  display: grid;
  grid-template-columns: 1fr 1fr 0.68fr;
  align-items: stretch;
  background: var(--bg-soft);
  margin-top: 0;
}
.drive__text {
  padding: 24px 56px 40px max(32px, calc((100vw - var(--container)) / 2 + 32px));
}
.drive__text .eyebrow { margin-bottom: 14px; }
.drive__text .h2 { font-size: clamp(28px, 2.6vw, 32px); margin-bottom: 26px; }
.drive__lead { font-size: 13.5px; color: var(--muted); max-width: 360px; margin-bottom: 22px; line-height: 1.6; }
.drive__lead { color: #555a66; }

.drive__image {
  min-height: 306px;
  /* Eigenes Bild: assets/office.jpg ablegen – sonst greift das Fallback-Bild */
  background-image:
    url("assets/office.jpg"),
    url("https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1400&q=80"),
    linear-gradient(135deg, #cfd1d4, #8c8f94);
  background-size: cover;
  background-position: center;
}

.drive__quote-wrap {
  display: flex;
  align-items: center;
  padding: 20px max(32px, calc((100vw - var(--container)) / 2)) 30px 30px;
}

.quote {
  margin: 0;
  width: 100%;
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 20px 22px;
  box-shadow: 0 10px 30px rgba(11, 13, 18, 0.06);
}
.quote__mark { width: 18px; height: 14px; fill: var(--ink); margin-bottom: 12px; }

.quote__slides { position: relative; min-height: 150px; }
.quote__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}
.quote__slide.is-active { opacity: 1; transform: none; pointer-events: auto; position: relative; }
.quote__slide blockquote {
  margin: 0 0 20px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-2);
}
.quote__slide figcaption strong { display: block; font-size: 12.5px; font-weight: 700; color: var(--ink); }
.quote__slide figcaption span { font-size: 10.5px; color: var(--muted); }

.quote__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
}
.quote__dots { display: flex; gap: 10px; }
.quote__dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border-radius: 50%;
  background: #d5d7dc;
  transition: background 0.2s, transform 0.2s;
}
.quote__dot.is-active { background: var(--ink); }
.quote__arrows { display: flex; gap: 14px; }
.quote__arrow { color: #b4b7be; padding: 2px; transition: color 0.2s; }
.quote__arrow:hover { color: var(--ink); }
.quote__arrow .icon { width: 16px; height: 16px; }

/* ---------- Build / Partner / Invest ---------- */
.pillars-section { background: var(--bg-soft); padding: 54px 0 58px; }
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pillar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px 28px;
}
.pillar__num {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 14px;
}
.pillar h3 {
  margin: 0 0 8px;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.pillar p { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0; }

/* ---------- Inhaltsseite (Ideen) ---------- */
.page-intro { padding: 64px 0 20px; }
.page-intro__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: end;
}
.page-title {
  font-size: clamp(34px, 4.4vw, 52px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0;
}
.page-lead { font-size: 18px; line-height: 1.55; color: var(--ink-2); margin-bottom: 14px; }
.page-intro__aside p { font-size: 15px; line-height: 1.65; color: var(--muted); }

.prose-section { padding-top: 40px; }
.prose { max-width: 760px; }
.prose h2 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 38px 0 14px;
}
.prose h2:first-child { margin-top: 0; }
.prose p { font-size: 16px; line-height: 1.75; color: var(--text); margin-bottom: 14px; }
.prose strong { color: var(--ink); }

.check-list { list-style: none; padding: 0; margin: 18px 0 0; }
.check-list li {
  position: relative;
  padding: 14px 0 14px 34px;
  border-top: 1px solid var(--line);
  font-size: 16px;
  color: var(--text);
}
.check-list li:last-child { border-bottom: 1px solid var(--line); }
.check-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 21px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* ---------- Kontakt ---------- */
.contact {
  background: var(--ink);
  color: #fff;
  padding: 72px 0 76px;
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact__title {
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 18px;
}
.contact__lead {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  max-width: 440px;
}
.contact__details { padding-top: 6px; }
.contact__details dl {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px 24px;
  margin: 0 0 32px;
  font-size: 15px;
}
.contact__details dt {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  padding-top: 4px;
}
.contact__details dd { margin: 0; color: #fff; line-height: 1.5; }
.contact__details a { border-bottom: 1px solid rgba(255, 255, 255, 0.35); }
.contact__details a:hover { border-bottom-color: #fff; }
.contact .placeholder { background: rgba(255, 244, 194, 0.22); color: #ffe8a3; }

/* ---------- Footer ---------- */
.footer { padding: 24px 0 26px; }
.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #4a4e59;
}
.footer__social { justify-self: end; display: flex; gap: 14px; }
.footer__social a { color: #4a4e59; transition: color 0.2s; }
.footer__social a:hover { color: var(--ink); }
.footer__social svg { width: 16px; height: 16px; fill: currentColor; display: block; }
.footer__social svg[fill="none"] { fill: none; }

.footer__legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
}
.footer__legal-links { display: flex; gap: 22px; }
.footer__legal-links a { color: var(--muted); transition: color 0.2s; }
.footer__legal-links a:hover { color: var(--ink); }

/* ---------- Rechtstexte (Impressum / Datenschutz) ---------- */
.legal { padding: 64px 0 80px; }
.legal__inner { max-width: 760px; }
.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.legal__back:hover { color: var(--ink); }
.legal__back .icon { width: 16px; height: 16px; }
.legal h1 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 12px;
}
.legal__meta { font-size: 13px; color: var(--muted); margin-bottom: 40px; }
.legal h2 {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin: 40px 0 12px;
}
.legal h3 { font-size: 15px; font-weight: 700; color: var(--ink); margin: 24px 0 8px; }
.legal p, .legal li { font-size: 15px; line-height: 1.7; color: var(--text); }
.legal p + p { margin-top: 12px; }
.legal ul { padding-left: 20px; margin: 10px 0; }
.legal a:not(.legal__back) { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.legal dl {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 8px 24px;
  margin: 0;
  font-size: 15px;
}
.legal dt { font-weight: 600; color: var(--ink); }
.legal dd { margin: 0; color: var(--text); }
.placeholder { background: #fff4c2; padding: 0 4px; border-radius: 3px; }

/* ---------- Reveal-Animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

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

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1100px) {
  .header__actions { gap: 28px; }
  .nav { gap: 22px; }
  .cards { grid-template-columns: repeat(2, 1fr); margin: 0; }
  .stat { padding-left: 32px; }
  .drive { grid-template-columns: 1fr 1fr; }
  .drive__quote-wrap { grid-column: 1 / -1; padding: 32px; }
  .drive__text { padding: 40px 32px; }
}

@media (max-width: 900px) {
  :root { --header-h: 72px; }
  .logo__img { height: 34px; }
  .logo__word { font-size: 24px; }
  .logo__sub { font-size: 8.5px; margin-top: 6px; }
  .burger { display: block; }
  .header__actions { gap: 16px; }
  .header__actions .btn { display: none; }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 12px 24px 24px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(11, 13, 18, 0.08);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  }
  .nav.is-open { opacity: 1; transform: none; visibility: visible; }
  .nav__link { font-size: 17px; padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav__link::after { display: none; }

  .hero__inner { grid-template-columns: 1fr; padding-top: 56px; }
  .hero__side { display: none; }
  .stats { grid-template-columns: 1fr 1fr; row-gap: 24px; }
  .stat, .stat:first-child { padding-left: 0; border: 0; }
  .stat--claim { padding-left: 0; border: 0; }

  .section-head { flex-direction: column; align-items: flex-start; gap: 20px; }

  .drive { grid-template-columns: 1fr; }
  .drive__image { min-height: 280px; }

  .pillars { grid-template-columns: 1fr; }
  .page-intro { padding: 44px 0 12px; }
  .page-intro__inner { grid-template-columns: 1fr; gap: 24px; align-items: start; }
  .contact { padding: 52px 0 56px; }
  .contact__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__inner { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 14px; }
  .footer__social { justify-self: center; }
  .footer__legal { flex-direction: column; text-align: center; }
}

@media (max-width: 560px) {
  .container { padding: 0 16px; }
  .cards { grid-template-columns: 1fr; }
  .hero__buttons .btn { flex: 1 1 auto; justify-content: center; }
  .drive__text, .drive__quote-wrap { padding-left: 16px; padding-right: 16px; }
  .legal { padding: 40px 0 56px; }
  .legal dl { grid-template-columns: 1fr; gap: 2px; }
  .legal dd { margin-bottom: 10px; }
}
