/* ==========================================================================
   AQUA SHIELD WATERPROOFING — styles.css
   Every rule is scoped under the root class .aq so the whole sheet can be
   dropped into a WordPress theme without colliding with anything.
   The only exception is the GLOBAL RESET block directly below.
   ========================================================================== */


/* ==========================================================================
   GLOBAL RESET  — the only block in this file with bare element selectors
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: #FFFFFF;
  color: #223037;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, picture, svg, video { display: block; max-width: 100%; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}


/* ==========================================================================
   FONTS — self-hosted WOFF2, no runtime CDN
   ========================================================================== */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/poppins-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/poppins-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('assets/fonts/inter-var.woff2') format('woff2');
}


/* ==========================================================================
   DESIGN TOKENS
   ========================================================================== */
.aq {
  /* Brand */
  --aq-ink:            #072033;
  --aq-brand:          #0B6E8C;
  --aq-brand-700:      #085269;
  --aq-brand-100:      #E4F3F7;

  --aq-accent:         #F2994A;
  --aq-accent-700:     #D97F2E;
  --aq-accent-100:     #FDEEDD;

  --aq-wa:             #25D366;
  --aq-wa-700:         #1DA851;

  /* Neutrals */
  --aq-white:          #FFFFFF;
  --aq-paper:          #F5F9FA;
  --aq-line:           #DFE7EA;
  --aq-muted:          #52646B;
  --aq-body:           #223037;

  /* Type scale (fluid) */
  --aq-h1: clamp(2rem, 1.35rem + 3.1vw, 3.5rem);
  --aq-h2: clamp(1.6rem, 1.25rem + 1.7vw, 2.5rem);
  --aq-h3: clamp(1.15rem, 1.03rem + 0.55vw, 1.45rem);
  --aq-body-size: clamp(1rem, 0.97rem + 0.15vw, 1.0625rem);

  /* Spacing */
  --aq-s1: .5rem;  --aq-s2: .875rem; --aq-s3: 1.25rem;
  --aq-s4: 2rem;   --aq-s5: 3rem;    --aq-s6: 4.5rem;
  --aq-section-y: clamp(3rem, 2rem + 5vw, 6rem);

  --aq-radius: 14px;
  --aq-radius-lg: 22px;
  --aq-shadow: 0 4px 24px rgba(7,32,51,.08);
  --aq-shadow-lg: 0 18px 48px rgba(7,32,51,.16);
  --aq-maxw: 1200px;

  /* Internal */
  --aq-head-h: 4.125rem;

  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: var(--aq-body-size);
  line-height: 1.65;
  color: var(--aq-body);
  background: var(--aq-white);
}


/* ==========================================================================
   PRIMITIVES
   ========================================================================== */
.aq .aq-wrap {
  width: 100%;
  max-width: var(--aq-maxw);
  margin-inline: auto;
  padding-inline: var(--aq-s3);
}
.aq .aq-wrap--narrow { max-width: 820px; }

.aq .aq-visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}

.aq .aq-skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--aq-accent); color: var(--aq-ink);
  padding: .75rem 1.25rem; border-radius: 0 0 var(--aq-radius) 0;
  font-weight: 600; text-decoration: none;
}
.aq .aq-skip:focus { left: 0; }

.aq a { color: var(--aq-brand); }
.aq a:focus-visible,
.aq button:focus-visible,
.aq select:focus-visible,
.aq input:focus-visible,
.aq [tabindex]:focus-visible {
  outline: 3px solid var(--aq-accent);
  outline-offset: 3px;
  border-radius: 6px;
}

.aq .aq-i { width: 1.25em; height: 1.25em; flex: none; }

.aq .aq-star { width: 1rem; height: 1rem; fill: var(--aq-accent); }
.aq .aq-stars { display: inline-flex; gap: .1rem; }
.aq .aq-stars--sm .aq-star { width: .9rem; height: .9rem; }


/* --- Headings ------------------------------------------------------------ */
.aq .aq-h1, .aq .aq-h2, .aq .aq-h3 {
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0 0 var(--aq-s2);
  color: var(--aq-ink);
  text-wrap: balance;
}
.aq .aq-h1 { font-size: var(--aq-h1); }
.aq .aq-h2 { font-size: var(--aq-h2); }
.aq .aq-h3 { font-size: var(--aq-h3); }

/* 3.4 Signature two-tone heading — emphasised phrase italic + brand colour,
   with a soft amber swash underneath. */
.aq .aq-h1 strong,
.aq .aq-h2 strong {
  font-style: italic;
  color: var(--aq-brand);
  font-weight: 700;
  /* z-index:0 creates the stacking context the swash below sits inside, so
     the ::after lands behind the letters but in front of the section bg. */
  position: relative;
  z-index: 0;
  white-space: nowrap;
}
.aq .aq-h1 strong::after,
.aq .aq-h2 strong::after {
  content: "";
  position: absolute;
  left: -.06em; right: -.06em; bottom: .04em;
  height: .3em;
  background: var(--aq-accent);
  opacity: .3;
  border-radius: 999px;
  z-index: -1;
}
.aq .aq-section--ink .aq-h2,
.aq .aq-cta--ink .aq-h2,
.aq .aq-cta--brand .aq-h2 { color: var(--aq-white); }
.aq .aq-section--ink .aq-h2 strong,
.aq .aq-cta--ink .aq-h2 strong,
.aq .aq-cta--brand .aq-h2 strong { color: var(--aq-accent); }
.aq .aq-cta--brand .aq-h2 strong::after { opacity: .3; background: var(--aq-white); }

