/* ==========================================================================
   AS Dienstleistungen — Gebäudereinigung Gladbeck  (v3: brand kept, modernised)
   Navy #003355 · Lime #aeca00 · Sky #97d0e5 · Montserrat
   ========================================================================== */

:root {
  --navy:      #003355;
  --navy-deep: #02243c;
  --navy-soft: #0d4a74;
  --sky:       #97d0e5;
  --sky-deep:  #42a9ce;
  --lime:      #aeca00;
  --lime-dark: #93ab00;
  --lime-soft: #f3f7d6;
  --text:      #3b4a55;
  --muted:     #6b7a86;
  --mist:      #f3f7fa;
  --line:      #e2e9ef;
  --white:     #ffffff;

  --font: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --container: 1240px;
  --r: 16px;
  --shadow-sm: 0 1px 2px rgba(0, 51, 85, .06), 0 6px 18px rgba(0, 51, 85, .07);
  --shadow-md: 0 4px 12px rgba(0, 51, 85, .08), 0 20px 48px rgba(0, 51, 85, .14);
  --shadow-lg: 0 24px 70px rgba(0, 20, 40, .35);
  --header-h: 76px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; scroll-padding-top: var(--header-h); }
body { font-family: var(--font); font-size: 1rem; line-height: 1.65; color: var(--text); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; }
address { font-style: normal; }
:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--lime); color: var(--navy); }

/* ── Type ──────────────────────────────────────────────────── */
h1, h2, h3, h4 { line-height: 1.15; color: var(--navy); text-wrap: balance; overflow-wrap: anywhere; letter-spacing: -.015em; }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); font-weight: 800; line-height: 1.08; }
h1 em { font-style: normal; color: var(--lime); }
.h2, .section-title { font-size: clamp(1.7rem, 3vw, 2.45rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  color: var(--lime-dark); font-size: .78rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; margin-bottom: .9rem;
}
.eyebrow::before { content: ''; width: 22px; height: 3px; border-radius: 2px; background: var(--lime); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--muted); max-width: 60ch; }
.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section-head--center { text-align: center; margin-inline: auto; }
.section-head--center .eyebrow { justify-content: center; }
.section-head .lead { margin-top: .9rem; }
.section-head--center .lead { margin-inline: auto; }

/* ── Layout ────────────────────────────────────────────────── */
.container { width: min(var(--container), 100% - 2.5rem); margin-inline: auto; }
.section { padding-block: clamp(4rem, 8vw, 6.5rem); }
.section--mist { background: var(--mist); }
.section--navy { background: var(--navy); color: var(--white); }
.center { text-align: center; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  background: var(--lime); color: var(--navy);
  font-weight: 700; font-size: 1rem; line-height: 1.2;
  padding: 1rem 1.9rem; border-radius: 100px; border: 2px solid var(--lime);
  text-decoration: none; text-align: center;
  box-shadow: 0 8px 22px rgba(174, 202, 0, .35);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.btn:hover { background: var(--lime-dark); border-color: var(--lime-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(174, 202, 0, .42); }
.btn svg { flex: none; }
.btn--navy { background: var(--navy); border-color: var(--navy); color: var(--white); box-shadow: 0 8px 22px rgba(0, 51, 85, .28); }
.btn--navy:hover { background: var(--navy-soft); border-color: var(--navy-soft); box-shadow: 0 12px 28px rgba(0, 51, 85, .34); }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, .55); box-shadow: none; }
.btn--ghost:hover { background: rgba(255, 255, 255, .12); border-color: var(--white); box-shadow: none; }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--navy); box-shadow: none; }
.btn--outline:hover { background: var(--navy); color: var(--white); box-shadow: none; }
.btn--sm { padding: .7rem 1.3rem; font-size: .92rem; }
.link-arrow { display: inline-flex; align-items: center; gap: .45rem; color: var(--navy); font-weight: 700; text-decoration: none; }
.link-arrow svg { transition: transform .2s ease; color: var(--lime-dark); }
.link-arrow:hover svg { transform: translateX(4px); }
.link-arrow--light { color: var(--white); }
.btn-row { display: flex; flex-wrap: wrap; align-items: center; gap: .9rem 1.6rem; }
.btn-row--center { justify-content: center; }

