/* =========================================================
   Geier-IT — Stylesheet
   Farben aus dem Firmenlogo abgeleitet (Navy / Silber / Gold)
   ========================================================= */

:root{
  --navy-950:#050d1a;
  --navy-900:#0a1830;
  --navy-800:#0e2140;
  --navy-700:#153259;
  --navy-600:#1c4270;
  --blue-accent:#2f7bc4;
  --blue-accent-light:#4a97e0;
  --silver-100:#f5f7fa;
  --silver-200:#e9edf2;
  --silver-300:#d6dce3;
  --silver-500:#aab4c0;
  --silver-700:#6b7684;
  --gold:#d8a941;
  --gold-light:#f0c66b;
  --ink:#16212f;
  --ink-soft:#48566a;
  --white:#ffffff;
  --radius-s:8px;
  --radius-m:14px;
  --radius-l:22px;
  --shadow-s:0 2px 10px rgba(10,24,48,.08);
  --shadow-m:0 10px 30px rgba(10,24,48,.12);
  --shadow-l:0 20px 55px rgba(10,24,48,.22);
  --maxw:1180px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; scroll-padding-top:84px; }
body{
  margin:0;
  font-family:var(--font);
  color:var(--ink);
  background:var(--white);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ margin:0 0 .5em; line-height:1.2; font-weight:800; letter-spacing:-.01em; }
p{ margin:0 0 1em; color:var(--ink-soft); }
.container{ max-width:var(--maxw); margin:0 auto; padding:0 24px; }
section{ padding:88px 0; }
@media (max-width:720px){ section{ padding:64px 0; } }

.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:.8rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  color:var(--blue-accent); margin-bottom:14px;
}
.eyebrow::before{ content:""; width:22px; height:2px; background:var(--gold); display:inline-block; }

.section-head{ max-width:680px; margin:0 0 48px; }
.section-head.center{ margin-inline:auto; text-align:center; }
.section-head h2{ font-size:clamp(1.6rem,3.2vw,2.4rem); color:var(--navy-900); }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:14px 26px; border-radius:999px; font-weight:700; font-size:.98rem;
  border:2px solid transparent; cursor:pointer; transition:transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space:nowrap;
}
.btn:active{ transform:translateY(1px); }
.btn-primary{ background:linear-gradient(135deg,var(--gold-light),var(--gold)); color:var(--navy-950); box-shadow:var(--shadow-s); }
.btn-primary:hover{ box-shadow:var(--shadow-m); transform:translateY(-2px); }
.btn-outline{ background:transparent; border-color:rgba(255,255,255,.5); color:var(--white); }
.btn-outline:hover{ background:rgba(255,255,255,.12); border-color:var(--white); }
.btn-outline-dark{ background:transparent; border-color:var(--navy-700); color:var(--navy-800); }
.btn-outline-dark:hover{ background:var(--navy-900); color:var(--white); border-color:var(--navy-900); }
.btn-block{ width:100%; }

/* ---------- Header ---------- */
.site-header{
  position:fixed; inset:0 0 auto 0; z-index:1000;
  background:rgba(9,20,40,.72);
  backdrop-filter:saturate(160%) blur(14px);
  -webkit-backdrop-filter:saturate(160%) blur(14px);
  border-bottom:1px solid rgba(255,255,255,.08);
  transition:background .25s ease;
}
.site-header .container{ display:flex; align-items:center; justify-content:space-between; height:76px; }
.brand{ display:flex; align-items:center; gap:10px; }
.brand img{ height:42px; width:auto; }
.brand-name{ display:none; }

.nav-links{ display:flex; align-items:center; gap:34px; }
.nav-links a{
  color:var(--silver-200); font-weight:600; font-size:.96rem; position:relative; padding:6px 0;
  transition:color .15s ease;
}
.nav-links a:hover{ color:var(--white); }
.nav-links a::after{
  content:""; position:absolute; left:0; right:100%; bottom:-2px; height:2px; background:var(--gold);
  transition:right .2s ease;
}
.nav-links a:hover::after{ right:0; }