.aq .aq-kicker {
  margin: 0 0 var(--aq-s1);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--aq-brand);
}
.aq .aq-kicker--light { color: var(--aq-accent); }

.aq .aq-head { margin-bottom: var(--aq-s5); max-width: 46rem; }
.aq .aq-head--center { margin-inline: auto; text-align: center; }
.aq .aq-head--row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: var(--aq-s3); max-width: none;
}
.aq .aq-head__sub { margin: 0; color: var(--aq-muted); }

.aq .aq-section { padding-block: var(--aq-section-y); }
.aq .aq-section--paper { background: var(--aq-paper); }
.aq .aq-section--ink { background: var(--aq-ink); color: rgba(255,255,255,.82); }
.aq .aq-section--tight { padding-block: calc(var(--aq-section-y) * .62); }

.aq .aq-eyebrow {
  display: inline-flex; align-items: center; gap: .45rem;
  margin: 0 0 var(--aq-s2);
  padding: .3rem .75rem .3rem .55rem;
  background: var(--aq-brand-100);
  color: var(--aq-brand-700);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 500;
  line-height: 1.4;
}
.aq .aq-eyebrow .aq-i { width: 1rem; height: 1rem; }


/* --- Buttons (3.5) ------------------------------------------------------- */
.aq .aq-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 48px;
  padding: .6rem 1.25rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease,
              border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}
.aq .aq-btn--sm { min-height: 44px; padding: .45rem 1rem; font-size: .875rem; }

.aq .aq-btn--call { background: var(--aq-accent); color: var(--aq-ink); }
.aq .aq-btn--call:hover { background: var(--aq-accent-700); }

.aq .aq-btn--wa { background: var(--aq-wa); color: #06381A; }
.aq .aq-btn--wa:hover { background: var(--aq-wa-700); color: var(--aq-white); }

.aq .aq-btn--ghost {
  background: transparent;
  color: var(--aq-white);
  border-color: rgba(255,255,255,.38);
}
.aq .aq-btn--ghost:hover { background: rgba(255,255,255,.12); border-color: var(--aq-white); }

.aq .aq-btn:hover { transform: translateY(-2px); box-shadow: var(--aq-shadow); }
.aq .aq-btn:active { transform: translateY(0); }


/* ==========================================================================
   6.1 · TOP UTILITY BAR
   ========================================================================== */
.aq .aq-topbar { display: none; background: var(--aq-ink); color: rgba(255,255,255,.85); }

@media (min-width: 900px) {
  .aq .aq-topbar { display: block; }
}
.aq .aq-topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--aq-s3); padding-block: .5rem;
}
.aq .aq-topbar__msg { margin: 0; font-size: .875rem; }
.aq .aq-topbar__actions { display: flex; align-items: center; gap: var(--aq-s3); }
.aq .aq-topbar__tel {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--aq-white); text-decoration: none;
  font-size: .875rem; font-weight: 600;
  min-height: 44px;
}
.aq .aq-topbar__tel:hover { color: var(--aq-accent); }


/* ==========================================================================
   6.2 · STICKY HEADER
   ========================================================================== */
.aq .aq-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--aq-line);
  transition: box-shadow 160ms ease;
}
.aq .aq-header.is-stuck { box-shadow: var(--aq-shadow); }

.aq .aq-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--aq-s3);
  min-height: var(--aq-head-h);
  padding-block: .4rem;
}

.aq .aq-logo {
  display: inline-flex; align-items: center; gap: .55rem;
  text-decoration: none; flex: none;
}
/* The supplied logo is a complete badge lockup — it already carries the
   "AQUA SHIELD / WATERPROOFING" wordmark — so it is shown on its own rather
   than beside a second, duplicate text lockup. */
.aq .aq-logo__img {
  width: 48px; height: 48px; flex: none;
  object-fit: contain;
}
@media (min-width: 900px) {
  .aq .aq-logo__img { width: 54px; height: 54px; }
}
.aq .aq-logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.aq .aq-logo__name {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 700; font-size: .95rem;
  letter-spacing: .06em; color: var(--aq-brand);
}
.aq .aq-logo__sub {
  font-weight: 500; font-size: .68rem;
  text-transform: uppercase; letter-spacing: .12em; color: var(--aq-muted);
}

.aq .aq-nav { display: none; }
@media (min-width: 900px) {
  .aq .aq-nav { display: block; }
}
.aq .aq-nav__list {
  display: flex; align-items: center; gap: clamp(.5rem, 1.1vw, 1.1rem);
  list-style: none; margin: 0; padding: 0;
}
.aq .aq-nav__link {
  display: inline-flex; align-items: center;
  min-height: 44px; padding-inline: .35rem;
  color: var(--aq-body); text-decoration: none;
  font-size: .9rem; font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: color 160ms ease, border-color 160ms ease;
}
.aq .aq-nav__link:hover,
.aq .aq-nav__link.is-active { color: var(--aq-brand); border-bottom-color: var(--aq-accent); }