/* ── Header ────────────────────────────────────────────────── */
.site-header {
  position: absolute; top: 0; left: 0; right: 0; z-index: 60;
  padding-block: .9rem;
  background: linear-gradient(180deg, rgba(0, 25, 45, .55), rgba(0, 25, 45, 0));
  transition: background .25s ease, padding .25s ease;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-block; line-height: 0; }
.brand img { height: clamp(58px, 6.5vw, 86px); width: auto; transition: height .25s ease; }
.site-header.is-fixed {
  position: fixed; background: rgba(0, 51, 85, .96); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  padding-block: .5rem; box-shadow: 0 6px 24px rgba(0, 0, 0, .18); animation: header-in .3s ease;
}
.site-header.is-fixed .brand img { height: 50px; }
@keyframes header-in { from { transform: translateY(-100%); } to { transform: none; } }

.site-nav { display: flex; align-items: center; gap: 1.7rem; }
.site-nav a:not(.btn) {
  color: var(--white); font-weight: 600; font-size: .92rem; letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none; position: relative; padding-block: .3rem;
}
.site-nav a:not(.btn)::after { content: ''; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; border-radius: 2px; background: var(--lime); transition: width .2s ease; }
.site-nav a:not(.btn):hover::after, .site-nav a:not(.btn)[aria-current="page"]::after { width: 100%; }
.site-nav .btn { margin-left: .4rem; }

.nav-toggle { display: none; width: 46px; height: 46px; background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .25); border-radius: 12px; position: relative; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ''; position: absolute; left: 12px; right: 12px; height: 2.5px; border-radius: 2px; background: var(--white); transition: transform .25s ease, top .25s ease, background .2s ease; }
.nav-toggle span { top: 21px; }
.nav-toggle span::before { left: 0; right: 0; top: -7px; }
.nav-toggle span::after { left: 0; right: 0; top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative; color: var(--white); overflow: hidden;
  background: var(--navy) url('../images/hero.jpg?v=20260904a') center 30% / cover no-repeat;
}
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(0, 38, 64, .94) 0%, rgba(0, 51, 85, .82) 42%, rgba(0, 51, 85, .35) 100%); }
.hero::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 160px; background: linear-gradient(180deg, rgba(0, 38, 64, 0), rgba(0, 38, 64, .55)); }
.hero .container {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(2.5rem, 5vw, 5rem); align-items: center;
  min-height: 100vh; min-height: 100svh; padding-top: 110px; padding-bottom: 96px;
}
.hero h1 { color: var(--white); max-width: 14ch; }
.hero .eyebrow { color: var(--lime); }
.hero .lead { color: rgba(255, 255, 255, .86); margin-top: 1.3rem; }
.hero .btn-row { margin-top: 2rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: .6rem 1.6rem; margin-top: 2.2rem; padding-top: 1.6rem; border-top: 1px solid rgba(255, 255, 255, .2); }
.hero__trust li { display: flex; align-items: center; gap: .5rem; font-size: .88rem; font-weight: 600; color: rgba(255, 255, 255, .92); }
.hero__trust svg { color: var(--lime); flex: none; }

/* Quote card inside hero */
.quote-card { background: var(--white); color: var(--text); border-radius: var(--r); box-shadow: var(--shadow-lg); padding: clamp(1.3rem, 2.2vw, 1.8rem); }
.quote-card__head { margin-bottom: .8rem; }
.quote-card__head b { display: block; color: var(--navy); font-size: 1.12rem; font-weight: 800; line-height: 1.2; }
.quote-card__head span { font-size: .82rem; color: var(--muted); }

