:root {
  color-scheme: light;
  --bg: #f7f9fb;
  --bg-soft: #eef2f6;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.7);
  --ink: #0b1220;
  --ink-soft: #1c2433;
  --muted: #5a6776;
  --line: #e3e8ee;
  --line-soft: rgba(227, 232, 238, 0.7);

  --accent: #0ea5a4;
  --accent-strong: #0d7d7e;
  --accent-2: #6366f1;
  --accent-3: #f97316;
  --accent-glow: rgba(14, 165, 164, 0.35);

  --grad-primary: linear-gradient(135deg, #0ea5a4 0%, #6366f1 60%, #8b5cf6 100%);
  --grad-soft: linear-gradient(135deg, rgba(14, 165, 164, 0.16), rgba(99, 102, 241, 0.14) 55%, rgba(249, 115, 22, 0.12));
  --grad-text: linear-gradient(120deg, #0ea5a4 0%, #6366f1 55%, #f97316 100%);

  --shadow-sm: 0 2px 8px rgba(11, 18, 32, 0.04);
  --shadow: 0 18px 50px rgba(11, 18, 32, 0.08);
  --shadow-lg: 0 32px 80px rgba(11, 18, 32, 0.14);
  --shadow-glow: 0 24px 60px rgba(99, 102, 241, 0.18);

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 26px;
  --max: 1200px;

  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(1100px 600px at 8% -10%, rgba(14, 165, 164, 0.10), transparent 60%),
    radial-gradient(1000px 700px at 100% 10%, rgba(99, 102, 241, 0.10), transparent 60%),
    radial-gradient(900px 500px at 50% 110%, rgba(249, 115, 22, 0.07), transparent 60%),
    var(--bg);
  background-attachment: fixed;
}

main {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

::selection {
  background: rgba(99, 102, 241, 0.25);
  color: var(--ink);
}

/* ───────── Header ───────── */

.site-header {
  position: sticky;
  top: 14px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 14px max(18px, calc((100vw - var(--max)) / 2)) 0;
  padding: 10px 14px 10px 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  box-shadow: 0 10px 30px rgba(11, 18, 32, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.brand,
.nav-links,
.site-footer div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand {
  font-weight: 800;
  letter-spacing: -0.01em;
  white-space: nowrap;
  font-size: 0.98rem;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: var(--grad-primary);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(99, 102, 241, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.nav-links {
  padding: 4px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  gap: 2px;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover {
  color: var(--ink);
  background: rgba(11, 18, 32, 0.05);
}

.site-footer a,
.site-footer button {
  transition: color 180ms ease;
}

.site-footer button {
  appearance: none;
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.site-footer a:hover,
.site-footer button:hover {
  color: var(--accent);
}

/* ───────── Buttons ───────── */

.header-cta,
.button {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 1;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease, border-color 200ms ease, color 200ms ease;
  cursor: pointer;
  border: 1px solid transparent;
  font-family: inherit;
}

.header-cta {
  padding: 0 18px;
  color: #fff;
  background: var(--ink);
  box-shadow: 0 10px 22px rgba(11, 18, 32, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
}

.header-cta:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #0b1220 0%, #1c2433 100%);
  box-shadow: 0 14px 28px rgba(11, 18, 32, 0.28);
}

.button {
  padding: 0 22px;
  min-height: 50px;
  font-size: 0.98rem;
}

.button .btn-icon {
  width: 18px;
  height: 18px;
  transition: transform 220ms ease;
}

.button:hover .btn-icon {
  transform: translateX(3px);
}

.primary {
  color: #fff;
  background: var(--grad-primary);
  background-size: 180% 180%;
  background-position: 0% 50%;
  box-shadow: 0 14px 32px rgba(99, 102, 241, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.primary:hover {
  transform: translateY(-2px);
  background-position: 100% 50%;
  box-shadow: 0 22px 42px rgba(99, 102, 241, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--line);
  backdrop-filter: blur(8px);
}

.secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(99, 102, 241, 0.45);
  box-shadow: 0 14px 30px rgba(11, 18, 32, 0.08);
}

/* ───────── Generic section helpers ───────── */

.section-band {
  background: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent-strong);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--grad-primary);
}

.eyebrow.on-dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #9bf0e3;
}

.text-gradient {
  background: var(--grad-text);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-shift 12s ease infinite;
}

@keyframes gradient-shift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

/* ───────── Hero ───────── */

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: clamp(34px, 5.6vw, 88px);
  align-items: center;
  min-height: calc(100svh - 88px);
  padding: clamp(60px, 8vw, 110px) max(24px, calc((100vw - var(--max)) / 2)) 60px;
}

.hero-glow {
  position: absolute;
  inset: -10% -10% auto -10%;
  height: 80%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(420px 320px at 18% 30%, rgba(14, 165, 164, 0.22), transparent 60%),
    radial-gradient(520px 360px at 78% 22%, rgba(99, 102, 241, 0.22), transparent 60%),
    radial-gradient(360px 260px at 55% 70%, rgba(249, 115, 22, 0.16), transparent 60%);
  filter: blur(10px);
  animation: float-glow 18s ease-in-out infinite;
}

@keyframes float-glow {

  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-2%, 2%, 0);
  }
}

.hero-copy,
.hero-media {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 12px;
  margin-bottom: 28px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
}

.status-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18);
}

.status-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.4);
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.6);
    opacity: 0.9;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.hero-copy h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.6rem, 5.4vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 800;
  text-wrap: balance;
}

