/* ============================================================
   VISULA INTERIORS — RESPONSIVE & ACCESSIBILITY FINISHING LAYER
   Loaded last. Desktop identity is preserved; layout changes are
   limited to the breakpoints where the original layout no longer fits.
   ============================================================ */

/* ---------- Resilient global foundations ---------- */
:root {
  --site-gutter: clamp(16px, 4vw, 32px);
  --site-max: 1240px;
  --mobile-nav-breakpoint: 900px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --urgency-height: 0px;
}

html {
  width: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: 92px;
}

body {
  width: 100%;
  overflow-x: visible; /* Layout is fixed at source rather than hidden. */
}

*, *::before, *::after { min-width: 0; }

.container {
  width: min(calc(100% - (var(--site-gutter) * 2)), var(--site-max));
  margin-inline: auto;
}

img, picture, video, canvas, iframe, embed {
  display: block;
  max-width: 100%;
}

img { height: auto; }

svg { max-width: 100%; }

input, select, textarea, button {
  max-width: 100%;
  box-sizing: border-box;
}

form input,
form select,
form textarea { width: 100%; }

h1, h2, h3, h4, p, li, a, span, blockquote {
  overflow-wrap: break-word;
}

.skip-link,
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link:focus {
  position: fixed !important;
  z-index: 20000;
  top: 10px;
  left: 10px;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  clip: auto !important;
  overflow: visible !important;
  padding: 11px 18px !important;
  color: var(--c-navy);
  background: var(--c-gold-2);
  border-radius: 8px;
  font-weight: 700;
}

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

/* Prevent grid/flex children and long form controls from forcing overflow. */
.hero-split > *,
.lead-grid > *,
.footer-grid > *,
.contact-split > *,
.showcase-block > *,
.sol-block > *,
.faq-layout > *,
[class$="-grid"] > *,
[class*="-grid-"] > *,
[class$="-responsive"] > * { min-width: 0; }

/* ---------- Hero: bright image + separate subtle overlay ---------- */
.hero-new {
  isolation: isolate;
  background-color: var(--c-navy);
  background-image: image-set(
    url("../assets/img/hero-1.webp") type("image/webp"),
    url("../assets/img/hero-1.jpg") type("image/jpeg")
  ) !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.hero-new::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(5, 25, 50, 0.16);
  pointer-events: none;
}

.hero-new > .container,
.hero-new .hero-content,
.hero-new .hero-left,
.hero-new .hero-form-card {
  position: relative;
  z-index: 2;
}

.hero-new .hero-left {
  text-shadow: 0 2px 16px rgba(3, 15, 30, 0.72);
}

.hero-new .hero-left h1 {
  text-wrap: balance;
}

/* Inner-page heroes use their original photographs at full opacity. The
   translucent colour wash is a separate layer rather than a multiplied image. */
.page-hero {
  position: relative;
  isolation: isolate;
  background-image: url("../assets/img/hero-1.jpg");
  background-image: image-set(
    url("../assets/img/hero-1.webp") type("image/webp"),
    url("../assets/img/hero-1.jpg") type("image/jpeg")
  );
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: normal;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(5, 25, 50, 0.20);
  pointer-events: none;
}
.page-hero > .container {
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 16px rgba(3, 15, 30, 0.74);
}

.hero-form-card,
.hero-form-card form,
.hero-form-card input,
.hero-form-card select,
.hero-form-card textarea,
.hero-form-card button {
  width: 100%;
  max-width: 100%;
}

.hero-form-card input,
.hero-form-card select,
.hero-form-card textarea {
  box-sizing: border-box;
}

/* ---------- Fixed elements and modal resilience ---------- */
.book-modal-overlay,
.offer-modal-overlay { padding: max(16px, env(safe-area-inset-top)) 16px max(16px, var(--safe-bottom)); }