/* USP bar floating over hero bottom edge */
.usp-bar { position: relative; z-index: 2; margin-top: -58px; }
.usp-bar ul {
  background: var(--white); border-radius: var(--r); box-shadow: var(--shadow-md);
  display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden;
}
.usp-bar li { display: flex; align-items: center; gap: .85rem; padding: 1.15rem 1.4rem; font-size: .92rem; font-weight: 600; color: var(--navy); }
.usp-bar li + li { border-left: 1px solid var(--line); }
.usp-bar__icon { flex: none; width: 40px; height: 40px; border-radius: 12px; background: var(--lime-soft); color: var(--lime-dark); display: grid; place-items: center; }

@media (min-width: 901px) and (max-height: 840px) {
  .hero .container { padding-top: 96px; padding-bottom: 84px; }
  .hero h1 { font-size: clamp(2rem, 3.6vw, 2.9rem); }
  .hero .lead { margin-top: .9rem; font-size: 1.02rem; }
  .hero .btn-row { margin-top: 1.4rem; }
  .hero__trust { margin-top: 1.4rem; padding-top: 1.1rem; }
  .quote-card { padding: 1.2rem 1.4rem; }
  .quote-card .form-note { display: none; }
  .field textarea { min-height: 56px; }
  .quote-card .btn { padding: .8rem 1.5rem; }
}

/* ── Sub-page hero ─────────────────────────────────────────── */
.page-hero { position: relative; color: var(--white); background: var(--navy) url('../images/band.jpg?v=20260904a') center / cover no-repeat; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(0, 38, 64, .95), rgba(0, 51, 85, .72)); }
.page-hero .container { position: relative; z-index: 1; padding-top: clamp(130px, 14vw, 170px); padding-bottom: clamp(3rem, 6vw, 4.5rem); max-width: 58rem; margin-left: max(calc((100vw - var(--container)) / 2), 1.25rem); }
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); }
.page-hero .lead { color: rgba(255, 255, 255, .85); margin-top: 1rem; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: .5rem; font-size: .82rem; color: rgba(255, 255, 255, .75); margin-bottom: 1rem; }
.breadcrumb a { color: var(--white); text-decoration: none; font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }

/* ── Forms ─────────────────────────────────────────────────── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-size: .76rem; font-weight: 700; color: var(--navy); margin-bottom: .3rem; letter-spacing: .02em; }
.field input, .field textarea, .field select {
  width: 100%; font: inherit; font-size: .98rem; color: var(--navy); background: var(--mist);
  border: 1.5px solid var(--line); border-radius: 10px; padding: .62rem .85rem;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 72px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; background: var(--white); border-color: var(--lime); box-shadow: 0 0 0 4px rgba(174, 202, 0, .22); }
.field label.consent { display: flex; gap: .65rem; align-items: flex-start; font-size: .82rem; font-weight: 500; color: var(--muted); line-height: 1.45; letter-spacing: 0; margin: 0; cursor: pointer; }
.field label.consent input { width: 18px; height: 18px; margin-top: .1rem; flex: none; accent-color: var(--lime-dark); cursor: pointer; }
.consent a { color: var(--navy); font-weight: 600; }
.form-status { display: none; border-radius: 10px; padding: .8rem 1rem; font-size: .92rem; font-weight: 600; }
.form-status.is-ok { display: block; background: var(--lime-soft); color: #4d5d00; }
.form-status.is-err { display: block; background: #fde8e6; color: #8c2318; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: .78rem; color: var(--muted); }

/* ── Intro split ───────────────────────────────────────────── */
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2.5rem, 6vw, 5.5rem); align-items: center; }
.split p + p { margin-top: .9rem; }
.split .btn-row { margin-top: 1.8rem; }
.media { position: relative; }
.media img { width: 100%; border-radius: var(--r); box-shadow: var(--shadow-md); aspect-ratio: 4 / 3.2; object-fit: cover; }
.media__badge {
  position: absolute; left: -1rem; bottom: 1.6rem;
  background: var(--navy); color: var(--white); border-radius: 14px; padding: .9rem 1.2rem;
  display: flex; align-items: center; gap: .8rem; box-shadow: var(--shadow-md); max-width: 18rem;
}
.media__badge svg { color: var(--lime); flex: none; }
.media__badge b { display: block; font-size: .95rem; line-height: 1.2; }
.media__badge span { font-size: .8rem; color: rgba(255, 255, 255, .78); }
.points { display: grid; gap: .8rem; margin-top: 1.4rem; }
.points li { display: flex; gap: .7rem; align-items: flex-start; font-weight: 500; color: var(--navy); }
.points svg { flex: none; margin-top: .25rem; color: var(--lime-dark); }

