/* ============================================================
   VERSI Construction — Design System
   Robustný industriálny štýl: betón, oceľ, bezpečnostná oranžová
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Archivo:wght@400;500;600;700;800&display=swap');

:root {
  /* Surfaces — warm concrete blacks */
  --bg:        #0e0e10;
  --surface:   #161618;
  --surface-2: #1d1d20;
  --surface-3: #25252a;
  --border:    #2c2c31;
  --border-2:  #3a3a40;

  /* Text */
  --text:    #f5f4f1;
  --muted:   #a4a19b;
  --muted-2: #76736d;

  /* Accent — safety orange (tweakable) */
  --accent:      #ff6a1a;
  --accent-soft: rgba(255, 106, 26, 0.14);
  --accent-line: rgba(255, 106, 26, 0.35);
  --on-accent:   #120a03;

  /* Geometry (tweakable: sharp vs soft) */
  --radius:    4px;
  --radius-lg: 8px;
  --radius-pill: 999px;

  /* Type */
  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Archivo', system-ui, sans-serif;

  /* Layout */
  --container: 1240px;
  --gutter: clamp(20px, 5vw, 64px);

  --shadow: 0 18px 50px -18px rgba(0,0,0,0.7);
  --ease: cubic-bezier(0.4, 0, 0.1, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--accent); color: var(--on-accent); }

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(64px, 9vw, 130px); }
.section--tight { padding-block: clamp(48px, 6vw, 84px); }

.bg-surface { background: var(--surface); }
.bg-surface-2 { background: var(--surface-2); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0;
}

.display {
  font-size: clamp(2.7rem, 7vw, 6.2rem);
  font-weight: 700;
  line-height: 0.95;
}

.h-xl { font-size: clamp(2.1rem, 4.6vw, 3.7rem); font-weight: 700; }
.h-lg { font-size: clamp(1.7rem, 3vw, 2.6rem); font-weight: 600; }
.h-md { font-size: clamp(1.25rem, 2vw, 1.6rem); font-weight: 600; }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.78rem;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--accent);
}
.eyebrow--center::after {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--accent);
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--muted);
  line-height: 1.7;
  max-width: 60ch;
}

.muted { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 16px 30px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--accent); color: var(--on-accent); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px -8px var(--accent-line); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--border-2); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--block { width: 100%; justify-content: center; }

.arrow-link {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.arrow-link svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.arrow-link:hover svg { transform: translateX(5px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14,14,16,0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background .3s var(--ease);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 18px;
}
.brand { display: flex; align-items: center; gap: 12px; flex: none; }
.brand img { height: 46px; width: auto; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}
.brand__name b { color: var(--accent); font-weight: 700; }

.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.92rem;
  color: var(--muted);
  padding: 10px 14px;
  white-space: nowrap;
  border-radius: var(--radius);
  transition: color .2s var(--ease);
  position: relative;
}
.nav a:hover { color: var(--text); }
.nav a.is-active { color: var(--text); }
.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px;
  background: var(--accent);
}
@media (max-width: 1180px) {
  .header-phone { display: none; }
}

.header-cta { display: flex; align-items: center; gap: 16px; flex: none; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  white-space: nowrap;
}
.header-phone svg { width: 17px; height: 17px; color: var(--accent); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--text); transition: .3s var(--ease); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img, .hero__media video { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,14,16,0.55) 0%, rgba(14,14,16,0.35) 40%, rgba(14,14,16,0.92) 100%),
    linear-gradient(90deg, rgba(14,14,16,0.85) 0%, rgba(14,14,16,0.2) 70%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 120px 90px;
}
.hero__title { max-width: 16ch; margin-top: 22px; }
.hero__title .accent { color: var(--accent); }
.hero__sub { margin-top: 26px; }
.hero__actions { margin-top: 40px; display: flex; gap: 16px; flex-wrap: wrap; }

.hero__stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
}
.hero__stats .stat { padding: 26px 4px; }

