/* =========================================================================
   R D CONSTRUCTION — WATERPROOFING EXPERTS
   Stylesheet. Every selector is scoped under .rd except the GLOBAL RESET.
   Breakpoints: 640px / 900px / 1200px (mobile-first, min-width).
   ========================================================================= */

/* ============ GLOBAL RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, p, ul, ol, li, figure, figcaption { margin: 0; padding: 0; }
img, picture, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
input, select, textarea { font: inherit; color: inherit; }
html { -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============ FONT FACES ============ */
@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;
  font-display: swap;
  src: url('assets/fonts/inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/inter-600.woff2') format('woff2');
}

/* ============ ROOT / DESIGN TOKENS ============ */
.rd {
  /* Brand */
  --rd-ink:            #0B1B33;
  --rd-brand:           #12294A;
  --rd-brand-700:       #0C1D36;
  --rd-brand-100:       #E7EBF2;

  --rd-accent:          #E85C3C;
  --rd-accent-700:      #C7492C;
  --rd-accent-100:      #FCE7E1;

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

  --rd-star:            #F5B715;

  /* Neutrals */
  --rd-white:           #FFFFFF;
  --rd-paper:           #F6F7FA;
  --rd-line:            #E1E4EA;
  --rd-muted:           #556077;
  --rd-body:            #212836;

  /* Type scale */
  --rd-h1: clamp(2rem, 1.35rem + 3.1vw, 3.5rem);
  --rd-h2: clamp(1.6rem, 1.25rem + 1.7vw, 2.5rem);
  --rd-h3: clamp(1.15rem, 1.03rem + 0.55vw, 1.45rem);
  --rd-body-size: clamp(1rem, 0.97rem + 0.15vw, 1.0625rem);

  /* Spacing */
  --rd-s1: .5rem;  --rd-s2: .875rem; --rd-s3: 1.25rem;
  --rd-s4: 2rem;   --rd-s5: 3rem;    --rd-s6: 4.5rem;
  --rd-section-y: clamp(3rem, 2rem + 5vw, 6rem);

  --rd-radius: 14px;
  --rd-radius-lg: 22px;
  --rd-shadow: 0 4px 24px rgba(11,27,51,.10);
  --rd-shadow-lg: 0 18px 48px rgba(11,27,51,.18);
  --rd-maxw: 1200px;

  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: var(--rd-body-size);
  line-height: 1.65;
  color: var(--rd-body);
  background: var(--rd-white);
  -webkit-font-smoothing: antialiased;
}

.rd h1, .rd h2, .rd h3,
.rd .rd-h2, .rd .rd-h3 {
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--rd-ink);
}

.rd :focus-visible {
  outline: 3px solid var(--rd-accent);
  outline-offset: 2px;
}

/* ============ LAYOUT HELPERS ============ */
.rd .rd-container {
  max-width: var(--rd-maxw);
  margin: 0 auto;
  padding: 0 var(--rd-s4);
}

.rd .rd-page {
  padding-bottom: 68px; /* room for sticky mobile bar */
}
@media (min-width: 900px) {
  .rd .rd-page { padding-bottom: 0; }
}

.rd section { padding: var(--rd-section-y) 0; }

.rd .rd-h2 { font-size: var(--rd-h2); font-weight: 700; }
.rd .rd-h3 { font-size: var(--rd-h3); font-weight: 600; }
.rd .rd-h2--center { text-align: center; max-width: 760px; margin: 0 auto var(--rd-s5); }
.rd .rd-h2--light { color: var(--rd-white); }
.rd .rd-h2 strong,
.rd .rd-h3 strong { color: var(--rd-brand); font-weight: 700; position: relative; }
.rd .rd-h2--light strong { color: var(--rd-white); }

.rd .rd-h2 strong::after,
.rd h1.rd-hero__title strong::after {
  content: '';
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -0.08em;
  height: 0.28em;
  background: var(--rd-accent);
  opacity: 0.25;
  border-radius: 6px;
  z-index: -1;
}
.rd .rd-h2--light strong::after {
  opacity: 0.55;
}
@media (prefers-reduced-motion: reduce) {
  .rd .rd-h2 strong::after,
  .rd h1.rd-hero__title strong::after { transition: none; }
}

