
:root{
  --bg:#ffffff;
  --text:#0b1220;
  --muted:#6b7280;
  --border:#e5e7eb;
  --surface:#f5f6f8;
  --surface2:#eef2ff;
  --brand:#3b82f6;
  --brand2:#2563eb;
  --hero1:#0b1220;
  --hero2:#0f2550;
  --radius:18px;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --container: 1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.5;
}

img{max-width:100%; height:auto; display:block}
a{color:inherit; text-decoration:none}
a:hover{text-decoration:underline}

.container{
  width:min(var(--container), calc(100% - 40px));
  margin:0 auto;
}

.muted{color:var(--muted); max-width: 70ch}

.section{padding:72px 0}
.section-light{background:var(--surface)}
.section-head{margin-bottom:28px}
.section-head h2{
  font-family:"Space Grotesk", Inter, sans-serif;
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing:-0.02em;
  margin:0 0 10px 0;
}
.section-head p{margin:0}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:14px;
  padding:12px 18px;
  font-weight:600;
  border:1px solid transparent;
  cursor:pointer;
  user-select:none;
  text-decoration:none !important;
}

.btn:active{
  transform: scale(.97);
}

.btn-primary{
  background:var(--brand);
  color:white;
  box-shadow: 0 8px 18px rgba(59,130,246,.28);
}
.btn-primary:hover{background:var(--brand2)}
.btn-ghost{
  background:transparent;
  border-color:rgba(255,255,255,.25);
  color:white;
}
.btn-ghost:hover{background:rgba(255,255,255,.08)}
.btn-wide{width:100%}

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background:#d9dadd;
  border-bottom:1px solid rgba(0,0,0,.06);
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{
  text-decoration:none;
  color:inherit;
  display:flex;
  align-items:center;
  gap:12px;
  cursor:default;
  user-select:none;
}
.brand-text{
  display:flex;
  flex-direction:column;
  gap:2px;
  line-height:1.05;
}
.brand-slogan{
  font-size:12px;
  letter-spacing:.14em;
  text-transform:lowercase;
  opacity:.75;
  white-space:nowrap;
}
.brand-logo{
  height:84px;
  width:auto;
  display:block;
}
.brand-mark{
  font-family:"Space Grotesk", Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight:800;
  letter-spacing:-0.01em;
  font-size:20px;
  line-height:1;
}


.nav{display:flex; align-items:center; gap:18px}
.nav-link{opacity:.85; font-weight:600; font-size:14px}
.nav-link:hover{opacity:1; text-decoration:none}
.nav-cta{padding:10px 14px; border-radius:12px}
.topbar-actions{display:flex; align-items:center; gap:10px}
.lang-toggle{
  border:1px solid rgba(0,0,0,.12);
  background:rgba(255,255,255,.35);
  border-radius:12px;
  padding:8px 12px;
  font-weight:700;
  cursor:pointer;
}
.icon-btn{
  border:none;
  background:transparent;
  width:42px; height:42px;
  border-radius:12px;
  display:grid; place-items:center;
  cursor:pointer;
}
.icon-btn:hover{background:rgba(255,255,255,.35)}
.icon-btn svg{width:22px; height:22px}

@media (max-width: 860px){
  .nav{display:none}
}

.mobile-drawer{display:none}
.mobile-drawer[aria-hidden="false"]{display:block}
.mobile-drawer-backdrop{
  position:fixed; inset:0;
  background:rgba(0,0,0,.35);
}
.mobile-drawer-card{
  position:fixed;
  top:12px; right:12px;
  width:min(360px, calc(100% - 24px));
  background:white;
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow: var(--shadow);
  padding:14px;
  z-index:60;
}
.mobile-drawer-head{
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom:10px;
}
.mobile-brand{font-family:"Space Grotesk"; font-weight:700}
.mobile-links{display:flex; flex-direction:column; gap:10px}
.mobile-links a{padding:10px 12px; border-radius:12px; font-weight:700}
.mobile-links a:hover{background:var(--surface); text-decoration:none}

/* FIX: Burger Menü Button Hover wie Desktop */
.mobile-links .btn-primary:hover{
  background: var(--brand2);
  color: #fff;
}

.hero{
  background: radial-gradient(1200px 600px at 20% 20%, rgba(59,130,246,.25), transparent 55%),
              linear-gradient(180deg, var(--hero2), var(--hero1));
  color:white;
  position:relative;
  padding:72px 0 112px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:34px;
  align-items:center;
}

.hero-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:700;
  letter-spacing:.02em;
  text-transform:lowercase;
  color:rgba(255,255,255,.78);
  margin-bottom:10px;
}
.hero-title{
  font-family:"Space Grotesk", Inter, sans-serif;
  font-size: clamp(44px, 6vw, 64px);
  line-height:1.02;
  letter-spacing:-0.03em;
  margin:0 0 16px 0;
}
.hero-sub{
  font-size:19px;
  color:rgba(255,255,255,.78);
  max-width:60ch;
  margin:0 0 22px 0;
}


.hero-actions{display:flex; gap:14px; flex-wrap:wrap; align-items:center}
.hero-actions .btn{min-width:210px}
.hero-trust{
  margin-top:14px;
  font-size:14px;
  color:rgba(255,255,255,.72);
  letter-spacing:.01em;
}


.hero-visual img{
  border-radius:22px;
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
}

@media (max-width: 960px){
  .hero-grid{grid-template-columns:1fr; }
  .hero-visual{order:-1}
}

.problem-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:12px;
}
.problem-list li{
  background:white;
  border:1px solid var(--border);
  border-radius:16px;
  padding:14px 14px;
  display:flex;
  gap:10px;
  align-items:flex-start;
}
.problem-list li i, .problem-list li svg{
  width:18px; height:18px;
  margin-top:2px;
  color:#ef4444;
}

@media (max-width: 720px){
  .problem-list{grid-template-columns:1fr}
}

.stats{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
  margin-top:20px;
}
.stat{
  background: white;
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px;
  box-shadow: 0 8px 18px rgba(0,0,0,.05);
}
.stat-number{
  font-family:"Space Grotesk";
  font-size:32px;
  font-weight:700;
  letter-spacing:-0.02em;
}
.stat-label{color:var(--muted); margin-top:6px}

@media (max-width: 860px){
  .stats{grid-template-columns:1fr}
}

.grid-3{display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:14px}
.grid-4{display:grid; grid-template-columns:repeat(4, minmax(0,1fr)); gap:14px}

.card{
  background:white;
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px;
  box-shadow: 0 8px 18px rgba(0,0,0,.04);
}
.card h3{
  margin:0 0 8px 0;
  font-family:"Space Grotesk";
  font-size:19px;
}
.card p{margin:0; color:var(--muted)}
.card .card-icon{
  width:42px; height:42px;
  border-radius:14px;
  background: #eaf1ff;
  display:grid; place-items:center;
  margin-bottom:12px;
}
.card .card-icon svg{width:22px; height:22px; color:var(--brand2)}

@media (max-width: 960px){
  .grid-3{grid-template-columns:1fr}
  .grid-4{grid-template-columns:1fr 1fr}
}
@media (max-width: 520px){
  .grid-4{grid-template-columns:1fr}
}

