/* =========================================================================
   Eventtechnik München – Stylesheet
   Kein Framework, keine externen Ressourcen.
   ========================================================================= */

/* ------------------------------------------------------------------ Fonts */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../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('../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;
}

/* ----------------------------------------------------------------- Tokens */
:root {
  --acc: #2fd968;
  --acc-soft: #5cee8b;
  --acc-dim: #1f7f42;
  --ink: #ffffff;
  --muted: #a8b3ab;
  --bg: #050706;
  --bg-deep: #030504;
  --card: #101613;
  --field: #0a0f0c;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.18);
  --radius: 16px;
  --radius-sm: 14px;
  --shell: 1280px;
  --pad: 32px;
  --glow: 0 0 40px rgba(47, 217, 104, 0.45);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
  overflow-x: hidden;
}

h1, h2, h3, h4 { margin: 0; letter-spacing: -0.02em; line-height: 1.15; text-wrap: balance; }
p, ul, ol, dl, figure, blockquote { margin: 0; }
img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--acc); text-decoration: none; transition: color 0.18s ease; }
a:hover { color: var(--acc-soft); }
input, textarea, select, button { font: inherit; color: inherit; }
::selection { background: rgba(47, 217, 104, 0.3); }

:focus-visible {
  outline: 2px solid var(--acc);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* ---------------------------------------------------------------- Utility */
.shell { max-width: var(--shell); margin-inline: auto; padding-inline: var(--pad); }
.shell--narrow { max-width: 900px; }
.shell--mid { max-width: 1000px; }

.section { padding-block: 104px; border-top: 1px solid var(--line); }
.section--glow { background: radial-gradient(70% 60% at 50% 0%, rgba(47, 217, 104, 0.09) 0%, rgba(5, 7, 6, 0) 70%); }
.section--glow-left { background: radial-gradient(70% 80% at 20% 0%, rgba(47, 217, 104, 0.14) 0%, rgba(5, 7, 6, 0) 65%); }

.section__head { text-align: center; max-width: 78ch; margin: 0 auto 56px; }
.section__head--left { text-align: left; margin-inline: 0; }
.section__head h2 { font-size: clamp(28px, 4vw, 46px); font-weight: 800; }
.section__head p { margin-top: 22px; font-size: 18px; line-height: 1.65; color: var(--muted); }

.lead { color: var(--muted); }
.accent { color: var(--acc); }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip-path: inset(50%);
  overflow: hidden; white-space: nowrap;
}

.skip-link {
  position: absolute; left: 16px; top: -100px; z-index: 200;
  padding: 12px 20px; border-radius: 999px;
  background: var(--acc); color: #04160b; font-weight: 700;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 16px; color: #04160b; }

/* ---------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 17px 34px; border-radius: 999px;
  font-weight: 700; font-size: 16px; border: 1px solid transparent;
  cursor: pointer; text-align: center;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.btn--primary { background: var(--acc); color: #04160b; box-shadow: var(--glow); }
.btn--primary:hover { background: var(--acc-soft); color: #04160b; box-shadow: 0 0 52px rgba(47, 217, 104, 0.62); }
.btn--ghost { background: transparent; border-color: var(--line); color: var(--ink); font-weight: 600; }
.btn--ghost:hover { border-color: var(--acc); color: var(--acc); }
.btn--outline {
  background: #0c1a11; border-color: var(--acc); color: var(--ink);
  font-weight: 600; box-shadow: 0 0 30px rgba(47, 217, 104, 0.35);
}
.btn--outline:hover { background: var(--acc); color: #04160b; box-shadow: 0 0 34px rgba(47, 217, 104, 0.6); }
.btn--sm { padding: 12px 26px; font-size: 15px; }
.btn--block { width: 100%; justify-content: center; }

.link-arrow { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: 16px; }
.link-arrow span { font-size: 18px; transition: transform 0.2s ease; }
.link-arrow:hover span { transform: translateX(4px); }

/* ----------------------------------------------------------------- Header */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(5, 7, 6, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: center; gap: 24px;
  padding-block: 14px;
}
.site-header__logo img { height: 46px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.site-nav__links { display: flex; align-items: center; gap: 30px; font-size: 15px; font-weight: 500; list-style: none; padding: 0; margin: 0; }
.site-nav__links a { color: var(--ink); position: relative; }
.site-nav__links a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: -6px;
  height: 2px; background: var(--acc); transition: right 0.2s ease;
}
.site-nav__links a:hover, .site-nav__links a[aria-current='true'] { color: var(--acc); }
.site-nav__links a:hover::after, .site-nav__links a[aria-current='true']::after { right: 0; }

.nav-toggle {
  display: none; width: 46px; height: 46px; margin-left: auto;
  align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--line); border-radius: 12px; cursor: pointer;
}
.nav-toggle__bars { display: block; width: 20px; height: 2px; background: var(--ink); position: relative; }
.nav-toggle__bars::before, .nav-toggle__bars::after {
  content: ''; position: absolute; left: 0; width: 20px; height: 2px; background: var(--ink);
  transition: transform 0.2s ease, top 0.2s ease;
}
.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after { top: 6px; }
.nav-toggle[aria-expanded='true'] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded='true'] .nav-toggle__bars::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded='true'] .nav-toggle__bars::after { top: 0; transform: rotate(-45deg); }