.stat__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  color: var(--text);
}
.stat__num .unit { color: var(--accent); }
.stat__label { color: var(--muted); font-size: 0.92rem; margin-top: 6px; }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-head { max-width: 64ch; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head__title { margin-top: 18px; }
.section-head__text { margin-top: 18px; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 56px;
}
.service-card {
  position: relative;
  background: var(--surface);
  padding: 0;
  overflow: hidden;
  transition: background .3s var(--ease);
}
.service-card__media { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.service-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
  filter: grayscale(0.2) contrast(1.02);
}
.service-card:hover .service-card__media img { transform: scale(1.06); }
.service-card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(22,22,24,0) 40%, rgba(22,22,24,0.85) 100%);
}
.service-card__index {
  position: absolute; top: 16px; left: 18px; z-index: 2;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.service-card__body { padding: 26px 28px 30px; }
.service-card__title { display: flex; align-items: center; gap: 12px; }
.service-card__title h3 { font-size: 1.35rem; }
.service-card ul {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 9px;
}
.service-card li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 0.97rem;
}
.service-card li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 9px; height: 9px;
  background: var(--accent);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.service-card__desc { margin: 14px 0 0; color: var(--muted); }

/* ============================================================
   WHY US / FEATURES
   ============================================================ */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 52px;
}
.feature {
  background: var(--surface);
  padding: 38px 36px;
  display: flex;
  gap: 22px;
  transition: background .3s var(--ease);
}
.feature:hover { background: var(--surface-2); }
.feature__icon {
  flex: none;
  width: 54px; height: 54px;
  display: grid; place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: var(--radius);
}
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.2rem; }
.feature p { margin: 10px 0 0; color: var(--muted); font-size: 0.98rem; }

