/* ============================================================
   D-PLACE Distributors Limited — Air Conditioning
   Design system: cool-toned gradients on brand navy + gold
   ============================================================ */

:root {
  /* Brand */
  --navy-900: #0b1a33;
  --navy-800: #0e2140;
  --navy-700: #14294a;
  --navy-600: #1c3a63;
  --gold: #c9a24e;
  --gold-light: #e4c780;
  --gold-deep: #a8823a;

  /* Cool AC accent gradient family */
  --cool-1: #1f6feb;
  --cool-2: #2f9cdf;
  --cool-3: #46c7e8;
  --cool-4: #8fe3f2;

  /* Neutrals */
  --ink: #10233f;
  --body: #3f4d63;
  --muted: #6c7891;
  --line: #e5eaf1;
  --bg: #ffffff;
  --bg-soft: #f4f8fc;
  --bg-tint: #eef5fb;
  --white: #ffffff;

  --grad-cool: linear-gradient(120deg, var(--cool-1), var(--cool-2) 45%, var(--cool-3));
  --grad-hero: linear-gradient(155deg, var(--navy-900) 0%, var(--navy-700) 42%, #16406f 72%, #1c5a8f 100%);
  --grad-gold: linear-gradient(120deg, var(--gold-deep), var(--gold) 50%, var(--gold-light));

  --shadow-sm: 0 2px 8px rgba(16, 35, 63, .06);
  --shadow-md: 0 14px 40px rgba(16, 35, 63, .10);
  --shadow-lg: 0 30px 70px rgba(11, 26, 51, .18);
  --shadow-cool: 0 24px 60px rgba(31, 111, 235, .22);

  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --container: 1200px;
  --header-h: 76px;

  --font-head: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); }
body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.12; font-weight: 700; letter-spacing: -.02em; }

::selection { background: var(--cool-2); color: #fff; }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--cool-2); outline-offset: 2px;
}

.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }

.grad-text {
  background: linear-gradient(120deg, var(--cool-4), var(--cool-3) 40%, var(--cool-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--cool-2);
  margin-bottom: 14px;
}
.eyebrow--light { color: var(--gold-light); }

.glass {
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, .55);
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--navy-800);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  padding: 12px 22px; border-radius: var(--radius-pill);
  border: 1px solid transparent; cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.98); }
.btn--lg { padding: 15px 30px; font-size: 1rem; }
.btn--block { width: 100%; }