/* The sticky bottom bar hides at 900px, so the header must pick up the
   WhatsApp CTA from exactly that width — otherwise 900–1199px has no
   persistent Call/WhatsApp affordance once the top bar scrolls away.
   The phone number joins it at 1200px, where there is room for both. */
.aq .aq-header__cta { display: none; align-items: center; gap: var(--aq-s2); }
@media (min-width: 900px) {
  .aq .aq-header__cta { display: flex; }
}
.aq .aq-header__tel {
  display: none; align-items: center; gap: .4rem;
  min-height: 44px;
  color: var(--aq-ink); text-decoration: none;
  font-weight: 600; font-size: .9rem;
}
@media (min-width: 1200px) {
  .aq .aq-header__tel { display: inline-flex; }
}
.aq .aq-header__tel:hover { color: var(--aq-brand); }

.aq .aq-burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 46px; padding: 0 11px;
  background: var(--aq-brand-100); border: 0; border-radius: 12px; cursor: pointer;
}
@media (min-width: 900px) {
  .aq .aq-burger { display: none; }
}
.aq .aq-burger__bar {
  display: block; height: 2px; width: 100%;
  background: var(--aq-brand-700); border-radius: 2px;
}


/* --- Mobile nav overlay -------------------------------------------------- */
.aq .aq-mobilenav {
  position: fixed; inset: 0; z-index: 120;
  background: rgba(7,32,51,.55);
}
.aq .aq-mobilenav[hidden] { display: none; }
.aq .aq-mobilenav__panel {
  margin-left: auto;
  width: min(21rem, 88vw); height: 100%;
  background: var(--aq-white);
  padding: var(--aq-s3);
  display: flex; flex-direction: column; gap: var(--aq-s3);
  overflow-y: auto;
}
.aq .aq-mobilenav__head { display: flex; align-items: center; justify-content: space-between; }
.aq .aq-mobilenav__close {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px;
  background: var(--aq-brand-100); color: var(--aq-brand-700);
  border: 0; border-radius: 12px; cursor: pointer;
}
.aq .aq-mobilenav__list { list-style: none; margin: 0; padding: 0; }
.aq .aq-mobilenav__list a {
  display: flex; align-items: center;
  min-height: 52px;
  color: var(--aq-ink); text-decoration: none;
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 600; font-size: 1.05rem;
  border-bottom: 1px solid var(--aq-line);
}
.aq .aq-mobilenav__list a:hover { color: var(--aq-brand); }
.aq .aq-mobilenav__cta { display: grid; gap: var(--aq-s1); margin-top: auto; }


/* ==========================================================================
   6.3 · HERO
   Padding is deliberately tight so the image cluster breaks the fold on a
   phone — that is the top visual requirement of this build.
   ========================================================================== */
.aq .aq-hero {
  padding-block: 1.25rem 2.5rem;
  background:
    radial-gradient(60rem 32rem at 82% -12%, var(--aq-brand-100), transparent 62%),
    var(--aq-white);
}
@media (min-width: 900px) { .aq .aq-hero { padding-block: 1.5rem 3rem; } }
@media (min-width: 1200px) { .aq .aq-hero { padding-block: 1.75rem 3rem; } }

.aq .aq-hero__inner { display: grid; gap: var(--aq-s3); align-items: center; }
@media (min-width: 900px) {
  .aq .aq-hero__inner { grid-template-columns: 1fr .92fr; gap: var(--aq-s5); }
}

.aq .aq-hero__sub {
  margin: 0 0 var(--aq-s3);
  max-width: 34rem;
  color: var(--aq-muted);
  font-size: 1rem;
}
@media (min-width: 900px) { .aq .aq-hero__sub { font-size: 1.0625rem; } }

.aq .aq-hero__badges {
  display: flex; flex-wrap: wrap; gap: var(--aq-s1);
  list-style: none; margin: 0 0 var(--aq-s2); padding: 0;
}
.aq .aq-statbadge {
  display: flex; flex-direction: column;
  padding: .5rem .9rem;
  background: var(--aq-white);
  border: 1px solid var(--aq-line);
  border-left: 4px solid var(--aq-accent);
  border-radius: var(--aq-radius);
  box-shadow: var(--aq-shadow);
}
.aq .aq-statbadge__num {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 700; font-size: 1.2rem; line-height: 1.1;
  color: var(--aq-ink);
}
.aq .aq-statbadge__label { font-size: .76rem; color: var(--aq-muted); line-height: 1.35; }

.aq .aq-hero__rating {
  display: flex; align-items: center; flex-wrap: wrap; gap: .5rem;
  margin: 0; font-size: .85rem; color: var(--aq-muted);
}
.aq .aq-hero__rating strong { color: var(--aq-ink); }


/* --- Three-image cluster ------------------------------------------------- */
.aq .aq-hero__media { position: relative; }

.aq .aq-cluster {
  position: relative;
  width: 100%;
  aspect-ratio: 100 / 86;
  margin-bottom: 1.75rem;
}

