/* =========================================================================
   Oswald Garage — KFZ-Service & Reparatur Wien
   Design system: charcoal (#161616) + gold (#ffce51), Oxanium / Sarabun
   ========================================================================= */

/* ---------- Tokens ---------- */
:root {
  --bg:            #141414;
  --bg-alt:        #181818;
  --surface:       #1e1e1e;
  --surface-2:     #242424;
  --border:        rgba(255, 255, 255, .09);
  --border-strong: rgba(255, 255, 255, .16);

  --gold:          #ffce51;
  --gold-600:      #e8b41f;
  --gold-deep:     #837a04;
  --gold-soft:     rgba(255, 206, 81, .12);

  --text:          #f4f4f4;
  --text-muted:    #b6b6b6;
  --text-dim:      #8c8c8c;
  --on-gold:       #161616;

  --green:         #25d366;

  --font-display: 'Oxanium', system-ui, sans-serif;
  --font-body:    'Sarabun', system-ui, sans-serif;

  --container: 1200px;
  --radius:    16px;
  --radius-sm: 10px;
  --shadow:    0 18px 50px rgba(0, 0, 0, .45);
  --shadow-gold: 0 14px 38px rgba(255, 206, 81, .22);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --nav-h: 76px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; letter-spacing: -.01em; }
h1 { font-size: clamp(2.4rem, 1.4rem + 4vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 1.3rem + 2.6vw, 3rem); }
h3 { font-size: clamp(1.25rem, 1.1rem + .7vw, 1.55rem); }
p  { color: var(--text-muted); }
strong { color: var(--text); font-weight: 700; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 600;
  font-size: .82rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); border-radius: 2px; }