/* ------------------------------------------------------------------- Hero */
.hero { position: relative; padding: 0; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; overflow: hidden; }
.hero__bg picture, .hero__bg img { width: 100%; height: 100%; }
.hero__bg img { object-fit: cover; opacity: 0.42; }
.hero__bg::after,
.hero__scrim {
  content: ''; position: absolute; inset: 0;
}
.hero__bg::after {
  background: linear-gradient(90deg, rgba(5,7,6,0.97) 0%, rgba(5,7,6,0.86) 45%, rgba(5,7,6,0.45) 100%);
}
.hero__scrim {
  background: radial-gradient(60% 70% at 12% 100%, rgba(47,217,104,0.22) 0%, rgba(5,7,6,0) 70%);
}
.hero__inner { position: relative; padding-block: 132px 108px; }

.breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 26px; }
.breadcrumb ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--acc); }
.breadcrumb li[aria-current='page'] { color: var(--acc); }
.breadcrumb__sep { opacity: 0.5; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border: 1px solid var(--line); border-radius: 999px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--acc); background: rgba(47, 217, 104, 0.07); margin-bottom: 28px;
}
.hero__title { font-size: clamp(32px, 6.2vw, 66px); line-height: 1.04; font-weight: 800; max-width: 17ch; }
.hero__lead { margin-top: 28px; font-size: clamp(17px, 2vw, 20px); line-height: 1.6; color: var(--muted); max-width: 60ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 40px; }

.kpis {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1px; margin: 72px 0 0; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  overflow: hidden; max-width: 860px;
}
.kpis > div { background: rgba(16, 22, 19, 0.92); padding: 24px 26px; }
.kpis dt { font-size: clamp(24px, 3vw, 30px); font-weight: 800; color: var(--acc); }
.kpis dd { margin: 6px 0 0; font-size: 14px; color: var(--muted); }

/* -------------------------------------------------------------- Leistungen */
.feature {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 24px; margin-bottom: 24px;
}
.feature__text {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 46px 46px 42px; display: flex; flex-direction: column; justify-content: center;
}
.feature__text h3 { font-size: clamp(24px, 3.4vw, 34px); font-weight: 800; }
.feature__text p { margin-top: 18px; font-size: 17px; line-height: 1.7; color: var(--muted); max-width: 52ch; }
.feature__text .link-arrow { margin-top: 30px; }
.feature__media {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); min-height: 330px;
}
.feature__media picture { display: block; height: 100%; }
.feature__media img { width: 100%; height: 100%; object-fit: cover; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; list-style: none; padding: 0; margin: 0; }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 28px; transition: border-color 0.2s ease, transform 0.2s ease;
  height: 100%;
}
.card:hover { border-color: var(--acc); transform: translateY(-3px); }
.card h3 { font-size: 19px; font-weight: 700; margin-top: 18px; }
.card p { margin-top: 10px; font-size: 15px; line-height: 1.6; color: var(--muted); }
.card svg { stroke: var(--acc); }

/* --------------------------------------------------------------- Eventarten */
.tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; list-style: none; padding: 0; margin: 0; }
.tile { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 3 / 4; }
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.tile:hover img { transform: scale(1.05); }
.tile::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(5,7,6,0.94) 0%, rgba(5,7,6,0.25) 55%, rgba(5,7,6,0.1) 100%);
}
.tile__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px; z-index: 1; }
.tile__body h3 { font-size: clamp(20px, 2.4vw, 24px); font-weight: 800; }
.tile__body p { margin-top: 8px; font-size: 14px; color: var(--muted); }

/* ------------------------------------------------------------------ Ablauf */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }
.step { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 32px 28px; }
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 999px;
  border: 1px solid var(--acc); color: var(--acc); font-weight: 800;
}
.step h3 { font-size: 20px; font-weight: 700; margin-top: 20px; }
.step p { margin-top: 10px; font-size: 15px; line-height: 1.6; color: var(--muted); }

