﻿/* ============================================================
   ASCHQARI UMZUG – style.css
   Design Tokens, Layout, Komponenten, Responsiv
   ============================================================ */

:root {
  --navy:        #1B3A6B;
  --navy-dark:   #0F2444;
  --navy-mid:    #2E6BB0;
  --orange:      #E8751A;
  --orange-h:    #D0640E;
  --slate:       #546E7A;
  --bg:          #F4F6F9;
  --white:       #FFFFFF;
  --border:      #DDE3EC;
  --text-mid:    #37474F;
  --text-light:  #546E7A;
  --green-wa:    #25D366;

  --sh-card:     0 2px 12px rgba(27,58,107,.07);
  --sh-card-h:   0 8px 24px rgba(27,58,107,.13);
  --sh-nav:      0 2px 16px rgba(0,0,0,.18);
  --sh-wa:       0 4px 20px rgba(37,211,102,.45);

  --r-btn:  4px;
  --r-card: 8px;
  --r-pill: 100px;

  --ff-h: 'Barlow Condensed', sans-serif;
  --ff-b: 'Barlow', sans-serif;

  --wrap: 1200px;
  --sp:   88px;
}

/* ── Reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--ff-b); background: var(--bg); color: var(--navy); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img  { display: block; max-width: 100%; height: auto; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { font-family: var(--ff-b); }


/* ── Screen-reader only ─────────────────────────── */
.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;
}
/* ── Skip Nav ───────────────────────────────────── */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--orange);
  color: #fff;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 14px;
  border-radius: 0 0 var(--r-btn) var(--r-btn);
  z-index: 9999;
  transition: top .2s;
}
.skip-nav:focus { top: 0; }

/* ── Container ──────────────────────────────────── */
.container { max-width: var(--wrap); margin: 0 auto; padding: 0 32px; }

