:root {
  --logo-blue: #003B7A;
  --logo-pink: #E5004F;
  --navy: #071C33;
  --navy-soft: #102E4D;
  --blue: #087EBD;
  --blue-soft: #E7F5FC;
  --red: #087EBD;
  --red-dark: #05689E;
  --green: #16A34A;
  --bg: #F4F7FA;
  --bg-white: #FFFFFF;
  --text: #0F172A;
  --muted: #64748B;
  --line: #E2E8F0;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow: 0 10px 30px rgba(7, 28, 51, 0.07);
  --shadow-md: 0 20px 60px rgba(7, 28, 51, 0.13);
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-display: "Sora", "Plus Jakarta Sans", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --scroll-offset: 88px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--scroll-offset); overflow-x: clip; }
html, body { margin: 0; padding: 0; width: 100%; }
body {
  background:
    radial-gradient(circle at 7% 18%, rgba(0, 59, 122, 0.055), transparent 28rem),
    radial-gradient(circle at 96% 72%, rgba(229, 0, 79, 0.035), transparent 26rem),
    var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.home-experimental {
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.mobile-call-visible { padding-bottom: 80px; }
body.nav-open { overflow: hidden; }
body.modal-open { overflow: hidden; }
body.nav-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 160;
  background: rgba(4,20,37,0.46);
  backdrop-filter: blur(2px);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1140px, calc(100% - 32px));
  margin-inline: auto;
}

/* Experimental full-screen video hero */
.video-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
  background: #000;
}
.video-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.video-hero-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100svh;
  padding: 24px clamp(24px, 4vw, 64px) 0;
  display: flex;
  flex-direction: column;
}
.liquid-glass {
  background: rgba(0, 0, 0, 0.4);
  background-blend-mode: luminosity;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: none;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}
