/* =========================================================
   BAJMAX GmbH — Stylesheet
   Mobile-first, dunkles Schwarz/Blau-Design passend zum Logo
   ========================================================= */

:root {
  --bg: #070b14;
  --bg-alt: #0d1526;
  --bg-alt-2: #101b32;
  --panel: #101a2c;
  --border: rgba(183,195,214,0.22);
  --border-strong: rgba(183,195,214,0.38);

  --blue: #2f6fed;
  --blue-light: #58a6ff;
  --blue-dark: #1c4fc0;
  --blue-glow: rgba(47,111,237,0.45);

  --silver: #b7c3d6;
  --silver-light: #e3e9f2;
  --silver-dark: #7c8aa3;
  --silver-glow: rgba(200,210,224,0.35);

  --white: #ffffff;
  --off-white: #f5f7fb;
  --ink: #0b1220;
  --text: #e7ecf6;
  --text-muted: #9fb0c9;
  --text-muted-2: #5b6c86;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;

  --shadow-lg: 0 30px 60px -20px rgba(0,0,0,0.55);
  --shadow-blue: 0 16px 40px -14px var(--blue-glow);

  --font-display: 'Sora', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --container: 1180px;
  --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; line-height: 1.15; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--blue); color: #fff; padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--blue-light);
  outline-offset: 3px;
}

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

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
  transition-delay: var(--d, 0s);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-primary {
  background: linear-gradient(135deg, var(--blue-light), var(--blue) 60%, var(--blue-dark));
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn-primary::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.35) 45%, transparent 60%);
  transform: translateX(-120%);
  transition: transform .6s ease;
}
.btn-primary:hover::after { transform: translateX(120%); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 45px -14px var(--blue-glow); }
.btn-primary:active { transform: translateY(-1px); }

.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border-color: var(--border-strong);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.09); transform: translateY(-3px); border-color: var(--silver-light); }

.btn-light {
  background: var(--white); color: var(--ink);
}
.btn-light:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -14px rgba(0,0,0,0.35); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: var(--header-h);
  display: flex; align-items: center;
  border-bottom: 1px solid transparent;
  transition: border-color .35s ease, height .35s ease, box-shadow .35s ease;
}
.site-header::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(7,11,20,0.55);
  backdrop-filter: blur(14px) saturate(140%);
  transition: background .35s ease;
  z-index: -1;
}
.site-header.scrolled::before {
  background: rgba(7,11,20,0.9);
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 10px 30px -18px rgba(0,0,0,0.6);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}
.logo-link { display: flex; align-items: center; height: 100%; }
.logo-img { height: 48px; width: auto; border-radius: 8px; transition: transform .3s ease; }
.logo-link:hover .logo-img { transform: scale(1.05); }

.main-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 28px;
  position: fixed;
  inset: 0;
  z-index: 550;
  background: var(--bg); /* voll deckend, verdeckt die gesamte Seite inkl. Header */
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.22,1,.36,1);
  padding: max(28px, env(safe-area-inset-top)) 24px max(28px, env(safe-area-inset-bottom));
  overflow: hidden; /* kein Scrollbalken – Inhalt ist bewusst kompakt gehalten */
}
.main-nav.open { transform: translateX(0); }
.main-nav ul {
  display: flex; flex-direction: column; gap: 18px;
  text-align: center;
  font-size: clamp(1.05rem, 5.5vh, 1.35rem);
  font-family: var(--font-display);
  font-weight: 600;
}
.main-nav a { position: relative; padding-bottom: 4px; }
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--silver-light); transition: width .3s ease;
}
.main-nav a:hover::after, .main-nav a:focus-visible::after { width: 100%; }
.nav-cta { align-self: center; margin-top: 8px; padding-top: 6px; }

.burger {
  position: relative;
  width: 44px; height: 44px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  background: transparent; border: none; z-index: 600;
}
.burger span {
  width: 24px; height: 2px; background: var(--white);
  transition: transform .35s ease, opacity .35s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08);
  animation: heroZoom 18s ease-in-out infinite alternate;
  filter: saturate(0.9) brightness(0.55);
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1.16); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 20% 20%, rgba(47,111,237,0.35), transparent 60%),
    linear-gradient(180deg, rgba(7,11,20,0.55) 0%, rgba(7,11,20,0.85) 60%, var(--bg) 100%);
}
.hero-content {
  position: relative; z-index: 1; padding: 90px 20px 70px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}

