/* =============================================
   RepairX B2B — styles.css
   Palette: Navy #0f1e3d · Blue #1d4ed8 · Light #f0f4ff
   Premium corporate B2B — v2
   ============================================= */

:root {
  /* Core palette */
  --navy:        #0A0A14;
  --navy-mid:    #161622;
  --blue:        #2563EB;
  --blue-hover:  #1D4ED8;
  --blue-light:  #eff6ff;
  --blue-mid:    rgba(29,78,216,.12);
  --blue-glow:   rgba(37,99,235,.15);

  /* Neutrals */
  --bg:          #f8fafc;
  --bg-white:    #ffffff;
  --text:        #0d1630;
  --text-mid:    #3d4e6b;
  --text-muted:  #8496b3;
  --border:      #e1e8f5;
  --border-mid:  #c8d6ef;

  /* Shadows — layered for depth */
  --shadow-xs:   0 1px 4px rgba(13,22,48,.06);
  --shadow-sm:   0 4px 16px rgba(0,0,0,.04);
  --shadow-md:   0 12px 32px rgba(0,0,0,.06);
  --shadow-lg:   0 24px 64px rgba(0,0,0,.08);
  --shadow-blue: 0 8px 24px rgba(37,99,235,.3);

  /* Misc */
  --r-sm:   10px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   32px;
  --trans:  0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --font:   'Poppins', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; }
body {
  font-family: var(--font); background: var(--bg);
  color: var(--text); line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: ''; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 9999; opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; transition: color var(--trans); }
img, svg { max-width: 100%; display: block; }
ul { list-style: none; }
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; color: var(--text); }
h1 { font-size: clamp(3rem, 5.5vw, 5.2rem); letter-spacing: -0.03em; font-weight: 800; line-height: 1.05; }
h2 { font-size: clamp(2.1rem, 3.4vw, 3.1rem); letter-spacing: -0.025em; font-weight: 700; line-height: 1.15; }
h3 { font-size: 1.25rem; font-weight: 700; line-height: 1.35; }
p  { color: var(--text-mid); font-size: 1.05rem; line-height: 1.78; }
*:focus { outline: none; -webkit-tap-highlight-color: transparent; }

/* ── Layout ── */
.container { max-width: 1320px; margin: 0 auto; padding: 0 2.25rem; }
.section    { padding: 6rem 0; }
.section-alt  { background: var(--bg-white); }
.section-navy { background: var(--navy); }

/* ── Section header ── */
.section-head { margin-bottom: 3.5rem; }
.section-head h2 { margin-bottom: .55rem; }
.section-head p { max-width: 520px; }
.section-head.light h2 { color: #fff; }
.section-head.light p  { color: rgba(255,255,255,.55); }
.section-head.text-center { text-align: center; }
.section-head.text-center p { margin: 0 auto; }

.section-tag {
  display: inline-block;
  font-size: .8rem; font-weight: 700; letter-spacing: .10em; text-transform: uppercase;
  color: var(--blue); background: var(--blue-light);
  border: 1px solid rgba(29,78,216,.18);
  padding: .32rem 1rem; border-radius: 999px; margin-bottom: .95rem;
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: 1rem 2.4rem; border-radius: var(--r-sm);
  font-family: var(--font); font-weight: 700; font-size: 1.05rem;
  cursor: pointer; transition: all 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1.5px solid transparent; white-space: nowrap; letter-spacing: .025em;
  position: relative; overflow: hidden; min-height: 58px;
}
.btn::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.10), transparent);
  transition: left 0.55s ease;
}
.btn:hover::before { left: 100%; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: scale(0.97) translateY(0); }


.btn-red {
  background: linear-gradient(145deg, #f43f5e 0%, #dc2626 55%, #b91c1c 100%);
  color: #fff; border-color: transparent;
  box-shadow:
    0 0 0 1px rgba(239,68,68,0.20),
    0 4px 14px rgba(220,38,38,0.40),
    0 12px 32px rgba(185,28,28,0.22),
    inset 0 1px 0 rgba(255,255,255,0.22);
}
.btn-red:hover {
  background: linear-gradient(145deg, #fb7185 0%, #f43f5e 55%, #dc2626 100%);
  box-shadow:
    0 0 0 1px rgba(239,68,68,0.30),
    0 6px 20px rgba(220,38,38,0.55),
    0 18px 40px rgba(185,28,28,0.32),
    inset 0 1px 0 rgba(255,255,255,0.25);
  color: #fff;
}

.btn-blue {
  background: linear-gradient(145deg, #3b82f6 0%, #1d4ed8 55%, #1e3a8a 100%);
  color: #fff; border-color: transparent;
  box-shadow:
    0 0 0 1px rgba(59,130,246,0.20),
    0 4px 14px rgba(29,78,216,0.40),
    0 12px 32px rgba(30,58,138,0.22),
    inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn-blue:hover {
  background: linear-gradient(145deg, #60a5fa 0%, #3b82f6 55%, #1d4ed8 100%);
  box-shadow:
    0 0 0 1px rgba(59,130,246,0.30),
    0 6px 20px rgba(29,78,216,0.55),
    0 18px 40px rgba(30,58,138,0.32),
    inset 0 1px 0 rgba(255,255,255,0.22);
}

.btn-ghost {
  background: transparent; color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.3);
}
.btn-ghost:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.07); }




.btn-white {
  background: #fff; color: var(--navy);
  border-color: rgba(255,255,255,.9);
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.btn-white:hover { background: #f0f5ff; }

.btn-ghost-white {
  background: transparent; color: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.35);
}
.btn-ghost-white:hover { border-color: rgba(255,255,255,.8); color: #fff; }

.btn-outline-navy {
  background: transparent; color: var(--navy);
  border-color: var(--border-mid); font-size: .9rem;
  padding: .65rem 1.4rem;
}
.btn-outline-navy:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

.btn-submit {
  width: 100%; justify-content: center;
  padding: 1rem; font-size: 1.0rem;
}

/* ══════════════════════════════════════
   ANNOUNCE BAR
══════════════════════════════════════ */
.announce-bar {
  background: var(--navy);
  color: rgba(255,255,255,.6);
  font-size: .85rem; padding: .52rem 1rem; text-align: center;
  letter-spacing: .01em;
}
.announce-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 1.25rem; flex-wrap: wrap;
}
.announce-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--blue); flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(29,78,216,.3);
  animation: dot-pulse 2.5s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(29,78,216,.3); }
  50%       { box-shadow: 0 0 0 6px rgba(29,78,216,.1); }
}
.announce-inner a { color: #7ab3ff; font-weight: 600; }
.announce-inner a:hover { color: #fff; }

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
.header {
  position: sticky; top: 0; left: 0; width: 100%; max-width: none; transform: none;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: none; border-bottom: 1px solid var(--border);
  border-radius: 0;
  box-shadow: var(--shadow-xs);
  z-index: 10000; transition: box-shadow 0.3s ease, background 0.3s ease;
}
.header.scrolled {
  top: 0; width: 100%;
  background: rgba(255, 255, 255, 0.99); box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 72px;
}
.logo { height: 44px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 2.25rem; }
.main-nav ul { display: flex; align-items: center; gap: 1.5rem; }
.main-nav a {
  font-size:  0.96rem; font-weight: 500; color: var(--text-mid);
  padding: .25rem 0; position: relative;
  transition: color var(--trans);
}
.main-nav a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--blue); border-radius: 1px;
  transform: scaleX(0); transform-origin: center;
  transition: transform var(--trans);
}
.main-nav a:hover { color: var(--blue); }
.main-nav a:hover::after { transform: scaleX(1); }