.eyebrow.is-centered::after { content: ""; width: 26px; height: 2px; background: var(--gold); border-radius: 2px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: clamp(64px, 8vw, 116px); position: relative; }
.section--alt { background: var(--bg-alt); }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.is-centered { margin-inline: auto; text-align: center; display: flex; flex-direction: column; align-items: center; }
.section-head h2 { margin-top: 18px; }
.section-head p { margin-top: 18px; font-size: 1.08rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--font-display); font-weight: 700; font-size: .98rem;
  letter-spacing: .02em; padding: 15px 26px; border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
  will-change: transform; text-align: center; cursor: pointer;
}
.btn svg { width: 19px; height: 19px; }
.btn--primary { background: var(--gold); color: var(--on-gold); box-shadow: var(--shadow-gold); }
.btn--primary:hover { background: #ffd76e; transform: translateY(-3px); box-shadow: 0 18px 44px rgba(255, 206, 81, .34); }
.btn--ghost { background: rgba(255, 255, 255, .04); color: var(--text); border: 1.5px solid var(--border-strong); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.btn--whatsapp { background: var(--green); color: #fff; }
.btn--whatsapp:hover { background: #1ebe5b; transform: translateY(-3px); box-shadow: 0 16px 36px rgba(37, 211, 102, .3); }
.btn--lg { padding: 17px 32px; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ---------- Navbar ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(20, 20, 20, .72);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.nav.is-scrolled { background: rgba(16, 16, 16, .96); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); gap: 24px; }
.nav__brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav__brand img { height: 46px; width: auto; }
.nav__brand-text { font-family: var(--font-display); font-weight: 800; font-size: 1.18rem; letter-spacing: .04em; line-height: 1; }
.nav__brand-text span { color: var(--gold); }
.nav__brand-text small { display: block; font-size: .6rem; font-weight: 600; letter-spacing: .26em; color: var(--text-dim); margin-top: 3px; }

.nav__menu { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.nav__link {
  font-family: var(--font-display); font-weight: 600; font-size: .96rem;
  padding: 10px 16px; border-radius: 999px; color: var(--text-muted);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: var(--text); background: rgba(255, 255, 255, .06); }
.nav__actions { display: flex; align-items: center; gap: 12px; margin-left: 6px; }
.nav__phone { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-display); font-weight: 700; }
.nav__phone svg { width: 18px; height: 18px; color: var(--gold); }

.nav__toggle { display: none; position: relative; z-index: 110; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--border-strong); align-items: center; justify-content: center; }
.nav__toggle span { position: relative; width: 20px; height: 2px; background: var(--text); transition: background .2s; }
.nav__toggle span::before, .nav__toggle span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--text); transition: transform .28s var(--ease), top .28s var(--ease); }
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after { top: 6px; }
body.menu-open .nav__toggle span { background: transparent; }
body.menu-open .nav__toggle span::before { top: 0; transform: rotate(45deg); }
body.menu-open .nav__toggle span::after { top: 0; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: clamp(560px, 86vh, 820px);
  display: flex; align-items: center;
  background:
    linear-gradient(102deg, rgba(16, 16, 16, .94) 0%, rgba(16, 16, 16, .76) 42%, rgba(16, 16, 16, .35) 78%, rgba(131, 122, 4, .28) 100%),
    url('/images/hero.jpg');
  background-size: cover; background-position: center right; overflow: hidden;
}
.hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 80% at 0% 100%, rgba(255, 206, 81, .14), transparent 55%); pointer-events: none; }
.hero__inner { position: relative; z-index: 2; max-width: 760px; padding-block: 70px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: .6rem; margin-bottom: 24px;
  background: rgba(255, 255, 255, .07); border: 1px solid var(--border-strong);
  border-radius: 999px; padding: 8px 16px; font-size: .85rem; color: var(--text);
  font-family: var(--font-display); font-weight: 600;
}
.hero__badge strong { color: var(--gold); }
.hero h1 { margin-bottom: 22px; }
.hero h1 .accent { color: var(--gold); }
.hero__sub { font-size: clamp(1.05rem, .98rem + .5vw, 1.3rem); color: #e2e2e2; max-width: 560px; margin-bottom: 14px; }
.hero__note { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-weight: 600; color: var(--gold); margin-bottom: 34px; font-size: 1.02rem; }
.hero__note svg { width: 20px; height: 20px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 28px; }
.hero__trust-item { display: flex; flex-direction: column; }
.hero__trust-item b { font-family: var(--font-display); font-size: 1.7rem; font-weight: 800; color: #fff; line-height: 1; }
.hero__trust-item span { font-size: .85rem; color: var(--text-dim); margin-top: 4px; letter-spacing: .02em; }
.hero__stars { color: var(--gold); letter-spacing: 2px; font-size: 1.1rem; }

/* ---------- Partner marquee ---------- */
.partners { background: var(--bg-alt); border-block: 1px solid var(--border); padding-block: 30px; }
.partners__label { text-align: center; font-family: var(--font-display); font-weight: 600; font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 24px; }
.marquee { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; align-items: center; gap: 26px; width: max-content; animation: scroll-x 50s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee img { height: 62px; width: auto; max-width: 220px; padding: 14px 24px; background: #fff; border-radius: 12px; object-fit: contain; box-shadow: 0 6px 20px rgba(0, 0, 0, .28); transition: transform .25s var(--ease); }
.marquee img:hover { transform: translateY(-3px); }
@keyframes scroll-x { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; flex-wrap: wrap; justify-content: center; } }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--surface); border: 1px solid var(--border);
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.service:hover { transform: translateY(-6px); border-color: rgba(255, 206, 81, .4); box-shadow: var(--shadow); }
.service__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.service__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.service:hover .service__media img { transform: scale(1.07); }
.service__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(20, 20, 20, .85) 100%); }
.service__num { position: absolute; top: 14px; left: 14px; z-index: 2; font-family: var(--font-display); font-weight: 800; font-size: .85rem; color: var(--on-gold); background: var(--gold); width: 34px; height: 34px; display: grid; place-items: center; border-radius: 9px; }
.service__body { padding: 24px 24px 28px; }
.service__body h3 { margin-bottom: 10px; }
.service:hover .service__body h3 { color: var(--gold); }
.service__body h3 { transition: color .3s; }
.service__body p { font-size: .98rem; }

/* ---------- Why us ---------- */
.why { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.why__media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.why__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.why__media-badge {
  position: absolute; left: 22px; bottom: 22px; background: var(--gold); color: var(--on-gold);
  border-radius: var(--radius-sm); padding: 16px 22px; font-family: var(--font-display); box-shadow: var(--shadow);
}
.why__media-badge b { display: block; font-size: 2.1rem; font-weight: 800; line-height: 1; }
.why__media-badge span { font-size: .82rem; font-weight: 600; }
.why__content p.lead { font-size: 1.1rem; margin-top: 18px; margin-bottom: 30px; }
.features { display: grid; gap: 16px; }
.feature { display: flex; gap: 18px; padding: 22px; border-radius: var(--radius-sm); background: var(--surface); border: 1px solid var(--border); transition: border-color .3s, transform .3s; }
.feature:hover { border-color: rgba(255, 206, 81, .35); transform: translateX(4px); }
.feature__icon { flex-shrink: 0; width: 50px; height: 50px; border-radius: 12px; background: var(--gold-soft); color: var(--gold); display: grid; place-items: center; }
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.15rem; margin-bottom: 5px; }
.feature p { font-size: .96rem; margin: 0; }