.hero-logo {
  position: relative;
  width: 220px; height: 220px;
  margin-bottom: 28px;
  display: flex; align-items: center; justify-content: center;
  animation: heroLogoFloat 5s ease-in-out infinite;
}
.hero-logo-glow {
  position: absolute; inset: -30%;
  background: radial-gradient(circle, var(--blue-glow) 0%, transparent 68%);
  filter: blur(6px);
  animation: heroGlowPulse 3.6s ease-in-out infinite;
  z-index: 0;
}
.hero-logo-img {
  position: relative; z-index: 1;
  width: 100%; height: 100%;
  object-fit: contain;
  border-radius: 28px;
  background: #05070d;
  padding: 12px;
  border: 1px solid rgba(183,195,214,0.3);
  box-shadow: 0 25px 55px -18px rgba(0,0,0,0.7), 0 0 0 1px rgba(183,195,214,0.08);
}
@keyframes heroLogoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.12); }
}
@media (min-width: 480px) {
  .hero-logo { width: 260px; height: 260px; }
}
@media (min-width: 640px) {
  .hero-logo { width: 320px; height: 320px; }
}
@media (min-width: 1024px) {
  .hero-logo { width: 380px; height: 380px; margin-bottom: 36px; }
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .75rem;
  color: var(--silver-light);
  padding: 6px 14px;
  border: 1px solid rgba(183,195,214,0.4);
  border-radius: 999px;
  background: rgba(183,195,214,0.08);
  margin-bottom: 18px;
}
.eyebrow.center { display: block; text-align: center; margin-left: auto; margin-right: auto; width: fit-content; }

.hero h1 {
  font-size: clamp(2.2rem, 8vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}
.hero h1 .accent { color: var(--silver-light); }
.hero-sub {
  margin: 22px auto 0;
  max-width: 560px;
  font-size: 1.08rem;
  color: var(--text-muted);
}
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.hero-checks {
  margin-top: 40px;
  display: flex; flex-wrap: wrap; gap: 22px;
  font-size: .9rem; color: var(--text-muted);
  justify-content: center;
}
.hero-checks li { display: flex; align-items: center; gap: 8px; }
.hero-checks svg { width: 18px; height: 18px; stroke: var(--silver-light); fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,0.4); border-radius: 20px;
  z-index: 1;
}
.scroll-cue span {
  position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; margin-left: -2px;
  background: var(--silver-light); border-radius: 2px;
  animation: scrollCue 1.8s ease infinite;
}
@keyframes scrollCue {
  0% { opacity: 1; transform: translateY(0); }
  70% { opacity: 0; transform: translateY(14px); }
  100% { opacity: 0; transform: translateY(14px); }
}

/* ---------- Section basics ---------- */
section { position: relative; padding: 88px 0; }
.section-title {
  font-size: clamp(1.7rem, 4.5vw, 2.6rem);
  background: linear-gradient(100deg, var(--silver-light) 0%, #ffffff 35%, var(--silver) 70%, var(--silver-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-top: 10px;
  font-weight: 700;
}
.section-title.center { text-align: center; }
.section-title.center::after {
  content: "";
  display: block;
  width: 64px; height: 3px;
  margin: 18px auto 0;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--silver), var(--blue-light));
}
.section-lead {
  max-width: 620px; margin: 18px auto 0;
  color: var(--text-muted);
  text-align: center;
  font-size: 1.05rem;
}
.center { text-align: center; }