/* ── Service cards ─────────────────────────────────────────── */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.service {
  display: flex; flex-direction: column; background: var(--white); border-radius: var(--r); overflow: hidden;
  box-shadow: var(--shadow-sm); text-decoration: none; color: inherit; border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
}
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service__img { aspect-ratio: 4 / 3; overflow: hidden; background: var(--mist); }
.service__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service:hover .service__img img { transform: scale(1.05); }
.service__body { padding: 1.4rem 1.5rem 1.5rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.service h3 { font-size: 1.12rem; }
.service p { font-size: .93rem; color: var(--muted); }
.service .link-arrow { margin-top: auto; padding-top: .5rem; font-size: .9rem; }

/* ── Detail rows ───────────────────────────────────────────── */
.detail { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; padding-block: clamp(2.5rem, 5vw, 4rem); }
.detail + .detail { border-top: 1px solid var(--line); }
.detail:nth-child(even) .detail__img { order: 2; }
.detail__img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--r); box-shadow: var(--shadow-md); }
.detail h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); margin-bottom: .9rem; }
.detail p + p { margin-top: .7rem; }
.checks { margin-top: 1.2rem; display: grid; gap: .55rem; }
.checks li { display: flex; gap: .65rem; align-items: flex-start; font-size: .97rem; color: var(--navy); font-weight: 500; }
.checks svg { flex: none; color: var(--lime-dark); margin-top: .3rem; }

/* ── Steps ─────────────────────────────────────────────────── */
.steps-band { position: relative; color: var(--white); background: var(--navy-deep); overflow: hidden; }
.steps-band__bg { position: absolute; inset: 0; background: url('../images/band.jpg?v=20260904a') center / cover no-repeat; opacity: .22; }
.steps-band::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(2, 36, 60, .2), rgba(2, 36, 60, .75)); }
.steps-band .container { position: relative; z-index: 1; }
.steps-band .section-head { color: var(--white); }
.steps-band .section-title { color: var(--white); }
.steps-band .lead { color: rgba(255, 255, 255, .8); }
.steps-band .eyebrow { color: var(--lime); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.step { position: relative; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .14); border-radius: var(--r); padding: 2rem 1.7rem 1.8rem; backdrop-filter: blur(6px); }
.step__num { position: absolute; top: -14px; left: 1.6rem; background: var(--lime); color: var(--navy); font-weight: 800; font-size: .85rem; padding: .3rem .7rem; border-radius: 100px; }
.step img { width: 44px; height: 44px; margin-bottom: 1rem; }
.step h3 { color: var(--white); margin-bottom: .45rem; font-size: 1.1rem; }
.step p { color: rgba(255, 255, 255, .8); font-size: .93rem; }

/* ── Why us ────────────────────────────────────────────────── */
.why { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.why li { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 1.8rem 1.6rem; transition: box-shadow .25s ease, transform .25s ease; }
.why li:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.why__icon { width: 62px; height: 62px; border-radius: 50%; background: var(--navy); display: grid; place-items: center; margin-bottom: 1.1rem; }
.why__icon img { width: 32px; height: 32px; }
.why b { display: block; color: var(--navy); font-size: 1.05rem; margin-bottom: .35rem; }
.why p { font-size: .93rem; color: var(--muted); }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq { max-width: 52rem; margin-inline: auto; display: grid; gap: .8rem; }
.faq details { background: var(--white); border: 1px solid var(--line); border-radius: 14px; transition: box-shadow .2s ease; }
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 1.3rem; color: var(--navy); font-weight: 700; font-size: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--lime-soft); color: var(--navy); display: grid; place-items: center; font-weight: 700; font-size: 1.15rem; transition: transform .25s ease, background .2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); background: var(--lime); }
.faq details > div { padding: 0 1.3rem 1.2rem; font-size: .95rem; color: var(--muted); }

