/* ==========================================================================
   AXDT Group – Stylesheet v2
   Struktur: 1) Tokens 2) Reset/Base 3) Layout-Utilities 4) Komponenten
   5) Mobile-Navigation (Drawer) 6) Responsive
   Schrift: Roboto (Farben unverändert zur Vorversion)
   ========================================================================== */

/* ---------- 1) Design-Tokens ---------- */
:root{
  /* Marke – UNVERÄNDERT */
  --navy:#0D2B45;
  --navy-mid:#1F3A56;
  --navy-soft:#45596E;
  --teal:#00918C;
  --teal-tint:#E1F5EE;
  --teal-text:#085041;
  --orange:#F26D21;
  --orange-tint:#FAECE7;
  --orange-text:#712B13;
  --paper:#FAFAF8;
  --panel:#F1F4F5;
  --ink:#0D2B45;
  --ink-soft:#4A5A68;
  --white:#FFFFFF;
  --border:rgba(13,43,69,0.1);

  /* Typografie */
  --font-display:'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:'Roboto Mono', ui-monospace, monospace;

  /* Skalen & Radien */
  --radius:16px;
  --radius-sm:10px;
  --max:1180px;
  --shadow-sm:0 1px 2px rgba(13,43,69,0.06);
  --shadow-md:0 8px 24px -6px rgba(13,43,69,0.12);
  --shadow-lg:0 20px 48px -12px rgba(13,43,69,0.22);
}