/* ---------- Highlight band ---------- */
.band { background: linear-gradient(120deg, var(--surface) 0%, var(--bg) 100%); border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(30px, 4vw, 48px); display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.band__item { display: flex; gap: 16px; align-items: flex-start; }
.band__item svg { width: 30px; height: 30px; color: var(--gold); flex-shrink: 0; }
.band__item h3 { font-size: 1.12rem; margin-bottom: 6px; }
.band__item p { font-size: .95rem; margin: 0; }

/* ---------- FAQ ---------- */
.faq { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
.faq__media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); position: sticky; top: calc(var(--nav-h) + 24px); }
.faq__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 4; }
.faq__list { display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; transition: border-color .3s; }
.faq-item[open] { border-color: rgba(255, 206, 81, .4); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 22px 24px; cursor: pointer; font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; color: var(--text); list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold); }
.faq-item__icon { flex-shrink: 0; width: 30px; height: 30px; border-radius: 8px; background: var(--gold-soft); display: grid; place-items: center; position: relative; transition: background .3s; }
.faq-item__icon::before, .faq-item__icon::after { content: ""; position: absolute; background: var(--gold); border-radius: 2px; transition: transform .3s var(--ease); }
.faq-item__icon::before { width: 13px; height: 2px; }
.faq-item__icon::after { width: 2px; height: 13px; }
.faq-item[open] .faq-item__icon::after { transform: rotate(90deg); opacity: 0; }
.faq-item__answer { padding: 0 24px 24px; color: var(--text-muted); font-size: 1rem; }
.faq-item__answer p { margin: 0; }

/* ---------- Contact section / form ---------- */
.contact { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(36px, 5vw, 64px); align-items: stretch; }
.contact__info { display: flex; flex-direction: column; gap: 18px; }
.contact__intro p { margin-top: 16px; margin-bottom: 8px; }
.info-card { display: flex; gap: 16px; align-items: center; padding: 20px 22px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); transition: border-color .3s, transform .3s; }
.info-card:hover { border-color: rgba(255, 206, 81, .35); transform: translateY(-2px); }
.info-card__icon { flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px; background: var(--gold-soft); color: var(--gold); display: grid; place-items: center; }
.info-card__icon svg { width: 24px; height: 24px; }
.info-card > span:last-child { display: flex; flex-direction: column; min-width: 0; }
.info-card__label { display: block; margin-bottom: 3px; font-size: .78rem; color: var(--text-dim); letter-spacing: .1em; text-transform: uppercase; font-family: var(--font-display); font-weight: 600; }
.info-card__value { display: block; font-size: 1.06rem; color: var(--text); font-weight: 600; line-height: 1.35; word-break: break-word; }
.info-card__value span { display: block; font-size: .9rem; font-weight: 400; color: var(--text-muted); margin-top: 2px; }