/* ============ BUTTONS ============ */
.rd .rd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 48px;
  padding: 0 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}
.rd .rd-btn svg { flex-shrink: 0; }
.rd .rd-btn:hover { transform: translateY(-2px); box-shadow: var(--rd-shadow); }
@media (prefers-reduced-motion: reduce) {
  .rd .rd-btn:hover { transform: none; }
}

.rd .rd-btn--call {
  background: var(--rd-accent);
  color: var(--rd-white);
}
.rd .rd-btn--call:hover { background: var(--rd-accent-700); }

.rd .rd-btn--wa {
  background: var(--rd-wa);
  color: var(--rd-white);
}
.rd .rd-btn--wa:hover { background: var(--rd-wa-700); }

.rd .rd-btn--ghost {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.4);
  color: var(--rd-white);
}
.rd .rd-btn--ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }

.rd .rd-btn--sm { min-height: 38px; padding: 0 1.1rem; font-size: .85rem; }

/* ============ TOP UTILITY BAR ============ */
.rd .rd-topbar {
  background: var(--rd-ink);
  color: var(--rd-white);
  display: none;
}
@media (min-width: 900px) {
  .rd .rd-topbar { display: block; }
}
.rd .rd-topbar__inner {
  max-width: var(--rd-maxw);
  margin: 0 auto;
  padding: .55rem var(--rd-s4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--rd-s3);
  font-size: .85rem;
}
.rd .rd-topbar__msg { color: rgba(255,255,255,.85); }
.rd .rd-topbar__actions { display: flex; align-items: center; gap: var(--rd-s3); flex-shrink: 0; }
.rd .rd-topbar__phone { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; }

/* ============ STICKY HEADER ============ */
.rd .rd-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--rd-white);
  border-bottom: 1px solid transparent;
  transition: box-shadow 200ms ease, border-color 200ms ease;
}
.rd .rd-header.is-scrolled {
  box-shadow: var(--rd-shadow);
  border-bottom-color: var(--rd-line);
}
.rd .rd-header__inner {
  max-width: var(--rd-maxw);
  margin: 0 auto;
  padding: .75rem var(--rd-s4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--rd-s3);
}

.rd .rd-logo { display: inline-flex; align-items: center; gap: .65rem; }
.rd .rd-logo__mark { flex-shrink: 0; }
.rd .rd-logo__text { display: flex; flex-direction: column; line-height: 1.25; }
.rd .rd-logo__name {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .06em;
  color: var(--rd-brand);
}
.rd .rd-logo__name--light { color: var(--rd-white); }
.rd .rd-logo__tag {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 500;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--rd-muted);
}

.rd .rd-nav { display: none; }
@media (min-width: 900px) {
  .rd .rd-nav { display: block; }
  .rd .rd-nav__list { display: flex; align-items: center; gap: var(--rd-s4); }
  .rd .rd-nav__link {
    font-weight: 500;
    font-size: .93rem;
    color: var(--rd-body);
    position: relative;
    padding: .3rem 0;
  }
  .rd .rd-nav__link::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    height: 2px;
    background: var(--rd-accent);
    transform: scaleX(0);
    transition: transform 160ms ease;
  }
  .rd .rd-nav__link:hover::after,
  .rd .rd-nav__link.is-active::after { transform: scaleX(1); }
  .rd .rd-nav__link.is-active { color: var(--rd-brand); }
}

.rd .rd-header__actions { display: flex; align-items: center; gap: .75rem; }
.rd .rd-header__phone { display: none; align-items: center; gap: .4rem; font-weight: 600; font-size: .9rem; }
@media (min-width: 1200px) {
  .rd .rd-header__phone { display: inline-flex; }
}
.rd .rd-header__actions .rd-btn { display: none; }
@media (min-width: 900px) {
  .rd .rd-header__actions .rd-btn { display: inline-flex; }
}

.rd .rd-nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  color: var(--rd-brand);
}
@media (min-width: 900px) {
  .rd .rd-nav__toggle { display: none; }
}

