:root {
  --ink: #16223a;
  --ink-soft: #40516b;
  --black: #05070b;
  --blue-25: #f0f7ff;
  --blue-50: #e2f0fb;
  --blue-100: #cce0f5;
  --blue-200: #99c4ee;
  --blue-500: #1565c0;
  --blue-700: #0d47a1;
  --gold: #c9933a;
  --gold-soft: #fff6e4;
  --paper: #fbfdff;
  --white: #fffffc;
  --line: #b8d9f5;
  --section-divider: rgba(21, 101, 192, 0.18);
  --section-divider-soft: rgba(21, 101, 192, 0.08);
  --section-accent: linear-gradient(90deg, transparent, rgba(21, 101, 192, 0.28), rgba(201, 147, 58, 0.22), transparent);
  --section-dark-divider: rgba(255, 255, 252, 0.12);
  --shadow: 0 18px 70px rgba(21, 101, 192, 0.14);
  --shadow-soft: 0 10px 34px rgba(21, 101, 192, 0.08);
  --shadow-lift: 0 26px 80px rgba(21, 101, 192, 0.18);
  --hero-radial-blue: rgba(21, 101, 192, 0.12);
  --hero-radial-gold: rgba(201, 147, 58, 0.1);
  --hero-base-a: rgba(240, 247, 255, 0.94);
  --hero-base-b: rgba(240, 247, 255, 0.82);
  --hero-stripe: rgba(21, 101, 192, 0.035);
  --header-bg: var(--white);
  --header-border: var(--blue-200);
  --header-shadow: 0 2px 20px rgba(21, 101, 192, 0.10);
  --quote-card-bg: #10151e;
  --quote-card-border: rgba(255, 255, 252, 0.14);
  --quote-card-text: #d8e8f7;
  --hero-frame: rgba(21, 101, 192, 0.08);
  --map-overlay-bg: rgba(255, 255, 252, 0.94);
  --status-open: #22c55e;
  --status-closed: #ef4444;
  --white-overlay-06: rgba(255, 255, 252, 0.06);
  --white-overlay-12: rgba(255, 255, 252, 0.12);
  --white-overlay-10: rgba(255, 255, 252, 0.10);
  --white-overlay-20: rgba(255, 255, 252, 0.20);
  --ink-overlay-92: rgba(22, 34, 58, 0.92);
  --gold-overlay-25: rgba(201, 147, 58, 0.25);
  --whatsapp-green: #25d366;
  --whatsapp-green-dark: #128c7e;
  --font-body: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 14px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--blue-100);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

address {
  font-style: normal;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-150%);
  background: var(--black);
  color: var(--white);
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - 40px, 1280px);
  margin-inline: auto;
}

.topbar {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 1rem;
  background: var(--black);
  color: var(--white);
  text-align: center;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 800;
}

.topbar p {
  margin: 0;
}

.topbar a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  color: var(--white);
  padding: 0.25rem 0.35rem;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--header-bg);
  border-bottom: 2px solid var(--header-border);
  box-shadow: var(--header-shadow);
}

.nav {
  min-height: 88px;
  display: grid;
  grid-template-columns: 1.25fr auto 1.25fr;
  align-items: center;
  gap: 1.5rem;
}

.brand,
.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.1;
}

.brand__mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--blue-200);
  color: var(--blue-500);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 900;
}

.brand__logo {
  width: clamp(160px, 18vw, 240px);
  height: auto;
  max-height: 52px;
  object-fit: contain;
}

.brand__logo--nikos {
  width: clamp(164px, 18vw, 250px);
  max-height: 64px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 4vw, 4rem);
  font-weight: 900;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
}

.nav__links a,
.footer__links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border-bottom: 2px solid transparent;
}

.nav__links a:hover,
.footer__links a:hover {
  border-color: var(--blue-500);
}

.nav__call {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.75rem 1.05rem;
  border: 2px solid var(--black);
  border-radius: var(--radius-sm);
  color: var(--black);
  font-weight: 900;
}

.nav__call svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.hero {
  padding: 0 0 0.01px;
}

.hero__surface {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(1.6rem, 4vw, 3.5rem);
  align-items: center;
  min-height: clamp(390px, 56vh, 610px);
  padding: clamp(2.4rem, 4.8vw, 4.6rem) clamp(1.35rem, 4.6vw, 4.8rem);
  background:
    radial-gradient(circle at 82% 22%, var(--hero-radial-blue), transparent 28%),
    radial-gradient(circle at 17% 78%, var(--hero-radial-gold), transparent 24%),
    linear-gradient(90deg, var(--hero-base-a), var(--hero-base-b)),
    repeating-linear-gradient(135deg, transparent 0 16px, var(--hero-stripe) 16px 18px);
}

.hero__surface::before {
  content: "";
  position: absolute;
  inset: 2rem;
  pointer-events: none;
  border: 1px solid var(--hero-frame);
}

.hero__copy,
.hero__media {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 1.15rem;
  color: var(--blue-500);
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.hero h1,
.section-heading h2,
.intro h2,
.trust h2,
.contact h2,
.legal-page h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.03;
}

.hero h1 {
  max-width: 660px;
  font-size: clamp(2.6rem, 5.2vw, 4.65rem);
  overflow-wrap: anywhere;
  hyphens: auto;
  text-wrap: balance;
}

.hero__lead {
  max-width: 570px;
  margin: 1.25rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.55vw, 1.28rem);
  font-weight: 700;
  line-height: 1.45;
  text-wrap: pretty;
}