/* ── NAVIGATION ─────────────────────────────────── */
header[role="banner"] {
  position: sticky;
  top: 0;
  z-index: 500;
}
.nav {
  background: var(--navy);
  box-shadow: var(--sh-nav);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__logo { height: 52px; width: auto; border-radius: 4px; flex-shrink: 0; }
.nav__links { display: flex; gap: 36px; align-items: center; }
.nav__link {
  color: rgba(255,255,255,.85);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .2s;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width .22s ease;
}
.nav__link:hover { color: #fff; }
.nav__link:hover::after { width: 100%; }
.nav__cta {
  background: var(--orange);
  color: #fff;
  padding: 10px 24px;
  border-radius: var(--r-btn);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background .2s, transform .15s;
  display: inline-block;
}
.nav__cta:hover { background: var(--orange-h); transform: translateY(-1px); }

.nav__hamburger {
  display: none;
  background: none;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: var(--r-btn);
  cursor: pointer;
  color: #fff;
  padding: 7px 9px;
  line-height: 0;
  transition: border-color .2s;
}
.nav__hamburger:hover { border-color: rgba(255,255,255,.7); }
.nav__hamburger svg { width: 22px; height: 22px; display: block; }

.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--navy-dark);
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 499;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  padding: 8px 0 16px;
}
.nav__mobile.is-open { display: flex; }
.nav__mobile-link {
  display: block;
  padding: 14px 32px;
  color: rgba(255,255,255,.85);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background .15s, color .15s;
}
.nav__mobile-link:hover { background: rgba(255,255,255,.06); color: #fff; }
.nav__mobile-cta {
  margin: 12px 32px 0;
  background: var(--orange);
  color: #fff;
  padding: 13px 24px;
  border-radius: var(--r-btn);
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  display: block;
}
.nav__mobile-cta:hover { background: var(--orange-h); }

/* ── HERO ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--navy-dark);
}
.hero__img {
  position: absolute;
  right: 0;
  top: 0;
  width: 54%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--navy-dark) 0%,
    var(--navy-dark) 30%,
    rgba(15,36,68,.92) 44%,
    rgba(15,36,68,.60) 58%,
    rgba(15,36,68,.20) 75%,
    transparent 90%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 100px 32px 80px;
}
.hero__inner { max-width: 560px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,117,26,.18);
  border: 1px solid var(--orange);
  border-radius: var(--r-pill);
  padding: 6px 16px;
  margin-bottom: 28px;
}
.hero__badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
.hero__badge-text { color: var(--orange); font-size: 12px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }

.hero__h1 {
  font-family: var(--ff-h);
  font-size: clamp(44px, 6vw, 68px);
  font-weight: 800;
  color: #fff;
  line-height: 1.0;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.hero__h1 span { color: var(--orange); }
.hero__h1--city { font-size: clamp(26px, 3.2vw, 42px); }

.hero__tagline {
  font-size: 18px;
  color: rgba(255,255,255,.76);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 440px;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--r-btn);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  border: none;
  white-space: nowrap;
  line-height: 1;
}
.btn--primary { background: var(--orange); color: #fff; }
.btn--primary:hover { background: var(--orange-h); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(232,117,26,.35); }
.btn--ghost { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.22); padding: 13px 28px; }
.btn--ghost:hover { background: rgba(255,255,255,.18); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── TRUST BAR ───────────────────────────────────── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.trust-item svg { width: 20px; height: 20px; color: var(--orange); flex-shrink: 0; }

/* ── SECTIONS ────────────────────────────────────── */
.section { padding: var(--sp) 0; }
.section--white  { background: var(--white); }
.section--bg     { background: var(--bg); }
.section--navy   { background: var(--navy); }

.section__label {
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section__heading {
  font-family: var(--ff-h);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.08;
}
.section__heading--white { color: #fff; }
.section__header { text-align: center; margin-bottom: 56px; }
.seo-text .section__heading { margin-bottom: 24px; }
.seo-text p { margin-bottom: 18px; line-height: 1.72; }
.seo-text p:last-child { margin-bottom: 0; }
.seo-text a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
.seo-text a:hover { color: var(--orange); }

/* ── SERVICES ────────────────────────────────────── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--r-card);
  padding: 36px 28px;
  box-shadow: var(--sh-card);
  border-top: 3px solid var(--orange);
  transition: transform .3s cubic-bezier(.23,1,.32,1), box-shadow .3s;
  opacity: 0;
  transform: translateY(28px);
}
.service-card.in-view { opacity: 1; transform: translateY(0); }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--sh-card-h); }
.service-card:nth-child(1) { transition-delay:   0ms; }
.service-card:nth-child(2) { transition-delay:  80ms; }
.service-card:nth-child(3) { transition-delay: 160ms; }
.service-card:nth-child(4) { transition-delay: 240ms; }

.service-card__icon { width: 48px; height: 48px; color: var(--orange); margin-bottom: 20px; }
.service-card__title { font-weight: 700; font-size: 18px; margin-bottom: 10px; color: var(--navy); }
.service-card__desc  { font-size: 15px; line-height: 1.65; color: var(--text-mid); }

/* ── REVIEWS ─────────────────────────────────────── */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 20px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .2s, box-shadow .2s;
  opacity: 0;
  transform: translateY(16px);
}
.review-card.in-view { opacity: 1; transform: translateY(0); }
.review-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(27,58,107,.12); }
.review-card:nth-child(1) { transition-delay:   0ms; }
.review-card:nth-child(2) { transition-delay:  80ms; }
.review-card:nth-child(3) { transition-delay: 160ms; }

.review-card__top   { display: flex; align-items: center; justify-content: space-between; }
.review-card__stars { display: flex; gap: 2px; }
.review-card__text  { font-size: 14px; line-height: 1.65; color: var(--text-mid); font-style: italic; flex: 1; }
.review-card__foot  { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.review-card__name  { font-size: 13px; font-weight: 700; color: var(--navy); }
.review-card__date  { font-size: 12px; color: var(--text-light); }

.reviews__link {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: .04em;
  transition: opacity .2s;
  padding-top: 8px;
}
.reviews__link:hover { opacity: .75; }

/* ── WHY ─────────────────────────────────────────── */
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why__label { color: var(--orange); font-weight: 700; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 12px; }
.why__h2 {
  font-family: var(--ff-h);
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}
.why__desc { font-size: 16px; color: rgba(255,255,255,.72); line-height: 1.7; margin-bottom: 32px; }

.why__reasons { display: flex; flex-direction: column; gap: 14px; }
.why__reason {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.06);
  border-radius: 6px;
  padding: 14px 18px;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity .35s, transform .35s;
}
.why__reason.in-view { opacity: 1; transform: translateX(0); }
.why__reason:nth-child(1) { transition-delay:   0ms; }
.why__reason:nth-child(2) { transition-delay:  60ms; }
.why__reason:nth-child(3) { transition-delay: 120ms; }
.why__reason:nth-child(4) { transition-delay: 180ms; }
.why__reason:nth-child(5) { transition-delay: 240ms; }
.why__reason:nth-child(6) { transition-delay: 300ms; }
.why__reason-icon { width: 22px; height: 22px; color: var(--orange); flex-shrink: 0; }
.why__reason-text { color: rgba(255,255,255,.88); font-size: 16px; font-weight: 500; }

/* ── ABOUT ───────────────────────────────────────── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: top;
  border-radius: 16px;
}
.about__h2 {
  font-family: var(--ff-h);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 20px;
}
.about__para { font-size: 16px; line-height: 1.75; color: var(--text-mid); margin-bottom: 16px; }
.about__insta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--orange);
  font-weight: 600;
  font-size: 14px;
  transition: opacity .2s;
}
.about__insta:hover { opacity: .75; }
.about__insta svg { width: 18px; height: 18px; }

/* ── FAQ ──────────────────────────────────────────── */
.faq__list { max-width: 800px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  transition: color .2s;
}
.faq__question:hover { color: var(--orange); }
.faq__question[aria-expanded="true"] { color: var(--orange); }
.faq__icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--orange); transition: transform .25s; }
.faq__question[aria-expanded="true"] .faq__icon { transform: rotate(45deg); }
.faq__answer { display: none; padding: 0 0 20px; font-size: 16px; line-height: 1.7; color: var(--text-mid); }
.faq__answer.is-open { display: block; }