.liquid-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.1) 20%, rgba(255,255,255,0) 40%, rgba(255,255,255,0) 60%, rgba(255,255,255,0.1) 80%, rgba(255,255,255,0.3) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.video-hero-nav {
  min-height: 64px;
  padding: 8px 10px 8px 16px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.video-hero-logo { position: relative; z-index: 1; display: inline-flex; align-items: center; padding: 4px 10px; border-radius: 10px; background: rgba(255,255,255,.92); }
.video-hero-logo img { width: auto; height: 34px; }
.video-hero-links { display: flex; align-items: center; gap: 32px; }
.video-hero-links a { color: #fff; font-size: .875rem; font-weight: 400; text-shadow: 0 1px 8px rgba(0,0,0,.4); transition: color .2s; }
.video-hero-links a:hover { color: #d1d5db; }
.video-hero-nav-call {
  position: relative;
  z-index: 1;
  padding: 10px 20px;
  border-radius: 10px;
  background: #fff;
  color: #000;
  font-size: .875rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background .2s;
}
.video-hero-nav-call:hover { background: #f3f4f6; }
.video-hero-content { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; padding: 72px 0 clamp(48px, 6vw, 64px); }
.video-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; }
.video-hero-copy { max-width: 760px; }
.video-hero-eyebrow { margin: 0 0 16px; font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; text-shadow: 0 2px 18px rgba(0,0,0,.8); }
.animated-hero-heading {
  display: table;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 16px;
  padding: 12px 20px 14px;
  color: var(--logo-blue);
  background: rgba(255,255,255,.9);
  border-left: 7px solid var(--logo-pink);
  border-radius: 4px 16px 16px 4px;
  box-shadow: 0 18px 50px rgba(4,20,37,.2), inset 0 1px 0 rgba(255,255,255,.8);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  font-family: "Inter", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.04em;
  text-shadow: none;
}
.animated-hero-heading .hero-heading-line { display: block; white-space: nowrap; }
.animated-hero-heading .hero-char { display: inline-block; opacity: 0; transform: translateX(-18px); transition: opacity 500ms ease, transform 500ms ease; }
.animated-hero-heading .hero-char-logo-accent { color: var(--logo-pink); font-weight: 500; }
.animated-hero-heading.is-animated .hero-char { opacity: 1; transform: translateX(0); }
.video-hero-lead { max-width: 650px; margin: 0 0 20px; color: #d1d5db; font-size: clamp(1rem, 1.5vw, 1.125rem); line-height: 1.55; text-shadow: 0 2px 18px rgba(0,0,0,.85); }
.hero-fade { opacity: 0; transition-property: opacity; }
.hero-fade.is-visible { opacity: 1; }
.video-hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.video-hero-primary, .video-hero-secondary { min-height: 48px; padding: 12px 32px; border-radius: 10px; font: inherit; font-weight: 500; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
.video-hero-primary { background: #fff; color: #000; }
.video-hero-primary:hover { background: #f3f4f6; }
.video-hero-secondary { color: #fff; border: 0; }
.video-hero-secondary:hover { background: #fff; color: #000; }
.video-hero-whatsapp {
  gap: 9px;
  background: #25D366 !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.32);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.video-hero-whatsapp:hover {
  background: #1ebe5d !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.42);
}
.video-hero-whatsapp .whatsapp-icon {
  flex: 0 0 auto;
  display: block;
}
.video-hero-tag-wrap { display: flex; align-items: flex-end; justify-content: flex-end; }
.video-hero-tag { padding: 12px 24px; border-radius: 16px; color: #fff; font-size: clamp(1.125rem, 2vw, 1.5rem); font-weight: 300; white-space: nowrap; }

@media (prefers-reduced-motion: reduce) {
  .animated-hero-heading .hero-char, .hero-fade { opacity: 1; transform: none; transition: none; }
}

/* Top bar */
.top-bar {
  background: #06182c;
  color: #fff;
  font-size: 0.8rem;
  position: sticky;
  top: 0;
  z-index: 120;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  flex-wrap: wrap;
}
.top-bar-badge { font-weight: 600; opacity: 0.9; }
.top-bar-tel { color: #fff; font-weight: 700; }
.top-btn {
  background: var(--red);
  color: #fff;
  padding: 7px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.82rem;
  box-shadow: 0 6px 18px rgba(8, 126, 189, 0.24);
}

/* Header */
.header {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 38px;
  z-index: 110;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
.logo { height: 42px; width: auto; max-width: 200px; object-fit: contain; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}
.site-nav { display: flex; align-items: center; gap: 22px; }
.site-nav a {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  transition: color 0.2s;
}
.site-nav a:hover { color: var(--blue); }
.site-nav > a:not(.btn) { position: relative; }
.site-nav > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
  transition: right 0.25s var(--ease);
}
.site-nav > a:not(.btn):hover::after { right: 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.92rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  min-height: 46px;
}
.btn-main {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 24px rgba(8, 126, 189, 0.25);
}
.btn-main:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(8, 126, 189, 0.3); }
.btn-outline {
  background: #fff;
  color: var(--navy);
  border-color: var(--line);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.btn-small { padding: 9px 16px; font-size: 0.84rem; min-height: 38px; }
.btn-big { padding: 16px 28px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-dark { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-dark:hover { background: #0d3152; transform: translateY(-2px); }
.btn-whatsapp { background: #25D366; color: #042a14; border-color: #25D366; }
.btn-whatsapp:hover { background: #20bd5b; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--navy); border-color: transparent; }
.btn-ghost:hover { background: var(--blue-soft); }

/* Hero - clean light */
.hero {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 84% 22%, rgba(8,126,189,0.14), transparent 29%),
    radial-gradient(circle at 8% 95%, rgba(0,59,122,0.06), transparent 25%),
    linear-gradient(135deg, #ffffff 0%, #f7fbfe 54%, #eef7fb 100%);
  padding: 72px 0 80px;
  border-bottom: 1px solid var(--line);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 340px;
  height: 340px;
  right: -120px;
  top: -150px;
  border: 70px solid rgba(255,255,255,0.45);
  border-radius: 50%;
}
.city-hero { min-height: 570px; }
.city-hero .city-hero-photo {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.6s var(--ease);
}
.city-hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(90deg, rgba(4,20,37,0.93) 0%, rgba(4,20,37,0.8) 48%, rgba(4,20,37,0.58) 100%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.city-hero.has-city-photo .city-hero-photo,
.city-hero.has-city-photo::before { opacity: 1; }
.city-hero.has-city-photo h1,
.city-hero.has-city-photo .hero-lead,
.city-hero.has-city-photo .hero-lead strong { color: #fff; }
.city-hero.has-city-photo .hero-lead { color: rgba(255,255,255,0.82); }
.city-hero.has-city-photo .trust-chip { background: rgba(255,255,255,0.9); }
.city-hero.has-city-photo .hero-kicker { background: rgba(255,255,255,0.92); }
.city-photo-credit {
  display: none;
  color: var(--muted);
  font-size: 0.72rem;
  text-decoration: underline;
}
.has-city-photo .city-photo-credit { display: inline; }
.city-credit-footer { padding-block: 0 20px; text-align: right; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.82);
  color: #076d9f;
  border: 1px solid rgba(8,126,189,0.16);
  box-shadow: 0 8px 24px rgba(7,28,51,0.06);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.hero-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 4.25vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin: 0 0 20px;
  color: var(--navy);
  font-weight: 800;
}
.hero-lead {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--muted);
  margin: 0 0 24px;
  max-width: 540px;
}
.hero-lead strong { color: var(--text); }
.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(148,163,184,0.28);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text);
}
.trust-chip svg { flex-shrink: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Status card */
.status-card {
  background: rgba(255,255,255,0.93);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.hero-team-photo { height: 210px; background: var(--navy); overflow: hidden; }
.hero-team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 37%; }
.status-card-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: #fff;
  padding: 19px 22px;
  font-weight: 700;
  font-size: 0.95rem;
}
.status-card-body { padding: 20px; }
.status-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}
.status-row:last-child { border-bottom: none; }
.status-row span { color: var(--muted); }
.status-row strong { color: var(--navy); }
.status-available {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-weight: 700;
}
.status-available::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}
.status-hotline {
  margin-top: 16px;
  padding: 16px;
  background: linear-gradient(135deg, #edf8fd, #e2f2fa);
  border: 1px solid rgba(8,126,189,0.1);
  border-radius: var(--radius);
  text-align: center;
}
.status-hotline p {
  margin: 0 0 4px;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
}
.status-hotline a {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
}

/* Conversion-focused trust strip */
.proof-strip {
  position: relative;
  z-index: 2;
  background: #fff;
  border-block: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(7,28,51,0.06);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  padding: 23px 20px;
  border-right: 1px solid var(--line);
}
.proof-item:first-child { padding-left: 0; }
.proof-item:last-child { border-right: 0; padding-right: 0; }
.proof-icon {
  display: inline-flex;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,59,122,0.1), rgba(8,126,189,0.16));
  color: var(--logo-blue);
  font-weight: 800;
  font-size: 0.84rem;
}
.proof-item strong,
.proof-item small { display: block; }
.proof-item strong { color: var(--navy); font-size: 0.88rem; line-height: 1.3; }
.proof-item small { color: var(--muted); font-size: 0.7rem; line-height: 1.45; margin-top: 2px; }
.proof-call { gap: 10px; }
.proof-live {
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(22,163,74,0.1);
}
.proof-call a {
  margin-left: auto;
  padding: 8px 12px;
  border-radius: 9px;
  background: var(--red);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
}

/* Sections */
.section { padding: 84px 0; }
.section-alt {
  background:
    linear-gradient(135deg, rgba(0,59,122,0.025), rgba(229,0,79,0.018)),
    var(--bg-white);
}
.section-head { margin-bottom: 42px; }
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--logo-blue);
  margin-bottom: 8px;
}
.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  letter-spacing: -0.035em;
  color: var(--navy);
  margin: 0 0 10px;
  font-weight: 800;
}
.section-intro { color: var(--muted); margin: 0; max-width: 620px; }
.section-head-row { display: flex; justify-content: space-between; align-items: end; gap: 24px; }
.section-head-light h2 { color: #fff; }
.section-head-light .section-label { color: #8ed9ff; }
.section-head-light .section-intro { color: rgba(255,255,255,0.7); }
.section-dark {
  color: #fff;
  background:
    radial-gradient(circle at 90% 12%, rgba(8,126,189,0.22), transparent 28rem),
    radial-gradient(circle at 5% 90%, rgba(229,0,79,0.08), transparent 24rem),
    #071c33;
}

/* Story and principles */
.story-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.story-copy h2, .showcase-copy h2 { font-family: var(--font-display); font-size: clamp(1.7rem,3vw,2.45rem); line-height: 1.18; letter-spacing: -0.04em; color: var(--navy); margin: 0 0 20px; }
.story-copy p, .showcase-copy > p { color: var(--muted); margin: 0 0 18px; }
.story-copy .story-lead { color: var(--text); font-size: 1.05rem; }
.principle-stack { display: grid; gap: 12px; }
.principle-stack article { display: grid; grid-template-columns: auto 1fr; gap: 16px; padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.principle-stack article > span { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--navy); color: #fff; font-weight: 800; font-size: .78rem; }
.principle-stack h3 { font-family: var(--font-display); color: var(--navy); font-size: .98rem; margin: 0 0 5px; }
.principle-stack p { color: var(--muted); font-size: .86rem; margin: 0; }
.compact-principles { margin-top: 28px; }
.city-team-card {
  position: relative;
  min-height: 610px;
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--radius) + 8px);
  background: var(--navy);
  box-shadow: var(--shadow-md);
}
.city-team-card::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(4,20,37,.9));
}
.city-team-card img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; object-position: center 43%; }
.city-team-card figcaption { position: absolute; z-index: 1; left: 26px; right: 26px; bottom: 24px; color: #fff; }
.city-team-card figcaption strong, .city-team-card figcaption span { display: block; }
.city-team-card figcaption strong { font-family: var(--font-display); font-size: 1.05rem; }
.city-team-card figcaption span { margin-top: 4px; color: rgba(255,255,255,.76); font-size: .8rem; }

/* Audiences */
.audience-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.audience-grid-two { grid-template-columns: repeat(2,1fr); }
.guide-grid-four { grid-template-columns: repeat(4,1fr); }
.audience-grid article { padding: 30px; border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius); background: rgba(255,255,255,.07); backdrop-filter: blur(10px); }
.audience-grid article > span { display: inline-block; padding: 5px 10px; border-radius: 999px; background: rgba(142,217,255,.12); color: #8ed9ff; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.audience-grid h3 { font-family: var(--font-display); margin: 18px 0 9px; font-size: 1.05rem; }
.audience-grid p, .audience-grid li { color: rgba(255,255,255,.72); font-size: .86rem; }
.audience-grid ul { list-style: none; padding: 0; margin: 18px 0 0; }
.audience-grid li { padding: 7px 0 7px 22px; position: relative; border-top: 1px solid rgba(255,255,255,.08); }
.audience-grid li::before { content: "✓"; position: absolute; left: 0; color: #8ed9ff; }

/* Seven-step process */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.process-grid article { min-height: 190px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.process-grid article::after { content: ""; position: absolute; width: 90px; height: 90px; right: -42px; bottom: -42px; border-radius: 50%; background: var(--blue-soft); }
.process-grid span { display: inline-block; color: var(--blue); font-weight: 800; font-size: .78rem; margin-bottom: 30px; }
.process-grid h3 { font-family: var(--font-display); color: var(--navy); font-size: 1rem; margin: 0 0 8px; }
.process-grid p { color: var(--muted); font-size: .84rem; margin: 0; }

/* Work photo stage */
.showcase-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 54px; align-items: center; }
.photo-stage { display: grid; grid-template-columns: 1.25fr .75fr; grid-template-rows: 180px 180px; gap: 12px; }
.work-photo { position: relative; overflow: hidden; border-radius: var(--radius); background-color: var(--navy); box-shadow: var(--shadow-md); margin: 0; min-height: 0; }
.work-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .45s var(--ease); }
.work-photo:hover img { transform: scale(1.035); }
.work-photo::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,transparent 30%,rgba(4,20,37,.88)); }
.work-photo figcaption { position: absolute; left: 18px; right: 18px; bottom: 15px; color: #fff; font-family: var(--font-display); font-size: .86rem; z-index: 1; }
.photo-team { grid-row: 1 / 3; }
.photo-team img { object-position: center 45%; }

/* Einsatzgalerie */
.work-gallery { display: grid; grid-template-columns: repeat(12,1fr); gap: 16px; }
.gallery-card { grid-column: span 5; min-height: 300px; margin: 0; position: relative; overflow: hidden; border-radius: var(--radius); background: var(--navy); box-shadow: var(--shadow); }
.gallery-card-wide { grid-column: span 7; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease); }
.gallery-card:hover img { transform: scale(1.025); }
.gallery-card::after { content: ""; position: absolute; inset: 42% 0 0; background: linear-gradient(transparent,rgba(4,20,37,.9)); }
.gallery-card figcaption { position: absolute; z-index: 1; left: 22px; right: 22px; bottom: 20px; color: #fff; }
.gallery-card figcaption strong, .gallery-card figcaption span { display: block; }
.gallery-card figcaption strong { font-family: var(--font-display); font-size: 1rem; }
.gallery-card figcaption span { color: rgba(255,255,255,.75); font-size: .78rem; margin-top: 3px; }

/* Problem cards */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.problem-card {
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s;
}
.problem-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.25s var(--ease);
}
.problem-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.problem-card:hover::before { transform: scaleY(1); }
.notfall-badge {
  display: inline-block;
  background: #FFF7ED;
  color: #A84A0A;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
}
.problem-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 8px;
  color: var(--navy);
}
.problem-card p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 16px;
}
.card-link {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--blue);
}
.card-link:hover { color: var(--red-dark); }

/* Icon service cards */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.service-card {
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--blue-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-weight: 800;
  font-size: .78rem;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 0 0 6px;
  color: var(--navy);
}
.service-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.step-card {
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.step-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin: 0 0 6px;
  color: var(--navy);
}
.step-card p { margin: 0; font-size: 0.85rem; color: var(--muted); }

/* Pillars */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pillar {
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pillar-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 14px;
}
.pillar h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 0 0 8px;
  color: var(--navy);
}
.pillar p { margin: 0; font-size: 0.88rem; color: var(--muted); }

/* City grid */
.city-search-wrap {
  display: grid;
  grid-template-columns: auto minmax(220px, 420px) auto;
  align-items: center;
  gap: 12px;
  margin: -14px 0 26px;
}
.city-search-wrap label {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.88rem;
}
.city-search {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  font: inherit;
  box-shadow: 0 6px 20px rgba(7,28,51,0.05);
}
.city-search:focus {
  outline: none;
  border-color: var(--logo-blue);
  box-shadow: 0 0 0 4px rgba(0,59,122,0.1);
}
.city-count { color: var(--muted); font-size: 0.82rem; white-space: nowrap; }
.city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.city-link {
  display: block;
  padding: 12px 16px;
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--navy);
  transition: all 0.2s;
}
.city-link:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.city-link[hidden] { display: none; }
.city-more-wrap { display: flex; justify-content: center; margin-top: 26px; }
.city-more-wrap [hidden] { display: none; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(7,28,51,0.04);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item.open { border-color: rgba(8,126,189,0.35); box-shadow: var(--shadow); }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--blue);
  transition: transform 0.2s;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s var(--ease); }