.hero-copy p {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.3vw, 1.22rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.local-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin: 36px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
  font-weight: 600;
  list-style: none;
}

.local-list li {
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  backdrop-filter: blur(8px);
  transition: border-color 200ms ease, color 200ms ease, transform 200ms ease;
}

.local-list li:hover {
  border-color: rgba(14, 165, 164, 0.5);
  color: var(--accent-strong);
  transform: translateY(-1px);
}

/* Hero media (skyline) */

.hero-media {
  margin: 0;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -14px -14px 30px 30px;
  z-index: 0;
  border-radius: var(--radius-lg);
  background: var(--grad-soft);
  border: 1px solid rgba(255, 255, 255, 0.7);
  filter: blur(2px);
}

.hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-lg);
}

.hero-media figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  max-width: 280px;
  padding: 12px 16px;
  color: #fff;
  background: rgba(11, 18, 32, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  box-shadow: 0 18px 36px rgba(11, 18, 32, 0.32);
  font-size: 0.84rem;
  font-weight: 600;
  backdrop-filter: blur(12px);
}

/* ───────── Proof strip ───────── */

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px 96px;
}

.proof-strip>div {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 24px 22px 22px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  overflow: hidden;
}

.proof-strip>div::before {
  content: "";
  position: absolute;
  inset: auto -30% -50% auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(14, 165, 164, 0.18), transparent 70%);
  opacity: 0;
  transition: opacity 280ms ease;
}

.proof-strip>div:nth-child(2)::before {
  background: radial-gradient(closest-side, rgba(99, 102, 241, 0.2), transparent 70%);
}

.proof-strip>div:nth-child(3)::before {
  background: radial-gradient(closest-side, rgba(249, 115, 22, 0.2), transparent 70%);
}

.proof-strip>div:nth-child(4)::before {
  background: radial-gradient(closest-side, rgba(139, 92, 246, 0.22), transparent 70%);
}

.proof-strip>div:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.28);
  box-shadow: var(--shadow);
}

.proof-strip>div:hover::before {
  opacity: 1;
}

.proof-icon {
  width: 26px;
  height: 26px;
  margin-bottom: 4px;
  color: var(--accent);
  stroke-width: 1.8;
}

.proof-strip>div:nth-child(2) .proof-icon {
  color: var(--accent-2);
}

.proof-strip>div:nth-child(3) .proof-icon {
  color: var(--accent-3);
}

.proof-strip>div:nth-child(4) .proof-icon {
  color: #8b5cf6;
}