/* Mobile nav overlay */
.rd .rd-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(11,27,51,.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms ease, visibility 200ms ease;
}
.rd .rd-nav-overlay.is-open { opacity: 1; visibility: visible; }
.rd .rd-nav-overlay__panel {
  position: absolute;
  top: 0; right: 0;
  height: 100%;
  width: min(88vw, 360px);
  background: var(--rd-white);
  padding: var(--rd-s4);
  display: flex;
  flex-direction: column;
  gap: var(--rd-s4);
  transform: translateX(100%);
  transition: transform 220ms ease;
  overflow-y: auto;
}
.rd .rd-nav-overlay.is-open .rd-nav-overlay__panel { transform: translateX(0); }
@media (prefers-reduced-motion: reduce) {
  .rd .rd-nav-overlay,
  .rd .rd-nav-overlay__panel { transition: none; }
}
.rd .rd-nav-overlay__top { display: flex; align-items: center; justify-content: space-between; }
.rd .rd-nav-overlay__close {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  color: var(--rd-brand);
}
.rd .rd-nav-overlay__list { display: flex; flex-direction: column; gap: var(--rd-s3); }
.rd .rd-nav-overlay__list .rd-nav__link { font-size: 1.05rem; font-weight: 600; display: block; padding: .4rem 0; }
.rd .rd-nav-overlay__actions { display: flex; flex-direction: column; gap: .75rem; margin-top: auto; }
.rd .rd-nav-overlay__actions .rd-btn { width: 100%; }

/* ============ HERO ============ */
.rd .rd-hero { padding: 1.25rem 0 2.5rem; }
@media (min-width: 1200px) {
  .rd .rd-hero { padding: 1.75rem 0 3rem; }
}
.rd .rd-hero__inner {
  max-width: var(--rd-maxw);
  margin: 0 auto;
  padding: 0 var(--rd-s4);
  display: grid;
  gap: var(--rd-s4);
  align-items: center;
}
@media (min-width: 900px) {
  .rd .rd-hero__inner { grid-template-columns: 1.1fr .9fr; gap: var(--rd-s5); }
}

.rd .rd-hero__title { font-size: var(--rd-h1); font-weight: 700; margin-bottom: var(--rd-s3); }
.rd .rd-hero__sub { color: var(--rd-muted); font-size: 1.02rem; max-width: 52ch; margin-bottom: var(--rd-s4); }

.rd .rd-hero__stats { display: flex; gap: var(--rd-s4); flex-wrap: wrap; }
.rd .rd-stat { display: flex; flex-direction: column; }
.rd .rd-stat__num {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--rd-brand);
}
.rd .rd-stat__label { font-size: .82rem; color: var(--rd-muted); max-width: 14ch; }

.rd .rd-hero__media { order: -1; }
@media (min-width: 900px) {
  .rd .rd-hero__media { order: 0; }
}

.rd .rd-carousel {
  position: relative;
  border-radius: var(--rd-radius-lg);
  overflow: hidden;
  box-shadow: var(--rd-shadow-lg);
  aspect-ratio: 765 / 1020;
  max-height: 62vh;
  margin: 0 auto;
  max-width: 420px;
}
@media (min-width: 640px) and (max-width: 899px) {
  .rd .rd-carousel { max-width: 380px; max-height: 55vh; }
}
@media (min-width: 900px) {
  .rd .rd-carousel { max-width: 100%; max-height: none; }
}
.rd .rd-carousel__track { position: relative; width: 100%; height: 100%; }
.rd .rd-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 600ms ease;
}
.rd .rd-carousel__slide.is-active { opacity: 1; position: relative; }
.rd .rd-carousel__slide picture,
.rd .rd-carousel__slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
@media (prefers-reduced-motion: reduce) {
  .rd .rd-carousel__slide { transition: none; }
}
.rd .rd-carousel__dots {
  position: absolute;
  left: 0; right: 0; bottom: var(--rd-s3);
  display: flex;
  justify-content: center;
  gap: .5rem;
}
.rd .rd-carousel__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(11,27,51,.25);
  padding: 0;
  min-height: 0;
}
.rd .rd-carousel__dot.is-active { background: var(--rd-accent); border-color: var(--rd-accent); }