.header-actions{ display:flex; align-items:center; gap:16px; }
.header-phone{ display:flex; align-items:center; gap:8px; color:var(--silver-200); font-weight:700; font-size:.92rem; }
.header-phone svg{ width:18px; height:18px; color:var(--gold); }

.burger{
  display:none; width:44px; height:44px; border-radius:10px; border:1px solid rgba(255,255,255,.25);
  background:transparent; cursor:pointer; position:relative; flex-shrink:0;
}
.burger span{
  position:absolute; left:11px; right:11px; height:2px; background:var(--white); border-radius:2px;
  transition:transform .25s ease, opacity .2s ease;
}
.burger span:nth-child(1){ top:15px; }
.burger span:nth-child(2){ top:21px; }
.burger span:nth-child(3){ top:27px; }
.burger.open span:nth-child(1){ transform:translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2){ opacity:0; }
.burger.open span:nth-child(3){ transform:translateY(-6px) rotate(-45deg); }

.mobile-panel{
  display:none; position:fixed; inset:76px 0 0 0; z-index:999; background:var(--navy-950);
  padding:28px 24px; overflow-y:auto;
}
.mobile-panel.open{ display:block; }
.mobile-panel a{
  display:block; padding:16px 4px; font-size:1.15rem; font-weight:700; color:var(--silver-100);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.mobile-panel .btn{ margin-top:24px; }
.mobile-phone{ display:flex; align-items:center; gap:10px; margin-top:22px; color:var(--gold); font-weight:700; font-size:1.05rem; }

@media (max-width:920px){
  .nav-links{ display:none; }
  .header-phone{ display:none; }
  .burger{ display:block; }
}

/* ---------- Hero ---------- */
.hero{
  position:relative; padding:168px 0 90px; overflow:hidden; isolation:isolate;
  background:
    radial-gradient(1100px 600px at 85% -10%, rgba(47,123,196,.35), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(216,169,65,.18), transparent 55%),
    linear-gradient(160deg, var(--navy-950), var(--navy-900) 55%, var(--navy-800));
  color:var(--white);
}
.hero::after{
  content:""; position:absolute; inset:0; z-index:-1; opacity:.5;
  background-image:radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size:26px 26px;
  mask-image:linear-gradient(180deg, transparent, rgba(0,0,0,.7) 40%, transparent 90%);
}
.hero-grid{ display:grid; grid-template-columns:1.15fr .85fr; gap:56px; align-items:center; }
.hero h1{ font-size:clamp(2.1rem,4.6vw,3.4rem); color:var(--white); }
.hero h1 em{ font-style:normal; color:var(--gold-light); }
.hero p.lead{ font-size:1.14rem; color:var(--silver-300); max-width:52ch; }
.hero-ctas{ display:flex; gap:16px; flex-wrap:wrap; margin-top:30px; }

.hero-badge-card{
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.14); border-radius:var(--radius-l);
  padding:30px; backdrop-filter:blur(6px); box-shadow:var(--shadow-l);
}
.hero-badge-card img{ width:100%; max-width:280px; margin:0 auto 18px; filter:drop-shadow(0 14px 30px rgba(0,0,0,.35)); }
.hero-badge-card .tag{
  display:inline-flex; align-items:center; gap:8px; background:var(--gold); color:var(--navy-950);
  font-weight:800; font-size:.78rem; letter-spacing:.04em; text-transform:uppercase;
  padding:6px 12px; border-radius:999px; margin-bottom:12px;
}
.hero-badge-card p{ color:var(--silver-300); margin:0; font-size:.95rem; }

@media (max-width:920px){
  .hero{ padding-top:132px; }
  .hero-grid{ grid-template-columns:1fr; }
  .hero-badge-card{ max-width:380px; margin:0 auto; }
}