/* -------------------------------------------------------------------- Team */
.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
.split--top { align-items: start; }
.split--even { grid-template-columns: 1fr 1fr; }
.split--form { grid-template-columns: 1fr 1.1fr; }
.about__media { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: #0b100d; }
.about h2 { font-size: clamp(28px, 3.8vw, 44px); font-weight: 800; color: var(--acc); line-height: 1.1; }
.about p { margin-top: 22px; font-size: 17px; line-height: 1.75; color: var(--muted); }
.usps { list-style: none; margin: 30px 0 0; padding: 0; display: grid; gap: 14px; }
.usps li { display: flex; gap: 12px; font-size: 16px; }
.usps span:first-child { color: var(--acc); font-weight: 800; }
.about .btn { margin-top: 36px; }

/* -------------------------------------------------------------- Referenzen */
.refs { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; list-style: none; padding: 0; margin: 0; }
.ref { margin: 0; position: relative; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4 / 3; }
.ref img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.ref:hover img { transform: scale(1.05); }
.ref figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 18px 20px;
  background: linear-gradient(0deg, rgba(5,7,6,0.92), rgba(5,7,6,0)); font-weight: 700;
}

/* ------------------------------------------------------------ Kundenstimmen */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 24px; }
.quote {
  margin: 0; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  display: grid; grid-template-columns: 200px 1fr;
}
.quote picture { display: block; height: 100%; overflow: hidden; }
.quote img { width: 100%; height: 100%; object-fit: cover; }
.quote__body { padding: 32px; }
.quote__body p { font-size: 16px; line-height: 1.7; }
.quote footer { margin-top: 18px; font-size: 14px; color: var(--acc); font-weight: 700; }

/* ---------------------------------------------------------------- Standort */
.region h2 { font-size: clamp(28px, 3.8vw, 46px); font-weight: 800; line-height: 1.1; }
.region p { margin-top: 22px; font-size: 17px; line-height: 1.75; color: var(--muted); }
.region h3 { font-size: 22px; font-weight: 700; margin-top: 40px; }
.tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; list-style: none; padding: 0; }
.tags li { padding: 8px 16px; border: 1px solid var(--line); border-radius: 999px; font-size: 14px; color: var(--muted); }

.infobox { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; }
.infobox h3 { font-size: 24px; font-weight: 800; }
.infobox p { margin-top: 20px; font-size: 16px; line-height: 1.8; color: var(--muted); }
.infobox strong { color: var(--ink); }
.infobox hr { border: 0; height: 1px; background: var(--line); margin: 26px 0; }

/* --------------------------------------------------------------------- FAQ */
.faq { margin-top: 50px; display: grid; gap: 14px; }
.faq__item { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 24px 28px; }
.faq__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  cursor: pointer; font-size: clamp(17px, 2vw, 19px); font-weight: 700; list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__plus { color: var(--acc); font-size: 26px; line-height: 1; transition: transform 0.2s ease; }
.faq__item[open] .faq__plus { transform: rotate(45deg); }
.faq__answer { margin-top: 16px; font-size: 16px; line-height: 1.75; color: var(--muted); }

/* ----------------------------------------------------------------- Kontakt */
.contact h2 { font-size: clamp(28px, 3.8vw, 46px); font-weight: 800; line-height: 1.1; }
.contact > p { margin-top: 24px; font-size: 18px; line-height: 1.7; color: var(--muted); }
.contact-person {
  margin-top: 40px; display: flex; align-items: center; gap: 20px; padding: 24px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
}
.contact-person picture { flex: 0 0 auto; }
.contact-person img { width: 76px; height: 76px; border-radius: 999px; object-fit: cover; }
.contact-person__name { font-weight: 700; font-size: 17px; }
.contact-person__role { font-size: 14px; color: var(--muted); margin-top: 4px; }
.contact-person__tel { font-size: 15px; margin-top: 8px; }