.hero__actions,
.location-card__actions,
.contact__buttons,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 54px;
  padding: 0.95rem 1.35rem;
  border: 2px solid var(--blue-500);
  border-radius: var(--radius-sm);
  font-weight: 900;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}

.button--dark {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.button--light {
  background: transparent;
  color: var(--blue-700);
}

.button--light:hover {
  background: var(--white);
}

.button--outline {
  background: transparent;
  border-color: var(--blue-500);
  color: var(--blue-700);
}

.button--outline:hover {
  background: var(--white);
}

.button--whatsapp {
  background: var(--whatsapp-green);
  color: var(--white);
  border: 2px solid var(--whatsapp-green);
}

.button--whatsapp:hover,
.button--whatsapp:focus-visible {
  background: var(--whatsapp-green-dark);
  border-color: var(--whatsapp-green-dark);
  transform: translateY(-1px);
}

.button svg {
  flex-shrink: 0;
}

.hero__trust-band {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  margin-top: 1.6rem;
}

.hero__trust-band span {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--ink-soft);
  letter-spacing: 0.03em;
}

.hero__usp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1.1rem 0 1.5rem;
}

.usp-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.75rem;
  background: var(--blue-500);
  color: var(--white);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.usp-chip--gold {
  background: var(--gold);
}

.hero__media {
  margin: 0;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: var(--white);
  box-shadow: var(--shadow);
  transform: rotate(-1deg);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.map-frame {
  display: block;
  width: 100%;
  border: 0;
}

.location-card__secondary-note {
  margin: 0.5rem 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.hero__media:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.hero__media img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero__media picture {
  display: block;
}

.hero__media-caption {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.hero__media-caption span {
  padding: 0.65rem 0.5rem;
  border-radius: var(--radius-sm);
  background: var(--blue-50);
  color: var(--blue-700);
  text-align: center;
  font-size: 0.82rem;
  font-weight: 900;
}

.service-strip {
  border-top: 1px solid var(--section-divider);
  border-bottom: 1px solid var(--section-divider);
  background: var(--paper);
  box-shadow: inset 0 1px 0 rgba(255, 255, 252, 0.62);
}

.service-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-strip article {
  position: relative;
  min-height: 132px;
  padding: 1.65rem 1.75rem;
  border-left: 1px solid var(--line);
  overflow: hidden;
}

.service-strip article:first-child {
  border-left: 0;
}

.service-strip article::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 520ms cubic-bezier(0.4, 0, 0.2, 1);
}

.service-strip article:hover::after {
  transform: scaleX(1);
}

.service-strip__tagline {
  text-align: center;
  padding: 0.9rem 1rem;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}

.service-strip span {
  display: block;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.service-strip h2 {
  margin: 0.45rem 0 0.25rem;
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-strip p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.35;
}

.section {
  position: relative;
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  border-top: 1px solid var(--section-divider);
  background: var(--paper);
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(100% - 40px, 1280px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(21, 101, 192, 0.28), rgba(201, 147, 58, 0.22), transparent);
  transform: translateX(-50%);
  pointer-events: none;
}

.intro__grid,
.trust__grid,
.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.intro__text p:last-child,
.contact__copy p {
  max-width: 670px;
  margin: 1.2rem 0 0;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.intro__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-self: center;
}

.intro__stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.2rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.intro__stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--blue-700);
  line-height: 1.1;
}

.intro__stat-label {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Clean Card Section */
.clean-card-section {
  background: linear-gradient(140deg, var(--gold-soft), var(--paper));
}

.clean-card-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.clean-card-section__list {
  list-style: none;
  margin: 1.4rem 0 1.6rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.clean-card-section__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}

.clean-card-section__list .inline-icon {
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin-top: 0.15em;
  background: var(--gold);
  color: var(--white);
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 900;
}

.clean-card-section__list li svg {
  color: var(--gold);
  stroke-width: 2.5;
}

.clean-card-section__note {
  margin: 0 0 1.6rem;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.payment-note {
  margin: 0 0 1.6rem;
  padding: 0.9rem 1rem;
  border-left: 3px solid var(--blue-500);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 252, 0.72);
  color: var(--ink);
}

.payment-note strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--blue-700);
}

.payment-note p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

.clean-card-visual {
  display: flex;
  justify-content: center;
}

.clean-card-mock {
  width: 100%;
  max-width: 340px;
  padding: clamp(1.8rem, 4vw, 2.5rem);
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  border-radius: var(--radius-lg);
  border: 3px solid var(--gold);
  box-shadow: 0 24px 60px rgba(23, 63, 112, 0.28);
  color: var(--white);
}

.clean-card-mock__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.72;
}

.clean-card-mock__name {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
}

.clean-card-mock__sub {
  margin: 0 0 1.4rem;
  font-size: 0.82rem;
  opacity: 0.8;
}

.clean-card-mock__badge {
  display: inline-flex;
  padding: 0.45rem 0.85rem;
  background: var(--gold);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.intro h2,
.section-heading h2,
.trust h2,
.contact h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
}

.clean-card,
.quote-card,
.location-card,
.service-card,
.map-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.service-card,
.location-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.location-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue-200);
  box-shadow: var(--shadow-lift);
}

.clean-card {
  padding: clamp(1.6rem, 4vw, 2.35rem);
  border-color: #efd49d;
  background:
    linear-gradient(140deg, rgba(255, 246, 228, 0.92), rgba(255, 255, 252, 0.96)),
    var(--white);
}