.proof-strip strong {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.proof-strip span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

/* ───────── Section base ───────── */

.services,
.process,
.faq {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 9vw, 120px) 24px;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.section-heading.align-left .eyebrow {
  margin-bottom: 16px;
}

.section-heading h2,
.contact h2 {
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 800;
  text-wrap: balance;
}

.section-heading p,
.contact-copy p {
  max-width: 640px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.section-heading.align-left p {
  margin-left: 0;
}

/* ───────── Services (Bento) ───────── */

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

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 280px;
  padding: 26px 24px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--grad-primary);
  opacity: 0.85;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -40% -60% auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(99, 102, 241, 0.18), transparent 70%);
  opacity: 0;
  transition: opacity 280ms ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(99, 102, 241, 0.32);
  box-shadow: var(--shadow);
}

.service-card:hover::after {
  opacity: 1;
}

.service-number {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.service-number::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--grad-primary);
  border-radius: 2px;
}

.service-card h3,
.audience h3,
.process-list h3 {
  margin: 0;
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.service-card p,
.audience p,
.process-list p,
.faq p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

/* ───────── Audience ───────── */

.audience,
.seo-section,
.contact {
  position: relative;
  padding: clamp(72px, 9vw, 120px) max(24px, calc((100vw - var(--max)) / 2));
}

.audience {
  background:
    radial-gradient(800px 400px at 0% 0%, rgba(14, 165, 164, 0.10), transparent 60%),
    radial-gradient(800px 400px at 100% 100%, rgba(99, 102, 241, 0.10), transparent 60%);
}

.audience-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.audience-columns article {
  position: relative;
  padding: 34px 32px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  overflow: hidden;
}

.audience-columns article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--grad-primary);
  border-radius: 4px 0 0 4px;
}

.audience-columns article:nth-child(2)::before {
  background: linear-gradient(180deg, var(--accent-2) 0%, var(--accent-3) 100%);
}

.audience-columns article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(99, 102, 241, 0.28);
}

/* ───────── Process ───────── */

.process-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.process-list li {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 28px 30px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.process-list li:hover {
  transform: translateY(-3px);
  border-color: rgba(99, 102, 241, 0.28);
  box-shadow: var(--shadow);
}

.process-list span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #fff;
  background: var(--grad-primary);
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(99, 102, 241, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  font-weight: 800;
  font-size: 1.05rem;
}

/* ───────── About / Über mich ───────── */

.about {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(34px, 5.6vw, 80px);
  align-items: center;
  padding: clamp(72px, 9vw, 120px) max(24px, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(700px 420px at 0% 0%, rgba(99, 102, 241, 0.10), transparent 60%),
    radial-gradient(700px 420px at 100% 100%, rgba(14, 165, 164, 0.10), transparent 60%);
  overflow: hidden;
}

.about-media {
  position: relative;
  margin: 0;
  z-index: 1;
  width: min(100%, 430px);
  justify-self: center;
}

.about-media::before {
  content: "";
  position: absolute;
  inset: -16px 30px 30px -16px;
  z-index: 0;
  border-radius: var(--radius-lg);
  background: var(--grad-soft);
  border: 1px solid rgba(255, 255, 255, 0.7);
  filter: blur(2px);
}

.about-media::after {
  content: "";
  position: absolute;
  top: -22px;
  right: -22px;
  z-index: 0;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--grad-primary);
  filter: blur(28px);
  opacity: 0.55;
  pointer-events: none;
}

.about-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-lg);
}

.about-media figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 8px 14px;
  color: #fff;
  background: rgba(11, 18, 32, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  box-shadow: 0 16px 32px rgba(11, 18, 32, 0.32);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  backdrop-filter: blur(12px);
}

.about-copy {
  position: relative;
  z-index: 1;
}

.about-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1.06;
  letter-spacing: -0.022em;
  font-weight: 800;
  text-wrap: balance;
}

.about-copy p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
  max-width: 620px;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.about-facts li {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
}