.nav-highlight {
  background: var(--blue); color: #fff !important;
  font-weight: 600; font-size: .88rem; letter-spacing: .025em;
  padding: .64rem 1.45rem !important; border-radius: var(--r-sm);
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex; align-items: center; white-space: nowrap;
  box-shadow: 0 4px 14px rgba(29,78,216,.3);
}
.nav-highlight:hover {
  background: var(--blue-hover); color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(29,78,216,.38);
}
.nav-highlight::after { display: none !important; }


.header-right { display: flex; align-items: center; gap: .75rem; }


.header-call {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .58rem 1.15rem; border-radius: var(--r-sm);
  background: linear-gradient(145deg, #3b82f6 0%, #1d4ed8 100%);
  border: none; color: #fff; flex-shrink: 0;
  font-family: var(--font); font-size: .875rem; font-weight: 600;
  letter-spacing: .02em; white-space: nowrap;
  box-shadow: 0 4px 14px rgba(29,78,216,.30), inset 0 1px 0 rgba(255,255,255,.15);
  transition: all 0.22s ease;
}
.header-call:hover {
  background: linear-gradient(145deg, #60a5fa 0%, #3b82f6 100%);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(29,78,216,.42), inset 0 1px 0 rgba(255,255,255,.18);
  color: #fff;
}
.call-text { display: inline; }

/* WhatsApp button in header */
.header-wa {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #25D366; color: #fff;
  font-family: var(--font); font-size: .88rem; font-weight: 600;
  letter-spacing: .025em;
  padding: .64rem 1.4rem; border-radius: var(--r-sm);
  border: none; cursor: pointer;
  transition: background 0.22s, transform 0.22s, box-shadow 0.22s;
  box-shadow: 0 4px 14px rgba(37,211,102,.28);
}
.wa-text-mobile { display: none; }
.wa-text-desktop { display: inline; }

.header-wa:hover {
  background: #1da852; transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  color: #fff;
}

.mobile-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .4rem;
}
.mobile-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px; transition: var(--trans);
}

/* ══════════════════════════════════════
   HERO — SPLIT SCREEN
══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 94vh; overflow: hidden;
  isolation: isolate;
  /* Solid dark base */
  background: #080d1a;
}

/* Flexbox instead of grid — eliminates any grid cell boundary artifact */
.hero-inner {
  display: flex;
  min-height: 94vh;
}

/* Layer 1 — ambient glow, spans full hero width with no seam */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 80% at 50% 50%,  rgba(29,78,216,0.20)  0%, transparent 65%),
    radial-gradient(ellipse 60% 65% at 20% 42%,  rgba(37,99,235,0.17)  0%, transparent 58%),
    radial-gradient(ellipse 55% 55% at 80% 48%,  rgba(37,99,235,0.19)  0%, transparent 56%),
    radial-gradient(ellipse 100% 45% at 50% 100%, rgba(4,6,20,0.92)    0%, transparent 68%);
}

/* Layer 2 — soft specular highlights */
.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 32% 38% at 17% 28%, rgba(96,165,250,0.09) 0%, transparent 52%),
    radial-gradient(ellipse 30% 32% at 74% 24%, rgba(96,165,250,0.07) 0%, transparent 48%);
}

.hero-left {
  flex: 0 0 55%;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  padding: 8rem 2rem 6rem 7rem;
  position: relative; z-index: 1;
  min-width: 0;
}
.hero-left-content {
  max-width: 620px; width: 100%;
  padding: 0;
  hyphens: none; -webkit-hyphens: none;
}

.hero-label {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .82rem; font-weight: 700; letter-spacing: .10em;
  text-transform: uppercase; color: #7ab3ff;
  margin-bottom: 1.5rem;
}
.label-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(29,78,216,.25);
}

.hero-left h1 {
  color: #fff; font-weight: 800; margin-bottom: 1.25rem;
  letter-spacing: -.02em;
}
.hero-left h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-left-content > p {
  color: rgba(255,255,255,.6); font-size: 1.15rem;
  margin-bottom: 2.75rem; line-height: 1.82;
}
.hero-ctas { display: flex; gap: .85rem; flex-wrap: wrap; margin-bottom: 2rem; }

/* Utility: mobile-only elements */
.mobile-only { display: none; }

/* Mobile menu footer — hidden by default, shown inside open menu */
.mobile-menu-footer { display: none; }

/* Mobile device visual — hidden on desktop, shown on mobile */
.hero-visual-mob { display: none; }