.aq .aq-cluster__frame {
  position: absolute;
  overflow: hidden;
  border-radius: var(--aq-radius-lg);
  box-shadow: var(--aq-shadow-lg);
  background:
    linear-gradient(150deg, var(--aq-brand) 0%, var(--aq-brand-700) 55%, var(--aq-ink) 100%);
}
.aq .aq-cluster__frame--lead { left: 0;  top: 4%; width: 63%; height: 96%; z-index: 2; }
.aq .aq-cluster__frame--a    { right: 0; top: 0;  width: 40%; height: 47%; z-index: 1; }
.aq .aq-cluster__frame--b    { right: 0; bottom: 0; width: 40%; height: 47%; z-index: 3; }

/* <picture> is only a wrapper here — let the <img> position against the frame */
.aq .aq-cluster picture { display: contents; }

.aq .aq-cluster__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0;
  transition: opacity 700ms ease;
}
.aq .aq-cluster__img.is-active { opacity: 1; }

/* Graceful state if a hero image file is missing (see BUILD_PROMPT 4.3) */
.aq .aq-cluster__frame.is-empty::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,.16), transparent 58%);
}
.aq .aq-cluster__frame.is-empty .aq-cluster__img { display: none; }

.aq .aq-cluster__dots {
  position: absolute; left: 0; right: 0; bottom: -1.6rem;
  display: flex; justify-content: center; gap: .4rem;
}
.aq .aq-cluster__dot {
  width: 34px; height: 24px;
  padding: 0; border: 0; background: none; cursor: pointer;
}
.aq .aq-cluster__dot::before {
  content: ""; display: block;
  width: 100%; height: 4px; border-radius: 999px;
  background: var(--aq-line);
  transition: background-color 160ms ease;
}
.aq .aq-cluster__dot[aria-selected="true"]::before { background: var(--aq-accent); }


/* --- Rotating corner sticker -------------------------------------------- */
.aq .aq-sticker {
  display: none;
  position: absolute; top: -1.1rem; right: -1.1rem; z-index: 5;
  width: 108px; height: 108px;
  border-radius: 50%;
  background: var(--aq-ink);
  box-shadow: var(--aq-shadow-lg);
  place-items: center;
  /* The ring below is rotated; a rotated box contributes its (larger) bounding
     box to the page's scroll area, which pushed a horizontal scrollbar onto
     every width from 640px up. Clipping to the circle contains it. */
  overflow: hidden;
}
@media (min-width: 640px) {
  .aq .aq-sticker { display: grid; }
}
.aq .aq-sticker__ring {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  fill: var(--aq-white);
  animation: aq-spin 8s linear infinite;
}
.aq .aq-sticker__ring text {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 8.6px;
  font-weight: 600;
  letter-spacing: .09em;
}
.aq .aq-sticker__icon {
  width: 30px; height: 30px;
  color: var(--aq-accent);
}

@keyframes aq-spin { to { transform: rotate(360deg); } }


/* --- Phone-only hero compaction ------------------------------------------
   Everything above the cluster is tightened and the cluster is relaid out as
   a staggered ROW of three portrait cards (instead of one tall card beside a
   stacked pair) so the whole cluster clears the fold on a 375px screen.
   Keeping all three frames portrait means the 3:4 source photos barely crop.
   Desktop and tablet layouts above are untouched. */
@media (max-width: 639px) {
  .aq .aq-hero { padding-block: .75rem 1.75rem; }

  .aq .aq-eyebrow {
    margin-bottom: .5rem;
    padding: .22rem .6rem .22rem .45rem;
    font-size: .72rem;
  }
  .aq .aq-eyebrow .aq-i { width: .9rem; height: .9rem; }

  .aq .aq-hero .aq-h1 { font-size: 1.8rem; margin-bottom: .5rem; }

  .aq .aq-hero__sub {
    font-size: .875rem;
    line-height: 1.5;
    margin-bottom: .7rem;
  }

  .aq .aq-hero__badges { gap: .4rem; margin-bottom: .5rem; flex-wrap: nowrap; }
  /* equal shares so the pair never wraps to two rows on a 360px screen */
  .aq .aq-statbadge { flex: 1 1 0; min-width: 0; padding: .4rem .6rem; }
  .aq .aq-statbadge__num { font-size: 1.02rem; }
  .aq .aq-statbadge__label { font-size: .68rem; line-height: 1.3; }

  .aq .aq-hero__rating { font-size: .78rem; }
  .aq .aq-hero__rating .aq-star { width: .85rem; height: .85rem; }

  .aq .aq-cluster { aspect-ratio: 100 / 56; margin-bottom: 1.35rem; }
  .aq .aq-cluster__frame { border-radius: var(--aq-radius); }
  .aq .aq-cluster__frame--lead { left: 0;  top: 0;   width: 38%; height: 100%; }
  .aq .aq-cluster__frame--a    { left: 35%; top: 4%;  width: 31%; height: 82%; right: auto; }
  .aq .aq-cluster__frame--b    { right: 0;  top: 14%; width: 35%; height: 80%; bottom: auto; }
  .aq .aq-cluster__dots { bottom: -1.25rem; }
}


/* ==========================================================================
   SPLIT SECTIONS (What We Do · What's Covered · Why Choose Us)
   ========================================================================== */
.aq .aq-split { display: grid; gap: var(--aq-s4); align-items: center; }
@media (min-width: 900px) {
  .aq .aq-split { grid-template-columns: 1fr 1fr; gap: var(--aq-s5); }
  .aq .aq-split--reverse .aq-split__copy { order: 2; }
}
.aq .aq-split__copy p { margin: 0 0 var(--aq-s2); color: var(--aq-muted); }
.aq .aq-split__copy p:last-child { margin-bottom: 0; }

.aq .aq-figure { margin: 0; }
.aq .aq-figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 40%;
  border-radius: var(--aq-radius-lg);
  box-shadow: var(--aq-shadow-lg);
}
@media (min-width: 900px) {
  .aq .aq-figure img { aspect-ratio: 4 / 4.2; }
}

.aq .aq-checks {
  display: grid; grid-template-columns: 1fr; gap: .45rem;
  list-style: none; margin: var(--aq-s3) 0 0; padding: 0;
}
@media (min-width: 640px) {
  .aq .aq-checks { grid-template-columns: 1fr 1fr; gap: .45rem var(--aq-s3); }
}
.aq .aq-checks li {
  display: flex; align-items: flex-start; gap: .5rem;
  font-size: .95rem; line-height: 1.45;
  min-height: 32px;
}
.aq .aq-checks .aq-i { width: 1.1rem; height: 1.1rem; margin-top: .18rem; color: var(--aq-brand); }

.aq .aq-bullets { list-style: none; margin: var(--aq-s3) 0 0; padding: 0; display: grid; gap: var(--aq-s2); }
.aq .aq-bullets li {
  display: flex; align-items: flex-start; gap: .7rem;
  color: var(--aq-muted);
}
.aq .aq-bullets .aq-i {
  width: 1.4rem; height: 1.4rem; margin-top: .15rem;
  color: var(--aq-brand); flex: none;
}


/* ==========================================================================
   6.5 · KEY BENEFITS
   ========================================================================== */
.aq .aq-grid { display: grid; gap: var(--aq-s3); list-style: none; margin: 0; padding: 0; }
@media (min-width: 640px)  { .aq .aq-grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .aq .aq-grid--3 { grid-template-columns: repeat(3, 1fr); } }

.aq .aq-card {
  display: flex; flex-direction: column; gap: var(--aq-s2);
  padding: var(--aq-s3);
  background: var(--aq-white);
  border: 1px solid var(--aq-line);
  border-radius: var(--aq-radius-lg);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.aq .aq-card:hover {
  transform: translateY(-4px);
  border-color: var(--aq-brand);
  box-shadow: var(--aq-shadow-lg);
}
.aq .aq-card__icon {
  display: inline-grid; place-items: center;
  width: 48px; height: 48px;
  background: var(--aq-brand-100);
  color: var(--aq-brand);
  border-radius: 14px;
}
.aq .aq-card__icon .aq-i { width: 1.5rem; height: 1.5rem; }
.aq .aq-card__title {
  margin: 0;
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 1.05rem; font-weight: 600; line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--aq-ink);
}


/* ==========================================================================
   6.6 · GALLERY STRIP
   ========================================================================== */
.aq .aq-gallery__nav { display: flex; gap: .5rem; flex: none; }

.aq .aq-arrow {
  display: inline-grid; place-items: center;
  width: 46px; height: 46px;
  background: var(--aq-white);
  color: var(--aq-brand);
  border: 1px solid var(--aq-line);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}
.aq .aq-arrow:hover { background: var(--aq-brand); color: var(--aq-white); border-color: var(--aq-brand); }

.aq .aq-gallery {
  /* scroll-padding MUST track padding-inline: on wide screens the strip is
     inset to line up with the content column, and if the snap padding doesn't
     match, every snap point falls outside the scroll range and the strip
     loads pinned to its end. */
  --aq-gal-pad: var(--aq-s3);
  display: flex; gap: var(--aq-s3);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--aq-gal-pad);
  padding: var(--aq-s1) var(--aq-gal-pad) var(--aq-s3);
  scrollbar-width: thin;
}
.aq .aq-gallery__item {
  flex: 0 0 auto;
  width: min(78vw, 300px);
  margin: 0;
  scroll-snap-align: start;
}
.aq .aq-gallery__item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 40%;
  border-radius: var(--aq-radius-lg);
  box-shadow: var(--aq-shadow);
}
.aq .aq-gallery__item figcaption {
  margin-top: .6rem;
  font-size: .85rem;
  color: var(--aq-muted);
}
@media (min-width: 900px) {
  .aq .aq-gallery { --aq-gal-pad: max(var(--aq-s3), calc(50vw - var(--aq-maxw) / 2 + var(--aq-s3))); }
  .aq .aq-gallery__item { width: 320px; }
}
@media (min-width: 1200px) {
  .aq .aq-gallery__item { width: 360px; }
}


/* ==========================================================================
   6.7 · WORK IN ACTION (conditional)
   ========================================================================== */
.aq .aq-video__grid { display: grid; gap: var(--aq-s3); }
@media (min-width: 640px) { .aq .aq-video__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .aq .aq-video__grid { grid-template-columns: repeat(3, 1fr); } }