.btn--primary { background: var(--grad-cool); color: #fff; box-shadow: var(--shadow-cool); }
.btn--primary:hover { box-shadow: 0 30px 70px rgba(31, 111, 235, .32); }

.btn--gold { background: var(--grad-gold); color: var(--navy-900); box-shadow: 0 18px 44px rgba(201, 162, 78, .34); }
.btn--gold:hover { box-shadow: 0 26px 60px rgba(201, 162, 78, .44); }

.btn--ghost { background: rgba(255, 255, 255, .08); color: #fff; border-color: rgba(255, 255, 255, .32); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255, 255, 255, .16); }

.btn--soft { background: var(--bg-tint); color: var(--navy-700); }
.btn--soft:hover { background: var(--navy-800); color: #fff; }

/* ============================================================
   Header
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, .8);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid rgba(20, 41, 74, .08);
  transition: box-shadow .3s ease, background .3s ease;
}
.header.scrolled { box-shadow: var(--shadow-sm); background: rgba(255, 255, 255, .94); }
.header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand__logo { height: 52px; width: auto; }

.nav { display: flex; gap: 4px; }
.nav__link {
  font-family: var(--font-head); font-weight: 500; font-size: .94rem; color: var(--navy-700);
  padding: 8px 14px; border-radius: var(--radius-pill); position: relative; transition: color .2s, background .2s;
}
.nav__link:hover { color: var(--cool-1); background: var(--bg-tint); }

.header__actions { display: flex; align-items: center; gap: 14px; }
.header__phone { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--navy-800); }
.header__phone:hover { color: var(--cool-1); }
.header__phone svg { color: var(--cool-2); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px; border: none; background: var(--bg-tint); border-radius: 12px; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--navy-800); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; background: var(--grad-hero); color: #eaf2fb; overflow: hidden; padding: 80px 0 96px; }
.hero__bg { position: absolute; inset: 0; overflow: hidden; }
.hero__grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }

.hero__copy .eyebrow { color: var(--gold-light); }
.hero__title { font-size: clamp(2.5rem, 5.5vw, 4.1rem); color: #fff; font-weight: 800; margin-bottom: 22px; }
.hero__lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: #c4d6ea; max-width: 34ch; margin-bottom: 20px; }
.hero__tagline { font-family: var(--font-head); font-weight: 500; font-size: .84rem; letter-spacing: .06em; color: #9db6d2; margin-bottom: 34px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* animated cool waves / orbs */
.wave { position: absolute; border-radius: 45%; opacity: .5; filter: blur(2px); mix-blend-mode: screen; }
.wave--1 { width: 900px; height: 900px; right: -280px; top: -320px; background: radial-gradient(circle at 30% 30%, rgba(70,199,232,.55), transparent 60%); animation: float 16s ease-in-out infinite; }
.wave--2 { width: 620px; height: 620px; right: 120px; bottom: -280px; background: radial-gradient(circle at 50% 50%, rgba(31,111,235,.5), transparent 62%); animation: float 20s ease-in-out infinite reverse; }
.wave--3 { width: 460px; height: 460px; left: -160px; bottom: -180px; background: radial-gradient(circle at 50% 50%, rgba(143,227,242,.35), transparent 60%); animation: float 24s ease-in-out infinite; }
.orb { position: absolute; border-radius: 50%; filter: blur(50px); }
.orb--a { width: 260px; height: 260px; background: rgba(70,199,232,.5); top: 8%; left: -60px; animation: float 18s ease-in-out infinite; }
.orb--b { width: 200px; height: 200px; background: rgba(201,162,78,.35); bottom: 6%; right: 8%; animation: float 22s ease-in-out infinite reverse; }

@keyframes float { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(20px,-30px) scale(1.06); } }

/* Hero visual — AC unit card */
.hero__visual { position: relative; }
.unit-card { position: relative; border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-lg); }
.unit-card__glow { position: absolute; inset: 0; border-radius: var(--radius-lg); background: radial-gradient(circle at 70% 0%, rgba(70,199,232,.4), transparent 60%); pointer-events: none; }

.ac-unit { position: relative; }
.ac-unit__body {
  position: relative; height: 132px; border-radius: 18px 18px 26px 26px;
  background: linear-gradient(180deg, #ffffff, #eef4fa);
  box-shadow: inset 0 -10px 20px rgba(16,35,63,.06), 0 10px 24px rgba(16,35,63,.12);
  border: 1px solid #e3ecf5; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; padding: 16px 18px;
}
.ac-unit__display { display: flex; align-items: baseline; gap: 10px; }
.ac-unit__temp { font-family: var(--font-head); font-weight: 800; font-size: 2rem; color: var(--navy-800); }
.ac-unit__mode { font-family: var(--font-head); font-weight: 600; font-size: .66rem; letter-spacing: .12em; color: var(--cool-2); background: var(--bg-tint); padding: 4px 9px; border-radius: var(--radius-pill); }
.ac-unit__vent { display: flex; flex-direction: column; gap: 5px; }
.ac-unit__vent i { display: block; height: 4px; border-radius: 4px; background: linear-gradient(90deg, #dce7f2, #c3d5e8); }
.ac-unit__air { position: absolute; left: 20px; right: 20px; bottom: -4px; height: 36px; pointer-events: none; }
.ac-unit__air span { position: absolute; bottom: 0; width: 26px; height: 26px; border-radius: 50%; border: 2px solid rgba(70,199,232,.35); opacity: 0; animation: cool-air 3.2s ease-out infinite; }
.ac-unit__air span:nth-child(1) { left: 12%; animation-delay: 0s; }
.ac-unit__air span:nth-child(2) { left: 46%; animation-delay: 1s; }
.ac-unit__air span:nth-child(3) { left: 78%; animation-delay: 2s; }
@keyframes cool-air { 0% { transform: translateY(0) scale(.6); opacity: 0; } 30% { opacity: .55; } 100% { transform: translateY(20px) scale(1.25); opacity: 0; } }

.unit-card__meta { display: flex; align-items: center; justify-content: space-between; margin-top: 34px; }
.unit-card__name { font-family: var(--font-head); font-weight: 700; color: var(--navy-800); }
.unit-card__spec { font-size: .82rem; color: var(--muted); }

.floating-badge { position: absolute; display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-radius: 14px; box-shadow: var(--shadow-md); color: var(--navy-800); }
.floating-badge svg { color: var(--cool-1); flex-shrink: 0; }
.floating-badge strong { display: block; font-family: var(--font-head); font-size: .86rem; }
.floating-badge span { font-size: .72rem; color: var(--muted); }
.floating-badge--1 { top: -22px; left: -28px; animation: bob 5s ease-in-out infinite; }
.floating-badge--2 { bottom: -26px; right: -20px; animation: bob 6s ease-in-out infinite reverse; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ============================================================
   Trust bar
   ============================================================ */
.trustbar { background: var(--navy-900); border-top: 1px solid rgba(255,255,255,.06); }
.trustbar__inner { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding: 26px 0; }
.trustbar__item { display: flex; flex-direction: column; align-items: center; text-align: center; flex: 1; min-width: 130px; }
.trustbar__item strong { font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.trustbar__item span { font-size: .82rem; color: #9db6d2; }

/* ============================================================
   Section shells
   ============================================================ */
.section { padding: 92px 0; position: relative; }
.section--tint { background: var(--bg-soft); }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section__title { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 16px; }
.section__title--light { color: #fff; }
.section__sub { font-size: 1.08rem; color: var(--muted); }
.section__sub--left { text-align: left; }

/* ---------- Products ---------- */
.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.product { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .35s ease, box-shadow .35s ease; display: flex; flex-direction: column; }
.product:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.product__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--bg-tint); }
.product__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.product:hover .product__media img { transform: scale(1.06); }
.product__tag { position: absolute; top: 14px; left: 14px; background: var(--grad-cool); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: .74rem; padding: 5px 12px; border-radius: var(--radius-pill); box-shadow: var(--shadow-sm); }
.product__tag--alt { background: var(--grad-gold); color: var(--navy-900); }
.product__tag--dark { background: var(--navy-800); }
.product__body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.product__name { font-size: 1.25rem; margin-bottom: 10px; }
.product__desc { color: var(--body); font-size: .95rem; margin-bottom: 18px; }
.product__specs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.product__specs li { background: var(--bg-tint); color: var(--navy-700); font-size: .8rem; font-weight: 500; padding: 5px 11px; border-radius: var(--radius-pill); }
.product__btn { align-self: flex-start; margin-top: auto; }

/* ---------- Features ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 28px; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature__icon { width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; background: var(--grad-cool); margin-bottom: 20px; box-shadow: var(--shadow-cool); }
.feature__icon svg { width: 26px; height: 26px; color: #fff; }
.feature h3 { font-size: 1.15rem; margin-bottom: 10px; }
.feature p { color: var(--body); font-size: .95rem; }

/* ---------- Services ---------- */
.services { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service { position: relative; background: var(--navy-800); color: #d7e4f2; border-radius: var(--radius-lg); padding: 34px 26px 30px; overflow: hidden; transition: transform .35s ease; }
.service::before { content: ""; position: absolute; inset: 0; background: var(--grad-cool); opacity: 0; transition: opacity .35s ease; }
.service:hover { transform: translateY(-8px); }
.service:hover::before { opacity: 1; }
.service > * { position: relative; z-index: 1; }
.service__no { font-family: var(--font-head); font-weight: 800; font-size: 2rem; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; display: block; margin-bottom: 14px; transition: -webkit-text-fill-color .3s; }
.service:hover .service__no { background: none; color: rgba(255,255,255,.85); -webkit-text-fill-color: currentColor; }
.service h3 { color: #fff; font-size: 1.18rem; margin-bottom: 10px; }
.service p { font-size: .92rem; color: inherit; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; grid-auto-flow: row dense; gap: 16px; }
.gallery__item { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); position: relative; }
.gallery__item img, .gallery__item video { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(11,26,51,.35)); opacity: 0; transition: opacity .3s; }
.gallery__item:hover::after { opacity: 1; }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

/* ---------- Why (dark) ---------- */
.section--dark { background: var(--grad-hero); color: #d7e4f2; overflow: hidden; }
.why__bg { position: absolute; inset: 0; overflow: hidden; }
.why__grid { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.why__lead { font-size: 1.1rem; color: #c4d6ea; margin-bottom: 26px; max-width: 46ch; }
.why__list { display: grid; gap: 14px; margin-bottom: 34px; }
.why__list li { display: flex; align-items: center; gap: 12px; font-size: 1rem; color: #e4eef8; }
.check { width: 24px; height: 24px; border-radius: 50%; background: var(--grad-cool); flex-shrink: 0; position: relative; box-shadow: var(--shadow-cool); }
.check::after { content: ""; position: absolute; left: 8px; top: 5px; width: 6px; height: 11px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }

.why__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stat { border-radius: var(--radius-lg); padding: 30px 24px; text-align: center; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(8px); }
.stat strong { display: block; font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; color: #fff; line-height: 1; margin-bottom: 8px; }
.stat span { font-size: .86rem; color: #a9c1db; }
.stat--text strong { font-size: 1.7rem; padding-top: .35em; }

/* ---------- Contact ---------- */
.contact__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: start; }
.contact__list { display: grid; gap: 20px; margin-top: 30px; }
.contact__list li { display: flex; gap: 16px; align-items: center; }
.contact__ic { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: var(--bg-tint); flex-shrink: 0; }
.contact__ic svg { width: 22px; height: 22px; color: var(--cool-1); }
.contact__list strong { display: block; font-family: var(--font-head); color: var(--navy-800); font-size: .95rem; }
.contact__list a, .contact__list span { color: var(--body); font-size: .95rem; }
.contact__list a:hover { color: var(--cool-1); }

.contact__form { border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-md); background: #fff; border: 1px solid var(--line); }
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .84rem; color: var(--navy-700); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: .95rem; color: var(--ink);
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 12px; background: var(--bg-soft);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--cool-2); background: #fff; box-shadow: 0 0 0 4px rgba(47,156,223,.14); }
.field textarea { resize: vertical; }
.form-note { margin-top: 14px; font-size: .9rem; text-align: center; min-height: 1.2em; }
.form-note.ok { color: #1a8a4a; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--navy-900); color: #a9c1db; padding: 62px 0 26px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer__logo-chip { display: inline-flex; background: #fff; padding: 14px 18px; border-radius: 16px; margin-bottom: 16px; }
.footer__logo-chip img { height: 58px; width: auto; }
.footer__tag { font-family: var(--font-head); font-size: .9rem; color: #8faaca; max-width: 34ch; }
.footer__col h4 { color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.footer__col a, .footer__col span { display: block; color: #a9c1db; font-size: .92rem; margin-bottom: 10px; }
.footer__col a:hover { color: var(--gold-light); }
.footer__bottom { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; padding-top: 22px; font-size: .84rem; color: #7d97b6; }

/* WhatsApp FAB */
.whatsapp-fab { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 14px 30px rgba(37,211,102,.4); transition: transform .25s ease; }
.whatsapp-fab:hover { transform: scale(1.08) translateY(-2px); }

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 60px; }
  .hero__visual { max-width: 460px; }
  .products, .features { grid-template-columns: repeat(2, 1fr); }
  .services { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: 1fr; gap: 40px; }
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 760px) {
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; gap: 0;
    background: rgba(255,255,255,.98); backdrop-filter: blur(20px);
    padding: 12px 20px 20px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-140%); transition: transform .35s ease; visibility: hidden;
  }
  .nav.open { transform: translateY(0); visibility: visible; }
  .nav__link { padding: 14px 12px; border-radius: 12px; font-size: 1rem; border-bottom: 1px solid var(--line); }
  .nav__link:last-child { border-bottom: none; }
  .nav-toggle { display: flex; }
  .header__phone, .header__cta { display: none; }

  .hero { padding: 56px 0 72px; }
  .hero__visual { max-width: 100%; margin-top: 8px; }
  .floating-badge { display: none; }

  .trustbar__inner { gap: 24px 12px; }
  .trustbar__item { min-width: 42%; }

  .section { padding: 66px 0; }
  .section__head { margin-bottom: 40px; }
  .products, .features, .services { grid-template-columns: 1fr; }

  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 1; }

  .why__stats { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 420px) {
  .footer__grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