/* ── Contact ───────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.info-list { display: grid; gap: 1.2rem; }
.info-list li { display: flex; gap: 1rem; align-items: flex-start; }
.info-list .why__icon { width: 50px; height: 50px; margin: 0; flex: none; }
.info-list .why__icon img { width: 24px; height: 24px; }
.info-list b { display: block; color: var(--navy); }
.info-list a { color: var(--navy); font-weight: 600; text-decoration: none; }
.info-list a:hover { text-decoration: underline; }
.info-list span { font-size: .9rem; color: var(--muted); }
.area-list { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.2rem; }
.area-list li { background: var(--mist); border: 1px solid var(--line); border-radius: 100px; padding: .4rem .95rem; font-size: .88rem; font-weight: 600; color: var(--navy); }
.area-list li.hq { background: var(--navy); border-color: var(--navy); color: var(--white); }

/* ── CTA band ──────────────────────────────────────────────── */
.cta-band { background: linear-gradient(120deg, var(--navy-deep), var(--navy) 55%, #0a4a74); color: var(--white); position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; right: -120px; top: -120px; width: 380px; height: 380px; border-radius: 50%; background: rgba(174, 202, 0, .14); filter: blur(10px); }
.cta-band .container { position: relative; display: grid; grid-template-columns: minmax(0, 1.2fr) auto; gap: 2rem; align-items: center; padding-block: clamp(3rem, 6vw, 4.5rem); }
.cta-band h2 { color: var(--white); font-size: clamp(1.6rem, 2.8vw, 2.2rem); margin-bottom: .6rem; }
.cta-band p { color: rgba(255, 255, 255, .82); max-width: 48ch; }

/* ── Legal ─────────────────────────────────────────────────── */
.legal { max-width: 48rem; }
.legal h2 { font-size: 1.3rem; margin: 2.2rem 0 .7rem; }
.legal h2:first-child { margin-top: 0; }
.legal p, .legal li { margin-bottom: .7rem; font-size: .97rem; }
.legal ul { list-style: disc; padding-left: 1.3rem; }
.legal a { color: var(--navy); font-weight: 600; }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer { background: var(--navy-deep); color: rgba(255, 255, 255, .78); }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem 3rem; padding-block: clamp(3rem, 6vw, 4.5rem) 2.5rem; }
.site-footer__brand img { height: 78px; width: auto; margin-bottom: 1rem; }
.site-footer__brand p { font-size: .93rem; max-width: 32ch; }
.site-footer h4 { color: var(--lime); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 1rem; }
.site-footer ul { display: grid; gap: .5rem; }
.site-footer a { color: rgba(255, 255, 255, .8); text-decoration: none; font-size: .95rem; transition: color .15s ease; }
.site-footer a:hover { color: var(--lime); }
.site-footer address { font-size: .95rem; line-height: 1.75; }
.site-footer__bottom { border-top: 1px solid rgba(255, 255, 255, .12); padding-block: 1.2rem; font-size: .83rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem 1.5rem; }
.site-footer__bottom nav { display: flex; gap: 1.4rem; }

/* ── Misc ──────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s cubic-bezier(.2, .65, .3, 1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-stagger > * { transition-delay: calc(var(--i, 0) * 70ms); }
.skip-link { position: absolute; left: 1rem; top: -4rem; z-index: 100; background: var(--navy); color: var(--white); padding: .6rem 1rem; text-decoration: none; font-weight: 600; border-radius: 0 0 10px 10px; transition: top .2s; }
.skip-link:focus { top: 0; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .services, .why, .steps { grid-template-columns: repeat(2, 1fr); }
  .usp-bar ul { grid-template-columns: repeat(2, 1fr); }
  .usp-bar li:nth-child(3) { border-left: 0; }
  .usp-bar li:nth-child(n+3) { border-top: 1px solid var(--line); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .site-nav {
    position: fixed; inset: 0; background: var(--navy); flex-direction: column; justify-content: center; gap: 1.5rem; padding: 4rem 2rem;
    clip-path: inset(0 0 0 100%); visibility: hidden; transition: clip-path .3s cubic-bezier(.3, .7, .3, 1), visibility 0s .3s; z-index: 55;
  }
  .site-nav.is-open { clip-path: inset(0); visibility: visible; transition: clip-path .3s cubic-bezier(.3, .7, .3, 1); }
  .site-nav a:not(.btn) { font-size: 1.3rem; }
  .site-nav .btn { margin: .5rem 0 0; }
  .nav-toggle { display: block; z-index: 56; }
  body.nav-locked { overflow: hidden; }

  .hero .container { grid-template-columns: minmax(0, 1fr); min-height: 0; padding-top: 120px; padding-bottom: 5rem; }
  .hero h1 { max-width: none; }
  .split, .contact-grid, .detail { grid-template-columns: minmax(0, 1fr); }
  .detail:nth-child(even) .detail__img { order: 0; }
  .media__badge { left: 1rem; }
  .cta-band .container { grid-template-columns: minmax(0, 1fr); }
  .page-hero .container { padding-top: 120px; }
}
@media (max-width: 640px) {
  .services, .why, .steps { grid-template-columns: minmax(0, 1fr); }
  .usp-bar ul { grid-template-columns: minmax(0, 1fr); }
  .usp-bar li + li { border-left: 0; border-top: 1px solid var(--line); }
  .usp-bar { margin-top: -40px; }
  .form-grid { grid-template-columns: minmax(0, 1fr); }
  .btn-row .btn { width: 100%; }
  .site-footer__grid { grid-template-columns: minmax(0, 1fr); gap: 2rem; }
  .brand img { height: 54px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ── WhatsApp floating button ──────────────────────────────── */
.wa-float {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 70;
  display: inline-flex; align-items: center; gap: .6rem;
  background: #25d366; color: #fff; font-weight: 700; font-size: .95rem;
  text-decoration: none; padding: .75rem 1.25rem .75rem .85rem; border-radius: 100px;
  box-shadow: 0 10px 28px rgba(37, 211, 102, .45);
  transition: transform .18s ease, box-shadow .18s ease;
}
.wa-float:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(37, 211, 102, .55); }
.wa-float svg { width: 30px; height: 30px; flex: none; }
.wa-float::before {
  content: ''; position: absolute; inset: 0; border-radius: 100px;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, .55);
  animation: wa-pulse 2.2s ease-out infinite; pointer-events: none;
}
@keyframes wa-pulse { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .55); } 70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }
@media (max-width: 640px) {
  .wa-float span { display: none; }
  .wa-float { padding: .85rem; }
}
.why__icon--wa { background: #25d366; color: #fff; }
.why__icon--wa svg { width: 26px; height: 26px; }
.info-wa a { color: #128c4b !important; }

/* ── Work gallery (admin-managed) ──────────────────────────── */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.work-item { position: relative; border-radius: var(--r); overflow: hidden; cursor: zoom-in; border: 0; padding: 0; background: var(--navy); box-shadow: var(--shadow-sm); }
.work-item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; transition: transform .45s ease, opacity .3s ease; }
.work-item:hover img { transform: scale(1.05); opacity: .92; }
.work-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.6rem .9rem .7rem;
  background: linear-gradient(180deg, transparent, rgba(0, 26, 43, .82));
  color: #fff; font-size: .86rem; font-weight: 600; text-align: left;
}
@media (max-width: 900px) { .work-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .work-grid { grid-template-columns: minmax(0, 1fr); } }

.lb { position: fixed; inset: 0; z-index: 90; background: rgba(0, 20, 35, .93); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2rem; }
.lb img { max-width: min(1100px, 92vw); max-height: 82vh; border-radius: 10px; box-shadow: 0 30px 80px rgba(0, 0, 0, .5); }
.lb figcaption { color: #fff; margin-top: 1rem; font-size: .95rem; }
.lb__close { position: absolute; top: 1.2rem; right: 1.4rem; background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .3); color: #fff; width: 44px; height: 44px; border-radius: 50%; font-size: 1.3rem; }