/* ---------- 2) Reset / Base ---------- */
*{box-sizing:border-box;}
html{scroll-behavior:smooth; -webkit-text-size-adjust:100%; max-width:100%; overflow-x:hidden; overflow-x:clip;}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important;}
}
body{
  margin:0;
  max-width:100%;
  overflow-x:hidden;
  overflow-x:clip;
  font-family:var(--font-body);
  font-size:17px;
  color:var(--ink);
  background:var(--paper);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
.skip-link{
  position:fixed; left:16px; top:12px; z-index:100;
  padding:10px 16px; border-radius:8px; background:var(--white); color:var(--navy);
  font-weight:700; text-decoration:none; box-shadow:var(--shadow-md);
  transform:translateY(-160%); transition:transform .15s ease;
}
.skip-link:focus{transform:translateY(0);}
h1,h2,h3,h4{
  font-family:var(--font-display);
  margin:0;
  letter-spacing:-0.015em;
  color:var(--navy);
  line-height:1.2;
  font-weight:700;
}
p{margin:0 0 1em; max-width:68ch;}
a{color:inherit;}
img{max-width:100%; display:block;}
:focus-visible{outline:3px solid var(--orange); outline-offset:3px; border-radius:4px;}
ul{margin:0; padding:0; list-style:none;}
button{font-family:inherit;}

/* ---------- 3) Layout-Utilities ---------- */
.wrap{max-width:var(--max); margin:0 auto; padding:0 24px;}
main{display:block;}
section{padding:96px 0;}
section.tight{padding:60px 0;}
.spacer-sm{height:30px;}
.spacer-md{height:52px;}
.spacer-lg{height:84px;}
.section-head{max-width:640px; margin:0 0 48px;}
.eyebrow{
  font-family:var(--font-mono); font-size:13px; font-weight:500; letter-spacing:0.1em;
  color:var(--navy-soft); text-transform:uppercase; margin:0 0 12px;
  display:flex; align-items:center; gap:10px;
}
.eyebrow::before{content:''; width:24px; height:2px; background:currentColor; display:inline-block; opacity:.6; border-radius:2px;}
.eyebrow.on-dark{color:var(--orange);}
.eyebrow.on-dark::before{background:var(--orange);}
.section-head h2{font-size:clamp(28px,3.6vw,38px);}
.lead{color:var(--ink-soft); font-size:18px; line-height:1.6; max-width:60ch;}

/* ---------- 4) Komponenten ---------- */

/* Header */
header.site{
  position:sticky; top:0; z-index:50;
  background:rgba(250,250,248,0.9);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:15px 24px; max-width:var(--max); margin:0 auto; min-height:74px;
}
.logo{display:flex; align-items:center; text-decoration:none;}
.logo img{height:38px; width:auto; display:block;}
.navlinks{display:flex; align-items:center; gap:8px;}
.navlinks a{
  text-decoration:none; font-size:15.5px; font-weight:500; color:var(--ink-soft);
  transition:color .15s ease, background .15s ease; padding:11px 15px; border-radius:8px;
}
.navlinks a:hover{color:var(--navy); background:var(--panel);}
.navlinks a[aria-current="page"]{color:var(--navy); font-weight:700; background:var(--panel);}
.nav-cta{
  margin-left:6px; background:var(--orange); color:#3A1608 !important; font-weight:600 !important;
  padding:10px 18px !important;
}
.nav-cta:hover{background:#e05f13; color:#3A1608 !important;}

/* Hamburger-Button (verwandelt sich zu X, wenn offen) */
.navtoggle{
  display:none; background:none; border:none; cursor:pointer; padding:10px;
  width:44px; height:44px; align-items:center; justify-content:center; position:relative; z-index:70;
}
.navtoggle .bar{
  display:block; width:22px; height:2px; background:var(--navy); border-radius:2px;
  position:absolute; left:11px; transition:transform .25s ease, opacity .2s ease, top .25s ease;
}
.navtoggle .bar:nth-child(1){top:16px;}
.navtoggle .bar:nth-child(2){top:23px;}
.navtoggle .bar:nth-child(3){top:30px;}
.navtoggle.open .bar:nth-child(1){top:23px; transform:rotate(45deg);}
.navtoggle.open .bar:nth-child(2){opacity:0;}
.navtoggle.open .bar:nth-child(3){top:23px; transform:rotate(-45deg);}

/* Hero – Startseite */
.hero{
  position:relative; overflow:hidden;
  background:linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding:104px 0 116px;
}
.hero .wrap{position:relative; z-index:2;}
.hero h1{
  font-size:clamp(36px, 5.6vw, 60px); font-weight:700; color:var(--white);
  max-width:820px; line-height:1.1;
}
.hero-claim{
  font-family:var(--font-display); font-style:italic; font-weight:500; font-size:17px;
  color:var(--teal); margin:14px 0 0; letter-spacing:0.01em;
}
.hero p.lead{color:#C7D2DB; max-width:54ch; margin:22px 0 36px;}
.hero-ctas{display:flex; gap:14px; flex-wrap:wrap;}
.hero-lines{position:absolute; inset:0; z-index:1; opacity:0.5; pointer-events:none;}
.hero-lines path{fill:none; stroke:var(--teal); stroke-width:1.4; stroke-dasharray:6 8; animation:dash 34s linear infinite;}
.hero-lines circle{fill:var(--teal); opacity:0.7;}
@keyframes dash{to{stroke-dashoffset:-600;}}

/* Hero – Unterseiten */
.page-hero{
  background:linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding:68px 0 60px;
}
.page-hero h1{font-size:clamp(30px,4.2vw,44px); color:var(--white); max-width:720px;}
.page-hero p.lead{color:#C7D2DB; max-width:58ch; margin-top:18px;}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; gap:8px;
  padding:14px 26px; border-radius:var(--radius-sm); font-weight:600; font-size:15.5px;
  text-decoration:none; transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
  border:1px solid transparent; cursor:pointer; line-height:1;
}
.btn:hover{transform:translateY(-2px);}
.btn:disabled{cursor:wait; opacity:.7; transform:none;}
.btn-primary{background:var(--orange); color:#3A1608;}
.btn-primary:hover{box-shadow:var(--shadow-md); background:#e6631c;}
.btn-ghost{border-color:rgba(255,255,255,0.35); color:var(--white);}
.btn-ghost:hover{background:rgba(255,255,255,0.1);}
.btn-outline{border-color:var(--border); color:var(--navy); background:var(--white);}
.btn-outline:hover{background:var(--panel); box-shadow:var(--shadow-sm);}
.btn-soft-orange{background:var(--orange-tint); color:var(--orange-text);}
.btn-soft-orange:hover{background:#f5ddd1;}

/* Zwei-Kacheln / Pillars mit Signature-Naht */
.pillars{
  position:relative;
  display:grid; grid-template-columns:1fr 1fr; gap:0;
  border:1px solid var(--border); border-radius:var(--radius); overflow:hidden;
  box-shadow:var(--shadow-sm);
}
.pillar{padding:48px 44px; position:relative; background:var(--white); transition:background .25s ease;}
.pillar:first-child{border-right:1px solid var(--border);}
.pillar-icon{
  width:48px; height:48px; border-radius:12px; display:flex; align-items:center; justify-content:center;
  margin-bottom:22px;
}
.pillar.technik .pillar-icon{background:var(--teal-tint);}
.pillar.beratung .pillar-icon{background:var(--orange-tint);}
.pillar h3{font-size:22px; margin-bottom:12px;}
.pillar p{color:var(--ink-soft); font-size:16px; margin:0 0 22px; max-width:36ch;}
.pillar .more{font-size:15px; font-weight:600; text-decoration:none; display:inline-flex; align-items:center; gap:6px;}
.pillar.technik .more{color:var(--teal);}
.pillar.beratung .more{color:var(--orange);}
.pillar .more svg{transition:transform .2s ease;}
.pillar:hover .more svg{transform:translateX(4px);}
.seam{
  position:absolute; left:50%; top:0; bottom:0; width:64px; transform:translateX(-50%);
  pointer-events:none; z-index:3; display:flex; align-items:center; justify-content:center;
}
.seam svg{width:64px; height:64px;}
.seam circle{fill:var(--paper); stroke:var(--border); stroke-width:1;}
.seam path{stroke:var(--navy-soft); stroke-width:1.6; fill:none; transition:stroke .3s ease, stroke-width .3s ease;}
.pillars:hover .seam path{stroke:var(--orange); stroke-width:2.2;}
@media (min-width: 641px){ .pillar:hover{background:var(--panel);} }

/* Info-Karten */
.card-grid{display:grid; grid-template-columns:1fr 1fr; gap:20px;}
.card{border:1px solid var(--border); border-radius:var(--radius); padding:32px; background:var(--white); transition:box-shadow .2s ease, transform .2s ease;}
.card:hover{box-shadow:var(--shadow-md); transform:translateY(-2px);}
.card h3{font-size:19px; margin-bottom:10px;}
.card p{color:var(--ink-soft); font-size:15.5px; margin:0;}

/* Badge-Liste */
.badges{display:flex; flex-direction:column; gap:8px; margin-top:18px;}
.badge{
  display:inline-flex; align-items:center; font-size:13px; font-weight:500;
  padding:7px 14px; border-radius:20px; width:fit-content;
}
.badge.teal{background:var(--teal-tint); color:var(--teal-text);}
.badge.orange{background:var(--orange-tint); color:var(--orange-text);}

/* Trust-/Icon-Zeile */
.trust-row{display:flex; gap:30px; flex-wrap:wrap; border-top:1px solid var(--border); padding-top:30px; margin-top:48px;}
.trust-row span{font-size:14px; color:var(--ink-soft); display:flex; align-items:center; gap:8px;}
.trust-row svg{flex-shrink:0; color:var(--teal);}

/* Nummerierte Schritt-Karten */
.steps{display:flex; flex-direction:column; gap:12px;}
.step{display:flex; gap:18px; align-items:flex-start; border:1px solid var(--border); border-radius:var(--radius-sm); padding:18px 22px; background:var(--white); transition:box-shadow .2s ease;}
.step:hover{box-shadow:var(--shadow-sm);}
.step-num{
  width:32px; height:32px; border-radius:50%; background:var(--teal-tint); color:var(--teal-text);
  display:flex; align-items:center; justify-content:center; font-weight:700; font-size:14px; flex-shrink:0;
}
.step h4{font-size:16px; margin-bottom:4px;}
.step p{font-size:14.5px; color:var(--ink-soft); margin:0;}

/* Vertikale Prozesskette */
.timeline{display:flex; flex-direction:column;}
.tl-item{display:flex; gap:20px;}
.tl-marker{display:flex; flex-direction:column; align-items:center;}
.tl-dot{
  width:34px; height:34px; border-radius:50%; background:var(--orange-tint); color:var(--orange-text);
  display:flex; align-items:center; justify-content:center; font-weight:700; font-size:14px; flex-shrink:0;
}
.tl-line{width:2px; flex:1; background:var(--border); min-height:28px;}
.tl-content{padding-bottom:28px;}
.tl-content h4{font-size:17px; margin-bottom:5px;}
.tl-content p{font-size:15px; color:var(--ink-soft); margin:0;}

/* Zitat / Credo-Block */
.quote-block{
  border-left:4px solid var(--orange); background:var(--panel);
  padding:20px 26px; border-radius:0 12px 12px 0; margin:30px 0;
}
.quote-block p{font-family:var(--font-display); font-size:18px; font-weight:500; margin:0; color:var(--navy); max-width:none;}

/* Icon-Häkchen-Liste */
.check-grid{display:grid; grid-template-columns:1fr 1fr; gap:14px;}
.check-item{display:flex; gap:10px; align-items:flex-start; font-size:15px;}
.check-item svg{flex-shrink:0; margin-top:2px; color:var(--teal-text);}

/* Breite Info-Kachel */
.wide-card{
  display:flex; gap:18px; align-items:center; border:1px solid var(--border);
  border-radius:var(--radius-sm); padding:20px 24px; background:var(--white); margin-bottom:12px;
}
.wide-card svg{flex-shrink:0;}
.wide-card p{margin:0; font-size:15.5px; max-width:none;}

/* Warum-AXDT Grid */
.warum-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:24px;}
.warum-icon{
  width:44px; height:44px; border-radius:10px; background:var(--white);
  display:flex; align-items:center; justify-content:center; margin-bottom:16px;
  box-shadow:var(--shadow-sm);
}
.warum-item h3{font-size:17px; margin-bottom:8px;}
.warum-item p{font-size:14.5px; color:var(--ink-soft); margin:0;}

/* Über-mich / Teaser */
.about-teaser{display:flex; align-items:center; gap:22px; padding-top:44px; border-top:1px solid var(--border);}
.avatar{
  width:60px; height:60px; border-radius:50%; flex-shrink:0; overflow:hidden;
  background:var(--navy); color:var(--white); font-weight:700; font-family:var(--font-display);
  display:flex; align-items:center; justify-content:center; font-size:17px;
}
.avatar img{width:100%; height:100%; object-fit:cover;}
.about-teaser h4{font-size:16px; margin-bottom:4px;}
.about-teaser p{margin:0; color:var(--ink-soft); font-size:15px;}
.about-teaser a{color:var(--orange); text-decoration:none; font-weight:600;}

/* Akronym-Kacheln */
.acronym-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:12px;}
.acronym-tile{text-align:center; padding:18px 8px; background:var(--teal-tint); border-radius:12px;}
.acronym-tile .letter{font-family:var(--font-display); font-weight:700; font-size:24px; color:var(--teal-text);}
.acronym-tile .label{font-size:12px; color:var(--teal-text); margin-top:3px;}

/* Themen-Chips (Kontaktseite) */
.topic-chips{display:flex; flex-wrap:wrap; gap:10px; margin-top:14px;}
.chip{
  font-family:inherit; font-size:14.5px; font-weight:500; color:var(--navy);
  background:var(--white); border:1.5px solid var(--border); border-radius:24px;
  padding:10px 18px; cursor:pointer; transition:all .15s ease;
}
.chip:hover{border-color:var(--orange); background:var(--orange-tint);}
.chip.active{background:var(--orange); border-color:var(--orange); color:#3A1608; font-weight:600;}

/* Kontaktformular */
.contact-grid{display:grid; grid-template-columns:1.4fr 1fr; gap:24px; align-items:start;}
.form-card{border:1px solid var(--border); border-radius:var(--radius); padding:34px; background:var(--white); box-shadow:var(--shadow-sm);}
.field{display:flex; flex-direction:column; gap:7px; margin-bottom:18px;}
.field label{font-size:13.5px; font-weight:600; color:var(--navy);}
.field input, .field select, .field textarea{
  border:1px solid var(--border); border-radius:10px; padding:12px 14px; font-family:var(--font-body);
  font-size:15px; color:var(--ink); background:var(--paper);
}
.field textarea{resize:vertical; min-height:128px;}
.field .hint{font-size:12.5px; color:var(--ink-soft); margin:0;}
.consent{display:grid; grid-template-columns:auto 1fr; align-items:start; gap:10px; margin:4px 0 22px;}
.consent input{width:18px; height:18px; margin-top:3px; accent-color:var(--teal);}
.consent label{font-size:13.5px; color:var(--ink-soft);}
.consent a{color:var(--navy); font-weight:600;}

/* Einwilligung für Google Analytics und Google Ads */
.cookie-consent{position:fixed;inset:auto 18px 18px;z-index:10000;max-width:1180px;margin:auto;background:#fff;color:#10283d;border:1px solid rgba(7,29,49,.16);border-radius:20px;box-shadow:0 22px 70px rgba(0,20,38,.28)}
.cookie-consent__inner{display:grid;grid-template-columns:1fr auto;gap:28px;align-items:center;padding:24px 28px}
.cookie-consent__eyebrow{margin:0 0 5px;color:#087f7d;font-size:12px;font-weight:800;letter-spacing:.12em;text-transform:uppercase}
.cookie-consent h2{margin:0 0 7px;font-size:clamp(20px,2vw,28px);line-height:1.2}
.cookie-consent p{margin:0;max-width:780px;line-height:1.55}
.cookie-consent a{color:#075d78;font-weight:700}
.cookie-consent__actions{display:flex;gap:10px;flex-wrap:wrap;justify-content:flex-end}
.cookie-consent button,.cookie-settings{min-height:46px;padding:11px 17px;border:2px solid #0b6f79;border-radius:999px;background:#fff;color:#0b5663;font:inherit;font-weight:750;cursor:pointer}
.cookie-consent button.primary{background:#0b6f79;color:#fff}
.cookie-consent button:hover,.cookie-consent button:focus-visible,.cookie-settings:hover,.cookie-settings:focus-visible{outline:3px solid rgba(243,107,10,.34);outline-offset:2px}
.cookie-settings{position:fixed;right:12px;bottom:10px;z-index:9990;min-height:34px;padding:6px 11px;border-width:1px;background:#fff;font-size:12px;box-shadow:0 5px 18px rgba(0,20,38,.16)}
@media(max-width:760px){.cookie-consent{inset:auto 8px 8px}.cookie-consent__inner{grid-template-columns:1fr;padding:20px;gap:18px}.cookie-consent__actions{display:grid;grid-template-columns:1fr 1fr}.cookie-consent button{padding:10px 8px;font-size:14px}.cookie-settings{right:8px;bottom:7px}}
.field input:focus, .field select:focus, .field textarea:focus{outline:2px solid var(--orange); outline-offset:1px; border-color:var(--orange);}
.field.honeypot{position:absolute; left:-9999px; top:-9999px;}
.form-msg{padding:13px 18px; border-radius:10px; font-size:14.5px; margin-top:16px; display:none;}
.form-msg.show{display:block;}
.form-msg.success{background:var(--teal-tint); color:var(--teal-text);}
.form-msg.error{background:var(--orange-tint); color:var(--orange-text);}
.contact-side{display:flex; flex-direction:column; gap:14px;}
.info-card{border:1px solid var(--border); border-radius:var(--radius-sm); padding:22px;}
.info-card p.name{font-weight:700; font-size:15px; margin:0 0 12px;}
.info-row{display:flex; gap:9px; align-items:center; font-size:14.5px; margin-bottom:8px;}
.info-row svg{flex-shrink:0; color:var(--ink-soft);}
.info-card.soft{background:var(--panel); border:none;}
.info-card.soft p{font-size:13.5px; color:var(--ink-soft); margin:0; line-height:1.6;}

/* Footer */
footer{background:var(--navy); color:#B9C6D1; padding:64px 0 0; font-size:14.5px;}
footer a{color:#B9C6D1; text-decoration:none; transition:color .15s ease;}
footer a:hover{color:var(--orange);}
.footer-grid{
  display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr 1fr; gap:32px;
  padding-bottom:44px; border-bottom:1px solid rgba(255,255,255,0.1);
}
.footer-brand img{margin-bottom:16px;}
.footer-brand p{font-size:14px; margin:0 0 6px; max-width:24ch; color:#B9C6D1;}
.footer-legal-line{font-size:12.5px !important; color:#8296A6 !important;}
.footer-heading{
  font-family:var(--font-display); font-weight:600; font-size:13px; letter-spacing:0.04em;
  text-transform:uppercase; color:var(--white); margin:0 0 16px;
}
.footer-col ul{display:flex; flex-direction:column; gap:11px;}
.footer-col ul li{font-size:14px;}
.footer-bottom{padding:22px 0; font-size:13px; color:#8296A6;}

/* ---------- 5) Mobile-Navigation (Drawer) ---------- */
.nav-backdrop{
  position:fixed; inset:0; background:rgba(13,43,69,0.5); z-index:60;
  opacity:0; pointer-events:none; transition:opacity .25s ease;
}
.nav-backdrop.open{opacity:1; pointer-events:auto;}

@media (hover:none){
  .btn:hover,.card:hover{transform:none;}
}

@media print{
  header.site,.hero-lines,.hero-ctas,.nav-backdrop,footer{display:none !important;}
  body{background:#fff; color:#000; font-size:12pt;}
  section,.hero,.page-hero{padding:24px 0; background:#fff !important;}
  .hero h1,.page-hero h1,.hero .lead,.page-hero .lead{color:#000;}
}

@media (max-width: 860px){
  header.site{
    background:var(--white);
    backdrop-filter:none;
    -webkit-backdrop-filter:none;
  }
  .navtoggle{display:flex;}
  .navlinks{
    position:fixed; top:0; right:0; bottom:0; width:min(390px, 92vw);
    background:var(--white); z-index:65;
    flex-direction:column; align-items:stretch; gap:4px;
    padding:96px 24px 32px; box-shadow:var(--shadow-lg);
    transform:translateX(100%); transition:transform .3s ease;
    overflow-y:auto; overscroll-behavior:contain;
  }
  .navlinks::before{
    content:'Menü'; padding:0 16px 18px; color:var(--navy);
    font-family:var(--font-display); font-size:13px; font-weight:700;
    letter-spacing:.12em; text-transform:uppercase;
  }
  .navlinks.open{transform:translateX(0);}
  .navlinks li{width:100%; flex:0 0 auto;}
  .navlinks a{
    display:flex; align-items:center; width:100%; min-height:56px;
    font-size:18px; line-height:1.35; padding:14px 16px; border-radius:10px;
  }
  .nav-cta{margin-left:0; margin-top:10px; text-align:center; justify-content:center;}
}

/* ---------- Scroll-Reveal ---------- */
/* Sicherer Standard: Inhalte sind immer sichtbar. Nur wenn JavaScript
   erfolgreich läuft, wird zusätzlich die Klasse "armed" gesetzt, die die
   Elemente kurz ausblendet, bevor sie beim Scrollen wieder eingeblendet
   werden. Fällt JS aus irgendeinem Grund aus, bleibt der Inhalt normal
   sichtbar – nur ohne Animation. */
.reveal.armed{opacity:0; transform:translateY(20px); transition:opacity .6s ease, transform .6s ease;}
.reveal.armed.visible{opacity:1; transform:none;}
@media (prefers-reduced-motion: reduce){
  .reveal.armed{opacity:1; transform:none; transition:none;}
}

/* ---------- 6) Responsive ---------- */
@media (max-width: 760px){
  .contact-grid{grid-template-columns:1fr;}
  .card-grid{grid-template-columns:1fr;}
  .check-grid{grid-template-columns:1fr;}
  .warum-grid{grid-template-columns:1fr 1fr;}
  section{padding:64px 0;}
}
@media (max-width: 640px){
  body{font-size:16px;}
  .navlinks{width:100vw; padding:96px 22px max(30px,env(safe-area-inset-bottom)); box-shadow:none;}
  .navlinks a{font-size:20px; line-height:1.35; min-height:58px; padding:14px 18px;}
  .navlinks li:not(:last-child){border-bottom:1px solid rgba(13,43,69,.08);}
  .navlinks .nav-cta{margin-top:14px; padding-block:17px !important;}
  .pillars{grid-template-columns:1fr;}
  .pillar{padding:36px 28px;}
  .pillar:first-child{border-right:none; border-bottom:1px solid var(--border);}
  .seam{left:50%; top:auto; bottom:0; transform:translate(-50%,50%) rotate(90deg);}
  .about-teaser{flex-direction:column; align-items:flex-start;}
  .acronym-grid{grid-template-columns:repeat(2,1fr);}
  .hero{padding:72px 0 80px;}
  .page-hero{padding:52px 0 44px;}
  .footer-grid{grid-template-columns:1fr 1fr; gap:32px 24px;}
  .footer-brand{grid-column:1 / -1;}
}
@media (max-width: 480px){
  .footer-grid{grid-template-columns:1fr;}
  .warum-grid{grid-template-columns:1fr;}
}