.cta-card { background: linear-gradient(160deg, var(--surface) 0%, #191919 100%); border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(28px, 3.4vw, 44px); display: flex; flex-direction: column; justify-content: center; }
.cta-card h3 { margin-bottom: 10px; }
.cta-card > p { font-size: 1rem; margin-bottom: 26px; }
.cta-card__actions { display: flex; flex-direction: column; gap: 12px; }
.cta-card__note { margin-top: 20px; font-size: .9rem; color: var(--text-dim); text-align: center; }

/* ---------- Page banner (kontakt / impressum) ---------- */
.page-banner {
  padding-block: clamp(56px, 9vw, 110px); text-align: center; position: relative;
  background: linear-gradient(180deg, rgba(16,16,16,.6), rgba(16,16,16,.94)), url('/images/about.jpg');
  background-size: cover; background-position: center; border-bottom: 1px solid var(--border);
}
.page-banner h1 { margin-bottom: 14px; }
.page-banner p { max-width: 620px; margin-inline: auto; font-size: 1.08rem; }
.breadcrumb { display: flex; gap: .5rem; justify-content: center; margin-top: 18px; font-size: .9rem; color: var(--text-dim); font-family: var(--font-display); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ---------- Map ---------- */
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); }
.map-embed iframe { display: block; width: 100%; height: 100%; min-height: 340px; border: 0; filter: grayscale(.3) invert(.92) hue-rotate(180deg) contrast(.9); }

/* ---------- Rich text (impressum) ---------- */
.richtext { max-width: 820px; margin-inline: auto; }
.richtext h2 { font-size: 1.5rem; margin: 40px 0 16px; color: var(--gold); }
.richtext h3 { margin: 28px 0 10px; }
.richtext p { margin-bottom: 16px; font-size: 1rem; }
.richtext strong { color: var(--text); }
.richtext a { color: var(--gold); text-decoration: underline; word-break: break-word; }
.richtext .addr { font-size: 1.1rem; color: var(--text); line-height: 1.5; }

/* ---------- Reviews ---------- */
.reviews { max-width: 780px; margin-inline: auto; text-align: center; position: relative; overflow: hidden; background: linear-gradient(180deg, var(--surface) 0%, #191919 100%); border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(38px, 5vw, 64px); box-shadow: var(--shadow); }
.reviews::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: linear-gradient(90deg, #4285F4 0 25%, #EA4335 25% 50%, #FBBC05 50% 75%, #34A853 75% 100%); }
.reviews__logo { width: 48px; height: 48px; margin: 0 auto 16px; }
.reviews__stars { color: var(--gold); font-size: 1.7rem; letter-spacing: 5px; line-height: 1; margin-bottom: 20px; }
.reviews h2 { margin-bottom: 14px; }
.reviews p { max-width: 540px; margin: 0 auto 30px; }
.reviews__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.reviews__cta .btn img { border-radius: 3px; }
@media (max-width: 479px) { .reviews__cta { flex-direction: column; } .reviews__cta .btn { width: 100%; } }

/* ---------- Footer ---------- */
.footer { background: #0f0f0f; border-top: 1px solid var(--border); padding-top: 70px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 54px; }
.footer__brand > img { height: 54px; margin-bottom: 18px; }
.footer__social img { width: 19px; height: 19px; }
.footer__brand p { font-size: .96rem; max-width: 280px; }
.footer__social { display: flex; gap: 12px; margin-top: 20px; }
.footer__social a { width: 42px; height: 42px; border-radius: 11px; border: 1px solid var(--border-strong); display: grid; place-items: center; color: var(--text-muted); transition: all .25s; }
.footer__social a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.footer__social svg { width: 19px; height: 19px; }
.footer h4 { font-family: var(--font-display); font-size: .85rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 20px; }
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links a, .footer__contact a, .footer__contact span { color: var(--text-muted); font-size: .98rem; transition: color .2s; }
.footer__links a:hover, .footer__contact a:hover { color: var(--gold); }
.footer__contact { display: flex; flex-direction: column; gap: 14px; }
.footer__contact-item { display: flex; gap: 12px; align-items: flex-start; }
.footer__contact-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer__contact-item div { display: flex; flex-direction: column; }
.footer__bottom { border-top: 1px solid var(--border); padding-block: 26px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer__bottom p { font-size: .88rem; color: var(--text-dim); }
.footer__bottom-links { display: flex; gap: 22px; font-size: .88rem; }
.footer__bottom-links a { color: var(--text-dim); }
.footer__bottom-links a:hover { color: var(--gold); }

/* ---------- Mobile menu / responsive ---------- */
@media (max-width: 991px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why { grid-template-columns: 1fr; }
  .why__media { order: -1; }
  .faq { grid-template-columns: 1fr; }
  .faq__media { display: none; }
  .contact { grid-template-columns: 1fr; }
  .band { grid-template-columns: 1fr; gap: 22px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }

  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed; inset: 0 0 0 auto; top: 0; width: min(360px, 84vw); height: 100dvh;
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 6px;
    background: #121212; border-left: 1px solid var(--border);
    padding: calc(var(--nav-h) + 20px) 24px 32px; margin: 0;
    transform: translateX(100%); transition: transform .34s var(--ease);
    overflow-y: auto;
  }
  body.menu-open .nav__menu { transform: translateX(0); box-shadow: -20px 0 60px rgba(0,0,0,.5); }
  .nav__link { padding: 14px 16px; font-size: 1.1rem; border-radius: 12px; }
  .nav__actions { flex-direction: column; align-items: stretch; gap: 10px; margin: 18px 0 0; }
  .nav__actions .btn { width: 100%; }
  .nav__phone { justify-content: center; padding: 12px; border: 1px solid var(--border-strong); border-radius: 999px; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.5); opacity: 0; visibility: hidden; transition: opacity .3s; z-index: 99; }
  body.menu-open .nav-backdrop { opacity: 1; visibility: visible; }
}
@media (max-width: 767px) {
  body { font-size: 16px; }
  .section { padding-block: 60px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .hero__trust { gap: 22px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 479px) {
  .services-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .container { padding-inline: 18px; }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }
