/* =========================================================================
   Aqua Shield Waterproofing — styles.css
   Mobile-only (360–480px). Everything scoped under .aq except one reset.
   ========================================================================= */

/* GLOBAL RESET */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; }
img, svg, picture, video { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; color: inherit; }
/* END GLOBAL RESET */


/* ---------- self-hosted fonts ---------- */
@font-face {
  font-family: 'Poppins';
  src: url('assets/fonts/poppins-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('assets/fonts/poppins-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('assets/fonts/inter-var.woff2') format('woff2');
  font-weight: 400 600; font-style: normal; font-display: swap;
}


/* =========================================================================
   TOKENS
   ========================================================================= */
.aq {
  --aq-ink:             #071B2C;
  --aq-brand:           #1D5C82;
  --aq-brand-700:       #123F5B;
  --aq-brand-300:       #7FB2CE;   /* lighter shade of the same blue, for on-dark accents */
  --aq-brand-100:       #E7F0F5;

  --aq-wa:              #25D366;
  --aq-wa-700:          #1DA851;

  --aq-white:           #FFFFFF;
  --aq-paper:           #F5F8FA;
  --aq-line:            #DDE6EC;
  --aq-muted:           #52646B;
  --aq-body:            #1E2A33;

  --aq-h1: clamp(1.9rem, 1.5rem + 2vw, 2.4rem);
  --aq-h2: clamp(1.5rem, 1.25rem + 1.2vw, 1.9rem);
  --aq-h3: clamp(1.1rem, 1.0rem + 0.5vw, 1.3rem);

  --aq-s1: .5rem;  --aq-s2: .875rem; --aq-s3: 1.25rem;
  --aq-s4: 2rem;   --aq-s5: 3rem;

  --aq-radius: 14px;
  --aq-radius-lg: 20px;
  --aq-shadow: 0 4px 24px rgba(7,27,44,.08);
  --aq-shadow-lg: 0 18px 48px rgba(7,27,44,.16);
  --aq-content-maxw: 560px;

  --aq-head-h: 78px;
  --aq-gut: 20px;
  --aq-fab-size: 58px;

  --aq-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --aq-display: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  background: var(--aq-white);
  color: var(--aq-body);
  font-family: var(--aq-sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;
}

.aq :where(h1, h2, h3) {
  font-family: var(--aq-display);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin: 0;
  color: var(--aq-ink);
}
.aq :where(p) { margin: 0; }
.aq :where(ul, ol) { margin: 0; padding: 0; list-style: none; }
.aq :where(a) { color: var(--aq-brand); text-decoration: none; }
.aq :where(address) { font-style: normal; }

.aq :focus-visible {
  outline: 3px solid var(--aq-brand);
  outline-offset: 2px;
  border-radius: 6px;
}
.aq-utility :focus-visible,
.aq-nav :focus-visible,
.aq-hero :focus-visible,
.aq-trust :focus-visible,
.aq-cta :focus-visible,
.aq-footer :focus-visible { outline-color: var(--aq-brand-300); }

.aq-sr {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}
.aq-anchor { display: block; height: 0; scroll-margin-top: var(--aq-head-h); }

.aq-skip {
  position: absolute; left: 50%; top: 0;
  transform: translate(-50%, -140%);
  z-index: 90;
  background: var(--aq-brand); color: var(--aq-white);
  padding: .65rem 1rem; border-radius: 0 0 var(--aq-radius) var(--aq-radius);
  font-size: .9rem; font-weight: 600;
}
.aq-skip:focus { transform: translate(-50%, 0); }

/* shared icon sizing */
.aq-i {
  width: 22px; height: 22px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.aq-i--fill { fill: currentColor; stroke: none; }
.aq-i-wa { width: 20px; height: 20px; flex: none; fill: currentColor; stroke: none; }


/* =========================================================================
   LAYOUT SHELL — phone widths only, 560px is a safety net, not a breakpoint
   ========================================================================= */
/* Every section is full-bleed; its inner box is what gets the 560px cap. */
.aq-utility__text,
.aq-header__inner,
.aq-nav__head, .aq-nav__list, .aq-nav__foot,
.aq-hero__body,
.aq-stats__grid,
.aq-sec > *,
.aq-trust__grid,
.aq-areas > *,
.aq-cta > *,
.aq-footer > * {
  max-width: var(--aq-content-maxw);
  margin-inline: auto;
}


/* =========================================================================
   6.1  UTILITY BAR
   ========================================================================= */
.aq-utility {
  background: var(--aq-ink);
  color: #C9D9E4;
  padding: .55rem var(--aq-gut);
}
.aq-utility__text {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  font-size: .78rem; letter-spacing: .01em; text-align: center;
}
.aq-utility .aq-i { width: 16px; height: 16px; color: var(--aq-brand-300); }


/* =========================================================================
   6.2  HEADER + OVERLAY NAV
   ========================================================================= */
.aq-header {
  position: sticky; top: 0; z-index: 40;
  background: var(--aq-white);
  border-bottom: 1px solid var(--aq-line);
  transition: box-shadow .25s ease;
}
.aq-header.is-stuck { box-shadow: 0 6px 20px rgba(7,27,44,.10); }
.aq-header__inner {
  height: var(--aq-head-h);
  padding-inline: var(--aq-gut);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.aq-brandmark { display: block; line-height: 0; }
.aq-brandmark img { height: 56px; width: auto; }

.aq-burger {
  width: 46px; height: 46px; margin-right: -10px;
  display: grid; place-items: center;
  background: none; border: 0; padding: 0; cursor: pointer;
  color: var(--aq-ink);
}
.aq-burger__box { display: grid; gap: 5px; width: 24px; }
.aq-burger__bar {
  height: 2px; width: 100%; border-radius: 2px;
  background: currentColor;
  transition: transform .22s ease, opacity .18s ease;
}
.aq-burger__bar:nth-child(2) { width: 18px; justify-self: end; }

.aq-nav {
  position: fixed; inset: 0; z-index: 60;
  background: var(--aq-ink);
  color: var(--aq-white);
  display: flex; flex-direction: column;
  padding: 0 var(--aq-gut) calc(var(--aq-gut) + env(safe-area-inset-bottom, 0px));
  overflow-y: auto;
  opacity: 0;
  transition: opacity .22s ease;
}
.aq-nav.is-open { opacity: 1; }
.aq-nav[hidden] { display: none; }
.aq-nav__head {
  width: 100%;
  height: var(--aq-head-h);
  display: flex; align-items: center; justify-content: space-between;
  flex: none;
}
.aq-nav__logo {
  height: 56px; width: auto;
  background: var(--aq-white);
  border-radius: 10px;
  padding: 4px 8px;
}
.aq-nav__close {
  width: 46px; height: 46px; margin-right: -10px;
  display: grid; place-items: center;
  background: none; border: 0; padding: 0; cursor: pointer;
  color: var(--aq-white);
}
.aq-nav__close .aq-i { width: 26px; height: 26px; stroke-width: 1.9; }

.aq-nav__list {
  width: 100%;
  display: flex; flex-direction: column;
  padding-block: var(--aq-s3);
  flex: 1 1 auto;
}
.aq-nav__link {
  display: flex; align-items: center;
  min-height: 52px;
  font-family: var(--aq-display);
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: -.02em;
  color: var(--aq-white);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.aq-nav__foot { width: 100%; flex: none; padding-top: var(--aq-s3); }
.aq-nav__meta {
  margin-top: var(--aq-s2);
  text-align: center;
  font-size: .82rem;
  color: #9FB6C6;
}


/* =========================================================================
   BUTTONS
   ========================================================================= */
.aq-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 48px;
  padding: .8rem 1.4rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: var(--aq-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -.01em;
  text-align: center;
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.aq-btn--full { display: flex; width: 100%; }
.aq-btn:active { transform: translateY(1px); }

.aq-btn--primary {
  background: var(--aq-brand);
  border-color: var(--aq-brand);
  color: var(--aq-white);
  box-shadow: 0 10px 26px rgba(29,92,130,.38);
}
.aq-btn--primary:hover { background: var(--aq-brand-700); border-color: var(--aq-brand-700); }

.aq-btn--wa {
  background: var(--aq-wa);
  border-color: var(--aq-wa);
  color: #05331A;
  box-shadow: 0 10px 26px rgba(37,211,102,.30);
}
.aq-btn--wa:hover { background: var(--aq-wa-700); border-color: var(--aq-wa-700); color: var(--aq-white); }

.aq-btn--ghost {
  background: transparent;
  border-color: rgba(255,255,255,.75);
  color: var(--aq-white);
}
.aq-btn--ghost:hover { background: var(--aq-white); color: var(--aq-brand-700); border-color: var(--aq-white); }


/* =========================================================================
   6.3  HERO
   ========================================================================= */
.aq-hero {
  position: relative;
  isolation: isolate;
  min-height: 78vh;
  min-height: 78svh;
  display: flex;
  align-items: flex-end;
  background: var(--aq-ink);
}
.aq-hero__media { position: absolute; inset: 0; z-index: 0; }
.aq-hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 38% 42%;
}
.aq-hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, rgba(7,27,44,.97) 0%, rgba(7,27,44,.93) 30%, rgba(7,27,44,.80) 48%, rgba(7,27,44,.42) 68%, rgba(7,27,44,.10) 86%, rgba(7,27,44,.38) 100%);
}
.aq-hero__body {
  position: relative; z-index: 2;
  width: 100%;
  max-width: var(--aq-content-maxw);
  margin-inline: auto;
  padding: var(--aq-s5) var(--aq-gut) var(--aq-s4);
  color: var(--aq-white);
}
.aq-hero__h {
  font-size: var(--aq-h1);
  color: var(--aq-white);
  text-wrap: balance;
  line-height: 1.2;
  text-shadow: 0 2px 18px rgba(7,27,44,.55);
}
.aq-hero__sub {
  margin-top: var(--aq-s2);
  font-size: 1rem;
  color: #D3E1EB;
  text-shadow: 0 1px 12px rgba(7,27,44,.55);
}
.aq-hero__body .aq-btn { margin-top: var(--aq-s3); }

/* underline swash — brand blue, never gold */
.aq-swash {
  position: relative;
  white-space: nowrap;
  color: var(--aq-brand-300);
}
.aq-swash::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -.04em;
  height: .11em;
  border-radius: 999px;
  background: var(--aq-brand-300);
  opacity: .85;
}
.aq-swash--light { color: var(--aq-white); }
.aq-swash--light::after { background: rgba(255,255,255,.85); }

/* stat strip — sits under the button, never on the photo */
.aq-stats {
  background: var(--aq-brand-700);
  color: var(--aq-white);
}
.aq-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: var(--aq-s3) var(--aq-gut);
  text-align: center;
}
.aq-stats__item { padding-inline: .3rem; }
.aq-stats__item + .aq-stats__item { border-left: 1px solid rgba(255,255,255,.18); }
.aq-stats__value {
  display: flex; align-items: center; justify-content: center; gap: .18rem;
  font-family: var(--aq-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -.02em;
  line-height: 1.1;
}
.aq-stats__value .aq-i { width: 16px; height: 16px; color: var(--aq-brand-300); }
.aq-stats__unit { font-size: .78rem; font-weight: 600; opacity: .85; }
.aq-stats__label {
  display: block;
  margin-top: .3rem;
  font-size: .68rem;
  line-height: 1.35;
  color: #BCD3E1;
}


/* =========================================================================
   GENERIC SECTION
   ========================================================================= */
.aq-sec {
  padding: var(--aq-s5) var(--aq-gut);
  scroll-margin-top: var(--aq-head-h);
}
.aq-sec--paper { background: var(--aq-paper); border-block: 1px solid var(--aq-line); }

.aq-eyebrow {
  font-family: var(--aq-display);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--aq-brand);
  display: flex; align-items: center; gap: .6rem;
}
.aq-eyebrow::after {
  content: ""; height: 2px; flex: 1 1 auto; max-width: 64px;
  background: var(--aq-brand); opacity: .35; border-radius: 2px;
}
.aq-eyebrow--center { justify-content: center; }
.aq-eyebrow--center::after { display: none; }

.aq-h2 {
  margin-top: var(--aq-s1);
  font-size: var(--aq-h2);
  text-wrap: balance;
}
.aq-h2--center { text-align: center; }

.aq-lede {
  margin-top: var(--aq-s2);
  color: var(--aq-muted);
  font-size: .97rem;
}
.aq-lede--center { text-align: center; }

.aq-ticks { margin-top: var(--aq-s3); display: grid; gap: .7rem; }
.aq-ticks li {
  display: flex; align-items: flex-start; gap: .65rem;
  font-size: .94rem; font-weight: 500;
  color: var(--aq-ink);
}
.aq-ticks .aq-i {
  width: 20px; height: 20px;
  margin-top: 2px;
  padding: 3px;
  border-radius: 50%;
  background: var(--aq-brand);
  color: var(--aq-white);
  stroke-width: 2.6;
}


/* =========================================================================
   6.5  SERVICE CARDS
   ========================================================================= */
.aq-cards { margin-top: var(--aq-s4); display: grid; gap: var(--aq-s3); }

.aq-card {
  background: var(--aq-white);
  border: 1px solid var(--aq-line);
  border-radius: var(--aq-radius-lg);
  box-shadow: var(--aq-shadow);
  overflow: hidden;
}
.aq-card__media { position: relative; background: var(--aq-brand-100); }
.aq-card__media img {
  width: 100%; height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.aq-card__badge {
  position: absolute; left: var(--aq-s2); bottom: -22px;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: var(--aq-white);
  color: var(--aq-brand);
  border-radius: 13px;
  box-shadow: 0 6px 16px rgba(7,27,44,.18);
}
.aq-card__badge .aq-i { width: 24px; height: 24px; }

.aq-card__body { padding: calc(var(--aq-s3) + 12px) var(--aq-s3) var(--aq-s3); }
.aq-card__h { font-size: var(--aq-h3); }
.aq-card__p {
  margin-top: .45rem;
  font-size: .92rem;
  color: var(--aq-muted);
}
.aq-card__link {
  display: inline-flex; align-items: center; gap: .4rem;
  min-height: 44px;
  margin-top: .45rem;
  font-family: var(--aq-display);
  font-weight: 600;
  font-size: .92rem;
  color: var(--aq-brand);
}
.aq-card__link .aq-i { width: 18px; height: 18px; transition: transform .2s ease; }
.aq-card__link:hover { color: var(--aq-brand-700); }
.aq-card__link:hover .aq-i { transform: translateX(3px); }


/* =========================================================================
   6.6  PROCESS
   ========================================================================= */
.aq-steps { margin-top: var(--aq-s4); display: grid; gap: 0; }
.aq-step {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: var(--aq-s3);
  padding-bottom: var(--aq-s4);
}
.aq-step:last-child { padding-bottom: 0; }
.aq-step::before {
  content: "";
  position: absolute;
  left: 21px; top: 44px; bottom: 6px;
  width: 2px;
  background: linear-gradient(to bottom, var(--aq-brand) 0%, rgba(29,92,130,.15) 100%);
}
.aq-step:last-child::before { display: none; }
.aq-step__num {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--aq-brand);
  color: var(--aq-white);
  font-family: var(--aq-display);
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 8px 18px rgba(29,92,130,.28);
}
.aq-step__h { font-size: var(--aq-h3); padding-top: .5rem; }
.aq-step__p { margin-top: .4rem; font-size: .93rem; color: var(--aq-muted); }


/* =========================================================================
   6.7  TRUST STRIP
   ========================================================================= */
.aq-trust {
  background: var(--aq-ink);
  color: var(--aq-white);
  padding: var(--aq-s4) var(--aq-gut);
}
.aq-trust__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--aq-s3) var(--aq-s2);
}
.aq-trust__item {
  display: flex; align-items: flex-start; gap: .6rem;
  font-family: var(--aq-display);
  font-weight: 600;
  font-size: .86rem;
  line-height: 1.3;
  letter-spacing: -.01em;
}
.aq-trust__item .aq-i { width: 24px; height: 24px; color: var(--aq-brand-300); }
.aq-trust__item small {
  display: block;
  font-family: var(--aq-sans);
  font-weight: 400;
  font-size: .76rem;
  color: #9FB6C6;
  letter-spacing: 0;
}


/* =========================================================================
   6.8  TESTIMONIALS
   ========================================================================= */
.aq-carousel { margin-top: var(--aq-s4); }
.aq-carousel__track {
  display: flex;
  gap: var(--aq-s3);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.aq-carousel__track::-webkit-scrollbar { display: none; }

.aq-quote {
  flex: 0 0 100%;
  scroll-snap-align: center;
  background: var(--aq-white);
  border: 1px solid var(--aq-line);
  border-left: 4px solid var(--aq-brand);
  border-radius: var(--aq-radius);
  box-shadow: var(--aq-shadow);
  padding: var(--aq-s3);
  display: flex; flex-direction: column;
}
.aq-quote__stars { display: flex; gap: 2px; color: var(--aq-brand); }
.aq-quote__stars .aq-i { width: 16px; height: 16px; }
.aq-quote__text { margin: var(--aq-s2) 0 0; }
.aq-quote__text p { font-size: .97rem; color: var(--aq-ink); }
.aq-quote__by {
  margin-top: var(--aq-s2);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--aq-muted);
}

.aq-carousel__dots {
  display: flex; justify-content: center; gap: .5rem;
  margin-top: var(--aq-s3);
}
.aq-dot {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  background: none; border: 0; padding: 0; cursor: pointer;
}
.aq-dot::before {
  content: "";
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--aq-line);
  transition: width .22s ease, background-color .22s ease;
}
.aq-dot[aria-selected="true"]::before { width: 24px; background: var(--aq-brand); }


/* =========================================================================
   6.9  WHERE WE WORK
   ========================================================================= */
.aq-areas {
  background: var(--aq-brand-100);
  padding: var(--aq-s5) 0;
  overflow: hidden;
}
.aq-areas > :not(.aq-marquee) { padding-inline: var(--aq-gut); }
.aq-marquee { margin-top: var(--aq-s3); overflow: hidden; }
.aq-marquee:first-of-type { margin-top: var(--aq-s4); }
.aq-marquee__track {
  display: flex; gap: .55rem; width: max-content;
  animation: aq-slide 32s linear infinite;
}
.aq-marquee__track--rev { animation-direction: reverse; }
@keyframes aq-slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.aq-chip {
  flex: none;
  padding: .5rem .9rem;
  background: var(--aq-white);
  border: 1px solid var(--aq-line);
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 500;
  color: var(--aq-brand-700);
  white-space: nowrap;
}


/* =========================================================================
   6.10  CTA BAND
   ========================================================================= */
.aq-cta {
  background: linear-gradient(160deg, var(--aq-brand) 0%, var(--aq-brand-700) 65%, var(--aq-ink) 100%);
  color: var(--aq-white);
  padding: var(--aq-s5) var(--aq-gut);
  text-align: center;
}
.aq-cta__h { font-size: var(--aq-h2); color: var(--aq-white); text-wrap: balance; }
.aq-cta__p {
  margin-top: var(--aq-s2);
  font-size: .97rem;
  color: #D3E1EB;
}
.aq-cta .aq-btn { margin-top: var(--aq-s3); }
.aq-cta__meta { margin-top: var(--aq-s2); font-size: .8rem; color: #A9C4D5; }


/* =========================================================================
   6.11  FAQ
   ========================================================================= */
.aq-faq {
  margin-top: var(--aq-s4);
  border-top: 1px solid var(--aq-line);
}
.aq-faq__item { border-bottom: 1px solid var(--aq-line); }
.aq-faq__h { margin: 0; font-size: inherit; }
.aq-faq__btn {
  width: 100%;
  min-height: 56px;
  display: flex; align-items: center; justify-content: space-between; gap: var(--aq-s2);
  padding: var(--aq-s2) 0;
  background: none; border: 0;
  text-align: left; cursor: pointer;
  font-family: var(--aq-display);
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: -.01em;
  color: var(--aq-ink);
}
.aq-faq__chev {
  color: var(--aq-brand);
  transition: transform .25s ease;
}
.aq-faq__btn[aria-expanded="true"] .aq-faq__chev { transform: rotate(180deg); }
.aq-faq__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}
.aq-faq__panel.is-open { grid-template-rows: 1fr; }
.aq-faq__inner { overflow: hidden; }
.aq-faq__inner p {
  padding-bottom: var(--aq-s3);
  font-size: .93rem;
  color: var(--aq-muted);
}


/* =========================================================================
   6.12  QR BLOCK
   ========================================================================= */
.aq-qr { text-align: center; }
.aq-qr__card {
  width: 212px;
  margin: var(--aq-s4) auto 0;
  padding: 14px;
  background: var(--aq-white);
  border: 1px solid var(--aq-line);
  border-radius: var(--aq-radius-lg);
  box-shadow: var(--aq-shadow);
}
.aq-qr__card img { width: 100%; height: auto; }
.aq-qr__note {
  margin-top: var(--aq-s3);
  font-size: .9rem;
  color: var(--aq-muted);
}


/* =========================================================================
   6.13  FOOTER
   ========================================================================= */
.aq-footer {
  background: var(--aq-ink);
  color: #C2D4E0;
  /* bottom padding keeps the fixed WhatsApp button clear of the last footer line */
  padding: var(--aq-s5) var(--aq-gut)
           calc(var(--aq-s3) + var(--aq-fab-size) + 12px + env(safe-area-inset-bottom, 0px));
}
.aq-footer :where(h2) { color: var(--aq-white); }
.aq-footer :where(a) { color: #C2D4E0; }
.aq-footer :where(a):hover { color: var(--aq-white); }

.aq-footer__logo {
  height: 56px; width: auto;
  background: var(--aq-white);
  border-radius: 12px;
  padding: 6px 10px;
}
.aq-footer__tag {
  margin-top: var(--aq-s2);
  font-family: var(--aq-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--aq-white);
  letter-spacing: -.01em;
}
.aq-footer__desc { margin-top: .5rem; font-size: .89rem; }
.aq-footer__wa {
  display: inline-flex; align-items: center; gap: .5rem;
  min-height: 44px;
  margin-top: var(--aq-s2);
  padding: .5rem .95rem;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  font-size: .88rem; font-weight: 600;
  color: var(--aq-white);
}
.aq-footer__wa .aq-i-wa { color: var(--aq-wa); }
.aq-footer__wa:hover { background: rgba(255,255,255,.08); }

.aq-fgroup { margin-top: var(--aq-s4); }
.aq-fgroup__h {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--aq-brand-300);
}
.aq-fgroup__list { margin-top: var(--aq-s2); display: grid; gap: .1rem; }
.aq-fgroup__list a {
  display: flex; align-items: center;
  min-height: 40px;
  font-size: .92rem;
}
.aq-fgroup__list--plain li {
  padding-block: .3rem;
  font-size: .89rem;
}

.aq-fcontact { margin-top: var(--aq-s2); display: grid; gap: var(--aq-s2); }
.aq-fcontact li { display: flex; align-items: flex-start; gap: .7rem; font-size: .92rem; }
.aq-fcontact .aq-i { width: 20px; height: 20px; margin-top: 3px; color: var(--aq-brand-300); }
.aq-fcontact a { text-decoration: underline; text-underline-offset: 3px; }

.aq-compose { margin-top: var(--aq-s4); }
.aq-compose__note { margin-top: var(--aq-s2); font-size: .84rem; }
.aq-compose__input {
  width: 100%;
  margin-top: var(--aq-s2);
  padding: .8rem .9rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--aq-radius);
  color: var(--aq-white);
  font-size: .95rem;
  resize: vertical;
}
.aq-compose__input::placeholder { color: #85A0B3; }
.aq-compose .aq-btn { margin-top: var(--aq-s2); }

.aq-footer__bar {
  margin-top: var(--aq-s4);
  padding-top: var(--aq-s3);
  border-top: 1px solid rgba(255,255,255,.12);
  text-align: center;
  font-size: .78rem;
  color: #8FA9BA;
  display: grid; gap: .3rem;
}


/* =========================================================================
   6.14  FLOATING WHATSAPP BUTTON
   ========================================================================= */
.aq-fab {
  position: fixed;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  z-index: 50;
  width: var(--aq-fab-size);
  height: var(--aq-fab-size);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--aq-wa);
  box-shadow: 0 10px 26px rgba(7,27,44,.30), 0 3px 8px rgba(7,27,44,.20);
  transition: background-color .18s ease, transform .18s ease;
}
.aq-fab:hover { background: var(--aq-wa-700); }
.aq-fab:active { transform: scale(.94); }
.aq-fab__icon {
  /* official WhatsApp glyph, ~57% of the button diameter */
  width: 57%; height: 57%;
  fill: var(--aq-white);
  stroke: none;
}


