/* ===== Löwe Imperium Detailing — styles ===== */
/* Legal pages */
.legal { padding: 140px 0 80px; }
.legal__inner { max-width: 820px; margin: 0 auto; }
.legal__eyebrow { text-transform: uppercase; letter-spacing: 3px; font-size: .78rem; color: var(--muted); margin: 0 0 8px; }
.legal__title { font-family: 'Bodoni Moda', serif; font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1.1; margin: 0 0 10px; }
.legal__updated { color: var(--muted); font-size: .9rem; margin: 0 0 40px; }
.legal h2 { font-family: 'Bodoni Moda', serif; font-size: 1.4rem; margin: 34px 0 12px; }
.legal p, .legal li { color: var(--muted); line-height: 1.75; font-size: 1rem; }
.legal ul { padding-left: 22px; margin: 0 0 14px; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--text); text-decoration: underline; text-underline-offset: 3px; }
.legal a:hover { color: #2DD4BF; }
.legal strong { color: var(--text); }
.legal__back { margin-top: 48px; }
.legal__back a { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; text-decoration: none; font-weight: 600; }

/* GDPR cookie banner */
.cookie { position: fixed; left: 50%; transform: translateX(-50%); bottom: 22px; z-index: 950; width: min(720px, calc(100% - 32px));
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap; justify-content: space-between;
  background: rgba(10,11,15,.92); backdrop-filter: blur(14px); border: 1px solid var(--glass-border); border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0,0,0,.55), 0 0 0 1px rgba(139,92,246,.12); padding: 18px 22px; animation: cookieUp .5s var(--ease); }
.cookie[hidden] { display: none; }
.cookie__text { color: var(--muted); font-size: .9rem; line-height: 1.55; flex: 1 1 320px; margin: 0; }
.cookie__text a { color: var(--text); text-decoration: underline; text-underline-offset: 2px; }
.cookie__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie__btn { font-size: .85rem; padding: 9px 18px; border-radius: 10px; cursor: pointer; border: 1px solid var(--glass-border);
  background: transparent; color: var(--text); transition: background .25s var(--ease), color .25s, transform .2s; }
.cookie__btn:hover { transform: translateY(-2px); }
.cookie__btn--accept { background: var(--grad); color: #0A0B0F; border-color: transparent; font-weight: 600; }
@keyframes cookieUp { from { opacity: 0; transform: translate(-50%, 20px); } to { opacity: 1; transform: translate(-50%, 0); } }
@media (max-width: 560px) { .cookie__actions { width: 100%; } .cookie__btn { flex: 1; } }

.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 900; width: 58px; height: 58px;
  display: grid; place-items: center; border-radius: 50%; color: #fff; background: #25D366;
  box-shadow: 0 8px 24px rgba(37,211,102,.45), 0 4px 12px rgba(0,0,0,.3);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease); animation: waPulse 2.4s ease-in-out infinite; }
.wa-float:hover { transform: scale(1.08); box-shadow: 0 12px 30px rgba(37,211,102,.6), 0 6px 16px rgba(0,0,0,.35); }
@keyframes waPulse { 0%,100% { box-shadow: 0 8px 24px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 8px 24px rgba(37,211,102,.45), 0 0 0 14px rgba(37,211,102,0); } }
@media (max-width: 600px) { .wa-float { width: 52px; height: 52px; right: 16px; bottom: 16px; } }