/* ---------- Services ---------- */
.services { background: var(--bg); }
.service-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.service-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s ease, border-color .4s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,210,224,0.55);
}
.service-img { aspect-ratio: 16/10; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.22,1,.36,1); }
.service-card:hover .service-img img { transform: scale(1.08); }
.service-body { padding: 26px 24px 30px; }
.service-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(183,195,214,0.22), rgba(47,111,237,0.08));
  border: 1px solid rgba(183,195,214,0.25);
  margin-bottom: 16px;
}
.service-icon svg { width: 24px; height: 24px; stroke: var(--silver-light); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-body h3 { font-size: 1.25rem; color: var(--white); margin-bottom: 10px; }
.service-body p { color: var(--text-muted); font-size: .96rem; }

.service-card--cta {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, var(--blue-dark), #0d1a3a);
  min-height: 220px;
  text-align: center;
}
.service-cta-inner { padding: 30px 26px; }
.service-cta-inner h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 10px; }
.service-cta-inner p { color: rgba(255,255,255,0.75); margin-bottom: 20px; font-size: .95rem; }

/* ---------- Warum BajMax ---------- */
.why { background: var(--bg-alt); }
.why-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.why-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}
.why-card:hover { transform: translateY(-6px); border-color: rgba(200,210,224,0.55); background: #121e36; }
.why-number {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--silver);
  opacity: .9;
  margin-bottom: 14px;
}
.why-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 10px; }
.why-card p { color: var(--text-muted); font-size: .94rem; }