/* WhatsApp hero button */
.btn-wa-hero {
  background: linear-gradient(145deg, #2ecc71 0%, #25D366 50%, #128C7E 100%);
  color: #fff; border-color: transparent;
  box-shadow:
    0 0 0 1px rgba(37,211,102,0.20),
    0 4px 14px rgba(37,211,102,0.38),
    0 12px 32px rgba(18,140,126,0.22),
    inset 0 1px 0 rgba(255,255,255,0.20);
}
.btn-wa-hero:hover {
  background: linear-gradient(145deg, #4ade80 0%, #2ecc71 50%, #25D366 100%);
  box-shadow:
    0 0 0 1px rgba(37,211,102,0.30),
    0 6px 20px rgba(37,211,102,0.52),
    0 18px 40px rgba(18,140,126,0.30),
    inset 0 1px 0 rgba(255,255,255,0.22);
  color: #fff;
}

/* ── Hero CTA row ── */
.hero-ctas {
  display: flex; gap: 1rem; flex-wrap: wrap; align-items: center;
  margin-bottom: 2.5rem;
}

/* ── Hero feature checks ── */
.hero-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .72rem 1.4rem;
}
.hero-checks li {
  display: flex; align-items: center; gap: .55rem;
  font-size: 1.0rem; font-weight: 500; letter-spacing: .01em;
  color: rgba(234,234,234,0.82);
  line-height: 1.45;
}
.hero-checks li svg {
  flex-shrink: 0; width: 18px; height: 18px;
  stroke: #60a5fa;
  filter: drop-shadow(0 0 5px rgba(96,165,250,0.55));
}

/* Right panel — phone visual */
.hero-right {
  flex: 0 0 45%;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  padding: 4rem 7rem 4rem 1rem;
  position: relative; z-index: 1;
  min-width: 0;
}

.hero-phone-wrap {
  position: relative;
  width: 100%; max-width: 624px;
  display: flex; align-items: center; justify-content: center;
}
.hero-phone-img {
  width: 100%;
  height: auto;
  max-height: 86vh;
  object-fit: contain;
  object-position: center;
  display: block;
  animation: phoneFloat 5s ease-in-out infinite, phoneGlow 6s ease-in-out infinite;
  filter: drop-shadow(0 24px 80px rgba(37,99,235,0.35));
}

@keyframes phoneFloat {
  0%, 100% { transform: translateY(0px);   }
  50%       { transform: translateY(-18px); }
}

@keyframes phoneGlow {
  0%, 100% { filter: drop-shadow(0 24px 80px rgba(37,99,235,0.30)); }
  50%       { filter: drop-shadow(0 32px 100px rgba(37,99,235,0.55)); }
}

/* ── Floating service labels — decorative only, no interactions ── */
.service-badge {
  position: absolute;
  background: rgba(8, 12, 28, 0.68);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 999px;
  padding: 0.48rem 1rem;
  font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.90);
  white-space: nowrap;
  display: flex; align-items: center; gap: 0.4rem;
  box-shadow: 0 4px 18px rgba(0,0,0,0.35);
  cursor: default;
  pointer-events: none;
  user-select: none;
  will-change: transform;
}
.badge-icon { font-size: 0.88rem; line-height: 1; }

/*
  Positioning strategy — 7 labels, no overlaps:
  Left column  : badge-1 (top-left), badge-3 (mid-left), badge-5 (bot-left)
  Center strip : badge-2 (top-center)
  Right column : badge-7 (top-right), badge-4 (mid-right), badge-6 (bot-right)

  Each badge is offset enough that even at max animation displacement
  (~10px) it won't collide with its neighbor.
*/

/* float Y — badge-1, badge-6 */
.badge-1 { top: 6%;     left: 1%;   animation: lbFloatY  5s  ease-in-out infinite;        }
.badge-6 { bottom: 8%;  right: 1%;  animation: lbFloatY  6s  ease-in-out infinite  1.1s;  }

/* float X — badge-3, badge-7 */
.badge-3 { top: 43%;    left: 0%;   animation: lbFloatX  4.5s ease-in-out infinite 0.4s;  }
.badge-7 { top: 7%;     right: 0%;  animation: lbFloatX  5.5s ease-in-out infinite 1.7s;  }

/* orbit — badge-4, badge-5 */
.badge-4 { top: 41%;    right: 0%;  animation: lbOrbit   6s  ease-in-out infinite  0.8s;  }
.badge-5 { bottom: 10%; left: 4%;   animation: lbOrbit   7s  ease-in-out infinite  2.2s;  }

/* diagonal drift — badge-2 */
.badge-2 { top: 3%;     left: 38%;  animation: lbDiag    5s  ease-in-out infinite  0.2s;  }

/* badge-8 — orta sol boşluk (tablet ile laptop arası) */
.badge-8 { top: 22%;    left: 12%;  animation: lbFloatY  5.8s ease-in-out infinite 1.3s;  }

/* badge-9 — orta alt boşluk (cihazların alt kısmı ortası) */
.badge-9 { bottom: 22%; left: 42%;  animation: lbDiag    6.2s ease-in-out infinite 0.7s;  }

/* ── Keyframes ── */

/* Vertical float — clean up/down, 14px travel */
@keyframes lbFloatY {
  0%,100% { transform: translateY(0px);    }
  50%      { transform: translateY(-14px); }
}

/* Horizontal sway — left/right, 14px travel */
@keyframes lbFloatX {
  0%,100% { transform: translateX(0px);    }
  50%      { transform: translateX(14px);  }
}

/* Tiny orbit — 10px radius */
@keyframes lbOrbit {
  0%   { transform: translate(0px,    0px);   }
  25%  { transform: translate(10px,  -6px);   }
  50%  { transform: translate(0px,  -12px);   }
  75%  { transform: translate(-10px, -6px);   }
  100% { transform: translate(0px,    0px);   }
}

/* Diagonal drift — gentle X+Y */
@keyframes lbDiag {
  0%,100% { transform: translate(0px,   0px);  }
  33%      { transform: translate(10px, -8px); }
  66%      { transform: translate(-6px,  6px); }
}

/* Device cards grid */
.device-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: .9rem; margin-bottom: 1rem;
}
.dg-card {
  background: var(--bg-white); border-radius: var(--r-lg);
  padding: 1.35rem 1.2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  position: relative; overflow: hidden;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}