.book-modal,
.offer-modal-content {
  max-width: calc(100vw - 32px);
  max-height: calc(100dvh - 32px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.book-modal-close,
.offer-modal-close,
.urgency-close {
  min-width: 44px;
  min-height: 44px;
}

body.menu-open { overflow: hidden; }

/* If a form is in the viewport, floating lead controls yield so fields,
   labels and submit actions are never obscured at any screen size. */
.wa-float.avoid-form,
.contact-tab.avoid-form,
.wa-float.avoid-content,
.contact-tab.avoid-content,
.to-top.avoid-content {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.urgency-visible { padding-bottom: var(--urgency-height); }

.wa-float {
  right: max(16px, env(safe-area-inset-right));
  bottom: calc(16px + var(--safe-bottom) + var(--urgency-height));
}

.to-top {
  right: max(18px, env(safe-area-inset-right));
  bottom: calc(84px + var(--safe-bottom) + var(--urgency-height));
}

/* ---------- Tablet: 769px–1024px ---------- */
@media (max-width: 1024px) {
  :root { --site-gutter: clamp(20px, 3vw, 28px); }

  .header .container { padding-block: 14px; }
  .logo img { height: 44px; }
  .header-cta .btn-sm { display: none; }

  .section,
  .trust-process-section,
  .faq-new-section { padding-block: clamp(44px, 6vw, 60px); }

  /* Card grids: two columns on tablets. */
  [style*="grid-template-columns: repeat(6"],
  [style*="grid-template-columns: repeat(5"],
  [style*="grid-template-columns: repeat(4"],
  [style*="grid-template-columns: repeat(3"],
  .office-5-grid,
  .retail-5-grid,
  .reception-6-grid,
  .hospitality-4-grid,
  .tech-grid-responsive,
  .durability-grid-responsive,
  .featured-meta-grid,
  .featured-projects-grid,
  .turnkey-6-grid,
  .services-grid,
  .proj-carousel,
  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .trust-process-grid,
  .contact-split,
  .lead-grid,
  .faq-layout,
  .promise-grid-responsive,
  .turnkey-grid-responsive {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .trust-side {
    border-right: 0;
    border-bottom: 1px solid var(--c-line);
    padding: 0 0 32px;
  }

  .reviews-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .reviews-brand,
  .reviews-btn-wrap { grid-column: 1 / -1; }

  .reviews-brand {
    display: block;
    padding: 0 0 18px;
    border-bottom: 1px solid var(--c-line);
  }

  .reviews-btn-wrap { justify-content: center; }

  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ---------- Mobile navigation and stacked layouts ---------- */
@media (max-width: 900px) {
  :root { --site-gutter: clamp(16px, 5vw, 24px); }

  .promo-bar { padding-block: 8px !important; }
  .promo-bar-inner {
    flex-direction: column;
    justify-content: center !important;
    gap: 5px !important;
    text-align: center;
  }
  .promo-bar-inner > div {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px !important;
  }

  .header .container {
    min-height: 64px;
    padding-block: 8px;
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .logo {
    position: relative;
    z-index: 112;
    display: block;
    flex: 0 1 auto;
  }

  .logo img {
    width: auto;
    height: clamp(36px, 8.5vw, 42px);
    max-width: min(205px, 62vw);
    object-fit: contain;
    object-position: left center;
  }

  .header-cta { position: relative; z-index: 113; margin-left: 12px; }

  .hamburger {
    display: flex;
    width: 48px;
    height: 48px;
    padding: 0;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 10px;
  }

  .hamburger span { width: 27px; flex: 0 0 2px; }
  .hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .nav {
    display: flex;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    padding: calc(135px + env(safe-area-inset-top)) var(--site-gutter) calc(32px + var(--safe-bottom));
    background: #0b2240;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 2px;
    overflow-y: auto;
    overscroll-behavior: contain;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform .35s ease, opacity .25s ease, visibility .35s;
    z-index: 108;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  .nav > li { width: 100%; }

  .nav > li > a {
    width: 100%;
    min-height: 50px;
    padding: 12px 2px;
    color: rgba(255,255,255,.94);
    font-family: var(--font-head);
    font-size: 1rem;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,.09);
  }

  .nav > li > a::after { display: none; }
  .nav .caret { flex: 0 0 18px; width: 18px; height: 18px; transform: rotate(-90deg); }
  .nav > li.open .caret { transform: rotate(0); }

  .dropdown {
    position: static;
    display: none;
    width: 100%;
    min-width: 0;
    padding: 6px 0 8px 12px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav > li.open .dropdown { display: block; }

  .dropdown a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 10px 12px;
    color: rgba(255,255,255,.76);
    font-size: .9rem;
    line-height: 1.4;
  }

  .dropdown a:hover,
  .dropdown a:focus-visible {
    padding-left: 16px;
    color: var(--c-gold-2);
    background: rgba(255,255,255,.07);
  }

  /* Hero becomes content first, form second; no rigid height.
     The photo is confined to the content column only — the section itself
     is a solid colour so the image never stretches down behind the form. */
  .hero-new {
    min-height: 0;
    padding: 0 0 40px !important;
    background-image: none !important;
    background-color: var(--c-navy) !important;
  }

  .page-hero:not([style]) {
    background-image: image-set(
      url("../assets/img/hero-1-960.webp") type("image/webp"),
      url("../assets/img/hero-1.jpg") type("image/jpeg")
    );
  }

  /* The old full-section tint is replaced by .hero-left's own overlay below. */
  .hero-new::before { content: none; display: none; }

  .hero-split {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: clamp(26px, 6vw, 38px) !important;
    align-items: stretch !important;
    padding: 0 !important;
  }

  /* Content column carries the photo, bled edge-to-edge (breaking out of the
     container gutter with a matching negative margin) and sized to its own
     content — never the full section height. */
  .hero-left {
    width: auto;
    position: relative;
    isolation: isolate;
    margin-inline: calc(-1 * var(--site-gutter));
    padding: clamp(44px, 8vw, 64px) var(--site-gutter) 32px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: image-set(
      url("../assets/img/hero-1-960.webp") type("image/webp"),
      url("../assets/img/hero-1.jpg") type("image/jpeg")
    );
  }

  .hero-left::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(5, 25, 50, 0.35);
    pointer-events: none;
  }

  .hero-left > * {
    position: relative;
    z-index: 1;
  }

  .hero-left h1,
  .hero-new h1 {
    max-width: 19ch;
    margin-bottom: 16px !important;
    font-size: clamp(2rem, 8.5vw, 2.375rem) !important;
    line-height: 1.16 !important;
  }

  .hero-new .hero-kicker,
  .hero-new .hero-legacy { font-size: .72rem !important; }

  .hero-new .hero-sub {
    max-width: 60ch;
    margin: 0 0 22px !important;
    font-size: clamp(.95rem, 3.5vw, 1rem) !important;
    line-height: 1.65 !important;
  }

  .hero-benefits {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px !important;
    margin-bottom: 4px !important;
  }

  .hero-benefits > span {
    width: 100%;
    min-height: 44px;
    padding: 9px 12px !important;
    justify-content: flex-start;
    line-height: 1.35;
  }

  .hero-form-card {
    width: 100%;
    max-width: 620px !important;
    margin-inline: auto;
    padding: clamp(22px, 5vw, 30px) !important;
  }

  .hero-form-card form { gap: 12px !important; }

  .hero-form-card input,
  .hero-form-card select,
  .hero-form-card textarea {
    min-height: 50px;
    padding: 12px 14px !important;
    font-size: 16px !important;
  }

  .hero-form-card textarea { min-height: 96px; resize: vertical !important; }
  .hero-form-card .btn { min-height: 50px; }

  .hero-rating-bar {
    width: 100%;
    margin-top: 28px !important;
    padding: 14px 16px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 10px !important;
    justify-items: center;
    text-align: center;
  }

  .hero-rating-bar > div { width: 100%; justify-content: center !important; }
  .hero-rating-bar > div[style*="height: 20px"] { display: none; }

  /* Standard inner-page hero scales without changing its visual identity. */
  .page-hero { padding: clamp(44px, 8vw, 60px) 0 34px; }
  .page-hero h1 {
    max-width: 24ch;
    margin-inline: auto;
    font-size: clamp(2rem, 7vw, 2.75rem);
    text-wrap: balance;
  }
  .page-hero .hero-sub { font-size: 1rem; line-height: 1.65; }
  .page-hero .hero-btns { justify-content: center !important; }

  .faq-layout { gap: 22px !important; }

  .reviews-row {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
  }

  .reviews-brand,
  .reviews-btn-wrap { grid-column: 1 / -1; width: 100%; }

  .rev-card { width: 100%; min-height: 0; }

  .process-side { padding-left: 0; }

  .footer { padding-top: 56px; }
  .footer-grid { gap: 34px; }

  /* Forms remain usable and do not trigger iOS input zoom. */
  form input,
  form select,
  form textarea {
    min-height: 48px;
    font-size: 16px !important;
  }

  form textarea { min-height: 112px; }
  form .btn,
  form button[type="submit"] { min-height: 48px; }

  .form-row { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .form-card { padding: clamp(22px, 5vw, 30px); }

  /* Commercial-page compact forms. */
  form[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: minmax(0, 1fr) !important;
  }
  form[style*="grid-template-columns: 1fr 1fr"] > * {
    grid-column: 1 !important;
  }

  .book-modal { padding: 34px clamp(20px, 5vw, 30px) 28px; }
  .offer-modal-content { grid-template-columns: minmax(0, 1fr); }
  .offer-modal-left { display: none; }
  .offer-modal-right { padding: 34px clamp(20px, 5vw, 30px); }

  /* Compact floating controls, separated from the offer bar. */
  .contact-tab {
    top: auto;
    bottom: calc(126px + var(--safe-bottom) + var(--urgency-height));
    transform: none;
    gap: 6px;
    padding: 10px 7px;
    border-radius: 0 10px 10px 0;
  }
  .contact-tab:hover,
  .contact-tab:active { transform: translateX(3px); }
  .contact-tab svg { width: 18px; height: 18px; }
  .contact-tab-label { font-size: .62rem; letter-spacing: .16em; }
  .wa-float { width: 50px; height: 50px; }
  .wa-float svg { width: 27px; height: 27px; }
  .wa-tip { display: none; }
  .to-top { width: 42px; height: 42px; }

  /* Temporarily yield to visible forms so fields and submit buttons stay unobstructed. */
  .wa-float.avoid-form,
  .contact-tab.avoid-form,
  .wa-float.avoid-promo,
  .contact-tab.avoid-promo,
  .to-top.avoid-promo {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  /* Bottom promotion: a regular end-of-page block on mobile, so it never
     obscures forms, cards or browser controls. Desktop keeps the fixed bar. */
  .urgency-bar {
    position: relative;
    inset: auto;
    display: none;
    transform: none;
  }
  .urgency-bar.show { display: block; transform: none; }
  body.urgency-visible { padding-bottom: 0; }
  body.urgency-visible .wa-float { bottom: calc(16px + var(--safe-bottom)); }
  body.urgency-visible .to-top { bottom: calc(82px + var(--safe-bottom)); }
  body.urgency-visible .contact-tab { bottom: calc(120px + var(--safe-bottom)); }

  .urgency-inner {
    width: min(100%, 620px);
    display: grid;
    grid-template-columns: 12px minmax(0, 1fr);
    gap: 5px 9px;
    padding: 10px 48px calc(10px + var(--safe-bottom)) 16px;
  }
  .urgency-pulse { grid-column: 1; grid-row: 1; margin-top: 6px; }
  .urgency-text { grid-column: 2; grid-row: 1; }
  .urgency-text strong { font-size: .84rem; line-height: 1.35; }
  .urgency-sub { display: block; font-size: .72rem; line-height: 1.35; }
  .urgency-btn {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    min-height: 44px;
    margin-top: 4px;
    justify-content: center;
    padding: 9px 16px !important;
  }
  .urgency-close {
    position: absolute;
    top: 6px;
    right: max(4px, env(safe-area-inset-right));
    display: grid;
    place-items: center;
    padding: 0;
  }
}

/* ---------- Phones: vertical cards, process and reviews ---------- */
@media (max-width: 700px) {
  .section,
  .trust-process-section,
  .reviews-section,
  .faq-new-section { padding-block: 40px !important; }

  .sec-head { margin-bottom: 28px !important; }
  .sec-head h2,
  section > .container > div > h2 { text-wrap: balance; }

  /* Mobile service and portfolio cards: one per row. */
  [style*="grid-template-columns: repeat(6"],
  [style*="grid-template-columns: repeat(5"],
  [style*="grid-template-columns: repeat(4"],
  [style*="grid-template-columns: repeat(3"],
  .office-5-grid,
  .retail-5-grid,
  .reception-6-grid,
  .hospitality-4-grid,
  .tech-grid-responsive,
  .durability-grid-responsive,
  .featured-meta-grid,
  .featured-projects-grid,
  .turnkey-6-grid,
  .services-grid,
  .proj-carousel,
  .projects-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  /* Keep genuine before/after pairs side by side. */
  .before-after-pair {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0 !important;
  }
  .before-after-pair img {
    width: 100% !important;
    height: clamp(132px, 42vw, 210px) !important;
    object-fit: cover;
  }

  /* Process becomes a clear vertical timeline. */
  .process-steps {
    position: relative;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    align-items: stretch !important;
    justify-content: stretch !important;
    gap: 12px !important;
    width: 100%;
    margin: 22px 0 !important;
  }

  .process-steps::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 34px;
    bottom: 34px;
    left: 26px;
    width: 2px;
    background: linear-gradient(var(--c-gold), rgba(216,164,78,.18));
  }

  .process-step {
    position: relative;
    z-index: 1;
    display: grid !important;
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: center !important;
    gap: 14px;
    width: 100%;
    padding: 12px 14px 12px 0;
    text-align: left !important;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: 12px;
    box-shadow: 0 5px 18px rgba(6,24,51,.06);
  }

  .ps-circle {
    grid-column: 1;
    grid-row: 1;
    width: 52px;
    height: 52px;
    background: #fff;
  }

  .ps-label {
    grid-column: 2;
    grid-row: 1;
    margin: 0 !important;
    font-size: .9rem;
    line-height: 1.35;
    text-align: left;
  }
  .ps-label br { display: none; }
  .ps-arrow { display: none !important; }
  .process-cta-row { text-align: left; margin-top: 20px; }
  .process-cta-row .btn { width: 100%; justify-content: center; }

  /* One review per row on phones. */
  .reviews-row {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 14px !important;
  }
  .reviews-brand {
    display: block !important;
    padding: 0 0 18px !important;
    margin: 0 !important;
    text-align: left;
  }
  .reviews-brand h3,
  .reviews-brand > div { justify-content: flex-start !important; flex-wrap: wrap; }
  .rev-card { padding: 20px !important; }
  .rev-text { font-size: .9rem; line-height: 1.65; }
  .reviews-btn-wrap { margin-top: 4px !important; }
  .reviews-btn-wrap a { width: 100%; justify-content: center; white-space: normal !important; }

  .faq-new-item summary,
  .faq-item summary {
    min-height: 52px;
    padding: 14px 16px;
    gap: 14px;
    font-size: .9rem;
    line-height: 1.45;
  }
  .faq-new-item p,
  .faq-item p { padding-inline: 16px; }

  .footer-grid { grid-template-columns: minmax(0, 1fr); }

  .port-tabs { gap: 8px; margin-bottom: 34px; }
  .port-tab { min-height: 44px; padding: 10px 16px; }

  .contact-cards,
  .metric-grid { grid-template-columns: minmax(0, 1fr); }

  .blog-search { min-width: 0; width: 100%; }
}

/* ---------- Small phones: 320px–480px ---------- */
@media (max-width: 480px) {
  :root { --site-gutter: 16px; }

  .promo-bar { font-size: .68rem !important; }
  .promo-bar-inner > div:last-child { font-size: .64rem !important; }
  .promo-bar-inner > div:last-child > span { padding-inline: 4px !important; }

  .logo img { height: 36px; max-width: min(188px, 64vw); }

  .hero-left h1,
  .hero-new h1 { font-size: clamp(2rem, 9vw, 2.25rem) !important; }
  .hero-benefits { grid-template-columns: minmax(0, 1fr); }
  .hero-form-card { padding: 22px 16px !important; }

  .page-hero h1 { font-size: clamp(1.75rem, 8vw, 2.15rem); }
  .page-hero .hero-sub { font-size: .94rem; }
  .page-hero .hero-btns { width: 100%; }
  .page-hero .hero-btns .btn { width: 100%; justify-content: center; }

  .btn {
    min-height: 48px;
    max-width: 100%;
    padding: 12px 18px;
    justify-content: center;
    line-height: 1.35;
    white-space: normal;
  }

  /* Inline card actions become real touch targets. */
  main a[style*="padding: 6px 4px"],
  main a[style*="padding: 8px"] {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 9px 8px !important;
    line-height: 1.3;
  }

  .hero-rating-bar { padding-inline: 12px !important; }
  .hero-rating-bar > div { flex-wrap: wrap; }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }
  .stat-item {
    justify-content: flex-start !important;
    gap: 8px;
    padding: 8px 2px;
  }
  .stat-item:last-child { grid-column: 1 / -1; justify-content: center !important; }
  .stat-icon { width: 24px; height: 24px; }
  .stat-num { font-size: .96rem; }
  .stat-lbl { font-size: .65rem; white-space: normal; line-height: 1.3; }

  .faq-help-card {
    flex-direction: column;
    align-items: stretch !important;
    text-align: left;
  }
  .faq-help-card a {
    width: 100%;
    min-height: 48px;
    justify-content: center;
    white-space: normal !important;
  }

  .show-media img,
  .sol-media img { height: 230px; }

  .gallery-grid { grid-template-columns: minmax(0, 1fr); }
  .gallery-grid img { height: 210px; }
  .real-grid { grid-template-columns: minmax(0, 1fr) !important; }

  .turnkey-strip,
  .promise-box,
  .leadership-block,
  .commit-box { padding: 24px 18px; }

  .book-modal-title { font-size: 1.4rem; }
  .book-modal-sub { margin-bottom: 20px; }

  .urgency-text strong { font-size: .8rem; }
  .urgency-sub { font-size: .68rem; }
}

@media (max-width: 359px) {
  .promo-bar-inner > div:first-child { font-size: .65rem; }
  .promo-bar-inner > div:last-child { gap: 3px !important; }
  .promo-bar-inner > div:last-child > span:first-child { flex-basis: 100%; }
  .logo img { max-width: 178px; height: 34px; }
  .hamburger { width: 44px; height: 44px; }
  .hero-form-card { padding-inline: 14px !important; }
  .before-after-pair img { height: 126px !important; }
  .process-step { grid-template-columns: 48px minmax(0, 1fr); gap: 11px; }
  .ps-circle { width: 48px; height: 48px; }
  .process-steps::before { left: 23px; }
  .rev-card { padding: 18px 16px !important; }
  .urgency-inner { padding-left: 12px; padding-right: 44px; }
}

/* ---------- Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