.why-card--stats {
  display: flex; justify-content: space-around; align-items: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border: none;
}
.stat { text-align: center; }
.stat-num { display: block; font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; color: #fff; }
.stat-label { font-size: .8rem; color: rgba(255,255,255,0.85); text-transform: uppercase; letter-spacing: .06em; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--bg); }
.testi-grid {
  margin-top: 56px;
  display: grid; grid-template-columns: 1fr; gap: 22px;
}
.testi-card {
  background: var(--off-white);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative;
  box-shadow: var(--shadow-lg);
  transition: transform .35s ease;
}
.testi-card:hover { transform: translateY(-6px) rotate(-0.4deg); }
.stars { color: #f5a623; letter-spacing: 2px; margin-bottom: 14px; font-size: 1.1rem; }
.testi-card p { font-size: 1rem; line-height: 1.65; margin-bottom: 16px; }
.testi-card footer { font-weight: 600; color: var(--blue-dark); font-size: .9rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--blue-dark), var(--blue) 60%, var(--blue-light));
  padding: 60px 0;
  overflow: hidden;
  position: relative;
}
.cta-band::before {
  content: "";
  position: absolute; inset: -50% -10%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.18), transparent 55%);
  animation: ctaGlow 10s ease-in-out infinite alternate;
}
@keyframes ctaGlow {
  from { transform: translate(0,0); }
  to { transform: translate(6%, 4%); }
}
.cta-band-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 24px; text-align: center;
}
.cta-band-inner h2 { color: #fff; font-size: clamp(1.4rem, 4vw, 2rem); max-width: 640px; }

/* ---------- Kontakt ---------- */
.contact { background: var(--bg-alt); }
.contact-grid {
  margin-top: 50px;
  display: grid; grid-template-columns: 1fr; gap: 40px;
}
.contact-form {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
}
.form-row { margin-bottom: 20px; }
.form-row--split { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 0; }
.form-row--split > div { margin-bottom: 20px; }
.form-row label {
  display: block; margin-bottom: 8px;
  font-size: .88rem; font-weight: 600; color: var(--text-muted);
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  background: #0b1424;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  color: var(--text);
  font-size: .96rem;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--blue-light);
  box-shadow: 0 0 0 4px rgba(88,166,255,0.15);
  background: #0d1830;
}
.form-row textarea { resize: vertical; min-height: 120px; }
.form-row input:invalid.touched, .form-row textarea:invalid.touched { border-color: #e5484d; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

.btn-submit { width: 100%; position: relative; }
.btn-spinner {
  display: none;
  width: 18px; height: 18px;
  border: 2.5px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
.btn-submit.loading .btn-text { opacity: .6; }
.btn-submit.loading .btn-spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-status {
  margin-top: 14px; font-size: .9rem; min-height: 1.2em;
}
.form-status.success { color: #3ddc84; }
.form-status.error { color: #ff6b6b; }

.contact-info h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 22px; }
.info-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 30px; }
.info-list li { display: flex; align-items: center; gap: 14px; color: var(--text-muted); font-size: .96rem; }
.info-list svg { width: 20px; height: 20px; stroke: var(--silver-light); fill: none; stroke-width: 1.8; flex-shrink: 0; }
.info-list a:hover { color: var(--blue-light); }

.quick-contact { display: grid; grid-template-columns: 1fr; gap: 12px; margin-bottom: 28px; }
.quick-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-weight: 600; font-size: .92rem;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.quick-btn svg { width: 20px; height: 20px; fill: var(--silver-light); }
.quick-btn:hover { transform: translateY(-3px); border-color: var(--silver-light); background: #121e36; }
.quick-btn--whatsapp svg { fill: #25D366; }

.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.map-wrap iframe { width: 100%; height: 260px; border: 0; display: block; filter: grayscale(0.15) invert(0.92) contrast(0.9); }
.map-wrap--small iframe { height: 180px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg); border-top: 1px solid var(--border); padding-top: 70px; }
.footer-top {
  display: grid; grid-template-columns: 1fr; gap: 40px;
  padding-bottom: 50px;
}
.footer-brand { max-width: 340px; }
.footer-logo { height: 120px; margin-bottom: 18px; border-radius: 12px; }
@media (min-width: 640px) {
  .footer-logo { height: 150px; }
}
.footer-brand p { color: var(--text-muted); font-size: .92rem; margin-bottom: 20px; }
.footer-whatsapp {
  display: inline-flex; align-items: center; gap: 10px;
  color: #25D366; font-weight: 600; font-size: .9rem;
  border: 1px solid rgba(37,211,102,0.3); padding: 10px 16px; border-radius: 999px;
  transition: background .25s ease, transform .25s ease;
}
.footer-whatsapp svg { width: 18px; height: 18px; fill: #25D366; }
.footer-whatsapp:hover { background: rgba(37,211,102,0.1); transform: translateY(-2px); }

.footer-col h4 { color: var(--silver-light); font-size: 1rem; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a, .footer-col span { color: var(--text-muted); font-size: .92rem; }
.footer-col a:hover { color: var(--blue-light); }

.map-link { color: var(--blue-light); font-size: .88rem; font-weight: 600; display: inline-block; margin-top: 2px; }
.map-link:hover { text-decoration: underline; }

.footer-bottom { border-top: 1px solid var(--border); padding: 22px 0; }
.footer-bottom-inner { text-align: center; }
.footer-bottom p { color: var(--text-muted-2); font-size: .82rem; }

/* ---------- WhatsApp floating button ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 400;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px -8px rgba(37,211,102,0.6);
  transition: transform .3s ease, box-shadow .3s ease;
}
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
.wa-float::before {
  content: "";
  position: absolute; inset: 0; border-radius: 50%;
  background: #25D366;
  animation: waPulse 2.4s ease-out infinite;
  z-index: -1;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.9); opacity: 0; }
}
.wa-float:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 14px 36px -8px rgba(37,211,102,0.75); }

/* =========================================================
   Tablet / Desktop breakpoints
   ========================================================= */
@media (min-width: 640px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-contact { grid-template-columns: repeat(3, 1fr); }
  .form-row--split { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 880px) {
  .burger { display: none; }
  .main-nav {
    position: static; transform: none; flex-direction: row;
    background: transparent; padding: 0; justify-content: flex-end; flex: 1; margin-left: 40px;
    overflow: visible;
  }
  .main-nav ul { flex-direction: row; font-size: .96rem; gap: 30px; }
  .nav-cta { margin-left: 30px; }

  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .why-card--stats { grid-column: span 1; }
  .testi-grid { grid-template-columns: repeat(3, 1fr); }

  .contact-grid { grid-template-columns: 1.15fr 0.85fr; align-items: start; }

  .footer-top { grid-template-columns: 1.3fr 0.8fr 1fr; }

  section { padding: 120px 0; }
  .hero-content { padding: 120px 20px 90px; }
}

@media (min-width: 1180px) {
  .hero h1 { max-width: 900px; margin-left: auto; margin-right: auto; }
}