.aq .aq-video__item { position: relative; margin: 0; }
.aq .aq-video__item[hidden] { display: none; }
.aq .aq-video__item video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: var(--aq-ink);
  border-radius: var(--aq-radius-lg);
  box-shadow: var(--aq-shadow);
}
.aq .aq-video__mute {
  position: absolute; right: .7rem; bottom: .7rem;
  display: inline-grid; place-items: center;
  width: 44px; height: 44px;
  background: rgba(7,32,51,.72);
  color: var(--aq-white);
  border: 0; border-radius: 50%; cursor: pointer;
}
.aq .aq-video__mute:hover { background: var(--aq-ink); }


/* ==========================================================================
   6.8 · PROCESS
   ========================================================================== */
.aq .aq-steps {
  display: grid; gap: var(--aq-s3);
  list-style: none; margin: 0; padding: 0;
  counter-reset: none;
}
@media (min-width: 640px) { .aq .aq-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .aq .aq-steps { grid-template-columns: repeat(5, 1fr); gap: var(--aq-s2); } }

.aq .aq-step {
  padding: var(--aq-s3);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--aq-radius-lg);
}
.aq .aq-step__num {
  display: block;
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 700; font-size: 1.6rem; line-height: 1;
  color: var(--aq-accent);
  margin-bottom: var(--aq-s1);
}
.aq .aq-step__title {
  margin: 0 0 .4rem;
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 1.02rem; font-weight: 600; line-height: 1.3;
  color: var(--aq-white);
}
.aq .aq-step__text { margin: 0; font-size: .9rem; color: rgba(255,255,255,.72); line-height: 1.55; }


/* ==========================================================================
   6.11 · TRUST STRIP
   ========================================================================== */