/* ── CONTACT ─────────────────────────────────────── */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.contact__items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.contact__item  { display: flex; gap: 16px; align-items: flex-start; }
.contact__icon-wrap {
  width: 40px; height: 40px;
  background: rgba(232,117,26,.12);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.contact__icon-wrap svg { width: 20px; height: 20px; }
.contact__item-label { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-light); margin-bottom: 3px; }
.contact__item-val   { font-size: 16px; font-weight: 600; color: var(--navy); }
.contact__item-val a { color: var(--navy); transition: color .2s; }
.contact__item-val a:hover { color: var(--orange); }

.contact__tip {
  background: var(--bg);
  border-radius: var(--r-card);
  padding: 18px 20px;
  border-left: 4px solid var(--orange);
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

.contact__cta-map { display: flex; flex-direction: column; gap: 20px; }
.contact__angebot-btn { width: 100%; font-size: 17px; padding: 18px 32px; }
.contact__map { border-radius: var(--r-card); overflow: hidden; box-shadow: var(--sh-card); }
.contact__map iframe { display: block; width: 100%; height: 360px; border: 0; }
.map-consent {
  width: 100%;
  height: 360px;
  background: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
}
.map-consent__inner { max-width: 360px; text-align: center; color: rgba(255,255,255,.8); }
.map-consent__icon { display: block; margin: 0 auto 16px; opacity: .45; color: rgba(255,255,255,.7); }
.map-consent__text { font-size: 14px; line-height: 1.6; margin: 0 0 20px; }
.map-consent__text a { color: var(--orange); text-decoration: underline; }
.map-consent__btn { display: inline-block; margin-bottom: 12px; }
.map-consent__hint { font-size: 12px; color: rgba(255,255,255,.38); margin: 0; }

.form { display: flex; flex-direction: column; gap: 14px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form__field { display: flex; flex-direction: column; gap: 6px; }
.form__label { font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--text-light); }
.form__input,
.form__textarea {
  padding: 13px 16px;
  border-radius: var(--r-btn);
  border: 1px solid var(--border);
  font-size: 15px;
  font-family: var(--ff-b);
  color: var(--navy);
  background: var(--white);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.form__input:focus,
.form__textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,117,26,.12); }
.form__textarea { resize: vertical; min-height: 120px; }