/* ============ WHAT WE DO ============ */
.rd .rd-what { background: var(--rd-paper); }
.rd .rd-what__inner {
  display: grid;
  gap: var(--rd-s5);
  align-items: center;
}
@media (min-width: 900px) {
  .rd .rd-what__inner { grid-template-columns: 1.1fr .9fr; }
}
.rd .rd-what__text p { margin-bottom: var(--rd-s3); color: var(--rd-body); }
.rd .rd-what__text .rd-h2 { margin-bottom: var(--rd-s3); }
.rd .rd-what__ctas { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: var(--rd-s3); }
.rd .rd-what__media {
  border-radius: var(--rd-radius-lg);
  overflow: hidden;
  box-shadow: var(--rd-shadow);
  aspect-ratio: 765 / 1020;
  max-width: 420px;
  margin: 0 auto;
}
@media (min-width: 900px) { .rd .rd-what__media { max-width: 100%; } }
.rd .rd-what__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }

/* ============ KEY BENEFITS ============ */
.rd .rd-benefits__grid {
  display: grid;
  gap: var(--rd-s3);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .rd .rd-benefits__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .rd .rd-benefits__grid { grid-template-columns: repeat(3, 1fr); }
}
.rd .rd-card {
  background: var(--rd-white);
  border: 1px solid var(--rd-line);
  border-radius: var(--rd-radius);
  padding: var(--rd-s4);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.rd .rd-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--rd-shadow);
  border-color: var(--rd-brand);
}
@media (prefers-reduced-motion: reduce) {
  .rd .rd-card:hover { transform: none; }
}
.rd .rd-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--rd-accent-100);
  color: var(--rd-accent-700);
  margin-bottom: var(--rd-s3);
}
.rd .rd-card .rd-h3 { color: var(--rd-ink); }

/* ============ GALLERY ============ */
.rd .rd-gallery { background: var(--rd-white); }
.rd .rd-gallery__wrap { position: relative; }
.rd .rd-gallery__strip {
  display: flex;
  gap: var(--rd-s3);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: var(--rd-s2);
  scrollbar-width: thin;
}
.rd .rd-gallery__item {
  flex: 0 0 auto;
  width: 260px;
  scroll-snap-align: start;
  border-radius: var(--rd-radius);
  overflow: hidden;
  box-shadow: var(--rd-shadow);
  background: var(--rd-white);
}
.rd .rd-gallery__item picture,
.rd .rd-gallery__item img { width: 100%; aspect-ratio: 765 / 1020; object-fit: cover; object-position: center 40%; }
.rd .rd-gallery__item:nth-child(4) picture,
.rd .rd-gallery__item:nth-child(4) img { aspect-ratio: 1360 / 765; }
.rd .rd-gallery__caption { padding: var(--rd-s2) var(--rd-s2) var(--rd-s3); font-size: .88rem; color: var(--rd-muted); }
.rd .rd-gallery__arrow {
  display: none;
  position: absolute;
  top: 40%;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--rd-white);
  box-shadow: var(--rd-shadow);
  align-items: center;
  justify-content: center;
  color: var(--rd-brand);
  z-index: 2;
}
@media (min-width: 900px) {
  .rd .rd-gallery__arrow { display: inline-flex; }
}
.rd .rd-gallery__arrow--prev { left: -22px; }
.rd .rd-gallery__arrow--next { right: -22px; }

/* ============ VIDEO (hidden by default) ============ */
.rd .rd-video { background: var(--rd-paper); }
.rd .rd-video__wrap { border-radius: var(--rd-radius-lg); overflow: hidden; box-shadow: var(--rd-shadow); }
.rd .rd-video__el { width: 100%; height: auto; background: var(--rd-ink); }

/* ============ PROCESS (dark band) ============ */
.rd .rd-process { background: var(--rd-ink); color: var(--rd-white); }
.rd .rd-process__list {
  display: grid;
  gap: var(--rd-s4);
  grid-template-columns: 1fr;
  counter-reset: step;
}
@media (min-width: 640px) {
  .rd .rd-process__list { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1200px) {
  .rd .rd-process__list { grid-template-columns: repeat(5, 1fr); }
}
.rd .rd-process__step { position: relative; padding-top: var(--rd-s2); }
.rd .rd-process__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(232,92,60,.15);
  color: var(--rd-accent);
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 700;
  margin-bottom: var(--rd-s3);
}
.rd .rd-process__step .rd-h3 { color: var(--rd-white); margin-bottom: .4rem; }
.rd .rd-process__step p { color: rgba(255,255,255,.72); font-size: .95rem; }