.about-facts strong {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.about-facts span {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: -0.005em;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

/* ───────── SEO / Region ───────── */

.seo-section {
  background:
    radial-gradient(700px 380px at 90% 0%, rgba(14, 165, 164, 0.14), transparent 60%),
    radial-gradient(700px 380px at 10% 100%, rgba(249, 115, 22, 0.12), transparent 60%);
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 36px;
}

.city-grid span {
  position: relative;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--ink);
  backdrop-filter: blur(8px);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.city-grid span::before {
  content: "→";
  display: inline-block;
  margin-right: 10px;
  color: var(--accent);
  font-weight: 800;
  transform: translateX(0);
  transition: transform 220ms ease, color 220ms ease;
}

.city-grid span:hover {
  transform: translateY(-2px);
  border-color: rgba(14, 165, 164, 0.4);
  box-shadow: var(--shadow);
}

.city-grid span:hover::before {
  transform: translateX(4px);
  color: var(--accent-strong);
}

/* ───────── FAQ ───────── */

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}

details {
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
  transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

details[open] {
  background: #fff;
  border-color: rgba(99, 102, 241, 0.32);
  box-shadow: var(--shadow);
}

summary {
  position: relative;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
  list-style: none;
  padding-right: 40px;
  letter-spacing: -0.005em;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  background: var(--bg-soft);
  border-radius: 50%;
  color: var(--ink);
  font-weight: 700;
  font-size: 1.1rem;
  transform: translateY(-50%);
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

details[open] summary::after {
  content: "−";
  background: var(--grad-primary);
  color: #fff;
}

details p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.7;
}

/* ───────── Contact ───────── */

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.85fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: start;
  background:
    radial-gradient(800px 480px at 0% 0%, rgba(99, 102, 241, 0.4), transparent 60%),
    radial-gradient(900px 540px at 100% 100%, rgba(14, 165, 164, 0.32), transparent 60%),
    linear-gradient(135deg, #0b1220 0%, #111a2e 60%, #0b1220 100%);
  color: #fff;
  overflow: hidden;
}

.contact-glow {
  position: absolute;
  inset: -30% -10% auto -10%;
  height: 120%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(420px 320px at 75% 25%, rgba(249, 115, 22, 0.2), transparent 60%);
  animation: float-glow 22s ease-in-out infinite;
}

.contact-copy,
.contact-form {
  position: relative;
  z-index: 1;
}

.contact-copy h2 {
  font-weight: 800;
  letter-spacing: -0.022em;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.76);
  margin-left: 0;
}

.direct-mail {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  color: #9bf0e3;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  transition: color 200ms ease, transform 200ms ease;
}

.direct-mail::after {
  content: "↗";
  font-size: 1rem;
  transition: transform 220ms ease;
}

.direct-mail:hover {
  color: #c5fff1;
  transform: translateX(2px);
}

.direct-mail:hover::after {
  transform: translate(2px, -2px);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 28px 28px 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.005em;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 0.98rem;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

input:hover,
select:hover,
textarea:hover {
  border-color: #cdd5de;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  outline: 4px solid rgba(14, 165, 164, 0.16);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

/* ───────── Footer ───────── */

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px max(24px, calc((100vw - var(--max)) / 2));
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

/* ───────── Privacy notice ───────── */

.privacy-banner {
  position: fixed;
  right: max(18px, calc((100vw - var(--max)) / 2));
  bottom: 18px;
  z-index: 80;
  width: min(620px, calc(100vw - 36px));
  color: #eef2ff;
}

.privacy-banner[hidden],
.privacy-details[hidden] {
  display: none;
}

.privacy-banner__content {
  padding: 22px;
  background: rgba(9, 14, 28, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.privacy-kicker {
  margin: 0 0 8px;
  color: #99f6e4;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.privacy-banner h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  letter-spacing: -0.02em;
}

.privacy-banner p {
  margin: 10px 0 0;
  color: rgba(238, 242, 255, 0.78);
  line-height: 1.65;
}

.privacy-details {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.privacy-details dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.privacy-details div {
  display: grid;
  gap: 2px;
}

.privacy-details dt {
  color: #fff;
  font-weight: 800;
}

.privacy-details dd {
  margin: 0;
  color: rgba(238, 242, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.55;
}

.privacy-record {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.privacy-record strong {
  color: #fff;
  font-size: 0.92rem;
}

.privacy-record pre {
  max-height: 160px;
  margin: 0;
  overflow: auto;
  color: rgba(238, 242, 255, 0.78);
  font: 0.78rem/1.55 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  white-space: pre-wrap;
}

.privacy-copy {
  width: fit-content;
}

.privacy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.privacy-button {
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.privacy-button:hover {
  transform: translateY(-1px);
}

.privacy-button--ghost {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.privacy-button--ghost:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.privacy-button--primary {
  color: #06101f;
  background: #99f6e4;
  border: 1px solid #99f6e4;
}

/* ───────── Legal pages ───────── */

.legal-page {
  overflow: visible;
}

.legal-hero {
  display: grid;
  gap: 18px;
  padding: 88px max(24px, calc((100vw - var(--max)) / 2)) 60px;
}

.legal-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 800;
}

.legal-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.legal-meta {
  color: var(--accent-strong);
  font-size: 0.74rem !important;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.legal-content {
  display: grid;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
  padding: 60px 24px 90px;
}

.legal-card {
  padding: 28px 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.legal-card h2 {
  margin: 0 0 12px;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card p {
  margin: 0;
}

.legal-card p+p {
  margin-top: 12px;
}

.legal-card a {
  color: var(--accent-strong);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.status-note {
  background: linear-gradient(135deg, #fff7ed 0%, #fff 100%);
  border-color: #fde2c1;
}

.legal-list {
  margin: 0;
  padding-left: 20px;
}

/* ───────── Reveal animations ───────── */

.reveal,
.service-card,
.audience-columns article,
.process-list li,
.city-grid span,
.faq-list details {
  opacity: 0;
  transform: translateY(14px);
  animation: reveal-in 700ms cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  animation-timeline: view();
  animation-range: entry 0% cover 30%;
}

@keyframes reveal-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fallback for browsers without scroll-driven animations */
@supports not (animation-timeline: view()) {

  .reveal,
  .service-card,
  .audience-columns article,
  .process-list li,
  .city-grid span,
  .faq-list details {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ───────── Responsive ───────── */

@media (max-width: 1120px) {
  .site-header {
    margin: 12px 16px 0;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 940px) {

  .hero,
  .contact,
  .about {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media::before {
    inset: -10px -10px 20px 20px;
  }

  .hero-media img {
    aspect-ratio: 16 / 10;
  }

  .about-media {
    width: min(100%, 380px);
    margin: 0 auto;
  }

  .about-media::before {
    inset: -10px 16px 20px -10px;
  }

  .proof-strip,
  .service-grid,
  .city-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    margin: 10px 12px 0;
    gap: 10px;
    padding: 8px 10px 8px 14px;
  }

  .brand span:last-child {
    display: none;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.86rem;
  }

  .hero {
    padding-top: 56px;
    padding-bottom: 40px;
  }

  .hero,
  .audience,
  .about,
  .seo-section,
  .contact,
  .services,
  .process,
  .faq {
    padding-left: 18px;
    padding-right: 18px;
  }

  .about-facts {
    grid-template-columns: 1fr;
  }

  .about-actions {
    width: 100%;
  }

  .about-actions .button {
    flex: 1;
  }

  .hero-copy h1 {
    font-size: clamp(2.1rem, 9.5vw, 2.8rem);
    line-height: 1.05;
  }

  .hero-copy p {
    margin-top: 20px;
    font-size: 1rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    flex: 1;
  }

  .local-list {
    gap: 6px 8px;
  }

  .hero-media::before {
    display: none;
  }

  .hero-media figcaption {
    position: static;
    max-width: none;
    margin-top: 10px;
    color: var(--ink);
    background: var(--surface);
    border-color: var(--line);
    box-shadow: var(--shadow-sm);
  }

  .proof-strip,
  .service-grid,
  .audience-columns,
  .city-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: 60px;
  }

  .section-heading h2,
  .contact h2 {
    font-size: clamp(1.8rem, 8.5vw, 2.4rem);
  }

  .service-card {
    min-height: auto;
  }

  .process-list li {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .audience-columns article,
  .legal-card {
    padding: 24px;
  }

  .contact-form {
    padding: 22px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 18px;
  }

  .site-footer div {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .legal-hero {
    padding: 58px 18px 36px;
  }

  .legal-content {
    padding: 36px 18px 60px;
  }

  .privacy-banner {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
  }

  .privacy-banner__content {
    padding: 18px;
    border-radius: 18px;
  }

  .privacy-actions {
    display: grid;
  }

  .privacy-button {
    width: 100%;
  }
}