.clean-card__kicker,
.location-card__badge {
  display: inline-flex;
  margin: 0;
  padding: 0.45rem 0.65rem;
  border-radius: var(--radius-sm);
  background: var(--blue-50);
  color: var(--blue-700);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.location-card__logo {
  display: block;
  width: min(160px, 60%);
  height: auto;
  margin: 1rem 0 0.95rem;
  object-fit: contain;
}

.clean-card h3 {
  margin: 1.1rem 0 0.8rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.08;
}

.clean-card p,
.clean-card small {
  color: var(--ink-soft);
}

.clean-card p {
  margin: 0 0 1.2rem;
  font-size: 1.08rem;
}

.section-heading {
  margin-bottom: clamp(2rem, 4vw, 3.3rem);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-card {
  min-height: 244px;
  padding: 1.55rem;
}

.service-card__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 1.3rem;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--blue-500);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}

.service-card__icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.75;
}

.service-card h3,
.location-card h3 {
  margin: 0 0 0.65rem;
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1.18;
}

.service-card p,
.location-card address,
.location-card__facts,
.quote-card p {
  color: var(--ink-soft);
}

.service-card p {
  margin: 0;
}

.locations {
  background: linear-gradient(180deg, var(--blue-25), var(--paper));
}

.locations__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.location-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 500px;
  padding: clamp(1.45rem, 3vw, 2rem);
}

.location-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--blue-500), var(--gold));
}

[data-branch="n-markos"].location-card::before {
  background: linear-gradient(90deg, var(--gold), var(--blue-500));
}

.location-card h3 {
  margin-top: 1.3rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.75rem);
}

.location-card address {
  margin: 0.35rem 0 1.2rem;
  font-size: 1.1rem;
  font-weight: 800;
}

.location-card__facts {
  display: grid;
  gap: 0.65rem;
  margin-top: auto;
}

.location-card__facts a,
.location-card__facts span {
  display: block;
  padding: 0.78rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--blue-25);
  font-weight: 800;
}

.trust {
  background: var(--black);
  color: var(--white);
}

.trust .eyebrow,
.trust h2 {
  color: var(--white);
}

.quote-card {
  padding: clamp(1.5rem, 4vw, 2.2rem);
  background: var(--quote-card-bg);
  border-color: var(--quote-card-border);
  box-shadow: none;
}

.quote-card blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.14;
}

.quote-card p {
  margin: 1rem 0 0;
  color: var(--quote-card-text);
}

.map-card {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  border: 0;
  background: var(--blue-50);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
}

.contact-maps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-self: stretch;
}

.contact-maps .map-card,
.contact-maps .map-card iframe {
  min-height: 460px;
}

.map-card__caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: 1rem;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  background: var(--map-overlay-bg);
  box-shadow: var(--shadow-soft);
  color: var(--ink);
}

.map-card__caption a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  color: var(--blue-700);
  font-weight: 900;
}

.map-consent-placeholder {
  display: grid;
  min-height: inherit;
  place-content: center;
  justify-items: center;
  gap: 0.4rem;
  padding: 1.25rem;
  background: var(--blue-50);
  color: var(--ink);
  text-align: center;
}

.location-card__map .map-consent-placeholder {
  min-height: 180px;
}

.map-card .map-consent-placeholder {
  min-height: 460px;
}

.map-consent-placeholder p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.map-consent-placeholder__button {
  min-height: 40px;
  margin-top: 0.4rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--blue-500);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--blue-700);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
}

.map-consent-placeholder__button:hover {
  background: var(--blue-50);
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  box-shadow: var(--shadow-soft);
  align-self: stretch;
}

.contact-form-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--ink);
  line-height: 1.08;
}

.contact-form-card > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.55;
}

.contact-page {
  padding-top: clamp(3rem, 8vw, 5rem);
}

.contact-page__container {
  max-width: 720px;
}