/* ============ WHAT'S COVERED ============ */
.rd .rd-coverage { background: var(--rd-white); }
.rd .rd-coverage__inner { display: grid; gap: var(--rd-s5); align-items: center; }
@media (min-width: 900px) {
  .rd .rd-coverage__inner { grid-template-columns: .85fr 1.15fr; }
}
.rd .rd-coverage__media {
  border-radius: var(--rd-radius-lg);
  overflow: hidden;
  box-shadow: var(--rd-shadow);
  aspect-ratio: 765 / 1020;
  max-width: 380px;
  margin: 0 auto;
}
@media (min-width: 900px) { .rd .rd-coverage__media { max-width: 100%; } }
.rd .rd-coverage__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.rd .rd-coverage__text .rd-h2 { margin-bottom: var(--rd-s4); }
.rd .rd-coverage__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem var(--rd-s4);
}
@media (min-width: 640px) {
  .rd .rd-coverage__list { grid-template-columns: 1fr 1fr; }
}
.rd .rd-coverage__list li { display: flex; align-items: center; gap: .6rem; }
.rd .rd-coverage__list svg { color: var(--rd-wa); flex-shrink: 0; }

/* ============ WHY CHOOSE US ============ */
.rd .rd-why { background: var(--rd-paper); }
.rd .rd-why__inner { display: grid; gap: var(--rd-s5); align-items: center; }
@media (min-width: 900px) {
  .rd .rd-why__inner { grid-template-columns: 1fr 1fr; }
}
.rd .rd-why__list { display: flex; flex-direction: column; gap: var(--rd-s3); }
.rd .rd-why__list li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--rd-body);
}
.rd .rd-why__list li::before {
  content: '';
  position: absolute;
  left: 0; top: .45em;
  width: 10px; height: 10px;
  border-radius: 3px;
  background: var(--rd-accent);
}
.rd .rd-why__media {
  border-radius: var(--rd-radius-lg);
  overflow: hidden;
  box-shadow: var(--rd-shadow);
  aspect-ratio: 1360 / 765;
}
.rd .rd-why__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }

/* ============ TRUST STRIP ============ */
.rd .rd-trust { background: var(--rd-brand-100); padding: var(--rd-s5) 0; }
.rd .rd-trust__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--rd-s3);
  text-align: center;
}
@media (min-width: 640px) {
  .rd .rd-trust__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .rd .rd-trust__grid { grid-template-columns: repeat(6, 1fr); }
}
.rd .rd-trust__grid li { display: flex; flex-direction: column; gap: .2rem; }
.rd .rd-trust__grid strong { font-family: 'Poppins', system-ui, sans-serif; font-size: .95rem; color: var(--rd-brand); }
.rd .rd-trust__grid span { font-size: .8rem; color: var(--rd-muted); }

/* ============ CTA BANDS ============ */
.rd .rd-cta { text-align: center; }
.rd .rd-cta--mid { background: var(--rd-ink); }
.rd .rd-cta--pre { background: var(--rd-brand-700); }
.rd .rd-cta__inner { display: flex; flex-direction: column; align-items: center; gap: var(--rd-s3); }
.rd .rd-cta__inner p { color: rgba(255,255,255,.78); max-width: 46ch; }
.rd .rd-cta__actions { display: flex; gap: .75rem; flex-wrap: wrap; justify-content: center; margin-top: var(--rd-s2); }

/* ============ TESTIMONIALS ============ */
.rd .rd-testimonials { background: var(--rd-white); }
.rd .rd-testimonials__head { display: flex; flex-direction: column; align-items: center; gap: var(--rd-s2); margin-bottom: var(--rd-s2); }
.rd .rd-testimonials__head .rd-h2 { margin-bottom: 0; }