/* ---------- Trust strip ---------- */
.trust-strip{ background:var(--navy-900); border-top:1px solid rgba(255,255,255,.08); }
.trust-strip .container{
  display:grid; grid-template-columns:repeat(4,1fr); gap:24px; padding:34px 24px;
}
.trust-item{ text-align:center; color:var(--silver-300); }
.trust-item strong{ display:block; font-size:1.7rem; color:var(--white); font-weight:800; }
.trust-item span{ font-size:.85rem; }
@media (max-width:820px){
  .trust-strip .container{ grid-template-columns:repeat(2,1fr); }
}

/* ---------- Über uns ---------- */
.about{ background:var(--white); }
.about-grid{ display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:start; }
.about-portrait{
  background:linear-gradient(160deg,var(--navy-900),var(--navy-700));
  border-radius:var(--radius-l); padding:36px; color:var(--white); box-shadow:var(--shadow-m);
}
.about-portrait h3{ color:var(--white); font-size:1.3rem; }
.about-portrait p{ color:var(--silver-300); }
.about-portrait .signature{ margin-top:18px; font-weight:700; color:var(--gold-light); }

.timeline{ margin-top:14px; display:grid; gap:0; border-left:2px solid var(--silver-300); padding-left:22px; }
.timeline-item{ position:relative; padding-bottom:22px; }
.timeline-item:last-child{ padding-bottom:0; }
.timeline-item::before{
  content:""; position:absolute; left:-28px; top:4px; width:12px; height:12px; border-radius:50%;
  background:var(--gold); border:3px solid var(--white); box-shadow:0 0 0 2px var(--silver-300);
}
.timeline-item.is-new::before{ background:var(--blue-accent); box-shadow:0 0 0 2px var(--blue-accent-light); }
.timeline-item .year{ font-weight:800; color:var(--navy-800); font-size:.95rem; }
.timeline-item p{ margin:2px 0 0; font-size:.95rem; }
.timeline-item .badge-new{
  display:inline-block; margin-left:8px; font-size:.68rem; font-weight:800; letter-spacing:.04em;
  background:var(--blue-accent); color:var(--white); padding:2px 8px; border-radius:999px; vertical-align:middle;
}

@media (max-width:920px){ .about-grid{ grid-template-columns:1fr; gap:40px; } }

/* ---------- Leistungen ---------- */
.services{ background:var(--silver-100); }
.services-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.service-card{
  position:relative; background:var(--white); border-radius:var(--radius-m); padding:30px 26px;
  box-shadow:var(--shadow-s); border:1px solid var(--silver-200); transition:transform .2s ease, box-shadow .2s ease;
}
.service-card:hover{ transform:translateY(-5px); box-shadow:var(--shadow-m); }
.service-card .icon{
  width:52px; height:52px; border-radius:14px; display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg,var(--navy-700),var(--navy-900)); color:var(--white); margin-bottom:18px;
}
.service-card .icon svg{ width:26px; height:26px; }
.service-card h3{ font-size:1.08rem; color:var(--navy-900); }
.service-card p{ font-size:.92rem; margin-bottom:0; }
.service-card.highlight{ border:2px solid var(--gold); }
.service-card .badge-new{
  position:absolute; top:-12px; right:20px; background:linear-gradient(135deg,var(--gold-light),var(--gold));
  color:var(--navy-950); font-weight:800; font-size:.72rem; letter-spacing:.04em; text-transform:uppercase;
  padding:6px 12px; border-radius:999px; box-shadow:var(--shadow-s);
}

@media (max-width:980px){ .services-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:620px){ .services-grid{ grid-template-columns:1fr; } }