.aq .aq-trust {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--aq-s2);
  list-style: none; margin: 0; padding: 0;
}
@media (min-width: 640px) { .aq .aq-trust { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .aq .aq-trust { grid-template-columns: repeat(6, 1fr); } }

.aq .aq-trust__item {
  display: flex; flex-direction: column; align-items: center; gap: .3rem;
  text-align: center;
  padding: var(--aq-s3) var(--aq-s2);
  background: var(--aq-brand-100);
  border-radius: var(--aq-radius);
}
.aq .aq-trust__item .aq-i { width: 1.65rem; height: 1.65rem; color: var(--aq-brand); }
.aq .aq-trust__label {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 600; font-size: .88rem; line-height: 1.25;
  color: var(--aq-ink);
}
.aq .aq-trust__sub { font-size: .74rem; color: var(--aq-muted); line-height: 1.3; }


/* ==========================================================================
   6.12 / 6.16 · CTA BANDS
   ========================================================================== */
.aq .aq-cta { padding-block: calc(var(--aq-section-y) * .7); }
.aq .aq-cta--ink { background: var(--aq-ink); }
.aq .aq-cta--brand { background: var(--aq-brand-700); }

.aq .aq-cta__inner {
  display: grid; gap: var(--aq-s3); align-items: center;
}
@media (min-width: 900px) {
  .aq .aq-cta__inner { grid-template-columns: 1fr auto; gap: var(--aq-s5); }
}
.aq .aq-cta__sub { margin: 0; color: rgba(255,255,255,.78); }
.aq .aq-cta__buttons { display: flex; flex-wrap: wrap; gap: var(--aq-s1); }


/* ==========================================================================
   6.13 · TESTIMONIALS
   ========================================================================== */
.aq .aq-gmark { display: inline-block; margin-bottom: var(--aq-s1); }
.aq .aq-gmark svg { width: 30px; height: 30px; }

.aq .aq-tcar { position: relative; }
.aq .aq-tcar__track {
  display: flex; gap: var(--aq-s3);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: var(--aq-s2);
  scrollbar-width: none;
}
.aq .aq-tcar__track::-webkit-scrollbar { display: none; }

.aq .aq-tcard {
  flex: 0 0 100%;
  scroll-snap-align: start;
  display: flex; flex-direction: column; gap: .6rem;
  padding: var(--aq-s3);
  background: var(--aq-white);
  border: 1px solid var(--aq-line);
  border-radius: var(--aq-radius-lg);
  box-shadow: var(--aq-shadow);
}
@media (min-width: 640px)  { .aq .aq-tcard { flex-basis: calc(50% - (var(--aq-s3) / 2)); } }
@media (min-width: 1200px) { .aq .aq-tcard { flex-basis: calc(33.3333% - (var(--aq-s3) * 2 / 3)); } }

.aq .aq-tcard__avatar {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px;
  background: var(--aq-brand);
  color: var(--aq-white);
  border-radius: 50%;
}
.aq .aq-tcard__avatar .aq-i { width: 1.35rem; height: 1.35rem; }
.aq .aq-tcard__quote { margin: 0; }
.aq .aq-tcard__quote p { margin: 0; font-size: .95rem; line-height: 1.6; color: var(--aq-body); }
.aq .aq-tcard__by {
  margin: auto 0 0;
  padding-top: .4rem;
  font-size: .78rem; font-weight: 600;
  color: var(--aq-muted);
}

.aq .aq-tcar__controls {
  display: flex; align-items: center; justify-content: center; gap: var(--aq-s2);
  margin-top: var(--aq-s3);
}
.aq .aq-dots { display: flex; gap: .4rem; }
.aq .aq-dot {
  width: 10px; height: 10px; padding: 0;
  background: var(--aq-line); border: 0; border-radius: 50%; cursor: pointer;
  transition: background-color 160ms ease, transform 160ms ease;
}
.aq .aq-dot[aria-current="true"] { background: var(--aq-accent); transform: scale(1.25); }

.aq .aq-reviews__close {
  max-width: 44rem; margin: var(--aq-s4) auto 0;
  text-align: center; color: var(--aq-muted); font-size: .95rem;
}


/* ==========================================================================
   FAQ
   ========================================================================== */
.aq .aq-faq { display: grid; gap: .6rem; }
.aq .aq-faq__item {
  background: var(--aq-white);
  border: 1px solid var(--aq-line);
  border-radius: var(--aq-radius);
  overflow: hidden;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.aq .aq-faq__item.is-open { border-color: var(--aq-brand); box-shadow: var(--aq-shadow); }
.aq .aq-faq__h { margin: 0; }
.aq .aq-faq__btn {
  display: flex; align-items: center; justify-content: space-between; gap: var(--aq-s2);
  width: 100%; min-height: 56px;
  padding: var(--aq-s2) var(--aq-s3);
  background: none; border: 0; cursor: pointer;
  text-align: left;
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 1rem; font-weight: 600; line-height: 1.35;
  color: var(--aq-ink);
}
.aq .aq-faq__btn:hover { color: var(--aq-brand); }
.aq .aq-faq__chev {
  width: 1.2rem; height: 1.2rem; flex: none;
  color: var(--aq-brand);
  transition: transform 220ms ease;
}
.aq .aq-faq__btn[aria-expanded="true"] .aq-faq__chev { transform: rotate(180deg); }

.aq .aq-faq__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 260ms ease;
}
.aq .aq-faq__panel.is-open { grid-template-rows: 1fr; }
.aq .aq-faq__inner { overflow: hidden; }
.aq .aq-faq__inner p {
  margin: 0;
  padding: 0 var(--aq-s3) var(--aq-s3);
  color: var(--aq-muted);
  font-size: .95rem;
}


/* ==========================================================================
   6.14 · WHERE WE WORK — area marquee
   ========================================================================== */
.aq .aq-marquee { display: grid; gap: var(--aq-s2); overflow: hidden; }
.aq .aq-marquee__row {
  display: flex; width: max-content;
  --aq-marq-dur: 38s;
}
.aq .aq-marquee__track {
  display: flex; gap: var(--aq-s2); padding-right: var(--aq-s2);
  flex: 0 0 auto;
  animation: aq-marq var(--aq-marq-dur) linear infinite;
}
.aq .aq-marquee__row--rev .aq-marquee__track { animation-direction: reverse; }
.aq .aq-marquee:hover .aq-marquee__track { animation-play-state: paused; }

.aq .aq-chip {
  display: inline-flex; align-items: center;
  padding: .5rem 1.1rem;
  background: var(--aq-white);
  border: 1px solid var(--aq-line);
  border-radius: 999px;
  white-space: nowrap;
  font-size: .9rem; font-weight: 500;
  color: var(--aq-ink);
}

@keyframes aq-marq { to { transform: translateX(-100%); } }


/* ==========================================================================
   6.15 · QR BLOCK
   ========================================================================== */
.aq .aq-qr {
  display: grid; gap: var(--aq-s4); align-items: center;
  padding: var(--aq-s4);
  background: var(--aq-brand-100);
  border-radius: var(--aq-radius-lg);
}
@media (min-width: 640px) {
  .aq .aq-qr { grid-template-columns: 1fr auto; }
}
.aq .aq-qr__copy p { margin: 0 0 var(--aq-s3); color: var(--aq-muted); }
.aq .aq-qr__btn { display: inline-flex; }
@media (min-width: 640px) {
  .aq .aq-qr__btn { display: none; }
}

.aq .aq-qr__card {
  display: none;
  padding: var(--aq-s3);
  background: var(--aq-white);
  border-radius: var(--aq-radius);
  box-shadow: var(--aq-shadow);
  text-align: center;
}
@media (min-width: 640px) {
  .aq .aq-qr__card { display: block; }
}
.aq .aq-qr__card img { width: 200px; height: 200px; }
.aq .aq-qr__caption { margin: .7rem 0 0; font-size: .8rem; color: var(--aq-muted); }


/* ==========================================================================
   6.17 · FOOTER
   ========================================================================== */
.aq .aq-footer { background: var(--aq-ink); color: rgba(255,255,255,.74); }
.aq .aq-footer__grid {
  display: grid; gap: var(--aq-s4);
  padding-block: var(--aq-s5) var(--aq-s4);
}
@media (min-width: 640px) { .aq .aq-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) {
  .aq .aq-footer__grid { grid-template-columns: 1.5fr 1fr 1.2fr 1.5fr; }
}

.aq .aq-logo--footer { pointer-events: none; margin-bottom: var(--aq-s2); }
.aq .aq-logo--footer .aq-logo__img { width: 78px; height: 78px; }
.aq .aq-logo--footer .aq-logo__name { color: var(--aq-white); font-size: 1.05rem; }
.aq .aq-logo--footer .aq-logo__sub { color: rgba(255,255,255,.6); }

.aq .aq-footer__desc { margin: 0; font-size: .9rem; line-height: 1.6; }

.aq .aq-footer__h {
  margin: 0 0 var(--aq-s2);
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: .95rem; font-weight: 600;
  color: var(--aq-white);
}
.aq .aq-footer__list { list-style: none; margin: 0; padding: 0; }
.aq .aq-footer__list a {
  display: inline-flex; align-items: center;
  min-height: 36px;
  color: rgba(255,255,255,.74);
  text-decoration: none;
  font-size: .9rem;
}
.aq .aq-footer__list a:hover { color: var(--aq-accent); }

.aq .aq-footer__contact { list-style: none; margin: 0 0 var(--aq-s3); padding: 0; display: grid; gap: .7rem; }
.aq .aq-footer__contact li { display: flex; align-items: flex-start; gap: .6rem; font-size: .9rem; }
.aq .aq-footer__contact .aq-i { width: 1.15rem; height: 1.15rem; margin-top: .2rem; color: var(--aq-accent); }
.aq .aq-footer__contact a { color: var(--aq-white); text-decoration: none; font-weight: 600; }
.aq .aq-footer__contact a:hover { color: var(--aq-accent); }
.aq .aq-footer__contact address { font-style: normal; line-height: 1.5; }

/* Footer WhatsApp composer — client-side URL builder, posts nowhere */
.aq .aq-compose {
  display: grid; gap: .5rem;
  padding: var(--aq-s3);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--aq-radius);
}
.aq .aq-compose__h {
  margin: 0;
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: .85rem; font-weight: 600; color: var(--aq-white);
}
.aq .aq-compose__field {
  width: 100%;
  min-height: 44px;
  padding: .55rem .75rem;
  background: rgba(255,255,255,.96);
  color: var(--aq-ink);
  border: 1px solid transparent;
  border-radius: 10px;
  font-family: inherit;
  font-size: .9rem;
}
.aq .aq-compose__btn { margin-top: .15rem; }