.rd .rd-carousel2 { position: relative; max-width: var(--rd-maxw); margin: 0 auto; }
.rd .rd-carousel2__track {
  display: flex;
  gap: var(--rd-s3);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: .25rem .25rem var(--rd-s3);
  scrollbar-width: thin;
}
.rd .rd-testimonial {
  flex: 0 0 100%;
  scroll-snap-align: start;
  background: var(--rd-paper);
  border: 1px solid var(--rd-line);
  border-radius: var(--rd-radius);
  padding: var(--rd-s4);
  display: flex;
  flex-direction: column;
  gap: var(--rd-s2);
}
@media (min-width: 640px) {
  .rd .rd-testimonial { flex: 0 0 calc(50% - var(--rd-s3) / 2); }
}
@media (min-width: 900px) {
  .rd .rd-testimonial { flex: 0 0 calc(33.333% - var(--rd-s3) * 2 / 3); }
}
.rd .rd-testimonial__stars { display: flex; gap: .15rem; color: var(--rd-star); }
.rd .rd-testimonial__text { color: var(--rd-body); font-size: .97rem; }
.rd .rd-testimonial__by { display: flex; align-items: center; gap: .6rem; margin-top: auto; }
.rd .rd-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--rd-brand);
  color: var(--rd-white);
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 700;
  flex-shrink: 0;
}
.rd .rd-testimonial__name { font-weight: 600; color: var(--rd-ink); font-size: .92rem; }

.rd .rd-carousel2__arrow {
  display: none;
  position: absolute;
  top: 45%;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--rd-white);
  box-shadow: var(--rd-shadow);
  align-items: center;
  justify-content: center;
  color: var(--rd-brand);
  z-index: 2;
}
@media (min-width: 900px) { .rd .rd-carousel2__arrow { display: inline-flex; } }
.rd .rd-carousel2__arrow--prev { left: -22px; }
.rd .rd-carousel2__arrow--next { right: -22px; }

.rd .rd-carousel2__dots { display: flex; justify-content: center; gap: .5rem; }
.rd .rd-carousel2__dots button {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--rd-line);
  padding: 0; min-height: 0;
}
.rd .rd-carousel2__dots button.is-active { background: var(--rd-accent); }

.rd .rd-testimonials__closing {
  max-width: 70ch;
  margin: var(--rd-s4) auto 0;
  text-align: center;
  color: var(--rd-muted);
  font-size: .97rem;
}

/* ============ WHERE WE WORK (marquee) ============ */
.rd .rd-areas { background: var(--rd-paper); overflow: hidden; }
.rd .rd-areas__marquee { overflow: hidden; padding: .4rem 0; }
.rd .rd-areas__marquee:hover .rd-areas__track { animation-play-state: paused; }
.rd .rd-areas__track {
  display: flex;
  gap: .75rem;
  width: max-content;
  animation: rd-marquee-left 32s linear infinite;
}
.rd .rd-areas__marquee[data-direction="right"] .rd-areas__track {
  animation-name: rd-marquee-right;
}
@keyframes rd-marquee-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes rd-marquee-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .rd .rd-areas__track { animation: none; }
}
.rd .rd-chip {
  flex: 0 0 auto;
  padding: .6rem 1.1rem;
  border-radius: 999px;
  background: var(--rd-white);
  border: 1px solid var(--rd-line);
  font-size: .88rem;
  font-weight: 500;
  color: var(--rd-brand);
  white-space: nowrap;
}

/* ============ FAQ ACCORDION ============ */
.rd .rd-faq { background: var(--rd-white); }
.rd .rd-faq__inner { max-width: 820px; }
.rd .rd-accordion__item { border-bottom: 1px solid var(--rd-line); }
.rd .rd-accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--rd-s3);
  text-align: left;
  padding: var(--rd-s3) 0;
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--rd-ink);
  min-height: 48px;
}
.rd .rd-accordion__chevron { flex-shrink: 0; transition: transform 200ms ease; color: var(--rd-accent); }
.rd .rd-accordion__trigger[aria-expanded="true"] .rd-accordion__chevron { transform: rotate(180deg); }
@media (prefers-reduced-motion: reduce) {
  .rd .rd-accordion__chevron { transition: none; }
}
.rd .rd-accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 220ms ease;
}
.rd .rd-accordion__panel.is-open { grid-template-rows: 1fr; }
.rd .rd-accordion__panel-inner { min-height: 0; overflow: hidden; padding-bottom: var(--rd-s3); }
.rd .rd-accordion__panel p { color: var(--rd-muted); max-width: 68ch; }
@media (prefers-reduced-motion: reduce) {
  .rd .rd-accordion__panel { transition: none; }
}

/* ============ QR / SCAN FOR A FREE QUOTE ============ */
.rd .rd-qr { background: var(--rd-paper); }
.rd .rd-qr__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--rd-s4);
}
@media (min-width: 640px) {
  .rd .rd-qr__inner { flex-direction: row; text-align: left; justify-content: space-between; }
}
.rd .rd-qr__text p { color: var(--rd-muted); margin: var(--rd-s2) 0 var(--rd-s3); max-width: 46ch; }
.rd .rd-qr__mobile-btn { display: inline-flex; }
@media (min-width: 640px) {
  .rd .rd-qr__mobile-btn { display: none; }
}
.rd .rd-qr__card {
  display: none;
  background: var(--rd-white);
  border-radius: var(--rd-radius);
  box-shadow: var(--rd-shadow);
  padding: var(--rd-s3);
  flex-shrink: 0;
}
@media (min-width: 640px) { .rd .rd-qr__card { display: block; } }
.rd .rd-qr__card img { width: 200px; height: 200px; }

/* ============ FOOTER ============ */
.rd .rd-footer { background: var(--rd-ink); color: rgba(255,255,255,.85); padding-top: var(--rd-s6); }
.rd .rd-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--rd-s5);
  padding-bottom: var(--rd-s5);
}
@media (min-width: 640px) {
  .rd .rd-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1200px) {
  .rd .rd-footer__grid { grid-template-columns: 1.3fr .8fr .9fr 1.2fr; }
}
.rd .rd-footer__desc { margin-top: var(--rd-s3); font-size: .92rem; color: rgba(255,255,255,.65); max-width: 40ch; }
.rd .rd-footer__heading {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 600;
  color: var(--rd-white);
  margin-bottom: var(--rd-s3);
  font-size: 1rem;
}
.rd .rd-footer__links { display: flex; flex-direction: column; gap: .6rem; }
.rd .rd-footer__links a { font-size: .92rem; color: rgba(255,255,255,.7); }
.rd .rd-footer__links a:hover { color: var(--rd-white); }

.rd .rd-footer__contact { display: flex; flex-direction: column; gap: .75rem; margin-bottom: var(--rd-s4); }
.rd .rd-footer__contact a { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; color: var(--rd-white); }
.rd .rd-footer__address { font-size: .9rem; color: rgba(255,255,255,.65); max-width: 32ch; }

.rd .rd-mini-composer { display: flex; flex-direction: column; gap: .6rem; }
.rd .rd-mini-composer__label { font-size: .82rem; color: rgba(255,255,255,.6); }
.rd .rd-mini-composer__select,
.rd .rd-mini-composer__input {
  min-height: 44px;
  padding: 0 .85rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: var(--rd-white);
}
.rd .rd-mini-composer__select option { color: var(--rd-ink); }
.rd .rd-mini-composer__submit { margin-top: .3rem; width: 100%; }

.rd .rd-footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: var(--rd-s3) 0; }
.rd .rd-footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  align-items: center;
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
}
@media (min-width: 640px) {
  .rd .rd-footer__bottom-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ============ STICKY MOBILE BOTTOM BAR ============ */
.rd .rd-mobilebar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 150;
  display: flex;
  height: 60px;
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -4px 20px rgba(11,27,51,.15);
}
@media (min-width: 900px) {
  .rd .rd-mobilebar { display: none; }
}
.rd .rd-mobilebar__btn {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-weight: 600;
  font-size: .95rem;
  color: var(--rd-white);
  min-height: 44px;
}
.rd .rd-mobilebar__btn--call { background: var(--rd-accent); }
.rd .rd-mobilebar__btn--wa { background: var(--rd-wa); }

/* ============ SCROLL REVEAL ============ */
.rd [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}
.rd [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .rd [data-reveal] { opacity: 1; transform: none; transition: none; }
}