/* ---------- Warum wir ---------- */
.why{ background:var(--navy-950); color:var(--white); position:relative; overflow:hidden; }
.why::before{
  content:""; position:absolute; inset:0; opacity:.5; z-index:0;
  background:radial-gradient(700px 380px at 90% 0%, rgba(47,123,196,.25), transparent 60%);
}
.why .container{ position:relative; z-index:1; }
.why-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:20px 40px; margin-top:10px; }
.why-item{ display:flex; gap:16px; align-items:flex-start; }
.why-item .icon{
  flex-shrink:0; width:44px; height:44px; border-radius:12px; background:rgba(216,169,65,.15);
  border:1px solid rgba(216,169,65,.4); color:var(--gold-light); display:flex; align-items:center; justify-content:center;
}
.why-item .icon svg{ width:22px; height:22px; }
.why-item h4{ color:var(--white); font-size:1.02rem; margin-bottom:4px; }
.why-item p{ color:var(--silver-300); font-size:.92rem; margin:0; }
.why .section-head h2{ color:var(--white); }
.why .section-head p{ color:var(--silver-300); }

@media (max-width:760px){ .why-grid{ grid-template-columns:1fr; } }

/* ---------- Kontakt ---------- */
.contact{ background:var(--white); }
.contact-grid{ display:grid; grid-template-columns:.9fr 1.1fr; gap:56px; }
.contact-card{
  background:var(--silver-100); border-radius:var(--radius-l); padding:34px; border:1px solid var(--silver-200);
}
.contact-line{ display:flex; gap:14px; align-items:flex-start; margin-bottom:20px; }
.contact-line:last-child{ margin-bottom:0; }
.contact-line .icon{
  width:42px; height:42px; border-radius:12px; background:var(--navy-900); color:var(--white);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.contact-line .icon svg{ width:20px; height:20px; }
.contact-line strong{ display:block; color:var(--navy-900); font-size:.95rem; }
.contact-line a, .contact-line span{ color:var(--ink-soft); font-size:.94rem; }
.contact-line a:hover{ color:var(--blue-accent); }
.support-note{
  margin-top:24px; padding:16px 18px; background:rgba(47,123,196,.08); border-left:3px solid var(--blue-accent);
  border-radius:8px; font-size:.88rem; color:var(--navy-800);
}

.form-field{ margin-bottom:18px; }
.form-field label{ display:block; font-weight:700; font-size:.88rem; color:var(--navy-900); margin-bottom:6px; }
.form-field input, .form-field textarea{
  width:100%; padding:13px 14px; border-radius:10px; border:1.5px solid var(--silver-300);
  font-family:var(--font); font-size:.96rem; color:var(--ink); background:var(--white);
  transition:border-color .15s ease, box-shadow .15s ease;
}
.form-field input:focus, .form-field textarea:focus{
  outline:none; border-color:var(--blue-accent); box-shadow:0 0 0 4px rgba(47,123,196,.14);
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.form-consent{ display:flex; gap:10px; align-items:flex-start; font-size:.85rem; color:var(--ink-soft); margin-bottom:22px; }
.form-consent input{ margin-top:4px; }
.form-consent a{ color:var(--blue-accent); font-weight:600; }
.form-note{ font-size:.8rem; color:var(--silver-700); margin-top:12px; }
.form-status{ font-size:.9rem; font-weight:700; margin:14px 0 0; min-height:1.2em; }
.form-status.success{ color:#1a7a4c; }
.form-status.error{ color:#b3261e; }

/* ---------- Hinweis-Banner (keine Cookies) ---------- */
.cookie-notice{
  position:fixed; left:16px; right:16px; bottom:16px; z-index:1500;
  max-width:680px; margin:0 auto;
  background:var(--navy-950); color:var(--silver-200);
  border:1px solid rgba(255,255,255,.14); border-radius:var(--radius-m);
  box-shadow:var(--shadow-l); padding:20px 22px;
  display:flex; flex-wrap:wrap; gap:16px; align-items:center; justify-content:space-between;
  transform:translateY(150%); opacity:0; transition:transform .35s ease, opacity .35s ease;
}
.cookie-notice.show{ transform:none; opacity:1; }
.cookie-notice p{ margin:0; font-size:.86rem; color:var(--silver-300); flex:1 1 260px; }
.cookie-notice p strong{ color:var(--white); }
.cookie-notice p a{ color:var(--gold-light); font-weight:600; }
.cookie-notice-actions{ display:flex; gap:10px; flex-shrink:0; }
.cookie-notice .btn{ padding:10px 18px; font-size:.85rem; }
@media (max-width:520px){
  .cookie-notice{ flex-direction:column; align-items:stretch; left:12px; right:12px; bottom:12px; padding:18px; }
  .cookie-notice-actions{ justify-content:stretch; }
  .cookie-notice-actions .btn{ flex:1; }
}

@media (max-width:920px){
  .contact-grid{ grid-template-columns:1fr; }
  .form-row{ grid-template-columns:1fr; }
}

/* ---------- Footer ---------- */
.site-footer{ background:var(--navy-950); color:var(--silver-300); padding:64px 0 26px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; margin-bottom:40px; }
.footer-brand img{ height:40px; margin-bottom:14px; }
.footer-brand p{ color:var(--silver-500); font-size:.9rem; max-width:32ch; }
.footer-col h5{ color:var(--white); font-size:.9rem; text-transform:uppercase; letter-spacing:.06em; margin-bottom:16px; }
.footer-col a{ display:block; padding:6px 0; color:var(--silver-300); font-size:.92rem; }
.footer-col a:hover{ color:var(--gold-light); }
.social-row{ display:flex; gap:12px; margin-top:14px; }
.social-row a{
  width:38px; height:38px; border-radius:10px; border:1px solid rgba(255,255,255,.16);
  display:flex; align-items:center; justify-content:center; padding:0;
}
.social-row a:hover{ background:rgba(255,255,255,.08); }
.social-row svg{ width:18px; height:18px; }
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1); padding-top:24px; display:flex; justify-content:space-between;
  flex-wrap:wrap; gap:12px; font-size:.85rem; color:var(--silver-500);
}
@media (max-width:920px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .footer-grid{ grid-template-columns:1fr; } }

/* ---------- Legal pages (Impressum/Datenschutz) ---------- */
.legal-hero{
  padding:150px 0 50px; background:linear-gradient(160deg,var(--navy-950),var(--navy-800)); color:var(--white);
}
.legal-hero h1{ color:var(--white); font-size:clamp(1.8rem,4vw,2.6rem); }
.legal-hero p{ color:var(--silver-300); margin:0; }
.legal-content{ padding:60px 0 100px; }
.legal-content .container{ max-width:840px; }
.legal-content h2{ color:var(--navy-900); font-size:1.35rem; margin-top:2.2em; }
.legal-content h2:first-child{ margin-top:0; }
.legal-content h3{ color:var(--navy-800); font-size:1.05rem; margin-top:1.6em; }
.legal-content p, .legal-content li{ color:var(--ink-soft); }
.legal-content ul{ padding-left:1.3em; list-style:disc; margin-bottom:1em; }
.legal-content a{ color:var(--blue-accent); font-weight:600; }
.legal-box{
  background:var(--silver-100); border-radius:var(--radius-m); padding:24px 26px; margin:1.4em 0;
  border:1px solid var(--silver-200);
}
.back-home{ display:inline-flex; align-items:center; gap:8px; color:var(--silver-300); font-weight:700; font-size:.92rem; margin-bottom:18px; }
.back-home:hover{ color:var(--white); }

/* ---------- Reveal on scroll ---------- */
.reveal{ opacity:0; transform:translateY(22px); transition:opacity .6s ease, transform .6s ease; }
.reveal.is-visible{ opacity:1; transform:none; }

/* ---------- Utilities ---------- */
.skip-link{
  position:absolute; left:-9999px; top:0; background:var(--gold); color:var(--navy-950); padding:12px 18px;
  z-index:2000; font-weight:700; border-radius:0 0 8px 0;
}
.skip-link:focus{ left:0; }