.contact-page__title {
  margin: 0.4rem 0 0.75rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.08;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.contact-page__lead {
  margin: 0 0 2rem;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.contact-page__whatsapp {
  width: 100%;
  justify-content: center;
  margin-bottom: 2rem;
}

.contact-page__phones {
  margin-bottom: 2rem;
}

.contact-page__form-wrap {
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}

.contact-page__form-title {
  margin: 0 0 1.25rem;
  color: var(--ink);
  font-size: 1.1rem;
}

.contact-page__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field label {
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 700;
}

.field-control {
  width: 100%;
  padding: 0.72rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
}

textarea.field-control {
  resize: vertical;
}

.contact-page__submit {
  align-self: flex-start;
}

.form-note,
.form-status {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.trust__support-text {
  max-width: 52ch;
  margin: 1rem 0 1.5rem;
  color: var(--blue-100);
}

.contact-phones--spaced {
  margin-top: 1rem;
}

.contact-phones {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.contact-phones a {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.contact-phones a:hover {
  color: var(--blue-500);
}

.footer {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.footer__grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.6rem 0;
}

.footer p {
  margin: 1rem 0 0;
  color: var(--ink-soft);
}

.footer__links {
  display: flex;
  gap: 1.3rem;
  font-weight: 900;
}

.footer__bottom {
  border-top: 1px solid var(--line);
  padding: 1rem 20px;
  color: var(--ink-soft);
  text-align: center;
}

.reveal,
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.legal-page {
  min-height: 70vh;
  padding: clamp(3rem, 7vw, 5rem) 0;
  background: var(--paper);
}

.legal-page .container {
  width: min(100% - 40px, 820px);
}

.legal-page h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.legal-page h2 {
  margin: 2rem 0 0.45rem;
  color: var(--ink);
  font-size: 1.15rem;
}

.legal-page p,
.legal-page address,
.legal-page li {
  color: var(--ink-soft);
}

.legal-page a {
  color: var(--blue-700);
  font-weight: 800;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.legal-notice,
.legal-card {
  margin: 1.5rem 0;
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--blue-50);
}

.back-link {
  display: inline-flex;
  margin-bottom: 2rem;
  color: var(--blue-700);
  font-weight: 900;
}

.cookie-notice {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  width: min(calc(100% - 2rem), 700px);
  max-height: min(78vh, 520px);
  padding: 1rem;
  border: 1px solid rgba(22, 34, 58, 0.14);
  border-radius: var(--radius);
  background: rgba(251, 253, 255, 0.97);
  box-shadow: 0 18px 45px rgba(22, 34, 58, 0.18);
  backdrop-filter: blur(14px);
  overflow: auto;
  transition: opacity 180ms ease, transform 180ms ease;
}

.cookie-notice.is-hidden {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

.cookie-notice__eyebrow {
  margin: 0 0 0.2rem;
  color: var(--blue-700);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookie-notice h2 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  line-height: 1.2;
}

.cookie-notice p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.45;
}

.cookie-notice a {
  display: inline-flex;
  margin-top: 0.45rem;
  color: var(--blue-700);
  font-size: 0.9rem;
  font-weight: 900;
}

.cookie-notice__actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.cookie-notice__button {
  min-height: 42px;
  padding: 0 0.85rem;
  border: 2px solid var(--blue-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--blue-700);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 900;
  cursor: pointer;
}

.cookie-notice__button--primary {
  border-color: var(--blue-500);
  background: var(--blue-500);
  color: var(--white);
}

.cookie-notice__button:hover {
  transform: translateY(-1px);
}

@media (max-width: 1050px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav__links {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding-bottom: 0.85rem;
    font-size: 0.95rem;
    min-width: 0;
    max-width: 100%;
  }

  .hero__surface,
  .intro__grid,
  .trust__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .hero__surface {
    min-height: auto;
  }

  .hero__media {
    max-width: 680px;
  }

  .service-strip__grid,
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro__stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1280px);
  }

  .topbar {
    min-height: 58px;
    flex-direction: column;
    gap: 0.2rem;
    letter-spacing: 0.14em;
    font-size: 0.68rem;
  }

  .nav {
    min-height: 94px;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.75rem;
    padding: 0.7rem 0 0.85rem;
  }

  .nav__links {
    grid-column: 1;
    grid-row: auto;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem 0.5rem;
    width: 100%;
    max-width: 100%;
    font-size: 0.74rem;
    padding-bottom: 0;
  }

  .nav__links a {
    min-height: 32px;
  }

  body.has-js .nav__search-btn {
    min-height: 32px;
    padding: 0.24rem 0.5rem;
    font-size: 0.78rem;
  }

  .brand {
    font-size: 1rem;
    justify-self: center;
  }

  .brand__mark {
    width: 30px;
    height: 30px;
  }

  .brand__logo {
    width: 176px;
    max-height: 42px;
  }

  .nav__call {
    display: none;
  }

  .hero__surface {
    padding: 2.05rem 0.95rem 2.2rem;
  }

  .hero__surface::before {
    inset: 1rem;
  }

  .hero__media {
    transform: none;
  }

  .hero__media-caption {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(1.58rem, 6.8vw, 2.12rem);
  }

  .hero__lead {
    margin-top: 1rem;
    font-size: 0.96rem;
  }

  .hero__usp-chips {
    gap: 0.35rem;
    margin-bottom: 1.1rem;
  }

  .usp-chip {
    padding: 0.28rem 0.58rem;
    font-size: 0.74rem;
  }

  .button {
    width: 100%;
  }

  .hero__actions .button {
    padding-inline: 0.75rem;
  }

  .service-strip__grid,
  .services__grid,
  .locations__grid {
    grid-template-columns: 1fr;
  }

  .service-strip article {
    min-height: auto;
    padding: 1.25rem;
  }

  .section {
    padding: 3.5rem 0;
  }

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

  .map-card,
  .map-card iframe {
    min-height: 420px;
  }

  .map-card__caption {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer__grid {
    flex-direction: column;
  }

  .footer__links {
    flex-wrap: wrap;
  }

  .cookie-notice {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    grid-template-columns: 1fr;
    width: auto;
    max-height: min(52vh, 390px);
    gap: 0.75rem;
  }

  .cookie-notice__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-notice__button {
    width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  body {
    padding-bottom: 80px;
  }
}

@media (max-width: 720px) {
  .contact-maps {
    grid-template-columns: 1fr;
  }
}

/* Trust Stats */
.trust__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.trust__stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.trust__stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}

.trust__stat-label {
  font-size: 0.78rem;
  font-weight: 800;
  color: rgba(255, 255, 252, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Location Map */
.location-card__map {
  margin: 1rem 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
}

.location-card__map iframe {
  display: block;
  width: 100%;
}

/* Sticky Call Bar */
.sticky-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0.6rem 0.75rem;
  padding-bottom: calc(0.6rem + env(safe-area-inset-bottom));
  background: var(--black);
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 240ms ease, transform 240ms ease;
}

.sticky-call-bar.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sticky-call-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 52px;
  border-radius: var(--radius-sm);
  background: var(--blue-500);
  color: var(--white);
  font-weight: 900;
  font-size: 0.9rem;
}

.sticky-call-bar__btn--outline {
  background: transparent;
  border: 2px solid var(--blue-200);
  color: var(--blue-200);
}

@media (max-width: 720px) {
  .sticky-call-bar {
    display: flex;
  }
}

@media (max-width: 360px) {
  .container {
    width: min(100% - 20px, 1280px);
  }

  .brand {
    font-size: 0.92rem;
  }

  .nav__call {
    padding-inline: 0.65rem;
  }

  .nav__links {
    gap: 0.32rem;
    font-size: 0.7rem;
  }

  body.has-js .nav__search-btn span {
    display: none;
  }

  .intro__stats {
    grid-template-columns: 1fr;
  }

  .intro__stat {
    text-align: left;
  }

  .intro__stat-number {
    font-size: 1.5rem;
  }

  .legal-page h1 {
    font-size: 2rem;
  }

  .sticky-call-bar {
    padding-inline: 0.45rem;
    gap: 0.4rem;
  }

  .sticky-call-bar__btn {
    font-size: 0.78rem;
    min-width: 0;
  }

  .cookie-notice__actions {
    grid-template-columns: 1fr;
  }

  .cookie-notice__button {
    width: 100%;
    white-space: normal;
  }
}

@media (max-width: 430px) {
  .cookie-notice__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-notice__button {
    width: 100%;
    white-space: normal;
  }
}

/* Responsive overrides for new sections */
@media (max-width: 1050px) {
  .clean-card-section__grid {
    grid-template-columns: 1fr;
  }

  .intro__stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust__stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .intro__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.6rem;
  }

  .intro__stat {
    padding: 0.9rem 0.6rem;
  }

  .intro__stat-number {
    font-size: 1.4rem;
  }

  .intro__stat-label {
    overflow-wrap: anywhere;
  }

  .trust__stats {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .clean-card-mock {
    max-width: 100%;
  }
}

@media (max-width: 360px) {
  .intro__stats {
    grid-template-columns: 1fr;
  }
}

/* Pickup Section */
.pickup-section {
  background: linear-gradient(160deg, var(--blue-50), var(--paper));
}

.pickup-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.pickup-section__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.03;
  max-width: 760px;
  margin: 0;
  color: var(--ink);
}

.pickup-section__copy > p {
  max-width: 580px;
  margin: 1.2rem 0 0;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.pickup-section__note {
  margin-top: 0.75rem !important;
  font-size: 0.88rem !important;
  color: var(--ink-soft);
  font-style: italic;
}

.pickup-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.pickup-section__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pickup-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.pickup-item__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--blue-500);
}

.pickup-item__icon svg {
  width: 20px;
  height: 20px;
}

.pickup-item strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1.05rem;
  color: var(--ink);
}

.pickup-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.45;
}