/* ============================================================
   SPLIT / ABOUT
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media {
  position: relative;
  aspect-ratio: 4/3.4;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__badge {
  position: absolute;
  bottom: 0; right: 0;
  background: var(--accent);
  color: var(--on-accent);
  padding: 22px 28px;
  max-width: 240px;
}
.split__badge .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1;
}
.split__badge .txt { font-weight: 600; font-size: 0.92rem; margin-top: 6px; }
.split__body .lead { margin-top: 22px; }
.split__list { margin: 28px 0 0; padding: 0; list-style: none; display: grid; gap: 14px; }
.split__list li { display: flex; gap: 14px; align-items: flex-start; }
.split__list svg { flex: none; width: 22px; height: 22px; color: var(--accent); margin-top: 2px; }
.split__list b { font-weight: 600; }
.split__cta { margin-top: 34px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi {
  position: relative;
  max-width: 860px;
  margin: 52px auto 0;
}
.testi__track { overflow: hidden; }
.testi__slides { display: flex; transition: transform .55s var(--ease); }
.testi__slide { flex: 0 0 100%; padding: 0 8px; }
.testi__quote {
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  line-height: 1.5;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}
.testi__mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.6;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}
.testi__author { margin-top: 26px; display: flex; align-items: center; gap: 14px; }
.testi__avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}
.testi__name { font-family: var(--font-display); font-weight: 600; letter-spacing: 0.04em; }
.testi__loc { color: var(--muted); font-size: 0.9rem; }
.testi__nav { display: flex; gap: 10px; justify-content: center; margin-top: 38px; }
.testi__dot {
  width: 36px; height: 4px;
  background: var(--border-2);
  border: none;
  border-radius: var(--radius-pill);
  transition: background .3s var(--ease);
}
.testi__dot.is-active { background: var(--accent); }
.testi__arrows { display: flex; gap: 10px; }
.testi__arrow {
  width: 48px; height: 48px;
  border: 1px solid var(--border-2);
  background: transparent;
  color: var(--text);
  border-radius: var(--radius);
  display: grid; place-items: center;
  transition: .2s var(--ease);
}
.testi__arrow:hover { border-color: var(--accent); color: var(--accent); }
.testi__arrow svg { width: 20px; height: 20px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
  margin-top: 52px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease), filter .4s var(--ease);
  filter: grayscale(0.15);
}
.gallery__item:hover img { transform: scale(1.07); filter: grayscale(0); }
.gallery__item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(14,14,16,0.55));
  opacity: 0; transition: opacity .3s var(--ease);
}
.gallery__item:hover::after { opacity: 1; }
.gallery__cap {
  position: absolute; left: 16px; bottom: 14px; z-index: 2;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  opacity: 0; transform: translateY(8px);
  transition: .3s var(--ease);
}
.gallery__item:hover .gallery__cap { opacity: 1; transform: none; }
.gallery__tall { grid-row: span 2; }
.gallery__wide { grid-column: span 2; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 820px; margin: 48px auto 0; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  text-align: left;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.faq__icon {
  flex: none;
  width: 30px; height: 30px;
  position: relative;
}
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; background: var(--accent);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.faq__icon::before { width: 16px; height: 2px; }
.faq__icon::after { width: 2px; height: 16px; transition: transform .3s var(--ease); }
.faq__item.is-open .faq__icon::after { transform: translate(-50%,-50%) scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq__a-inner { padding-bottom: 26px; color: var(--muted); max-width: 64ch; }

/* ============================================================
   CONTACT / FORM
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 5vw, 64px);
}
.contact-info { display: grid; gap: 14px; align-content: start; }
.contact-row {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.contact-row__icon {
  flex: none; width: 48px; height: 48px;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center; border-radius: var(--radius);
}
.contact-row__icon svg { width: 22px; height: 22px; }
.contact-row__label { color: var(--muted); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.12em; }
.contact-row__value { font-family: var(--font-display); font-weight: 500; font-size: 1.15rem; margin-top: 2px; }

.form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  color: var(--muted);
}
.field input, .field textarea, .field select {
  background: var(--bg);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  color: var(--text);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color .2s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent);
}
.field textarea { resize: vertical; min-height: 130px; }
.field.has-error input, .field.has-error textarea { border-color: #e5484d; }
.field__error { color: #ff8084; font-size: 0.82rem; display: none; }
.field.has-error .field__error { display: block; }
.form__note { color: var(--muted-2); font-size: 0.82rem; margin-top: 8px; }
.form__success {
  display: none;
  text-align: center;
  padding: 30px;
}
.form__success.is-visible { display: block; }
.form__success svg { width: 56px; height: 56px; color: var(--accent); margin: 0 auto 16px; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--accent);
  color: var(--on-accent);
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
  padding-block: clamp(48px, 6vw, 72px);
}
.cta-band h2 { font-size: clamp(2rem, 4vw, 3.2rem); max-width: 18ch; }
.cta-band .btn--dark { background: var(--bg); color: var(--text); }
.cta-band .btn--dark:hover { background: #000; transform: translateY(-2px); }
.cta-band__pattern {
  position: absolute; inset: 0; opacity: 0.12;
  background-image: repeating-linear-gradient(45deg, #000 0 14px, transparent 14px 40px);
  pointer-events: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #0a0a0b; border-top: 1px solid var(--border); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-block: clamp(48px, 6vw, 80px);
}
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p { color: var(--muted); font-size: 0.95rem; max-width: 34ch; }
.footer-col h4 { font-size: 0.95rem; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 18px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-col a { color: var(--text); font-size: 0.97rem; transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-block: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted-2);
  font-size: 0.85rem;
}

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero__media { position: absolute; inset: 0; z-index: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.3); }
.page-hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,14,16,0.7), rgba(14,14,16,0.92));
}
.page-hero__inner { position: relative; z-index: 1; padding-block: clamp(80px, 11vw, 150px) clamp(56px, 7vw, 90px); }
.breadcrumb { display: flex; gap: 10px; align-items: center; color: var(--muted); font-size: 0.85rem; font-family: var(--font-display); letter-spacing: 0.06em; text-transform: uppercase; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--muted-2); }
.page-hero__title { margin-top: 20px; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  body { font-size: 16px; }
  .nav, .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .nav.is-open {
    display: flex;
    position: fixed;
    inset: 76px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 16px var(--gutter) 28px;
    gap: 2px;
  }
  .nav.is-open a { padding: 14px 4px; font-size: 1.05rem; border-bottom: 1px solid var(--border); }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .features { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery__wide { grid-column: span 2; }
  .form__row { grid-template-columns: 1fr; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .testi__quote { font-size: 1.15rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