.aq .aq-footer__bottom {
  display: flex; flex-wrap: wrap; gap: .5rem var(--aq-s3);
  align-items: center; justify-content: space-between;
  padding-block: var(--aq-s3);
  border-top: 1px solid rgba(255,255,255,.12);
}
.aq .aq-footer__bottom p { margin: 0; font-size: .82rem; }
/* clearance so the floating WhatsApp button never sits over the credit line */
@media (max-width: 639px) {
  .aq .aq-footer__bottom { padding-bottom: calc(var(--aq-s3) + 3.5rem); }
}


/* ==========================================================================
   FLOATING WHATSAPP BUTTON — fixed bottom-right, every breakpoint
   Replaces the former sticky Call+WhatsApp bottom bar. Call is never fixed:
   it appears inline in the header and in the two CTA bands.
   ========================================================================== */
.aq .aq-wafab {
  position: fixed;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  z-index: 100;
  display: inline-grid;
  place-items: center;
  width: 56px; height: 56px;
  background: var(--aq-wa);
  color: #06381A;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(7,32,51,.28);
  text-decoration: none;
  transition: background-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}
@media (min-width: 900px) {
  .aq .aq-wafab {
    right: 1.5rem;
    bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
    width: 60px; height: 60px;
  }
}
.aq .aq-wafab:hover {
  background: var(--aq-wa-700);
  color: var(--aq-white);
  transform: translateY(-2px);
  box-shadow: var(--aq-shadow-lg);
}
.aq .aq-wafab__icon { width: 30px; height: 30px; }
@media (min-width: 900px) {
  .aq .aq-wafab__icon { width: 32px; height: 32px; }
}


/* ==========================================================================
   404 PAGE
   ========================================================================== */
.aq .aq-404 {
  display: grid; place-items: center; text-align: center;
  min-height: 58vh;
  padding-block: var(--aq-section-y);
}
.aq .aq-404__code {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: clamp(3.5rem, 2rem + 7vw, 6rem);
  font-weight: 700; line-height: 1;
  color: var(--aq-brand-100);
  margin: 0;
}
.aq .aq-404 p { color: var(--aq-muted); max-width: 34rem; margin: 0 0 var(--aq-s3); }


/* ==========================================================================
   REVEAL ON SCROLL
   ========================================================================== */
.aq .aq-reveal { opacity: 0; transform: translateY(18px); }
.aq .aq-reveal.is-in { opacity: 1; transform: none; transition: opacity 520ms ease, transform 520ms ease; }
.aq.no-motion .aq-reveal { opacity: 1; transform: none; }


/* ==========================================================================
   REDUCED MOTION — everything animated above is switched off here
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .aq *,
  .aq *::before,
  .aq *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .aq .aq-reveal { opacity: 1; transform: none; }
  .aq .aq-sticker__ring { animation: none; }
  .aq .aq-marquee__track { animation: none; }
  .aq .aq-marquee__row { width: 100%; overflow-x: auto; }
  .aq .aq-marquee__row--rev .aq-marquee__track { animation: none; }
  .aq .aq-btn:hover,
  .aq .aq-wafab:hover,
  .aq .aq-card:hover { transform: none; }
  .aq .aq-h1 strong::after,
  .aq .aq-h2 strong::after { display: none; }
  .aq .aq-cluster__img { transition: none; }
}