/* ---------------------------------------------------------------- Formular */
.form { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; }
.form h3 { font-size: 24px; font-weight: 800; }
.form__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; margin-top: 26px; }
.field { display: grid; gap: 8px; font-size: 14px; color: var(--muted); }
.field input, .field select, .field textarea {
  padding: 14px 16px; border-radius: 10px; border: 1px solid var(--line);
  background: var(--field); color: var(--ink); width: 100%;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--acc); box-shadow: 0 0 0 3px rgba(47, 217, 104, 0.15); outline: none;
}
.field textarea { resize: vertical; min-height: 110px; }
.field--full { margin-top: 18px; }
.field--error input, .field--error select, .field--error textarea { border-color: #ff6b6b; }
.field__error { color: #ff9a9a; font-size: 13px; }

/* Spamschutz-Widget (CaptchaMe) */
.captcha { margin-top: 22px; display: grid; gap: 8px; }
.captcha .captchame { min-height: 74px; max-width: 100%; overflow-x: auto; }
.captcha.field--error { padding: 10px; border: 1px solid #ff6b6b; border-radius: 10px; }
.captcha .field__error { font-size: 13px; }
.captcha noscript p { margin: 0; }

.consent {
  display: flex; gap: 12px; align-items: flex-start; margin-top: 20px;
  font-size: 13px; line-height: 1.6; color: var(--muted);
}
.consent input { margin-top: 3px; accent-color: var(--acc); width: 18px; height: 18px; flex: 0 0 auto; }
.form .btn { margin-top: 26px; }
.form__note { margin-top: 16px; font-size: 13px; color: var(--muted); text-align: center; }
.form__status { margin-top: 16px; font-size: 14px; border-radius: 10px; padding: 14px 16px; }
.form__status--ok { background: rgba(47, 217, 104, 0.12); border: 1px solid var(--acc); color: var(--ink); }
.form__status--error { background: rgba(255, 107, 107, 0.1); border: 1px solid #ff6b6b; color: #ffd7d7; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ------------------------------------------------------------------ Footer */
.site-footer { border-top: 1px solid var(--line); padding: 72px 0 40px; background: var(--bg-deep); }
.site-footer__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 48px; }
.site-footer img { height: 44px; width: auto; }
.site-footer h3 { font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.site-footer ul { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 10px; font-size: 15px; }
.site-footer ul a { color: var(--ink); }
.site-footer ul a:hover { color: var(--acc); }
.site-footer__tagline { margin-top: 20px; font-size: 15px; line-height: 1.7; color: var(--muted); max-width: 40ch; }
.site-footer__contact { margin-top: 18px; font-size: 15px; line-height: 1.8; color: var(--muted); }
.site-footer__rule { height: 1px; background: var(--line); margin: 44px 0 24px; }
.site-footer__meta { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; font-size: 13px; color: var(--muted); }
.site-footer__legal { display: flex; flex-wrap: wrap; gap: 20px; list-style: none; margin: 0; padding: 0; }

/* --------------------------------------------------------------- Textseite */
.page { padding-block: 72px 96px; }
.page h1 { font-size: clamp(30px, 5vw, 48px); font-weight: 800; }
.page__sub { margin-top: 14px; font-size: 18px; color: var(--muted); }
.page h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 800; margin-top: 52px; }
.page h3 { font-size: 20px; font-weight: 700; margin-top: 34px; }
.page p { margin-top: 16px; font-size: 16px; line-height: 1.8; color: var(--muted); }
.page ul, .page ol { margin-top: 16px; padding-left: 22px; font-size: 16px; line-height: 1.8; color: var(--muted); }
.page li { margin-top: 6px; }
.page strong { color: var(--ink); }
.page a { text-decoration: underline; text-underline-offset: 3px; }
.page table { width: 100%; border-collapse: collapse; margin-top: 20px; font-size: 15px; }
.page th, .page td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.page th { color: var(--ink); font-weight: 700; width: 34%; }
.page td { color: var(--muted); }
.page__box { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 32px; margin-top: 28px; }
.page__box p:first-child { margin-top: 0; }
.toc { list-style: none; padding: 0; }
.toc li { margin-top: 8px; }

/* ----------------------------------------------------------------- Reveal
   Nur wenn JavaScript aktiv ist – ohne JS bleibt alles sofort sichtbar. */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }

/* -------------------------------------------------------------- Responsive */
@media (max-width: 1040px) {
  .site-nav__links {
    position: fixed; inset: 73px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(5, 7, 6, 0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    padding: 12px var(--pad) 24px;
    transform: translateY(-120%);
    transition: transform 0.25s ease;
    font-size: 17px;
  }
  .site-nav__links[data-open='true'] { transform: none; }
  .site-nav__links li { border-bottom: 1px solid var(--line); }
  .site-nav__links a { display: block; padding: 16px 0; }
  .site-nav__links a::after { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-nav { margin-left: auto; gap: 14px; }
  .site-nav .btn { order: -1; }
}

@media (max-width: 900px) {
  :root { --pad: 20px; }
  .section { padding-block: 72px; }
  .hero__inner { padding-block: 88px 72px; }
  .split, .split--even, .split--form, .feature { grid-template-columns: 1fr; gap: 36px; }
  .feature { gap: 20px; }
  .feature__text { padding: 32px 28px; }
  .feature__media { min-height: 240px; }
  .quote { grid-template-columns: 1fr; }
  .quote img { height: 200px; }
  .about__media { order: 2; }
  .form, .infobox { padding: 28px 24px; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .section { padding-block: 60px; }
  .section__head { margin-bottom: 40px; }
  .btn { width: 100%; justify-content: center; }
  .site-nav .btn { width: auto; }
  .hero__actions .btn { width: 100%; }
  .kpis { margin-top: 48px; }
  .site-footer__meta { flex-direction: column; gap: 12px; }
}

@media print {
  .site-header, .site-footer, .hero__bg, .form, .nav-toggle { display: none !important; }
  body { background: #fff; color: #000; }
  a { color: #000; }
}