/* =========================================================================
   SERVICES PAGE (services.html) — page title + card sub-label + chip wrap
   ========================================================================= */
.aq-page-h1 {
  margin-top: var(--aq-s1);
  font-size: var(--aq-h1);
  text-wrap: balance;
}
.aq-page-h1--center { text-align: center; }

/* small eyebrow-style label inside a card body, e.g. "What We Offer" */
.aq-svc-label { margin-top: var(--aq-s3); }

.aq-chipwrap {
  margin-top: var(--aq-s3);
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}
/* long chip text must wrap within the pill and pills must be able to shrink,
   or a single long label (sized to its intrinsic one-line width) claims the
   whole row and every other chip gets pushed onto its own line too */
.aq-chipwrap .aq-chip {
  flex: 0 1 auto;
  min-width: 0;
  max-width: 100%;
  white-space: normal;
  text-align: center;
}


/* =========================================================================
   404
   ========================================================================= */
.aq-404 {
  padding: var(--aq-s5) var(--aq-gut);
  max-width: var(--aq-content-maxw);
  margin-inline: auto;
  text-align: center;
  min-height: 46svh;
  display: flex; flex-direction: column; justify-content: center;
}
.aq-404__code {
  font-family: var(--aq-display);
  font-weight: 700;
  font-size: 3.4rem;
  line-height: 1;
  color: var(--aq-brand);
  letter-spacing: -.03em;
}
.aq-404__h { margin-top: var(--aq-s2); font-size: var(--aq-h2); }
.aq-404__p { margin-top: var(--aq-s2); color: var(--aq-muted); font-size: .97rem; }
.aq-404 .aq-btn { margin-top: var(--aq-s3); }


/* =========================================================================
   REVEAL ON SCROLL
   ========================================================================= */
.aq-js .aq [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s ease, transform .55s ease;
}
.aq-js .aq [data-reveal].is-in { opacity: 1; transform: none; }


/* =========================================================================
   MOTION PREFERENCES
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
  .aq *, .aq *::before, .aq *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .aq-js .aq [data-reveal] { opacity: 1; transform: none; }
  .aq-marquee__track { animation: none; transform: none; }
  .aq-marquee { overflow-x: auto; }
}