@media (max-width: 1050px) {
  .pickup-section__grid {
    grid-template-columns: 1fr;
  }
}

/* FAQ Section */
.faq-section {
  background: var(--paper);
}

.faq__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 0.75rem;
}

.faq-item {
  align-self: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.faq-item[open] {
  border-color: var(--blue-200);
  box-shadow: 0 18px 54px rgba(21, 101, 192, 0.14);
  transform: translateY(-2px);
}

.faq-item__question {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  font-weight: 800;
  font-size: 1rem;
  color: var(--ink);
  cursor: pointer;
  user-select: none;
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__question::after {
  content: "+";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--blue-500);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 0;
  padding-top: 1px;
  transition: transform 260ms ease, background 220ms ease, color 220ms ease;
}

.faq-item[open] .faq-item__question::after {
  content: "−";
  background: var(--blue-500);
  color: var(--white);
  transform: rotate(180deg);
}

.faq-item__answer {
  margin: 0;
  max-height: 0;
  overflow: hidden;
  padding: 0 1.25rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(-4px);
  transition:
    max-height 360ms cubic-bezier(0.22, 1, 0.36, 1),
    padding 360ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease,
    transform 300ms ease;
}

.faq-item[open] .faq-item__answer {
  padding: 0 1.25rem 1.1rem;
  opacity: 1;
  transform: translateY(0);
}

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

/* Reviews Section */
.reviews-section {
  background: linear-gradient(180deg, var(--blue-25), var(--paper));
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.review-card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.4rem, 3vw, 1.9rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}

.review-card__stars {
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.review-card blockquote {
  margin: 0 0 auto;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.35;
  color: var(--ink);
}

.review-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.2rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.review-card__author {
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--ink);
}

.review-card__source {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

@media (max-width: 1050px) {
  .reviews__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

/* ============================================================
   Express-Reinigung Section
   ============================================================ */
.express-section {
  background: var(--ink);
  color: var(--white);
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.express-section,
.usp-cards-section,
.business-section,
.trust {
  box-shadow:
    inset 0 1px 0 var(--section-dark-divider),
    inset 0 -1px 0 rgba(5, 7, 11, 0.18);
}

.express-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.express-section .eyebrow {
  color: var(--gold);
}

.express-section h2 {
  color: var(--white);
}

.express-section p {
  color: var(--blue-100);
  max-width: 52ch;
}

.express-section__number {
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 9rem);
  font-weight: 700;
  line-height: 1;
  color: var(--blue-500);
  opacity: 0.45;
  user-select: none;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .express-section__grid {
    grid-template-columns: 1fr;
  }
  .express-section__number {
    display: none;
  }
}

/* ============================================================
   USP Cards — Warum Markos?
   ============================================================ */
.usp-cards-section {
  background: linear-gradient(150deg, var(--ink) 0%, var(--blue-700) 100%);
}

.usp-cards-section .eyebrow {
  color: var(--gold);
}

.usp-cards-section h2 {
  color: var(--white);
}

.usp-cards__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.usp-card {
  background: var(--white-overlay-06);
  border: 1px solid var(--white-overlay-12);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
}

.usp-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--gold-overlay-25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--gold);
}

.usp-card__icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.usp-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 0.45rem;
  color: var(--white);
}