.form__consent { display: flex; gap: 10px; align-items: flex-start; cursor: pointer; }
.form__consent input[type="checkbox"] { margin-top: 3px; accent-color: var(--orange); width: 16px; height: 16px; flex-shrink: 0; cursor: pointer; }
.form__consent-text { font-size: 13px; color: var(--text-light); line-height: 1.5; }
.form__consent-text a { color: var(--orange); text-decoration: underline; }

.form__submit {
  background: var(--orange);
  color: #fff;
  padding: 15px;
  border-radius: var(--r-btn);
  border: none;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background .2s, transform .15s;
  width: 100%;
}
.form__submit:hover { background: var(--orange-h); transform: translateY(-1px); }

.form__success {
  background: #F0FDF4;
  border: 1px solid #86EFAC;
  border-radius: var(--r-card);
  padding: 48px 32px;
  text-align: center;
  display: none;
}
.form__success.is-visible { display: block; }
.form__success-icon {
  width: 52px; height: 52px;
  background: #22C55E;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: #fff;
}
.form__success-icon svg { width: 28px; height: 28px; }
.form__success-title { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.form__success-text  { color: var(--text-mid); font-size: 16px; }

/* ── FOOTER ──────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.6);
  padding: 48px 0 28px;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer__logo { height: 52px; width: auto; border-radius: 4px; }
.footer__nav  {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__nav-link { font-size: 14px; color: rgba(255,255,255,.65); transition: color .2s; }
.footer__nav-link:hover { color: rgba(255,255,255,.9); }

.footer__divider { width: 100%; height: 1px; background: rgba(255,255,255,.08); }

.footer__legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.footer__legal-link {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  text-decoration: underline;
  transition: color .2s;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: var(--ff-b);
}
.footer__legal-link:hover { color: rgba(255,255,255,.75); }

.footer__bottom { display: flex; flex-direction: column; gap: 6px; }
.footer__copy   { font-size: 14px; }
.footer__credit { font-size: 13px; color: rgba(255,255,255,.4); }
.footer__credit a { color: var(--orange); opacity: .85; transition: opacity .2s; text-decoration: none; }
.footer__credit a:hover { opacity: 1; }

/* ── COOKIE BANNER ───────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy-dark);
  color: rgba(255,255,255,.85);
  padding: 20px 32px;
  z-index: 8000;
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,.25);
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.23,1,.32,1);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner__text { flex: 1; min-width: 260px; font-size: 14px; line-height: 1.6; }
.cookie-banner__text a { color: var(--orange); text-decoration: underline; }
.cookie-banner__btns { display: flex; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }
.c-btn {
  padding: 10px 20px;
  border-radius: var(--r-btn);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: background .2s, opacity .2s;
}
.c-btn--accept { background: var(--orange); color: #fff; }
.c-btn--accept:hover { background: var(--orange-h); }
.c-btn--reject { background: rgba(255,255,255,.1); color: rgba(255,255,255,.8); }
.c-btn--reject:hover { background: rgba(255,255,255,.18); }
.c-btn--settings { background: transparent; color: rgba(255,255,255,.55); text-decoration: underline; padding-left: 4px; padding-right: 4px; }

/* ── WHATSAPP FAB ────────────────────────────────── */
.wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: var(--green-wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-wa);
  color: #fff;
  z-index: 400;
  transition: transform .2s, box-shadow .2s;
}
.wa-fab:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,.55); }
.wa-fab svg { width: 28px; height: 28px; }