.modal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 24px; }
.modal[hidden] { display: none; }
.modal__overlay { position: absolute; inset: 0; background: rgba(4,5,8,.72); backdrop-filter: blur(6px); animation: modalFade .3s var(--ease); }
.modal__card { position: relative; z-index: 1; width: min(440px, 100%); text-align: center; padding: 40px 32px 32px;
  background: var(--surface, #101218); border: 1px solid var(--glass-border, rgba(255,255,255,.12)); border-radius: var(--radius, 18px);
  box-shadow: 0 30px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(139,92,246,.15); animation: modalPop .35s var(--ease); }
.modal__icon { width: 64px; height: 64px; margin: 0 auto 18px; display: grid; place-items: center; border-radius: 50%;
  color: #08090C; background: var(--grad, linear-gradient(120deg,#2DD4BF,#8B5CF6,#FB923C)); box-shadow: 0 8px 24px rgba(45,212,191,.35); }
.modal__card h3 { font-family: 'Bodoni Moda', serif; font-size: 1.7rem; margin: 0 0 10px; }
.modal__card p { color: var(--muted, #9AA3AF); font-size: .98rem; line-height: 1.6; margin: 0 0 24px; }
.modal__btn { width: 100%; justify-content: center; }
.modal__close { position: absolute; top: 12px; right: 14px; background: none; border: none; color: var(--muted, #9AA3AF);
  font-size: 1.8rem; line-height: 1; cursor: pointer; padding: 4px 8px; transition: color .2s var(--ease); }
.modal__close:hover { color: #fff; }
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalPop { from { opacity: 0; transform: translateY(16px) scale(.96); } to { opacity: 1; transform: none; } }

:root {
  --bg: #08090C;
  --bg-alt: #0C0E14;
  --surface: #101218;
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.10);
  --text: #F5F7FA;
  --muted: #9AA3AF;
  --grad: linear-gradient(120deg, #2DD4BF 0%, #8B5CF6 50%, #FB923C 100%);
  --grad-soft: linear-gradient(120deg, rgba(45,212,191,.18), rgba(139,92,246,.18), rgba(251,146,60,.18));
  --teal: #2DD4BF;
  --purple: #8B5CF6;
  --orange: #FB923C;
  --radius: 18px;
  --container: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Jost', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: 'Bodoni Moda', Georgia, serif; line-height: 1.08; font-weight: 600; letter-spacing: .5px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 1001;
  background: var(--surface); color: var(--text); padding: 12px 18px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-family: 'Jost', sans-serif; font-weight: 600; font-size: 15px;
  padding: 14px 28px; border-radius: 999px; cursor: pointer; border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  position: relative; overflow: hidden; letter-spacing: .3px;
}
.btn--solid { background: var(--grad); color: #0A0B0F; background-size: 180% 180%; }
.btn--solid:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 12px 30px rgba(139,92,246,.35); background-position: 100% 0; }
.btn--ghost { background: var(--glass); color: var(--text); border: 1px solid var(--glass-border); backdrop-filter: blur(8px); }
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--teal); box-shadow: 0 10px 24px rgba(45,212,191,.18); }
.btn:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }

/* ===== Navbar ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background .3s var(--ease), backdrop-filter .3s, border-color .3s, padding .3s;
  border-bottom: 1px solid transparent; padding: 14px 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.9) 0%, rgba(0,0,0,.5) 55%, transparent 100%);
}
.nav.scrolled { background: rgba(0,0,0,.85); backdrop-filter: blur(14px); border-bottom: 1px solid var(--glass-border); padding: 8px 0; }
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.nav__logo { height: 58px; width: auto; transition: height .3s var(--ease); }
.nav.scrolled .nav__logo { height: 46px; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { font-size: 15px; color: var(--muted); transition: color .2s; position: relative; }
.nav__links a:not(.nav__cta):hover { color: var(--text); }
.nav__links a:not(.nav__cta)::after {
  content: ''; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--grad); transition: width .3s var(--ease);
}
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta { color: #0A0B0F !important; padding: 10px 22px; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 26px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero { position: relative; min-height: 100vh; min-height: 100dvh; display: flex; align-items: center; padding: 120px 0 60px; overflow: hidden; }
.hero__glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(45% 45% at 75% 30%, rgba(139,92,246,.28), transparent 70%),
    radial-gradient(40% 40% at 20% 70%, rgba(45,212,191,.20), transparent 70%),
    radial-gradient(35% 35% at 60% 85%, rgba(251,146,60,.16), transparent 70%);
  filter: blur(10px); animation: floatGlow 14s ease-in-out infinite alternate;
}
@keyframes floatGlow { 0% { transform: translate3d(0,0,0) scale(1);} 100% { transform: translate3d(0,-24px,0) scale(1.08);} }
.hero__inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 64px; align-items: center; position: relative; z-index: 2; }
.hero__copy { padding-right: 12px; }
.hero__media { display: flex; justify-content: center; width: 100%; }
.hero__video { width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius);
  border: 1px solid var(--glass-border); box-shadow: 0 30px 60px rgba(0,0,0,.55), 0 0 0 1px rgba(139,92,246,.15);
  background: #14161d; }
.hero__eyebrow { text-transform: uppercase; letter-spacing: 4px; font-size: 13px; color: var(--teal); font-weight: 600; margin-bottom: 18px; }
.hero__title { font-size: clamp(2.4rem, 5vw, 4.4rem); font-weight: 700; letter-spacing: 2px; }
.hero__lead { color: var(--muted); font-size: 1.15rem; max-width: 30ch; margin: 24px 0 32px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__hours { margin-top: 28px; color: var(--muted); font-size: .95rem; }
.hero__hours strong { color: var(--text); }
.hero__media { display: flex; justify-content: center; }
.hero__img { width: min(440px, 100%); filter: drop-shadow(0 30px 60px rgba(139,92,246,.35)); animation: floatImg 6s ease-in-out infinite alternate; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
@keyframes floatImg { from { transform: translateY(-10px);} to { transform: translateY(14px);} }
.hero__scroll { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid var(--glass-border); border-radius: 14px; z-index: 2; }
.hero__scroll span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px; background: var(--teal); border-radius: 2px; animation: scrollDot 1.6s infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(0);} 40% { opacity: 1;} 100% { opacity: 0; transform: translateY(14px);} }

/* ===== Feature badges ===== */
.features { padding: 30px 0 10px; }
.features__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature { background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 26px 24px; backdrop-filter: blur(10px); transition: transform .3s var(--ease), border-color .3s; }
.feature:hover { transform: translateY(-6px); border-color: rgba(45,212,191,.5); }
.feature__num { font-family: 'Bodoni Moda', serif; font-size: 2rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.feature h3 { font-size: 1.25rem; margin-top: 10px; font-weight: 500; }

/* ===== Sections ===== */
.section { padding: 100px 0; }
.section--alt { background: var(--bg-alt); }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section__eyebrow { text-transform: uppercase; letter-spacing: 4px; font-size: 12px; color: var(--teal); font-weight: 600; margin-bottom: 14px; }
.section__title { font-size: clamp(2rem, 4.5vw, 3.2rem); }
.section__sub { color: var(--muted); margin-top: 16px; font-size: 1.05rem; }

/* ===== Service cards ===== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--surface); border: 1px solid var(--glass-border); border-radius: var(--radius);
  padding: 30px 26px; display: flex; flex-direction: column; position: relative; overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}
.card::before { content: ''; position: absolute; inset: 0; background: var(--grad-soft); opacity: 0; transition: opacity .35s; pointer-events: none; }
.card:hover { transform: translateY(-8px); border-color: transparent; box-shadow: 0 24px 50px rgba(0,0,0,.5); }
.card:hover::before { opacity: 1; }
.card--featured { border: 1px solid transparent; background:
  linear-gradient(var(--surface), var(--surface)) padding-box,
  var(--grad) border-box; }
.card__top { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 12px; position: relative; z-index: 1; }
.card__name { font-size: 1.5rem; }
.card__tag { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; padding: 5px 10px; border-radius: 999px; background: var(--glass); border: 1px solid var(--glass-border); color: var(--muted); white-space: nowrap; }
.card--featured .card__tag { background: var(--grad); color: #0A0B0F; border: 0; }
.card__desc { color: var(--muted); font-size: .95rem; position: relative; z-index: 1; }
.card__list { list-style: none; margin: 18px 0; display: grid; gap: 9px; position: relative; z-index: 1; }
.card__list li { position: relative; padding-left: 26px; font-size: .92rem; color: #D6DBE3; }
.card__list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 14px; height: 8px; border-left: 2px solid var(--teal); border-bottom: 2px solid var(--teal); transform: rotate(-45deg); }
.card__price { font-family: 'Bodoni Moda', serif; font-size: 2rem; font-weight: 600; margin: 6px 0 20px; margin-top: auto; position: relative; z-index: 1; }
.card__price span { font-family: 'Jost', sans-serif; font-size: .9rem; color: var(--muted); font-weight: 400; }
.card__btn { width: 100%; position: relative; z-index: 1; }
.cards__note { text-align: center; margin-top: 32px; color: var(--muted); font-size: .95rem; }
.cards__note strong { color: var(--text); }

/* ===== Plans ===== */
.plans { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 820px; margin: 0 auto; }
.plan { background: var(--surface); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 38px 32px; position: relative; transition: transform .35s var(--ease); }
.plan:hover { transform: translateY(-6px); }
.plan--featured { background: linear-gradient(var(--surface), var(--surface)) padding-box, var(--grad) border-box; border: 1px solid transparent; }
.plan__badge { position: absolute; top: -13px; left: 32px; background: var(--grad); color: #0A0B0F; font-size: 12px; font-weight: 600; padding: 6px 14px; border-radius: 999px; letter-spacing: .5px; }
.plan__name { font-size: 1.7rem; margin-bottom: 10px; }
.plan__price { font-family: 'Bodoni Moda', serif; font-size: 3rem; font-weight: 700; margin-bottom: 22px; }
.plan__price span { font-family: 'Jost', sans-serif; font-size: 1rem; color: var(--muted); font-weight: 400; }
.plan__list { list-style: none; display: grid; gap: 12px; margin-bottom: 28px; }
.plan__list li { padding-left: 26px; position: relative; color: #D6DBE3; }
.plan__list li::before { content: ''; position: absolute; left: 0; top: 9px; width: 14px; height: 8px; border-left: 2px solid var(--teal); border-bottom: 2px solid var(--teal); transform: rotate(-45deg); }
.plan__btn { width: 100%; }

/* ===== Stats ===== */
.stats { padding: 70px 0; background: var(--bg-alt); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat__num, .stat__suffix { font-family: 'Bodoni Moda', serif; font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 700; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat p { color: var(--muted); margin-top: 8px; font-size: .95rem; }

/* ===== Gallery ===== */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery__item { position: relative; aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--glass-border); display: flex; align-items: flex-end; cursor: pointer; background: #14161d; }
.gallery__item img, .gallery__item video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery__item:hover img, .gallery__item:hover video { transform: scale(1.08); }
.gallery__item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(transparent 45%, rgba(0,0,0,.78)); z-index: 1; }
.gallery__item figcaption { position: relative; z-index: 2; padding: 18px 20px; font-weight: 600; font-size: 1.05rem; }

/* ===== Reviews ===== */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review { background: var(--surface); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 30px 28px; transition: transform .3s var(--ease), border-color .3s; }
.review:hover { transform: translateY(-6px); border-color: rgba(139,92,246,.4); }
.review__stars { color: var(--orange); letter-spacing: 3px; margin-bottom: 14px; font-size: 1.1rem; }
.review p { font-style: italic; color: #E2E6EC; }
.review footer { margin-top: 18px; color: var(--muted); font-size: .9rem; }
.review footer strong { color: var(--text); }

/* ===== Contact ===== */
.contact { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: start; }
.contact__info .section__title, .contact__info .section__sub { text-align: left; }
.contact__details { list-style: none; margin: 28px 0; display: grid; gap: 18px; }
.contact__details li { display: flex; flex-direction: column; gap: 4px; }
.contact__label { text-transform: uppercase; letter-spacing: 2px; font-size: 11px; color: var(--teal); font-weight: 600; }
.contact__details a:hover { color: var(--teal); }
.contact__map { margin: 22px 0 6px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--glass-border); }
.contact__map iframe { display: block; width: 100%; height: 300px; border: 0; filter: grayscale(.2) contrast(1.05); }
.contact__social { display: flex; gap: 14px; margin-top: 6px; }
.social { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px; background: var(--glass); border: 1px solid var(--glass-border); color: var(--text); transition: transform .25s var(--ease), background .25s, color .25s; }
.social:hover { transform: translateY(-3px); background: var(--grad); color: #0A0B0F; border-color: transparent; }

.contact__form { background: var(--surface); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 34px 30px; }
.field { margin-bottom: 18px; display: flex; flex-direction: column; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { font-size: .88rem; margin-bottom: 8px; color: var(--muted); }
.field label span { color: var(--orange); }
.field input, .field select, .field textarea {
  background: var(--bg); border: 1px solid var(--glass-border); border-radius: 12px;
  padding: 13px 15px; color: var(--text); font-family: 'Jost', sans-serif; font-size: 1rem; transition: border-color .25s, box-shadow .25s;
  min-height: 48px;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(45,212,191,.18); }
.field input.invalid, .field textarea.invalid { border-color: #F87171; box-shadow: 0 0 0 3px rgba(248,113,113,.18); }
.form__submit { width: 100%; margin-top: 6px; }
.form__status { margin-top: 14px; font-size: .92rem; text-align: center; min-height: 1.2em; }
.form__status.ok { color: var(--teal); }
.form__status.err { color: #F87171; }

/* ===== Footer ===== */
.footer { background: #000; border-top: 1px solid var(--glass-border); padding: 56px 0 24px; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; align-items: center; }
.footer__logo { height: 64px; width: auto; margin-bottom: 12px; }
.footer__brand p { color: var(--muted); font-size: .95rem; }
.footer__nav { display: flex; flex-wrap: nowrap; gap: 16px; white-space: nowrap; }
.footer__nav a { color: var(--muted); transition: color .2s; }
.footer__nav a:hover { color: var(--text); }
.footer__social { display: flex; gap: 12px; justify-content: flex-end; }
.footer__bottom { text-align: center; color: var(--muted); font-size: .85rem; margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--glass-border); }
.footer__credit { margin-top: 6px; font-size: .8rem; color: var(--muted); opacity: .85; }
.footer__credit a { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; font-weight: 600; transition: opacity .2s; }
.footer__credit a:hover { opacity: .8; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__lead { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__media { order: -1; }
  .hero__img { width: min(300px, 70%); }
  .cards, .reviews, .gallery { grid-template-columns: repeat(2, 1fr); }
  .contact { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; text-align: center; gap: 22px; }
  .footer__nav, .footer__social { justify-content: center; }
}
@media (max-width: 820px) {
  .nav__links {
    position: fixed; inset: 0 0 auto 0; top: 0; flex-direction: column; gap: 22px;
    background: rgba(0,0,0,.97); backdrop-filter: blur(16px); padding: 110px 30px 50px;
    transform: translateY(-100%); transition: transform .4s var(--ease); height: 100dvh; justify-content: flex-start;
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { font-size: 1.3rem; }
  .nav__toggle { display: flex; z-index: 1002; }
  .features__grid, .stats__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .section { padding: 70px 0; }
  .cards, .reviews, .gallery, .plans { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero__title { letter-spacing: 1px; }
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  [data-aos] { opacity: 1 !important; transform: none !important; }
}