.cta{
  border-radius:22px;
  padding:26px;
  background: linear-gradient(180deg, rgba(59,130,246,.14), rgba(59,130,246,.04));
  border:1px solid rgba(59,130,246,.18);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.cta h2{
  margin:0 0 8px 0;
  font-family:"Space Grotesk";
  font-size: clamp(24px, 3vw, 32px);
}
.cta p{margin:0}
.cta-note{margin-top:10px; font-size:14px}
.cta-actions{min-width:260px}
@media (max-width: 860px){
  .cta{flex-direction:column; align-items:stretch}
  .cta-actions{min-width:unset}
}

.contact-grid{display:grid; gap:16px}
.contact-cards{display:grid; gap:14px; grid-template-columns: repeat(2, minmax(0,1fr));}
.contact-card{
  background:white;
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px;
  display:flex;
  gap:12px;
  align-items:center;
}
.icon-badge{
  width:48px; height:48px;
  border-radius:16px;
  background:#eaf1ff;
  display:grid; place-items:center;
}
.icon-badge svg{width:22px; height:22px; color:var(--brand2)}
.contact-label{color:var(--muted); font-size:14px; font-weight:600}
.contact-value{font-weight:700}
.contact-value a{text-decoration:none}
.contact-value a:hover{text-decoration:underline}
@media (max-width: 860px){
  .contact-cards{grid-template-columns:1fr}
}

.footer{
  background: radial-gradient(1200px 420px at 20% 20%, rgba(59,130,246,.18), transparent 55%),
              #070b12;
  color:rgba(255,255,255,.85);
  padding:56px 0 44px;
}
.footer-inner{display:flex; flex-direction:column; gap:0px}
.footer-brand{
  font-family:'Space Grotesk', sans-serif;
}
.footer-sub{max-width:70ch; color:rgba(255,255,255,.65)}
.footer-links{display:flex;flex-direction:column;gap:8px;}
.footer-links a{color:rgba(255,255,255,.75)}
.footer-links a:hover{color:white; text-decoration:none}
.footer-bottom{
  margin-top:10px;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  color:rgba(255,255,255,.55);
  justify-content:space-between;
}

/* Sticky inquiry */
.sticky-inquiry{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  border: none;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: var(--brand);
  color: #fff;
  box-shadow: 0 12px 26px rgba(59,130,246,.32);
  cursor:pointer;
}
.sticky-inquiry:hover{background:var(--brand2)}

/* Anfrage Modal */
.modal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 100;
  align-items: center;
  justify-content: center;
}
.modal.is-open{
  display: flex;
}

/* Hintergrund */
.modal-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  transition: opacity .28s cubic-bezier(.22,1,.36,1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Card */
.modal-card{
  position: relative;
  width: min(560px, calc(100% - 24px));
  background: #fff;
  color: #111;
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 18px;
  box-shadow: var(--shadow);
  max-height: calc(100vh - 48px);
  overflow-y: auto;

  opacity: 0;
  transform: translateY(20px) scale(.96);
  transition:
    opacity .28s cubic-bezier(.22,1,.36,1),
    transform .38s cubic-bezier(.22,1.2,.36,1);
}

.modal.is-open{
  display: flex;
}

.modal.is-visible .modal-backdrop{
  opacity: 1;
}

.modal.is-visible .modal-card{
  opacity: 1;
  transform: translateY(0) scale(1);
}

.modal-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
  margin-bottom: 14px;
}

.modal-header h2{
  margin: 0;
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family:"Space Grotesk";
}

.modal-close{
  border: 1px solid #111;
  background: transparent;
  color: #111;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  cursor: pointer;
  font-size: 22px;
  line-height: 0;
  transition: all .2s ease;
}

.modal-close:hover{
  background:#f5f5f5;
  transform: scale(1.05);
}

.form{display:grid; gap:12px}
.form label{display:grid; gap:6px; font-weight:700; color:#111; font-size:13px; text-transform:uppercase; letter-spacing:.06em}
.form input, .form textarea{
  width:100%;
  border:1px solid var(--border);
  border-radius:14px;
  padding:12px 12px;
  font: inherit;
  font-weight:500;
}
.form textarea{resize:vertical}
.form-submit{margin-top:6px}

.form-status{margin-top:10px; color:var(--muted); font-weight:600}
.form-error{margin-top:10px; color:#b91c1c; font-weight:700}
.form-success{margin-top:10px;}
.success-box{
  display:flex; gap:12px; align-items:flex-start;
  background:#ecfdf5; border:1px solid #a7f3d0;
  padding:12px; border-radius:16px;
}
.success-icon{font-size:20px; line-height:1}


@media (max-width:520px){
  .sticky-inquiry{
    bottom:14px;
    right:14px;
    box-shadow:0 8px 16px rgba(59,130,246,.22);
  }
  .brand-logo{
  height:84px;}
}


@media (max-width: 640px){
  .sticky-inquiry{
    box-shadow: none;
    /* keep it crisp on mobile */
    border: 1px solid rgba(255,255,255,.22);
  }
  .brand-logo{height:68px;}
  .brand-slogan{font-size:11px; letter-spacing:.12em;}
}

/* === Request Type Radios sauber ausrichten === */

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  cursor: pointer;
}

.radio-option input[type="radio"] {
  width: auto;
  margin: 0;
  accent-color: #4f7cff; /* gleiche Farbe wie dein Button */
}

/* === Fix: Radio Inputs dürfen NICHT wie Textfelder gestylt werden === */
.form .radio-group {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  margin-top: 8px !important;
}

.form .radio-option {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  cursor: pointer !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

/* überschreibt dein globales input-styling */
.form .radio-option input[type="radio"] {
  appearance: auto !important;
  -webkit-appearance: radio !important;

  width: 16px !important;
  height: 16px !important;

  padding: 0 !important;
  margin: 0 !important;

  border: 0 !important;
  border-radius: 50% !important;
  background: transparent !important;
  box-shadow: none !important;

  flex: 0 0 auto !important;
}

/* Text sauber neben dem Kreis */
.form .radio-option span {
  display: inline-block !important;
  line-height: 1.2 !important;
}

/* SEO helper: hidden but accessible text */
.visually-hidden,
.visually-hidden-section .visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.visually-hidden-section {
  position: relative;
}


/* Burger menu anchor offset: headings stay visible under sticky header */
#problems,
#solution,
#services,
#industries,
#pricing,
#faq,
#about,
#booking,
#contact {
  scroll-margin-top: 110px;
}


/* Active navigation state */
.mobile-links a.is-active,
.nav a.is-active {
  opacity: 1;
  text-decoration: none;
  font-weight: 700;
}


.footer-socials{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:14px;
}
.footer-social-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:rgba(255,255,255,.82);
  text-decoration:none;
  font-weight:600;
}
.footer-social-link:hover{
  color:#fff;
  text-decoration:none;
}
.footer-social-link svg{
  flex:0 0 auto;
}


/* Card Hover Effect */
.card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
}


/* Sticky Header */
header,
.site-header,
.topbar,
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
}

body {
  padding-top: 0;
}


/* Keep header visible on scroll */
header.header-hidden,
header.hide,
header.hidden,
.site-header.header-hidden,
.site-header.hide,
.site-header.hidden,
.topbar.header-hidden,
.topbar.hide,
.topbar.hidden,
.navbar.header-hidden,
.navbar.hide,
.navbar.hidden,
header.nav-up,
.site-header.nav-up,
.topbar.nav-up,
.navbar.nav-up,
header.scroll-down,
.site-header.scroll-down,
.topbar.scroll-down,
.navbar.scroll-down {
  transform: translateY(0) !important;
  top: 0 !important;
}


/* Fixed top bar on all pages */
:root{
  --topbar-offset: 120px;
}

#site-header{
  position: relative;
  z-index: 1000;
}

.topbar{
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
}

body{
  padding-top: var(--topbar-offset);
}





/* Modal stays centered above the fixed header */
.modal{
  z-index: 5000 !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 24px !important;
}

.modal-backdrop{
  position: absolute;
  inset: 0;
  z-index: 0;
}

.modal-card{
  position: relative;
  z-index: 1;
  margin: 0 auto !important;
  max-height: calc(100vh - 48px) !important;
}

@media (max-width: 768px){
  .modal{
    padding: 16px !important;
  }

  .modal-card{
    max-height: calc(100vh - 32px) !important;
  }
}

.footer-tagline-spacer{height:24px;}

.footer .footer-brand {
  font-family: 'Space Grotesk', sans-serif !important;
}


/* Inquiry modal validation */
#inquiryForm .input-error {
  border-color: #ff4d4f !important;
  box-shadow: 0 0 0 3px rgba(255, 77, 79, 0.18), 0 0 12px rgba(255, 77, 79, 0.22) !important;
}


.brand,
.brand:hover,
.brand:focus,
.brand:active{
  text-decoration:none !important;
  color:inherit;
  cursor:pointer;
}