.usp-card p {
  font-size: 0.9rem;
  color: var(--quote-card-text);
  margin: 0;
  line-height: 1.55;
}

@media (max-width: 640px) {
  .usp-cards__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Gewerbekunden / Business Section
   ============================================================ */
.business-section {
  background: linear-gradient(160deg, var(--blue-700) 0%, var(--ink) 100%);
  color: var(--white);
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.business-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(2rem, 6vw, 4rem);
  align-items: start;
}

.business-section .eyebrow {
  color: var(--gold);
}

.business-section h2 {
  color: var(--white);
}

.business-section p {
  color: var(--blue-100);
  max-width: 52ch;
}

.business-section__list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.business-section__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.95rem;
  color: var(--blue-100);
}

.business-section__list li::before {
  content: "→";
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.1em;
  font-weight: 700;
}

.business-ref {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(255, 255, 252, 0.14), rgba(255, 255, 252, 0.04)),
    rgba(255, 255, 252, 0.06);
  border: 1px solid rgba(255, 255, 252, 0.22);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 2.5rem;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 26px 80px rgba(5, 7, 11, 0.28);
}

.business-ref::before {
  content: "";
  position: absolute;
  inset: 1rem;
  z-index: -1;
  border: 1px solid rgba(255, 255, 252, 0.16);
  border-radius: calc(var(--radius-lg) - 4px);
  background:
    linear-gradient(90deg, rgba(255, 255, 252, 0.09) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 252, 0.07) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 36%, #000 100%);
}

.business-ref::after {
  content: "B2B";
  position: absolute;
  top: 1.35rem;
  right: 1.45rem;
  z-index: -1;
  color: rgba(255, 255, 252, 0.08);
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7.5rem);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: 0;
}