.faq-item.open .faq-answer { max-height: 460px; }
.faq-answer p { padding: 0 20px 18px; color: var(--muted); margin: 0; font-size: 0.9rem; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-intro p { color: var(--muted); }
.contact-mail a { color: var(--blue); font-weight: 600; }
.contact-form {
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  font-size: 0.88rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  background: #fbfdff;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(8,126,189,0.12);
}
.form-honeypot {
  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;
}
.form-trust { font-size: 0.8rem; color: var(--muted); margin: 0; }
.form-trust a { color: var(--blue); }
.form-status { font-size: 0.88rem; margin: 0; }
.form-status-ok { color: var(--green); }
.form-status-error { color: #A84A0A; }

/* CTA band */
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #06182c, #103a5f);
  color: #fff;
  padding: 48px 0;
  text-align: center;
}
.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border: 55px solid rgba(255,255,255,0.035);
  border-radius: 50%;
}
.cta-band::before { left: -110px; top: -150px; }
.cta-band::after { right: -90px; bottom: -170px; }
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  margin: 0 0 10px;
}
.cta-band p {
  color: rgba(255,255,255,0.8);
  margin: 0 0 20px;
  max-width: 560px;
  margin-inline: auto;
}

/* Page hero (subpages) */
.page-hero {
  background: linear-gradient(135deg, #fff, #edf7fc);
  border-bottom: 1px solid var(--line);
  padding: 48px 0;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin: 0 0 12px;
  color: var(--navy);
}
.page-hero p { color: var(--muted); max-width: 560px; margin: 0 auto 20px; }

.prose { max-width: 720px; }
.prose p, .prose li { color: var(--muted); }
.prose h2, .prose h3 { color: var(--navy); font-family: var(--font-display); }

.prose-wide { max-width: 800px; margin: 0 auto; }

/* Guide articles */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.guide-grid-three { grid-template-columns: repeat(3,1fr); }
.guide-card {
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.guide-tag {
  display: inline-block;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
}
.guide-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
  margin: 0 0 10px;
}
.guide-card p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 10px;
}
.guide-card p:last-child { margin-bottom: 0; }
.guide-card-link {
  display: block;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}