/* ── SUBPAGE HERO ────────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 64px 0 52px;
  color: #fff;
}
.page-hero__label {
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.page-hero__h1 {
  font-family: var(--ff-h);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
}
.page-hero__date { font-size: 13px; color: rgba(255,255,255,.5); margin-top: 12px; }

/* ── PAGE CONTENT ────────────────────────────────── */
.page-content { padding: 60px 0 80px; }
.page-content h2 {
  font-family: var(--ff-h);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  margin: 40px 0 16px;
  padding-top: 8px;
  border-top: 2px solid var(--border);
}
.page-content h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.page-content h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin: 24px 0 10px; }
.page-content p  { font-size: 16px; line-height: 1.75; color: var(--text-mid); margin-bottom: 16px; }
.page-content ul, .page-content ol { margin: 0 0 16px 24px; }
.page-content li { font-size: 16px; line-height: 1.7; color: var(--text-mid); margin-bottom: 6px; }
.page-content a  { color: var(--orange); text-decoration: underline; }
.page-content .highlight {
  background: rgba(232,117,26,.07);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--r-btn) var(--r-btn) 0;
  padding: 16px 20px;
  margin: 20px 0;
}
.page-content .highlight p { margin-bottom: 0; }
.generator-note {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-light);
}
.generator-note a { color: var(--text-light); }

/* ── 404 ─────────────────────────────────────────── */
.error-section {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 32px;
}
.error-box { text-align: center; max-width: 540px; }
.error-code {
  font-family: var(--ff-h);
  font-size: clamp(80px, 15vw, 140px);
  font-weight: 800;
  color: var(--navy);
  opacity: .1;
  line-height: 1;
  margin-bottom: -12px;
}
.error-title {
  font-family: var(--ff-h);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 16px;
}
.error-text { font-size: 17px; color: var(--text-mid); line-height: 1.65; margin-bottom: 32px; }
.error-links { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ── FOCUS ───────────────────────────────────────── */
:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
  .why__grid   { gap: 48px; }
  .about__grid { gap: 48px; }
  .contact__grid { gap: 40px; }
}

@media (max-width: 768px) {
  :root { --sp: 60px; }

  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .hero { min-height: 480px; }
  .hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
  .hero__overlay { background: linear-gradient(to bottom, rgba(15,36,68,.62) 0%, rgba(15,36,68,.45) 55%, rgba(15,36,68,.70) 100%); }
  .hero__content { padding: 56px 32px 52px; }
  .hero__tagline { font-size: 16px; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }

  .trust-bar__inner { gap: 20px; }

  .services__grid { grid-template-columns: 1fr 1fr; }
  .reviews__grid  { grid-template-columns: 1fr; }
  .why__grid      { grid-template-columns: 1fr; gap: 40px; }
  .about__grid    { grid-template-columns: 1fr; }
  .about__img     { aspect-ratio: 16/9; }
  .contact__grid  { grid-template-columns: 1fr; }
  .form__row      { grid-template-columns: 1fr; }

  .cookie-banner { flex-direction: column; gap: 16px; }
  .cookie-banner__btns { width: 100%; flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .services__grid { grid-template-columns: 1fr; }
  .trust-bar__inner { gap: 16px; }
  .trust-item { font-size: 13px; }
  .wa-fab { bottom: 16px; right: 16px; }
}

/* ── HERO ENTRANCE ANIMATION ─────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: no-preference) {
  .hero__badge   { animation: fadeUp .48s ease both; animation-delay: .06s; }
  .hero__h1      { animation: fadeUp .52s ease both; animation-delay: .18s; }
  .hero__tagline { animation: fadeUp .48s ease both; animation-delay: .32s; }
  .hero__ctas    { animation: fadeUp .48s ease both; animation-delay: .46s; }
}