.dg-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(37,99,235, 0.4); }
.dg-main { grid-column: 1 / -1; display: flex; align-items: center; gap: 1.1rem; }
.dg-icon {
  width: 52px; height: 52px; border-radius: var(--r-md);
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.dg-icon.small { width: 40px; height: 40px; border-radius: var(--r-sm); }
.dg-main .dg-icon { width: 56px; height: 56px; }
.dg-card strong { display: block; font-size: 1.0rem; font-weight: 600; color: var(--text); margin-bottom: .18rem; }
.dg-card span { font-size: .85rem; color: var(--text-muted); }
.dg-badge {
  position: absolute; top: .8rem; right: .8rem;
  background: var(--blue); color: #fff;
  font-size: .64rem; font-weight: 700; letter-spacing: .06em;
  padding: .2rem .6rem; border-radius: 999px;
}
.dg-stat-card {
  background: var(--navy); border-radius: var(--r-lg);
  padding: 1.35rem 1.2rem;
  display: flex; flex-direction: column; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.dg-stat-card.dg-stat-blue {
  background: var(--blue);
  box-shadow: var(--shadow-blue);
}
.dg-stat-num {
  font-size: 2.2rem; font-weight: 800; color: #fff; line-height: 1; margin-bottom: .2rem;
}
.dg-stat-num sup, .dg-stat-num span { font-size: 1rem; font-weight: 600; }
.dg-stat-label { font-size: .82rem; color: rgba(255,255,255,.65); line-height: 1.45; }

.hero-brands-pill {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: 999px; padding: .5rem 1.2rem;
  display: flex; align-items: center; gap: .45rem;
  font-size: .85rem; color: var(--text-muted); flex-wrap: wrap;
  box-shadow: var(--shadow-xs);
}
.hero-brands-pill span { font-weight: 500; }
.hero-brands-pill strong { color: var(--text-mid); font-weight: 600; font-size: .88rem; }

/* ══════════════════════════════════════
   TRUST BAR (ANIMATED)
══════════════════════════════════════ */
.trust-bar {
  background: var(--blue);
  background-image: repeating-linear-gradient(
    -45deg, rgba(255,255,255,.03) 0, rgba(255,255,255,.03) 1px,
    transparent 0, transparent 50%
  );
  background-size: 14px 14px;
  padding: 1.1rem 0;
  position: relative;
  overflow: hidden;
}
.trust-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 2.75rem; flex-wrap: nowrap;
}
.trust-item {
  display: flex; align-items: center; gap: .8rem;
  flex-shrink: 0;
}
.trust-item svg { width: 26px; height: 26px; color: #bfdbfe; flex-shrink: 0; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1)); }
.trust-item span {
  font-size: 1.02rem; font-weight: 600; color: #ffffff;
  letter-spacing: 0.02em; text-shadow: 0 1px 4px rgba(0,0,0,0.12);
  white-space: nowrap;
}
.trust-divider { width: 1px; height: 26px; background: rgba(255,255,255,0.25); flex-shrink: 0; }

/* ══════════════════════════════════════
   SERVICES GRID
══════════════════════════════════════ */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.service-card {
  background: #ffffff;
  border-radius: var(--r-xl);
  padding: 2rem 1.75rem 2rem;
  border: 1px solid rgba(29,78,216,.10);
  box-shadow: 0 2px 12px rgba(13,22,48,.05), 0 1px 3px rgba(13,22,48,.04);
  position: relative; overflow: hidden;
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
}
/* Top accent bar */
.service-card::before {
  content: ''; position: absolute; left: 0; top: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), #60a5fa);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.service-card:hover {
  border-color: rgba(29,78,216,.25);
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(29,78,216,.12), 0 2px 8px rgba(13,22,48,.06);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover .sc-icon { background: rgba(29,78,216,.12); }
.service-card:hover h3 { color: var(--blue); }

.sc-num {
  font-size: .75rem; font-weight: 700; letter-spacing: .12em;
  color: var(--blue); opacity: .45; margin-bottom: .55rem;
}
.sc-icon {
  width: 52px; height: 52px; border-radius: var(--r-md);
  background: var(--blue-light);
  border: 1px solid rgba(29,78,216,.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  transition: background var(--trans);
}
.sc-icon svg { stroke: var(--blue); }
.service-card h3 { margin-bottom: .55rem; font-size: 1.2rem; transition: color var(--trans); }
.service-card p { font-size: .975rem; line-height: 1.72; }
.sc-tag {
  display: inline-flex; align-items: center; gap: .3rem;
  margin-top: 1rem;
  font-size: .75rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  background: linear-gradient(135deg, rgba(29,78,216,.10), rgba(59,130,246,.08));
  color: var(--blue);
  padding: .3rem .9rem; border-radius: 999px;
  border: 1px solid rgba(29,78,216,.18);
}

/* ══════════════════════════════════════
   VORTEILE SECTION BACKGROUND
══════════════════════════════════════ */
.section-vorteile {
  position: relative;
  background: #06101f;
  overflow: hidden;
}
.section-vorteile::before {
  content: '';
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 15% 35%,  rgba(29,78,216,.18) 0%, transparent 60%),
    radial-gradient(ellipse 55% 50% at 85% 65%,  rgba(29,78,216,.14) 0%, transparent 55%),
    radial-gradient(ellipse 90% 40% at 50% 100%, rgba(4,6,20,.85)    0%, transparent 70%);
}
.section-vorteile .container { position: relative; z-index: 1; }
.section-vorteile .section-head h2 { color: #fff; }
.section-vorteile .section-head p  { color: rgba(255,255,255,.50); }
.section-vorteile .section-tag {
  color: #7ab3ff; background: rgba(29,78,216,.18);
  border-color: rgba(96,165,250,.25);
}

/* ══════════════════════════════════════
   B2B ADVANTAGES
══════════════════════════════════════ */
.advantages-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
}
.adv-card {
  display: flex; flex-direction: column; gap: .9rem;
  background: rgba(255,255,255,.045);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-radius: var(--r-lg);
  padding: 1.85rem 1.65rem;
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
  transition: border-color var(--trans), box-shadow var(--trans), transform var(--trans), background var(--trans);
}
.adv-card:hover {
  border-color: rgba(96,165,250,.30);
  background: rgba(255,255,255,.07);
  box-shadow: 0 8px 36px rgba(29,78,216,.20);
  transform: translateY(-3px);
}
.adv-card:hover .adv-icon { background: rgba(29,78,216,.35); }
.adv-number {
  font-size: 2.4rem; font-weight: 900; color: var(--blue);
  opacity: .45; line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.04em;
}
.adv-body { flex: 1; display: flex; flex-direction: column; gap: .65rem; }
.adv-body h3 { font-size: 1.2rem; font-weight: 700; color: #fff; margin: 0; }
.adv-body p  { font-size: .975rem; color: rgba(255,255,255,.55); line-height: 1.72; margin: 0; }
.adv-icon {
  width: 44px; height: 44px; border-radius: var(--r-md);
  background: rgba(29,78,216,.22);
  border: 1px solid rgba(96,165,250,.20);
  color: #7ab3ff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--trans);
}
.adv-icon svg { stroke: #7ab3ff; }

/* ══════════════════════════════════════
   PROCESS SECTION (ANIMATED VERTICAL TIMELINE)
══════════════════════════════════════ */
.section-process {
  background: #fff;
  position: relative;
  overflow: hidden;
}
.timeline {
  display: flex; flex-direction: column;
  max-width: 620px; margin: 2rem auto 0;
  position: relative;
  z-index: 1;
}
/* Vertical background line */
.timeline::before {
  content: ''; position: absolute;
  top: var(--line-top, 36px); 
  left: 35px;
  width: 2px; background: rgba(29,78,216,.15);
  height: var(--line-height, calc(100% - 72px));
  z-index: -1;
}
/* Active scroll-progress line */
.timeline-progress {
  position: absolute;
  top: var(--line-top, 36px); 
  left: 35px;
  width: 2px;
  background: linear-gradient(180deg, #60a5fa, #1d4ed8);
  z-index: -1;
  height: 0%; 
  max-height: var(--line-height, calc(100% - 72px));
  transition: height 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.tl-step {
  display: flex; flex-direction: row; align-items: flex-start; gap: 2rem;
  text-align: left; position: relative; padding: 0;
  margin-bottom: 3.5rem;
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), 
              transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.tl-step:last-child { margin-bottom: 0; }
.tl-step.is-visible { opacity: 1; transform: translateY(0); }

/* Remove the old tl-line */
.tl-line { display: none; }

.tl-circle {
  width: 72px; height: 72px; border-radius: 50%;
  background: #ffffff;
  border: 2px solid rgba(29,78,216,.2);
  box-shadow: 0 10px 24px rgba(13,22,48,.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  position: relative; z-index: 2;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}
.tl-step:hover .tl-circle {
  transform: translateY(-4px) scale(1.03);
  border-color: rgba(29,78,216,.35);
  box-shadow: 0 14px 28px rgba(29,78,216,.15);
  color: var(--blue-hover);
}
.tl-circle-blue {
  background: linear-gradient(145deg, #3b82f6, #1d4ed8);
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(29,78,216,.3), inset 0 1px 0 rgba(255,255,255,.2);
  color: #fff !important;
}

.tl-step-content {
  display: flex; flex-direction: column;
  padding-top: .6rem;
}
.tl-step-num {
  font-size: .8rem; font-weight: 800; letter-spacing: .15em;
  color: var(--blue); opacity: .6; margin-bottom: .25rem;
  font-variant-numeric: tabular-nums;
}
.tl-step h3 {
  color: var(--text); font-size: 1.4rem; font-weight: 700;
  margin-bottom: .4rem; letter-spacing: -.02em;
}
.tl-step p {
  color: var(--text-muted); font-size: 1.05rem; line-height: 1.65;
  margin: 0;
}

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.testi-card {
  background: var(--bg-white); border-radius: var(--r-xl);
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  position: relative; overflow: hidden;
  transition: transform var(--trans), box-shadow var(--trans);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testi-card.testi-featured {
  background: var(--navy); border-color: var(--navy);
}
.testi-card.testi-featured .testi-quote { color: #60a5fa; }
.testi-card.testi-featured > p { color: rgba(255,255,255,.65); }
.testi-card.testi-featured strong { color: #fff; }
.testi-card.testi-featured span { color: rgba(255,255,255,.4); }
/* top stripe accent */
.testi-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--blue), transparent);
  opacity: 0; transition: opacity var(--trans);
}
.testi-card:hover::before { opacity: 1; }
.testi-card.testi-featured::before { opacity: 1; background: linear-gradient(to right, #60a5fa, transparent); }

.testi-quote {
  font-size: 3rem; line-height: .7; font-weight: 900;
  color: var(--blue); opacity: .38; margin-bottom: .65rem;
}
.testi-card > p { font-size: .975rem; margin-bottom: 1.25rem; line-height: 1.75; }
.testi-stars { display: flex; gap: .15rem; margin-bottom: 1.2rem; }
.testi-author { display: flex; align-items: center; gap: .7rem; }
.testi-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .93rem; flex-shrink: 0;
}
.testi-card.testi-featured .testi-avatar { background: rgba(96,165,250,.2); }
.testi-author strong { display: block; font-size: .93rem; }
.testi-author span   { font-size: .82rem; color: var(--text-muted); }

/* ══════════════════════════════════════
   CTA BAND
══════════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, #070B14 0%, #0F172A 100%);
  position: relative; overflow: hidden;
  padding: 5.5rem 0;
  border-top: 1px solid rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.cta-band::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: 
    radial-gradient(circle at 85% -10%, rgba(37,99,235, 0.45) 0%, transparent 60%),
    radial-gradient(circle at 10% 110%, rgba(29,78,216, 0.25) 0%, transparent 50%);
}
.cta-band-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center;
  justify-content: space-between; gap: 3rem; flex-wrap: wrap;
}
.cta-band h2 { 
  color: #fff; 
  font-size: clamp(2rem, 3.5vw, 2.75rem); 
  font-weight: 800; 
  letter-spacing: -.03em; 
  line-height: 1.15;
  text-shadow: 0 4px 16px rgba(0,0,0,.35);
  max-width: 580px;
}
.cta-band p  { 
  color: rgba(255,255,255,.8); 
  margin-top: 1rem; 
  font-size: 1.15rem; 
  font-weight: 500;
  line-height: 1.7;
  max-width: 500px;
}
.cta-band-actions { display: flex; gap: .85rem; flex-wrap: wrap; flex-shrink: 0; }

.cta-band .btn-white {
  background: #ffffff; color: #0f172a; border: none;
  box-shadow: 0 4px 14px rgba(0,0,0,.15), inset 0 -2px 0 rgba(0,0,0,.08);
  border-radius: var(--r-md); padding: 1.1rem 2.8rem;
  font-weight: 800; font-size: 1.05rem;
}
.cta-band .btn-white:hover {
  background: #f8fafc; transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0,0,0,.25), inset 0 -2px 0 rgba(0,0,0,.05);
}
.cta-band .btn-ghost-white {
  background: rgba(255,255,255,.05); color: #fff; 
  border: 1px solid rgba(255,255,255,.2); border-radius: var(--r-md);
  backdrop-filter: blur(8px); padding: 1.1rem 2.4rem;
}
.cta-band .btn-ghost-white:hover {
  background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.45);
}


/* ══════════════════════════════════════
   STANDORT — FULL-BLEED MAP + FLOATING CARD
══════════════════════════════════════ */
.loc-section {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  display: flex; align-items: center;
  padding: 0;
}

/* Full-bleed map sits behind everything */
.loc-map-bg {
  position: absolute; inset: 0; z-index: 0;
}
.loc-map-bg iframe {
  width: 100%; height: 100%;
  display: block; border: 0;
  filter: saturate(0.7) brightness(0.92);
}

/* Gradient overlay — white fade on left, keeps card readable */
.loc-map-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to right,
      rgba(248,250,252,1.00)  0%,
      rgba(248,250,252,0.96) 28%,
      rgba(248,250,252,0.55) 55%,
      rgba(248,250,252,0.00) 100%),
    linear-gradient(to bottom,
      rgba(248,250,252,0.5) 0%,
      transparent 20%,
      transparent 80%,
      rgba(248,250,252,0.5) 100%);
}

/* Container keeps card left-aligned */
.loc-container {
  position: relative; z-index: 2;
  padding-top: 5rem; padding-bottom: 5rem;
  width: 100%;
}

/* Floating glass card */
.loc-card-float {
  width: 100%; max-width: 460px;
  background: rgba(255,255,255,0.90);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.75);
  box-shadow:
    0 2px 0 rgba(255,255,255,0.8) inset,
    0 20px 60px rgba(13,22,48,0.13),
    0 4px 16px rgba(13,22,48,0.06);
  padding: 2.75rem 2.5rem;
}

/* Chip label */
.loc-chip {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .8rem; font-weight: 700; letter-spacing: .10em;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 1rem;
}
.loc-chip-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #2563EB;
  box-shadow: 0 0 0 3px rgba(29,78,216,.22);
  flex-shrink: 0;
}

/* Big bold city name */
.loc-city {
  font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 900;
  letter-spacing: -.035em; line-height: 1.05;
  color: var(--text); margin-bottom: 2rem;
}
.loc-city em {
  font-style: normal;
  background: linear-gradient(135deg, #2563EB, #1d4ed8);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Contact rows */
.loc-rows {
  display: flex; flex-direction: column; gap: .85rem;
  margin-bottom: 2.25rem;
}
.loc-row {
  display: flex; align-items: center; gap: 1rem;
}
.loc-row-icon {
  width: 42px; height: 42px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.loc-row-icon--blue {
  background: rgba(29,78,216,.08);
  border: 1px solid rgba(29,78,216,.18);
  color: #2563EB;
}
.loc-row-icon--blue svg { stroke: #2563EB; }
.loc-row-icon--blue {
  background: var(--blue-light);
  border: 1px solid rgba(29,78,216,.15);
  color: var(--blue);
}
.loc-row-icon--blue svg { stroke: var(--blue); }
.loc-row-icon--gray {
  background: #f1f5f9;
  border: 1px solid #e1e8f5;
  color: var(--text-mid);
}
.loc-row-icon--gray svg { stroke: var(--text-mid); }

.loc-row-body { display: flex; flex-direction: column; gap: .1rem; min-width: 0; }
.loc-row-label {
  font-size: .75rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text-muted);
}
.loc-row-val {
  font-size: 1.0rem; font-weight: 600; color: var(--text);
  white-space: normal;
}
.loc-row-link { color: var(--blue); }
.loc-row-link:hover { color: var(--blue-hover); text-decoration: underline; }

/* Orange CTA button */
.loc-cta-btn {
  display: inline-flex; align-items: center; gap: .55rem;
  background: linear-gradient(145deg, #3b82f6 0%, #2563EB 50%, #1d4ed8 100%);
  color: #fff; border-radius: var(--r-sm);
  padding: .95rem 2.1rem; font-family: var(--font);
  font-size: 1.0rem; font-weight: 700; letter-spacing: .025em;
  text-decoration: none; white-space: nowrap;
  box-shadow:
    0 0 0 1px rgba(29,78,216,.20),
    0 4px 14px rgba(29,78,216,.40),
    0 12px 32px rgba(29,78,216,.22),
    inset 0 1px 0 rgba(255,255,255,.22);
  transition: all 0.25s ease;
}
.loc-cta-btn:hover {
  background: linear-gradient(145deg, #fdba74 0%, #3b82f6 50%, #2563EB 100%);
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(29,78,216,.28),
    0 6px 20px rgba(249,115,22,.55),
    0 18px 40px rgba(29,78,216,.28),
    inset 0 1px 0 rgba(255,255,255,.25);
  color: #fff;
}

/* Mobile — Standort section */
@media (max-width: 768px) {
  /* Stack: map on top, card below */
  .loc-section {
    min-height: auto;
    display: block;
    padding: 0;
  }
  .loc-map-bg {
    position: relative;
    height: 240px;
    inset: auto;
  }
  .loc-map-bg iframe {
    height: 240px;
  }
  .loc-map-overlay {
    background: linear-gradient(to bottom,
      transparent 0%,
      rgba(248,250,252,0.5) 75%,
      rgba(248,250,252,1) 100%);
  }
  .loc-container {
    position: relative; z-index: 2;
    padding: 0 1.25rem 3rem;
    max-width: 100%;
  }
  .loc-card-float {
    max-width: 100%;
    border-radius: 20px;
    padding: 1.75rem 1.35rem;
    margin-top: -1.5rem; /* overlap slightly over map fade */
    box-shadow:
      0 2px 0 rgba(255,255,255,0.85) inset,
      0 12px 40px rgba(13,22,48,.12),
      0 2px 8px rgba(13,22,48,.06);
  }
  .loc-city { font-size: 1.75rem; margin-bottom: 1.5rem; }
  .loc-rows { gap: .7rem; margin-bottom: 1.75rem; }
  .loc-row-icon {
    width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  }
  .loc-row-val { font-size: .85rem; }
  .loc-cta-btn {
    width: 100%; justify-content: center;
    padding: .88rem 1.5rem; font-size: .92rem;
  }
}

/* ══════════════════════════════════════
   B2B FORM
══════════════════════════════════════ */
.form-layout { display: grid; grid-template-columns: 1fr 1.55fr; gap: 4.5rem; align-items: start; }
.form-left .section-tag { display: inline-block; background: rgba(37,99,235,0.15); color: #60a5fa; }
.form-left h2 { margin-bottom: .7rem; color: #ffffff; text-shadow: 0 4px 12px rgba(0,0,0,0.3); }
.form-left p { color: rgba(255,255,255,0.75); line-height: 1.65; }
.form-callout {
  display: flex; align-items: flex-start; gap: .75rem;
  background: rgba(37,99,235,0.12); 
  border: 1px solid rgba(37,99,235,0.25);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  border-radius: var(--r-md); padding: 1.15rem 1.25rem;
  font-size: .95rem; font-weight: 500; color: #bfdbfe; 
  margin-top: 1.5rem; line-height: 1.6;
  transition: box-shadow 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.form-callout:hover { 
  background: rgba(37,99,235,0.18); 
  box-shadow: 0 6px 16px rgba(0,0,0,0.3); 
  transform: translateY(-1px);
}
.form-callout svg { color: #60a5fa; width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.form-callout a { color: #60a5fa; font-weight: 700; text-decoration: none; }
.form-callout a:hover { text-decoration: underline; color: #93c5fd; }

.section-alt {
  background: linear-gradient(135deg, #070B14 0%, #0F172A 100%);
  border-top: 1px solid rgba(255,255,255,0.05);
  position: relative; overflow: hidden;
}

.contact-alts { display: flex; flex-direction: column; gap: .85rem; margin-top: 1.75rem; }

/* Glassmorphic Dark Buttons */
.contact-alt-btn {
  display: flex; align-items: center; gap: .85rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08); 
  border-radius: var(--r-md);
  padding: 1.05rem 1.35rem; 
  font-size: 1.05rem; font-weight: 600;
  color: #e2e8f0; 
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  backdrop-filter: blur(8px);
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.25s ease, border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
  text-decoration: none;
}
.contact-alt-btn:hover { 
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.25); 
  color: #ffffff; 
  box-shadow: 0 10px 24px rgba(0,0,0,0.3), 0 4px 8px rgba(0,0,0,.1);
  transform: translateY(-2px);
}
.contact-alt-btn svg { color: #94a3b8; transition: color 0.2s; }
.contact-alt-btn:hover svg { color: #60a5fa; }

/* Dark mode version of the Red Button */
.contact-alt-btn-red {
  background: rgba(239,68,68,0.06);
  border: 1px solid rgba(239,68,68,0.25); 
  color: #fca5a5;
  box-shadow: 0 4px 12px rgba(239,68,68,0.08);
}
.contact-alt-btn-red:hover {
  background: rgba(239,68,68,0.12);
  border-color: rgba(239,68,68,0.45); 
  color: #fecaca;
  box-shadow: 0 10px 24px rgba(239,68,68,0.2), 0 4px 8px rgba(0,0,0,.1);
}
.contact-alt-btn-red svg { color: #f87171; }
.contact-alt-btn-red:hover svg { color: #fca5a5; }

.privacy-note {
  display: flex; align-items: center; gap: .4rem;
  font-size: .82rem; color: rgba(255,255,255,0.4); margin-top: 1.5rem;

}

.b2b-form {
  background: var(--bg-white); border-radius: var(--r-xl);
  padding: 3rem 3.5rem;
  border: 1px solid rgba(29, 78, 216, 0.12);
  box-shadow: 0 20px 48px rgba(13,22,48,.07), 0 4px 12px rgba(13,22,48,.04);
}
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
.f-group { display: flex; flex-direction: column; gap: .32rem; margin-bottom: .85rem; }
.f-group label { font-size: .88rem; font-weight: 600; color: var(--text); letter-spacing: .01em; }
.f-group label span { color: var(--blue); }
.f-group input,
.f-group textarea {
  font-family: var(--font); font-size: .95rem; color: var(--text);
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--r-sm); padding: .72rem 1rem;
  transition: border-color var(--trans), background var(--trans), box-shadow var(--trans);
  width: 100%; resize: vertical;
}
.f-group input:focus,
.f-group textarea:focus {
  border-color: var(--blue); background: #fff;
  box-shadow: 0 0 0 3px rgba(29,78,216,.1);
}
.f-group input::placeholder,
.f-group textarea::placeholder { color: var(--text-muted); }
.f-group input.error,
.f-group textarea.error { border-color: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,.1); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer { 
  background: linear-gradient(135deg, #020617 0%, #080f1e 100%); 
  padding: 5rem 0 0; 
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4.5rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
  margin-bottom: 1rem;
}
.footer-logo { height: 36px; width: auto; margin-bottom: 1.25rem; opacity: 0.95; }
.footer-brand > p {
  color: rgba(255,255,255,.55); font-size: .95rem;
  max-width: 320px; line-height: 1.7;
}
.footer-contact { display: flex; flex-direction: column; gap: .6rem; margin-top: 1.75rem; }
.footer-contact a { font-size: 1.05rem; font-weight: 500; color: rgba(255,255,255,.8); text-decoration: none; transition: color 0.2s ease; }
.footer-contact a:hover { color: #60a5fa; }

.footer-col h4 {
  font-size: .85rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(255,255,255,.9); margin-bottom: 1.5rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .9rem; list-style: none; padding: 0; margin: 0; }
.footer-col ul a { 
  font-size: .95rem; color: rgba(255,255,255,.55); 
  text-decoration: none; transition: color 0.2s ease, transform 0.25s ease; 
  display: inline-block; 
}
.footer-col ul a:hover { color: #bfdbfe; transform: translateX(3px); }

.footer-bottom { padding: 1.5rem 0 2.5rem; text-align: center; }
.footer-bottom p { font-size: .85rem; color: rgba(255,255,255,.35); line-height: 1.6; }

/* ══════════════════════════════════════
   MOBILE FAB CLUSTER
══════════════════════════════════════ */
.mob-fab-cluster {
  display: none;
  position: fixed;
  bottom: calc(1.75rem + env(safe-area-inset-bottom, 0px));
  left: 1.25rem;
  z-index: 999;
  flex-direction: column;
  gap: .85rem;
  align-items: center;
}
.mob-fab {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; flex-shrink: 0;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.mob-fab:active { transform: scale(0.91); }
.mob-fab--call {
  background: linear-gradient(145deg, #3b82f6, #1d4ed8);
  color: #fff;
  box-shadow: 0 4px 18px rgba(29,78,216,.45), 0 1px 0 rgba(255,255,255,.15) inset;
}
.mob-fab--wa {
  background: linear-gradient(145deg, #2ecc71, #25D366, #128C7E);
  color: #fff;
  box-shadow: 0 4px 18px rgba(37,211,102,.45), 0 1px 0 rgba(255,255,255,.15) inset;
}

/* ── btn-standort (hero mobile CTA) ── */
.btn-standort {
  background: linear-gradient(145deg, rgba(29,78,216,.12), rgba(29,78,216,.08));
  color: #fff; border: 1.5px solid rgba(96,165,250,.35);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10);
}
.btn-standort:hover {
  background: linear-gradient(145deg, rgba(29,78,216,.22), rgba(29,78,216,.14));
  border-color: rgba(96,165,250,.55);
  color: #fff;
}

/* ══════════════════════════════════════
   MOBILE MENU OVERLAY
   Lives outside <header> to escape
   backdrop-filter containing block
══════════════════════════════════════ */

/* Hidden by default — shown on all sizes but only usable on mobile */
.mob-menu {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  z-index: 9998;
  background: var(--bg-white);
  flex-direction: column;
  padding-top: 70px; /* header height */
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  pointer-events: none;
}
.mob-menu.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mob-menu nav {
  display: flex; flex-direction: column;
  flex: 1; overflow-y: auto;
}

.mob-menu ul {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--border);
}
.mob-menu ul li { border-bottom: 1px solid var(--border); }
.mob-menu ul a {
  display: flex; align-items: center;
  padding: 1.05rem 1.5rem;
  font-size: 1rem; font-weight: 600; color: var(--text);
  letter-spacing: .01em;
  transition: background var(--trans), color var(--trans);
}
.mob-menu ul a:hover { background: var(--blue-light); color: var(--blue); }

.mob-cta {
  display: flex; align-items: center; justify-content: center;
  margin: 1.25rem 1.5rem 0;
  padding: 1rem 1.5rem;
  background: var(--blue); color: #fff;
  font-family: var(--font); font-size: 1.0rem; font-weight: 600;
  letter-spacing: .02em; border-radius: var(--r-sm);
  box-shadow: var(--shadow-blue);
  transition: background var(--trans);
}
.mob-cta:hover { background: var(--blue-hover); color: #fff; }

.mob-footer {
  display: flex; flex-direction: column; gap: .75rem;
  padding: 1.5rem 1.5rem 3rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.mob-footer a {
  display: flex; align-items: center; gap: .55rem;
  font-size: .95rem; font-weight: 500; color: var(--text-mid);
  transition: color var(--trans);
}
.mob-footer a:hover { color: var(--blue); }
.mob-footer svg { flex-shrink: 0; }

@media (max-width: 960px) {
  .main-nav ul  { display: none; }
  .btn-nav-cta  { display: none; }
  .mobile-toggle { display: flex; }

  /* Hamburger → × */
  .mobile-toggle.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .mobile-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .mobile-toggle.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  /* Hide header CTAs on mobile — replaced by FAB cluster */
  .header-call { display: none; }
  .header-wa   { display: none; }

  /* Show FAB cluster */
  .mob-fab-cluster { display: flex; }
}

/* ══════════════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero { min-height: auto; }
  .hero-inner { flex-direction: column; min-height: auto; }
  .hero-left { flex: none; width: 100%; background: transparent; align-items: center; padding: 3rem 0 2rem; }
  .hero-right { flex: none; width: 100%; padding: 2.5rem 1.75rem 4rem; }
  .hero-left-content { max-width: 100%; padding: 0 1.25rem; margin: 0 auto; text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-checks { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  /* Show device visual below h1, hide the desktop right panel */
  .hero-visual-mob {
    display: block;
    width: 100%;
    margin: 1.5rem 0 1.75rem;
    padding: 2.5rem 0 1.5rem;
  }
  .hero-visual-mob .hero-phone-wrap {
    max-width: 100%;
    width: 100%;
  }
  .hero-visual-mob .hero-phone-img {
    width: 100%;
    max-height: none;
  }
  .hero-right { display: none; }

  /* Mobile badge base — smaller, tighter */
  .hero-visual-mob .service-badge {
    font-size: 0.70rem;
    padding: 0.36rem 0.7rem;
    gap: 0.30rem;
  }
  .hero-visual-mob .badge-icon { font-size: 0.76rem; }

  /* Fully reset all desktop left/right/top/bottom, then set mobile positions */
  .hero-visual-mob .badge-1 { top: 4%;  left: 0%;   right: auto; bottom: auto; animation-duration: 5s;   }
  .hero-visual-mob .badge-2 { top: 4%;  right: 0%;  left: auto;  bottom: auto; animation-duration: 5.5s; }
  .hero-visual-mob .badge-3 { top: 52%; left: 0%;   right: auto; bottom: auto; animation-duration: 6s;   }
  .hero-visual-mob .badge-4 { top: 52%; right: 0%;  left: auto;  bottom: auto; animation-duration: 4.8s; }

  .section { padding: 4rem 0; }
  h1 { font-size: 2.6rem; letter-spacing: -0.03em; font-weight: 800; line-height: 1.05; }
  h2 { font-size: 1.95rem; letter-spacing: -0.02em; font-weight: 700; line-height: 1.2; }
  h3 { font-size: 1.15rem; }
  p  { font-size: 1.0rem; }
  .section-tag { font-size: .78rem; }
  .section-head { margin-bottom: 2.25rem; }
  .services-grid    { grid-template-columns: 1fr; }
  .advantages-grid  { grid-template-columns: 1fr; }
  .testi-grid       { grid-template-columns: 1fr; }
  .form-layout      { grid-template-columns: 1fr; gap: 2.5rem; }
  .f-row            { grid-template-columns: 1fr; }
  .timeline         { max-width: 100%; margin-top: 1.5rem; }
  .timeline::before { left: 25px; top: var(--line-top, 26px); height: var(--line-height, calc(100% - 52px)); bottom: auto; }
  .timeline-progress { left: 25px; top: var(--line-top, 26px); max-height: var(--line-height, calc(100% - 52px)); }
  .tl-line          { display: none; }
  .tl-step          { gap: 1.2rem; margin-bottom: 2.25rem; }
  .tl-circle        { width: 52px; height: 52px; flex-shrink: 0; }
  .tl-circle svg    { width: 22px; height: 22px; }
  .tl-step-num      { font-size: .75rem; margin-bottom: .2rem; }
  .tl-step h3       { font-size: 1.2rem; margin-bottom: .3rem; }
  .tl-step p        { font-size: .95rem; line-height: 1.6; }
  .tl-step-content  { padding-top: .15rem; }
  .adv-card         { flex-direction: row; align-items: flex-start; gap: 1rem; }
  .adv-number       { font-size: 1.9rem; min-width: 2.4rem; text-align: right; }
  .cta-band-inner   { flex-direction: column; text-align: center; }
  /* Trust Bar Mobile */
  .trust-bar { padding: 0; }
  .trust-inner { position: relative; height: 72px; display: block; }
  .trust-divider { display: none; }
  .trust-item { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    justify-content: center;
    opacity: 0; pointer-events: none;
    animation: mobSlide 10s cubic-bezier(0.25, 1, 0.4, 1) infinite;
  }
  .trust-item-1 { animation-delay: 0s; }
  .trust-item-2 { animation-delay: 2.5s; }
  .trust-item-3 { animation-delay: 5s; }
  .trust-item-4 { animation-delay: 7.5s; }
  .trust-item span { font-size: 1.05rem; white-space: normal; }
}

@keyframes mobSlide {
  0%   { transform: translateX(-40px); opacity: 0; }
  5%   { transform: translateX(0); opacity: 1; }
  25%  { transform: translateX(0); opacity: 1; }
  30%  { transform: translateX(40px); opacity: 0; }
  100% { transform: translateX(40px); opacity: 0; }
}

@media (max-width: 768px) {
  .announce-bar     { display: none; }
  .footer-grid      { grid-template-columns: 1fr; gap: 2.75rem; padding-bottom: 2.5rem; }
  .footer { padding-top: 4rem; }
  .footer-brand > p { max-width: 100%; font-size: .95rem; line-height: 1.6; }
  .footer-contact { margin-top: 1.35rem; }
  .footer-col h4 { margin-bottom: 1.15rem; font-size: .9rem; }
  .footer-col ul { gap: .8rem; }
  .footer-col ul a { font-size: 1rem; padding: .15rem 0; display: inline-block; }
  .footer-bottom { 
    padding: 1.25rem 0 11rem; /* massive space for FAB floating buttons! */
    text-align: left; 
  }
  .footer-bottom p { 
    font-size: .85rem; 
    line-height: 1.6; 
  }
  .device-grid      { grid-template-columns: 1fr; }
  .dg-main          { grid-column: 1; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .b2b-form { padding: 1.8rem; }
  .cta-band-actions { flex-direction: column; width: 100%; }
  .cta-band-actions .btn { width: 100%; justify-content: center; }
}


@media (max-width: 768px) {
  /* Hero CTA buttons — mobile */
  .hero-ctas {
    flex-direction: column; width: 100%;
    gap: 0.85rem; align-items: stretch; padding: 0;
  }
  .hero-ctas .btn {
    width: 100%; justify-content: center;
    min-height: 58px; font-size: 1.05rem;
  }
  /* Hero checks — single column on mobile */
  .hero-checks { grid-template-columns: 1fr; gap: .65rem; }

  /* Header buttons */
  .wa-text-desktop { display: none !important; }
  .wa-text-mobile { display: inline !important; }
  .header-wa { font-size: 0.85rem; padding: 0.5rem 0.85rem; }
  .call-text { display: none; }
  .header-call { width: 38px; height: 38px; padding: 0; justify-content: center; }
  .logo { max-height: 36px; }
  .mobile-only { display: inline-flex; }
}