.guide-card-link:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #b8daf0; }
.guide-card-meta { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 13px; }
.guide-card-meta .guide-tag { margin-bottom: 0; }
.guide-card-meta > span:last-child { color: var(--muted); font-size: .72rem; white-space: nowrap; }
.guide-article h2 { font-family: var(--font-display); color: var(--navy); margin-top: 34px; }
.guide-warning { margin: 34px 0; padding: 22px 24px; border-radius: var(--radius); background: #fff8e8; border: 1px solid #f3d894; }
.guide-warning h2 { margin-top: 0; font-size: 1.05rem; }
.center-action { margin: 30px 0 0; text-align: center; }
.faq-followup { margin-top: 64px; }

/* Long-form guide articles */
.article-layout { display: grid; grid-template-columns: minmax(0,1fr) 280px; gap: 58px; align-items: start; }
.article-main { min-width: 0; }
.article-main > section { scroll-margin-top: 140px; margin-top: 62px; }
.article-main > section:first-of-type { margin-top: 52px; }
.article-main h2 { font-size: clamp(1.35rem,2.4vw,1.85rem); letter-spacing: -.025em; margin: 8px 0 17px; }
.article-main p, .article-main li { color: var(--muted); line-height: 1.75; }
.article-intro { padding: 24px 26px; border-left: 4px solid var(--blue); border-radius: 0 var(--radius) var(--radius) 0; background: var(--blue-soft); color: var(--text); line-height: 1.7; }
.article-intro strong { color: var(--navy); }
.article-signals { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.article-signal { border: 1px solid var(--line); border-radius: 14px; background: #fff; padding: 20px; box-shadow: 0 8px 24px rgba(7,28,51,.05); }
.article-signal h3 { font-family: var(--font-display); font-size: .92rem; color: var(--navy); margin: 0 0 7px; }
.article-signal p { font-size: .82rem; line-height: 1.55; margin: 0; }
.article-steps { list-style: none; counter-reset: article-step; padding: 0; display: grid; gap: 10px; }
.article-steps li { counter-increment: article-step; position: relative; padding: 17px 18px 17px 56px; border: 1px solid var(--line); background: #fff; border-radius: 13px; }
.article-steps li::before { content: counter(article-step); position: absolute; left: 16px; top: 14px; display: grid; place-items: center; width: 28px; height: 28px; border-radius: 9px; color: #fff; background: var(--navy); font-weight: 800; font-size: .75rem; }
.article-detail-grid { grid-template-columns: repeat(3,1fr); }
.article-detail-grid .detail-card { padding: 20px; }
.article-next { margin-top: 60px; padding: 30px; border-radius: var(--radius-lg); background: linear-gradient(135deg,#071c33,#103f67); color: #fff; }
.article-next h2 { color: #fff; margin-top: 0; }
.article-next p { color: rgba(255,255,255,.78); margin-bottom: 0; }
.article-next a { color: #8ed9ff; text-decoration: underline; text-underline-offset: 3px; }
.article-toc { position: sticky; top: 126px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; padding: 22px; box-shadow: var(--shadow); }
.article-toc > span { display: block; color: var(--navy); font-family: var(--font-display); font-size: .88rem; margin-bottom: 12px; }
.article-toc > a { display: block; padding: 9px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: .8rem; }
.article-toc > a:hover { color: var(--blue); }
.article-toc-call { margin-top: 18px; padding: 17px; border-radius: 13px; background: var(--blue-soft); }
.article-toc-call strong { color: var(--navy); font-size: .85rem; }
.article-toc-call p { color: var(--muted); font-size: .74rem; line-height: 1.45; }
.article-toc-call .btn { width: 100%; font-size: .72rem; }

/* Local city facts */
.local-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.local-facts > div { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 18px; }
.local-facts span { display: block; color: var(--muted); font-size: 0.75rem; margin-bottom: 5px; }
.local-facts strong { display: block; color: var(--navy); overflow-wrap: anywhere; }
.nearby-cities { margin-top: 28px; }
.nearby-cities h3 { font-family: var(--font-display); color: var(--navy); font-size: 1rem; }
.nearby-cities > div { display: flex; flex-wrap: wrap; gap: 9px; }
.nearby-cities a { padding: 8px 12px; border: 1px solid #b8daf0; background: var(--blue-soft); color: var(--blue); border-radius: 999px; font-size: 0.82rem; font-weight: 700; }
.postal-service-area { padding: 38px 0; border-top: 1px solid var(--line); background: #edf4f8; }
.postal-service-area h2 { margin: 2px 0 10px; color: var(--navy); font-family: var(--font-display); font-size: 1.08rem; }
.postal-service-area p { max-width: 920px; margin: 0; color: var(--muted); font-size: .84rem; line-height: 1.75; }
.postal-service-area strong { color: var(--navy); font-weight: 700; }

/* Info box */
.info-box {
  background: var(--blue-soft);
  border: 1px solid #B8DAF0;
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.info-box h3 {
  font-family: var(--font-display);
  color: var(--navy);
  margin: 0 0 10px;
}
.info-box p {
  color: var(--muted);
  margin: 0 0 20px;
}

/* Content block */
.content-block {
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  max-width: 720px;
}
.content-block h3 {
  font-family: var(--font-display);
  color: var(--navy);
  margin: 0 0 16px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.preparation-grid { grid-template-columns: repeat(4, 1fr); }
.detail-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.detail-card > span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.detail-card h3 { margin: 0 0 8px; color: var(--navy); font-family: var(--font-display); font-size: 1rem; }
.detail-card p { margin: 0; color: var(--muted); font-size: 0.88rem; }
.legal-source-list { margin: 16px 0 0; padding-left: 20px; }
.legal-source-list li { margin: 8px 0; color: var(--muted); }

/* Check list */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--muted);
  font-size: 0.92rem;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* Legal blocks */
.legal-block {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.legal-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.legal-block h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
  margin: 0 0 12px;
}
.legal-block p { color: var(--muted); font-size: 0.92rem; margin: 0 0 10px; }
.legal-block a { color: var(--blue); }

/* Contact details */
.contact-details { margin: 24px 0; }
.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.contact-item:last-child { border-bottom: none; }
.contact-item strong {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}
.contact-item a { color: var(--blue); font-weight: 700; font-size: 1.1rem; }
.contact-item span { color: var(--text); font-weight: 600; }
.contact-form h3 {
  font-family: var(--font-display);
  color: var(--navy);
  margin: 0 0 4px;
  font-size: 1.1rem;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.price-table th, .price-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.price-table th {
  background: var(--navy);
  color: #fff;
  font-family: var(--font-display);
}

/* Footer */
.footer {
  background: #06182c;
  color: rgba(255,255,255,0.75);
  padding: 48px 0 32px;
  font-size: 0.88rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
}
.footer-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  margin: 0 0 8px;
}
.footer a {
  display: block;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
}
.footer a:hover { color: #fff; }
.footer-cookie-settings { border: 0; padding: 0; margin: 0; background: none; color: rgba(255,255,255,0.7); font: inherit; cursor: pointer; }
.footer-cookie-settings:hover { color: #fff; }

/* Mobile call */
.mobile-call {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--red);
  color: #fff;
  padding: 14px 16px;
  text-align: center;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  flex-direction: column;
  gap: 2px;
}
.mobile-call-label { font-weight: 800; font-size: 0.92rem; }
.mobile-call-meta { font-size: 0.74rem; opacity: 0.85; }
body.mobile-call-visible .mobile-call { display: flex; }

/* Rückruf-Popup */
.callback-fab { position: fixed; z-index: 205; right: 24px; bottom: 24px; border: 0; border-radius: 999px; padding: 13px 19px; background: var(--navy); color: #fff; font: 700 .84rem var(--font); box-shadow: 0 14px 34px rgba(4,20,37,.28); cursor: pointer; }
.callback-fab span { display: inline-grid; place-items: center; width: 24px; height: 24px; margin-right: 7px; border-radius: 50%; background: var(--blue); }
.callback-fab:hover { background: var(--blue); transform: translateY(-2px); }
.modal-layer, .consent-layer { position: fixed; inset: 0; z-index: 500; opacity: 0; visibility: hidden; transition: opacity .22s ease,visibility .22s ease; }
.modal-layer.visible, .consent-layer.visible { opacity: 1; visibility: visible; }
.modal-layer[hidden], .consent-layer[hidden], [data-consent-view][hidden], [data-whatsapp-link][hidden] { display: none !important; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(3,15,28,.76); backdrop-filter: blur(7px); }
.callback-modal { position: absolute; inset: 50% auto auto 50%; width: min(1160px,calc(100% - 36px)); max-height: min(900px,calc(100vh - 36px)); transform: translate(-50%,-47%); overflow: auto; border-radius: 24px; background: #fff; box-shadow: 0 34px 100px rgba(0,0,0,.35); transition: transform .25s var(--ease); }
.modal-layer.visible .callback-modal { transform: translate(-50%,-50%); }
.modal-close { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: #fff; color: var(--navy); font-size: 1.7rem; line-height: 1; cursor: pointer; }
.callback-modal > .modal-close { position: absolute; z-index: 3; top: 18px; right: 18px; }
.callback-modal-grid { display: grid; grid-template-columns: .82fr 1.18fr; min-height: 630px; }
.callback-modal-copy { padding: 58px 46px; color: #fff; background: radial-gradient(circle at 12% 8%,rgba(142,217,255,.22),transparent 28rem),linear-gradient(145deg,#164e6a,#071c33); }
.callback-modal-copy .section-label { color: #8ed9ff; }
.callback-modal-copy h2 { font-family: var(--font-display); font-size: clamp(1.8rem,3.4vw,3.1rem); line-height: 1.1; letter-spacing: -.045em; margin: 8px 0 22px; }
.callback-modal-copy > p { color: rgba(255,255,255,.76); line-height: 1.75; }
.callback-contact { display: block; margin-top: 12px; padding: 17px 20px; border-radius: 12px; color: var(--navy); background: #8ed9ff; }
.callback-contact small, .callback-contact strong { display: block; }
.callback-contact small { font-size: .65rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; opacity: .72; }
.callback-contact strong { font-size: 1.15rem; }
.callback-contact-whatsapp { background: #25D366; color: #042a14; }
.callback-help { margin-top: 34px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.18); }
.callback-help > strong { font-size: .84rem; }
.callback-help ul { list-style: none; margin: 14px 0 0; padding: 0; }
.callback-help li { position: relative; padding: 5px 0 5px 22px; color: rgba(255,255,255,.72); font-size: .82rem; }
.callback-help li::before { content: "–"; position: absolute; left: 0; color: #8ed9ff; font-weight: 800; }
.callback-form { border: 0; border-radius: 0; box-shadow: none; padding: 38px 48px; gap: 10px; }
.callback-form input, .callback-form select, .callback-form textarea { padding: 10px 12px; }
.callback-form textarea { min-height: 84px; }
.callback-form .form-note { margin: -4px 0 8px; color: var(--muted); font-size: .78rem; }
.field-optional { color: var(--muted); font-size: .68rem; font-weight: 500; }
.callback-form input[type="file"] { font-size: .72rem; background: #f7f9fb; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.privacy-check { display: grid !important; grid-template-columns: 20px 1fr; align-items: start; gap: 10px !important; font-weight: 500 !important; color: var(--muted); }
.privacy-check input { width: 18px; height: 18px; margin-top: 2px; padding: 0; }
.privacy-check a { color: var(--blue); text-decoration: underline; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* Datenschutz-Popup */
.consent-layer { display: grid; place-items: center; padding: 18px; background: rgba(3,15,28,.78); backdrop-filter: blur(8px); }
.consent-dialog { width: min(920px,100%); max-height: calc(100vh - 36px); overflow: auto; border: 1px solid rgba(142,217,255,.45); border-radius: 24px; background: #fff; box-shadow: 0 30px 100px rgba(0,0,0,.36); transform: translateY(16px); transition: transform .25s var(--ease); }
.consent-layer.visible .consent-dialog { transform: translateY(0); }
.consent-summary { padding: 46px; background: linear-gradient(145deg,#8ed9ff,#68bde3); color: var(--navy); }
.consent-kicker { display: inline-block; padding: 7px 14px; border-radius: 999px; color: #fff; background: var(--navy); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .13em; }
.consent-summary h2, .consent-settings h2 { font-family: var(--font-display); color: var(--navy); font-size: clamp(1.7rem,4vw,2.7rem); letter-spacing: -.04em; margin: 22px 0 16px; }
.consent-summary > p, .consent-settings > p { color: #21445a; font-size: 1rem; line-height: 1.75; }
.consent-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.consent-summary .consent-links { display: flex; gap: 28px; margin: 34px -46px -46px; padding: 18px 46px; background: var(--navy); }
.consent-links a { color: rgba(255,255,255,.8); font-weight: 700; font-size: .84rem; }
.consent-settings { padding: 38px 42px; }
.consent-settings-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.consent-settings-head h2 { margin: 14px 0 0; }
.consent-options { display: grid; gap: 10px; margin-top: 28px; }
.consent-option { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 16px; padding: 18px 20px; border: 1px solid var(--line); border-radius: 14px; background: #f7f9fb; cursor: pointer; }
.consent-option span strong, .consent-option span small { display: block; }
.consent-option span strong { color: var(--navy); }
.consent-option span small { color: var(--muted); margin-top: 2px; }
.consent-option input { position: absolute; opacity: 0; pointer-events: none; }
.consent-option i { position: relative; width: 52px; height: 28px; border-radius: 999px; background: #8291a0; transition: background .2s; }
.consent-option i::after { content: "×"; position: absolute; display: grid; place-items: center; width: 22px; height: 22px; left: 3px; top: 3px; border-radius: 50%; color: #607080; background: #fff; font: 700 1rem var(--font); transition: transform .2s; }
.consent-option input:checked + i { background: var(--blue); }
.consent-option input:checked + i::after { content: "✓"; transform: translateX(24px); color: var(--blue); font-size: .72rem; }
.consent-required { cursor: default; opacity: .68; }

/* Reveal */
.js-reveal-ready .reveal {
  opacity: 1;
  transform: none;
}
.js-reveal-ready .reveal.visible { opacity: 1; transform: translateY(0); }

/* 404 */
.error-page {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 16px;
}
.error-page h1 {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--navy);
  margin: 0;
}

/* Responsive */
@media (max-width: 960px) {
  .video-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .video-hero-tag-wrap { justify-content: flex-start; }
  .video-hero-links { display: none; }
  .hero-grid, .contact-grid, .story-grid, .showcase-grid { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid, .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .proof-item:first-child, .proof-item:last-child { padding-inline: 20px; }
  .detail-grid { grid-template-columns: 1fr; }
  .preparation-grid { grid-template-columns: 1fr 1fr; }
  .audience-grid, .audience-grid-two, .guide-grid-four { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .guide-grid-three { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-toc { display: none; }
  .article-signals { grid-template-columns: 1fr; }
  .article-detail-grid { grid-template-columns: 1fr; }
  .callback-modal-grid { grid-template-columns: 1fr; }
  .callback-modal-copy { padding: 42px 34px; }
  .callback-modal { max-width: 700px; }
  .work-gallery { grid-template-columns: 1fr 1fr; }
  .gallery-card, .gallery-card-wide { grid-column: auto; min-height: 280px; }
}
@media (max-width: 1080px) {
  .header { backdrop-filter: none; background: #fff; }
}
@media (min-width: 761px) and (max-width: 1080px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: #fff;
    opacity: 1;
    isolation: isolate;
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    padding: 80px 24px 24px;
    gap: 14px;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s var(--ease);
    box-shadow: -8px 0 30px rgba(0,0,0,0.1);
    z-index: 180;
  }
  .site-nav.open { transform: translateX(0); visibility: visible; pointer-events: auto; }
  .nav-toggle[aria-expanded="true"] { position: fixed; top: 20px; right: 20px; z-index: 190; background: #fff; border-radius: 10px; box-shadow: 0 6px 20px rgba(7,28,51,.12); }
  .site-nav > a:not(.btn)::after { display: none; }
}
@media (max-width: 760px) {
  .video-hero-shell { padding: 16px 16px 0; }
  .video-hero-nav { min-height: 58px; padding: 7px; gap: 10px; }
  .video-hero-logo { padding: 3px 7px; }
  .video-hero-logo img { height: 30px; }
  .video-hero-nav-call { padding: 9px 13px; font-size: .78rem; }
  .video-hero-content { padding: 48px 0 34px; }
  .video-hero-grid { gap: 22px; }
  .animated-hero-heading { font-size: clamp(2.15rem, 10.5vw, 3rem); }
  .animated-hero-heading .hero-heading-line { white-space: normal; }
  .video-hero-lead { color: #fff; font-size: .95rem; }
  .video-hero-actions { gap: 10px; }
  .video-hero-primary, .video-hero-secondary { flex: 1 1 145px; padding-inline: 18px; }
  .video-hero-tag { padding: 10px 15px; font-size: .92rem; white-space: normal; }
  .top-bar-inner { flex-wrap: nowrap; padding: 9px 0; }
  .top-bar-tel { display: block; font-size: 0.74rem; white-space: nowrap; }
  .top-bar-badge { font-size: 0.74rem; white-space: nowrap; }
  .top-btn { display: none; }
  .header { top: 0; }
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(280px, 85vw);
    background: #fff;
    opacity: 1;
    isolation: isolate;
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    padding: 80px 24px 24px;
    gap: 14px;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s var(--ease);
    box-shadow: -8px 0 30px rgba(0,0,0,0.1);
    z-index: 180;
  }
  .site-nav.open { transform: translateX(0); visibility: visible; pointer-events: auto; }
  .nav-toggle[aria-expanded="true"] { position: fixed; top: 20px; right: 20px; z-index: 190; background: #fff; border-radius: 10px; box-shadow: 0 6px 20px rgba(7,28,51,.12); }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-toggle span { transition: transform 0.2s, opacity 0.2s; }
  .problem-grid, .steps-grid, .pillars-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article { min-height: 0; }
  .guide-grid { grid-template-columns: 1fr; }
  .local-facts { grid-template-columns: 1fr 1fr; }
  .hero { padding: 42px 0 54px; }
  .city-hero { min-height: 0; }
  .city-hero .city-hero-photo,
  .city-hero::before { height: 100%; bottom: 0; }
  .city-hero .city-hero-photo { object-position: center 35%; }
  .city-hero::before { background: linear-gradient(180deg, rgba(4,20,37,0.9), rgba(4,20,37,0.72)); }
  .city-credit-footer { text-align: center; }
  .hero-grid { gap: 36px; }
  .hero h1 { font-size: clamp(2rem, 10vw, 2.65rem); }
  .hero-actions .btn { width: 100%; }
  .status-card { border-radius: 20px; }
  .section { padding: 58px 0; }
  .section-head { margin-bottom: 30px; }
  .section-head-row { align-items: stretch; flex-direction: column; }
  .story-grid, .showcase-grid { gap: 34px; }
  .city-team-card { min-height: 450px; }
  .photo-stage { grid-template-columns: 1fr 1fr; grid-template-rows: 230px 140px; }
  .photo-team { grid-column: 1 / 3; grid-row: auto; }
  .contact-form { padding: 22px; }
  .site-nav > a:not(.btn)::after { display: none; }
  .city-search-wrap { grid-template-columns: 1fr; gap: 7px; margin-top: -8px; }
  .work-gallery { grid-template-columns: 1fr; }
  .gallery-card, .gallery-card-wide { min-height: 300px; }
  .preparation-grid { grid-template-columns: 1fr; }
  .callback-fab { display: none; }
  .callback-modal { width: 100%; max-height: 100%; height: 100%; border-radius: 0; }
  .callback-modal-copy { padding: 44px 24px 32px; }
  .callback-modal-copy h2 { padding-right: 34px; }
  .callback-form { padding: 30px 22px 100px; }
  .form-row { grid-template-columns: 1fr; }
  .consent-layer { padding: 10px; }
  .consent-dialog { max-height: calc(100vh - 20px); border-radius: 18px; }
  .consent-summary, .consent-settings { padding: 28px 22px; }
  .consent-summary h2, .consent-settings h2 { font-size: 1.55rem; }
  .consent-summary > p, .consent-settings > p { font-size: .87rem; }
  .consent-actions { display: grid; grid-template-columns: 1fr; margin-top: 24px; }
  .consent-actions .btn { width: 100%; }
  .consent-summary .consent-links { margin: 26px -22px -28px; padding: 16px 22px; }
  .consent-option { padding: 15px; gap: 10px; }
  .consent-option span small { font-size: .72rem; }
  .proof-strip { box-shadow: none; }
  .proof-grid { grid-template-columns: 1fr 1fr; width: 100%; }
  .proof-item { padding: 14px 12px; gap: 9px; }
  .proof-item:first-child, .proof-item:last-child { padding-inline: 12px; }
  .proof-icon { flex-basis: 38px; width: 38px; height: 38px; border-radius: 11px; font-size: 0.7rem; }
  .proof-item strong { font-size: 0.76rem; }
  .proof-item small { font-size: 0.62rem; }
  .proof-call a { display: none; }
  body.has-mobile-cta { padding-bottom: 72px; }
  .mobile-call { padding: 11px 16px calc(11px + env(safe-area-inset-bottom)); }
}

@media (max-width: 370px) {
  .top-bar-badge { font-size: 0.68rem; }
  .top-bar-tel { display: none; }
  .local-facts { grid-template-columns: 1fr; }
  .consent-layer { padding: 5px; }
  .consent-dialog { max-height: calc(100vh - 10px); }
  .consent-summary, .consent-settings { padding: 22px 17px; }
  .consent-summary .consent-links { margin: 22px -17px -22px; padding: 14px 17px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