.business-ref .eyebrow {
  position: relative;
  z-index: 1;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.business-ref p {
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
  color: var(--blue-100);
  margin: 0;
  line-height: 1.6;
  font-style: italic;
}

.business-ref strong {
  color: var(--white);
  font-style: normal;
}

.business-ref__clients {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.business-ref__clients span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(201, 147, 58, 0.5);
  border-radius: var(--radius-sm);
  background: rgba(201, 147, 58, 0.14);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 900;
}

@media (max-width: 768px) {
  .business-section__grid {
    grid-template-columns: 1fr;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   TOP CLEAN CARD Notice — used on n-markos.html
   ============================================================ */
.top-clean-notice {
  background: var(--gold-soft);
  border: 1px solid var(--gold);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 2rem auto;
  max-width: 1100px;
}

.top-clean-notice a {
  color: var(--gold);
  text-decoration: underline;
  font-weight: 700;
}

/* ============================================================
   [data-theme="n-markos"] — Witteringstraße + Heisingen
   Light sister palette: off-white, clear blue and restrained brass
   ============================================================ */
[data-theme="n-markos"] {
  --ink: oklch(27% 0.065 252);
  --ink-soft: oklch(45% 0.055 252);
  --black: oklch(22% 0.065 252);
  --blue-25: oklch(97% 0.018 245);
  --blue-50: oklch(94% 0.032 245);
  --blue-100: oklch(89% 0.045 245);
  --blue-200: oklch(80% 0.075 247);
  --blue-500: oklch(58% 0.145 250);
  --blue-700: oklch(38% 0.12 252);
  --gold: oklch(64% 0.105 78);
  --gold-soft: oklch(96% 0.035 84);
  --nm-brass-text: oklch(55% 0.105 78);
  --paper: oklch(98% 0.01 245);
  --white: oklch(99.5% 0.004 245);
  --line: oklch(86% 0.045 245);
  --shadow: 0 18px 70px oklch(38% 0.12 252 / 0.13);
  --shadow-soft: 0 10px 34px oklch(38% 0.12 252 / 0.08);
  --shadow-lift: 0 26px 80px oklch(38% 0.12 252 / 0.17);
  --hero-radial-blue: transparent;
  --hero-radial-gold: transparent;
  --hero-base-a: oklch(98% 0.01 245 / 0.98);
  --hero-base-b: oklch(95% 0.025 245 / 0.92);
  --hero-stripe: oklch(58% 0.145 250 / 0.045);
  --header-bg: oklch(98% 0.01 245 / 0.98);
  --header-border: oklch(64% 0.105 78 / 0.58);
  --header-shadow: 0 4px 24px oklch(38% 0.12 252 / 0.11);
  --quote-card-bg: oklch(25% 0.075 252);
  --quote-card-border: oklch(89% 0.045 245 / 0.18);
  --quote-card-text: oklch(89% 0.045 245);
  --hero-frame: oklch(58% 0.145 250 / 0.12);
  --map-overlay-bg: oklch(99.5% 0.004 245 / 0.95);
  --ink-overlay-92: oklch(22% 0.065 252 / 0.94);
  --gold-overlay-25: oklch(64% 0.105 78 / 0.24);
}

[data-theme="n-markos"] body {
  background: var(--paper);
}

[data-theme="n-markos"] .topbar {
  background: var(--black);
  color: var(--white);
}

[data-theme="n-markos"] .topbar a {
  color: var(--gold);
}

[data-theme="n-markos"] .site-header {
  background: var(--header-bg);
  border-bottom-color: var(--header-border);
}

[data-theme="n-markos"] .nav a,
[data-theme="n-markos"] .brand span {
  color: var(--ink);
}

[data-theme="n-markos"] .nav a:hover {
  border-color: var(--gold);
}

[data-theme="n-markos"] .nav__call {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

[data-theme="n-markos"] .hero {
  background: var(--paper);
  padding-top: clamp(1.5rem, 4vw, 3rem);
  padding-bottom: clamp(1.5rem, 4vw, 3rem);
}

[data-theme="n-markos"] .hero__surface {
  background:
    linear-gradient(115deg, var(--hero-base-a), var(--hero-base-b)),
    repeating-linear-gradient(135deg, transparent 0 16px, var(--hero-stripe) 16px 18px);
}

[data-theme="n-markos"] .hero__copy h1 {
  color: var(--ink);
}

[data-theme="n-markos"] .hero__copy .hero__lead {
  color: var(--ink-soft);
}

[data-theme="n-markos"] .hero__copy .eyebrow,
[data-theme="n-markos"] .eyebrow {
  color: var(--nm-brass-text);
}

[data-theme="n-markos"] .hero__usp-chips .usp-chip {
  background: var(--blue-50);
  color: var(--blue-700);
  border: 1px solid var(--blue-200);
}

[data-theme="n-markos"] .hero__usp-chips .usp-chip:nth-child(3) {
  background: var(--gold-soft);
  color: var(--ink);
  border-color: var(--gold);
}

[data-theme="n-markos"] .section {
  background: var(--paper);
}

[data-theme="n-markos"] .locations,
[data-theme="n-markos"] .contact {
  background: var(--blue-25);
}

[data-theme="n-markos"] .location-card,
[data-theme="n-markos"] .pickup-item,
[data-theme="n-markos"] .faq-item {
  background: var(--white);
}

[data-theme="n-markos"] .location-card::before {
  background: linear-gradient(90deg, var(--blue-500), var(--gold));
}

[data-theme="n-markos"] .button--dark {
  background: var(--black);
  border-color: var(--black);
}

[data-theme="n-markos"] .button--light,
[data-theme="n-markos"] .button--outline {
  color: var(--blue-700);
  border-color: var(--blue-500);
}

[data-theme="n-markos"] .service-strip {
  background: var(--white);
}

[data-theme="n-markos"] .service-strip article::after {
  background: linear-gradient(90deg, var(--blue-500), var(--gold));
}

[data-theme="n-markos"] .express-section,
[data-theme="n-markos"] .trust {
  background: var(--black);
}

[data-theme="n-markos"] .express-section p,
[data-theme="n-markos"] .trust p {
  color: var(--blue-100);
}

[data-theme="n-markos"] .express-section .eyebrow,
[data-theme="n-markos"] .trust .eyebrow {
  color: var(--gold);
}

[data-theme="n-markos"] .express-section__number {
  color: var(--gold);
  opacity: 0.58;
}

[data-theme="n-markos"] .pickup-section {
  background: linear-gradient(160deg, var(--blue-50), var(--paper));
}

[data-theme="n-markos"] .pickup-item__icon {
  background: var(--blue-50);
  color: var(--blue-700);
}

[data-theme="n-markos"] .top-clean-notice {
  background: var(--gold-soft);
  border: 1px solid var(--gold);
}

[data-theme="n-markos"] .top-clean-notice a {
  color: var(--blue-700);
}

[data-theme="n-markos"] .faq-section {
  background: var(--paper);
}

[data-theme="n-markos"] .faq-item[open] {
  border-color: var(--blue-200);
  box-shadow: 0 18px 54px oklch(38% 0.12 252 / 0.13);
}

[data-theme="n-markos"] .faq-item__question::after {
  background: var(--blue-50);
  color: var(--blue-700);
}

[data-theme="n-markos"] .faq-item[open] .faq-item__question::after {
  background: var(--blue-700);
  color: var(--white);
}

[data-theme="n-markos"] .footer {
  background: var(--black);
  color: var(--blue-100);
}

[data-theme="n-markos"] .footer__brand span,
[data-theme="n-markos"] .footer__links a,
[data-theme="n-markos"] .footer p,
[data-theme="n-markos"] .footer__bottom {
  color: var(--blue-100);
}

[data-theme="n-markos"] .footer__links a:hover {
  border-color: var(--gold);
}

[data-theme="n-markos"] .sticky-call-bar {
  background: var(--black);
}

[data-theme="n-markos"] .sticky-call-bar__btn {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

[data-theme="n-markos"] .sticky-call-bar__btn--outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

/* ============================================================
   Location service chips (per-standort Leistungen)
   ============================================================ */
.location-card__chips {
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.location-card__chips li {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.62rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--blue-25);
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.location-card__chips li.is-accent {
  background: var(--gold-soft);
  border-color: var(--gold);
  color: var(--ink);
}

.location-card__facts span.is-muted {
  background: transparent;
  border-style: dashed;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 0.85rem;
}

/* ============================================================
   Site search — trigger button + overlay (progressive enhancement)
   ============================================================ */
.nav__search-btn {
  display: none;
}

body.has-js .nav__search-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 36px;
  padding: 0.32rem 0.78rem;
  border: 2px solid var(--blue-200);
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 800;
  font-size: 0.92rem;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.nav__search-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.nav__search-btn:hover {
  border-color: var(--blue-500);
  background: var(--blue-25);
}

[data-theme="n-markos"] .nav__search-btn {
  border-color: var(--gold);
  color: var(--ink);
}

[data-theme="n-markos"] .nav__search-btn:hover {
  border-color: var(--gold);
  background: var(--gold-soft);
}

.site-search {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  padding: clamp(1rem, 6vh, 5rem) 1rem 1rem;
  background: rgba(5, 7, 11, 0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.site-search.is-open {
  display: block;
}

.site-search__panel {
  width: min(100%, 640px);
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 90px rgba(5, 7, 11, 0.4);
  overflow: hidden;
}

.site-search__bar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
}

.site-search__bar svg {
  width: 20px;
  height: 20px;
  color: var(--blue-500);
  flex-shrink: 0;
}

.site-search__input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 1.05rem;
  color: var(--ink);
  padding: 0.4rem 0;
}

.site-search__input::placeholder {
  color: var(--ink-soft);
}

.site-search__input:focus {
  outline: none;
}

.site-search__close {
  border: 0;
  background: var(--blue-50);
  color: var(--blue-700);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  font-size: 0.78rem;
  padding: 0.4rem 0.65rem;
}

.site-search__close:hover {
  background: var(--blue-100);
}

.site-search__results {
  list-style: none;
  margin: 0;
  padding: 0.4rem;
  max-height: min(60vh, 480px);
  overflow-y: auto;
}

.search-result {
  display: block;
  padding: 0.7rem 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--ink);
  cursor: pointer;
}

.search-result:hover,
.search-result.is-active {
  background: var(--blue-25);
}

.search-result__cat {
  display: block;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 0.15rem;
}

.search-result__title {
  font-weight: 800;
}

.search-result__desc {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-top: 0.12rem;
}

.search-result mark {
  background: var(--gold-soft);
  color: var(--ink);
  padding: 0 1px;
  border-radius: 2px;
}

.site-search__empty,
.site-search__hint {
  padding: 1rem 1.1rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.site-search__suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0 1.1rem 1.1rem;
}

.site-search__suggestions button {
  border: 1px solid var(--line);
  background: var(--blue-25);
  color: var(--blue-700);
  border-radius: 999px;
  padding: 0.32rem 0.72rem;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.site-search__suggestions button:hover {
  border-color: var(--blue-500);
}

/* Final mobile guards: these live after the search styles so they win the cascade. */
@media (max-width: 720px) {
  .topbar {
    overflow: hidden;
  }

  .topbar p,
  .topbar a {
    max-width: 100%;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .nav {
    width: min(100% - 28px, 1280px);
    min-width: 0;
    overflow: hidden;
  }

  .brand,
  .brand picture {
    max-width: 100%;
    min-width: 0;
  }

  .brand__logo {
    width: min(176px, 70vw);
  }

  .brand__logo--nikos {
    width: min(178px, 72vw);
    max-height: 46px;
  }

  .nav__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.32rem 0.42rem;
    min-width: 0;
    overflow: hidden;
  }

  .nav__links a {
    flex: 0 1 auto;
    min-width: 0;
    max-width: 100%;
    min-height: 30px;
    font-size: 0.72rem;
    line-height: 1.1;
    overflow-wrap: anywhere;
  }

  body.has-js .nav__search-btn {
    min-height: 30px;
    padding: 0.22rem 0.46rem;
    font-size: 0.72rem;
    line-height: 1;
  }

  body.has-js .nav__search-btn span {
    display: none;
  }

  .hero__surface {
    width: min(100% - 28px, 1280px);
    max-width: calc(100% - 28px);
    min-width: 0;
    overflow: hidden;
    padding: 1.8rem 0.86rem 2rem;
  }

  .hero__copy,
  .hero__media,
  .hero h1,
  .hero__lead,
  .hero__actions,
  .hero__usp-chips {
    max-width: 100%;
    min-width: 0;
  }

  .hero h1 {
    font-size: clamp(1.45rem, 6vw, 1.88rem);
    line-height: 1.08;
    hyphens: none;
    overflow-wrap: normal;
    text-wrap: normal;
  }

  .eyebrow {
    font-size: 0.68rem;
    line-height: 1.35;
    letter-spacing: 0.16em;
  }

  .hero__lead {
    font-size: 0.92rem;
    line-height: 1.42;
  }

  .hero__usp-chips {
    gap: 0.32rem;
  }

  .usp-chip {
    max-width: 100%;
    white-space: normal;
  }

  .cookie-notice {
    max-width: calc(100% - 1.5rem);
  }
}

@media (max-width: 560px) {
  .nav__links {
    width: min(100%, 310px);
    gap: 0.28rem 0.38rem;
  }

  body.has-js .nav__search-btn {
    width: 34px;
    justify-content: center;
    padding-inline: 0;
  }

  .hero__copy,
  .hero h1,
  .hero__lead,
  .hero__usp-chips,
  .hero__actions {
    max-width: 310px;
  }

  .hero h1 {
    font-size: clamp(1.38rem, 5.7vw, 1.72rem);
  }

  .hero__lead {
    font-size: 0.9rem;
  }

  .usp-chip {
    font-size: 0.68rem;
  }
}

@media (max-width: 480px) {
  body.has-js .nav__search-btn {
    width: 36px;
    justify-content: center;
    padding-inline: 0;
  }

  body.has-js .nav__search-btn span {
    display: none;
  }

  .nav__links a {
    font-size: 0.7rem;
  }
}
