/* Homepage only (index.html) — pair with site.css + global.css */

body.page-home {
  background-color: var(--white);
  background-image: var(--body-surface-bloom);
  background-repeat: no-repeat;
  color: var(--ink);
  font-family: var(--font-b);
  line-height: 1.65;
  overflow-x: hidden;
}

/* Home: nav darkens after scrolling past hero (global.js adds .nav--dark) — base nav lives in site.css */
body.page-home nav[aria-label="Primary"].nav--dark {
  background: rgba(15, 45, 61, 0.96);
  border-bottom-color: rgba(129, 195, 215, 0.16);
}

/* Home cinema hero — brand navy (--ink) behind feathered video; light scrims for copy */
.page-home .hero.hero--cinema {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: calc(100svh - var(--nav-h));
  padding: 0;
  margin: 0;
  background: var(--ink);
  color: var(--text-on-dark);
  border-bottom: 1px solid rgba(129, 195, 215, 0.14);
}

.page-home .hero.hero--cinema .hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse at center, black 55%, transparent 98%);
  mask-image: radial-gradient(ellipse at center, black 55%, transparent 98%);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

@media (max-width: 768px) {
  .page-home .hero.hero--cinema .hero-video {
    -webkit-mask-image: radial-gradient(ellipse at center, black 70%, transparent 100%);
    mask-image: radial-gradient(ellipse at center, black 70%, transparent 100%);
  }
}

/* bg-black/30 */
.page-home .hero.hero--cinema .hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.15);
}

/* bg-gradient-to-t from-black/70 via-transparent to-black/10 */
.page-home .hero.hero--cinema .hero-scrim-gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    transparent 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
}

.page-home .hero.hero--cinema .hc--cinema {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100svh - var(--nav-h));
  width: 100%;
  padding: clamp(1.25rem, 4vw, 2rem)
    max(1.5rem, var(--section-x), env(safe-area-inset-left, 0px));
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .page-home .hero.hero--cinema .hero-video {
    display: none;
  }

  .page-home .hero.hero--cinema {
    background: var(--ink) url("images/herotruck.jpg") 50% 50% / cover no-repeat;
  }
}

/* site.css mesh/noise on .hero — not used on cinema hero */
body.page-home .hero.hero--cinema::before,
body.page-home .hero.hero--cinema::after {
  content: none;
  display: none;
}

/* Subpages / non-cinema .ph still use default .hero rules from site.css */
.hc {
  position: relative;
  z-index: 10;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
}

.hero-grid--center {
  max-width: 800px;
}

.hero-left {
  max-width: 44rem;
}

.hero-left--center {
  max-width: 100%;
  text-align: center;
}

.hero-left--center .eyebrow {
  display: block;
  text-align: center;
  padding-left: 0;
}

.hero-left--center .eyebrow::before {
  display: none;
}

.hero-left--center .hero-trust {
  justify-content: center;
}

.btns--center {
  justify-content: center;
}

.hero-right {
  display: none;
}

/* Outline variant — white border on dark photo hero */
.btn-p--outline {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1.5px solid rgba(217, 220, 214, 0.65) !important;
  color: var(--white) !important;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.18) !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.btn-p--outline:hover {
  background: rgba(255, 255, 255, 0.16) !important;
  border-color: var(--white) !important;
  color: var(--white) !important;
}

/* h1 / eyebrow / lead: shared with .ph in site.css */
.hero .ph-in > p {
  margin-bottom: 1.35rem;
}

/* ——— Dark-photo hero: all text flips to pure white ———
 * Must use .page-home .hero .ph-in selectors to beat
 * site.css's .hero .ph-in h1 / .hero .ph-in > p rules
 */
.page-home .hero .ph-in h1 {
  color: #fff !important;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.45),
    0 2px 24px rgba(9, 26, 36, 0.55);
}

.page-home .hero .ph-in h1 span {
  color: #3b9eff !important;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.5),
    0 2px 18px rgba(9, 26, 36, 0.45);
}

.page-home .hero .ph-in .eyebrow {
  color: #9fd8ea !important;
  text-shadow: 0 1px 8px rgba(9, 26, 36, 0.65);
}

.page-home .hero .ph-in > p,
.page-home .hero .ph-in .hero-lead {
  color: #fff !important;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.4),
    0 2px 16px rgba(9, 26, 36, 0.4);
}

.page-home .hero .ph-in .hero-lead strong {
  color: #fff !important;
  font-weight: 600;
}

/* Eyebrow: add left tick line for editorial feel */
.hero .eyebrow {
  position: relative;
  padding-left: 1rem;
  color: var(--cyan);
  letter-spacing: 0.18em;
}

.hero .eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 100%;
  background: var(--cyan);
  border-radius: 2px;
}

/* Trust badges: light on dark, with separator line above */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  align-items: center;
  margin-top: 1.1rem;
  border-top: 1px solid rgba(129, 195, 215, 0.28);
  padding-top: 1rem;
  color: rgba(255, 255, 255, 0.93);
  font-size: var(--text-sm);
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.hero-trust .sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(129, 195, 215, 0.55);
  display: inline-block;
}

.hero-trust strong {
  color: rgba(255, 255, 255, 0.98);
  font-weight: 650;
}

.btns {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 1.4rem;
}

/* Hero CTAs: .page-home .hero .btn-* in site.css (same as About) */
.hero .btn-p,
.hero .btn-o {
  min-width: 12.5rem;
  justify-content: center;
}

/* Home sections */
.sec {
  padding: var(--section-y) var(--section-x);
}

.eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.25rem;
}

.sh {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: var(--text-section-title-wide);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.ss {
  color: rgba(15, 45, 61, 0.82);
  font-size: var(--text-body);
  line-height: 1.75;
  max-width: min(520px, var(--prose-width));
}

.svs-sec {
  background: var(--ink2);
  color: var(--white);
}

.svs-sec .sh {
  color: var(--white);
}

.svs-hdr {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.svs-hdr-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  max-width: 40rem;
}

.svs-hdr .sh {
  font-size: var(--text-section-title-wide);
  line-height: 1.02;
  margin-bottom: 0;
}

.svs-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* Last item (9th — odd) spans both columns, sits centered */
.svs-list .sr:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: 50%;
}

/* Add right border on left-column items */
.svs-list .sr:nth-child(odd):not(:last-child) {
  border-right: 1px solid var(--border);
}

/* Hide large background watermark numbers — cleaner in grid */
.sr-bg {
  display: none;
}

.sr {
  position: relative;
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0 2rem 1rem;
  border-top: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: padding-left 0.2s;
  overflow: visible;
}

.sr:last-child {
  border-bottom: 1px solid var(--border);
}

.sr-left {
  position: relative;
  min-width: 3rem;
}

.sr-bg {
  position: absolute;
  left: -0.75rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-d);
  font-weight: 900;
  font-size: var(--text-sr-bg);
  line-height: 1;
  color: rgba(129, 195, 215, 0.04);
  z-index: 0;
  pointer-events: none;
  transition: color 0.2s;
  white-space: nowrap;
}

.sr:hover .sr-bg {
  color: rgba(129, 195, 215, 0.08);
}

.sr:hover {
  padding-left: 0.65rem;
}

.sr:hover .sr-name {
  color: var(--cyan);
}

.sr:hover .sr-arrow {
  color: var(--cyan);
  transform: translateX(6px);
}

.sr-bar {
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 3px;
  margin-top: -1.5px;
  background: var(--cyan);
  transition: width 0.2s ease;
  z-index: 2;
}

.sr:hover .sr-bar {
  width: 40px;
}

.sr-num {
  position: relative;
  z-index: 1;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  color: var(--text-on-dark-muted);
  flex-shrink: 0;
}

.sr-mid {
  position: relative;
  z-index: 1;
}

.sr-name {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: var(--text-sr-name);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  transition: color 0.2s;
  margin-bottom: 0.25rem;
  color: var(--white);
}

.sr-desc {
  color: var(--text-on-dark-muted);
  font-size: var(--text-sm);
  line-height: 1.65;
  max-width: 500px;
}

.sr-arrow {
  font-size: 1.2rem;
  color: var(--text-on-dark-muted);
  transition: color 0.2s, transform 0.2s;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.page-home .svs-hdr .btn-o {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(15, 45, 61, 0.18);
  background: rgba(15, 45, 61, 0.82);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-cta);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.15s,
    box-shadow 0.2s;
  box-shadow: 0 10px 34px rgba(15, 45, 61, 0.1);
}

.page-home .svs-hdr .btn-o:hover {
  border-color: rgba(129, 195, 215, 0.55);
  background: rgba(15, 45, 61, 0.92);
  transform: translateY(-2px);
}

/* Stats strip (.stats-sec) lives in site.css for home + about */

.hiw-sec {
  background: var(--ink3);
  color: var(--text-on-dark);
  text-align: center;
}

.hiw-sec .eyebrow {
  color: var(--cyan);
}

.hiw-sec .sh {
  color: var(--white);
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}

.hiw-wrap {
  position: relative;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.hiw-rail {
  display: none;
}

.hiw-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.hiw-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(129, 195, 215, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hiw-wm {
  display: none;
}

.hiw-node-col {
  display: flex;
  justify-content: flex-start;
}

.hiw-node {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(129, 195, 215, 0.15);
  flex-shrink: 0;
}

.hiw-body {
  width: 100%;
}

.hiw-body h3 {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
  color: var(--white);
}

.hiw-body p {
  color: var(--text-on-dark-muted);
  font-size: var(--text-sm);
  line-height: 1.72;
  max-width: 40rem;
}

.hiw-body p strong {
  color: var(--text-on-dark);
  font-weight: 650;
}

@media (min-width: 900px) {
  .hiw-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.testi-sec {
  background: var(--ink3);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.testi-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 50% 80% at 80% 50%,
    rgba(129, 195, 215, 0.06),
    transparent 60%
  );
  pointer-events: none;
}

.testi-sec .sh {
  color: var(--white);
}

.testi-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.testi-cards {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.testi-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.tc {
  background: var(--ink3);
  border: 1px solid var(--border);
  padding: 2rem;
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
}

.tc-feat {
  border-left: 2px solid var(--cyan);
  padding: clamp(2rem, 4vw, 2.75rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tc-feat .tc-q {
  position: absolute;
  left: 0.5rem;
  top: 0.25rem;
  font-family: var(--font-d);
  font-weight: 900;
  font-size: var(--text-quote-deco);
  line-height: 1;
  color: rgba(129, 195, 215, 0.07);
  pointer-events: none;
  z-index: 0;
}

.tc-feat blockquote {
  position: relative;
  z-index: 1;
  font-size: 1.35rem;
  line-height: 1.65;
}

.tc-stars {
  color: var(--cyan);
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.tc blockquote {
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.tc-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.tc-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink4);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-d);
  font-weight: 800;
  color: var(--white);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.tc-name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--white);
}

.tc-loc {
  font-size: var(--text-xs);
  color: var(--text-on-dark-muted);
}

.area-sec {
  background: var(--ink2);
  color: var(--white);
}

.area-sec .sh {
  color: var(--white);
}

.area-sec .ss {
  color: rgba(217, 220, 214, 0.85);
}

.area-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}

.tag {
  border: 1px solid var(--border);
  background: rgba(129, 195, 215, 0.08);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, color 0.2s;
}

.tag:hover {
  border-color: rgba(232, 235, 230, 0.45);
  color: rgba(232, 235, 230, 0.95);
  cursor: default;
}

.area-map {
  aspect-ratio: 4/3;
  background: var(--ink3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.area-map-in {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-on-dark-muted);
}

.area-map-in svg {
  opacity: 0.3;
}

.area-map-in p {
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

/* "Why Soak N Wet" section */
.why-sec {
  background: var(--ink3);
  color: var(--white);
}

.why-inner {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.why-head {
  text-align: center;
}

.why-head .sh {
  color: var(--white);
}

.why-head .ss {
  margin: 0 auto;
  color: rgba(217, 220, 214, 0.82);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.why-block {
  padding: 2.25rem 0;
  border-top: 1px solid var(--border);
  position: relative;
}

.why-num {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: var(--text-val-num);
  line-height: 1;
  color: rgba(129, 195, 215, 0.12);
  margin-bottom: 1rem;
}

.why-block h3 {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 0.75rem;
}

.why-block p {
  font-size: var(--text-sm);
  color: var(--text-on-dark-muted);
  line-height: 1.7;
  margin: 0;
  max-width: 36ch;
}

@media (max-width: 900px) {
  .testi-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .testi-cards {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .svs-hdr {
    grid-template-columns: 1fr;
  }

  .svs-list {
    grid-template-columns: 1fr;
  }

  .svs-list .sr:last-child:nth-child(odd) {
    grid-column: auto;
    max-width: 100%;
  }

  .svs-list .sr:nth-child(odd):not(:last-child) {
    border-right: none;
  }

  .area-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .ft-top {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .btns {
    flex-direction: column;
    align-items: stretch;
  }

  .hero .btn-p,
  .hero .btn-o {
    width: 100%;
    min-width: 0;
  }

  .sr {
    grid-template-columns: 2.5rem 1fr auto;
    gap: 1rem;
    padding-left: 0.5rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero-left--center {
    text-align: center;
  }

  .hero-left--center .eyebrow {
    text-align: center;
  }

  .hero-left--center .hero-trust {
    justify-content: center;
  }

  .btns--center {
    justify-content: center;
  }

  .ft-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ft-bot {
    flex-direction: column;
    text-align: center;
  }
}


/* 6-item svs-list: even count, no orphan centering needed */
.svs-list .sr:last-child:nth-child(odd) {
  grid-column: auto;
  max-width: 100%;
}

/* ——— Color-flow overrides: break up the dark-on-dark streak ——— */

/* Stats strip → light surface (was all dark navy) */
body.page-home .stats-sec {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--border-ui);
}
body.page-home .stats-sec .sb {
  background: rgba(129, 195, 215, 0.06);
  border-right-color: var(--border-ui);
}
body.page-home .stats-sec .sb:first-child {
  border-left: 3px solid var(--cyan-dk);
}
body.page-home .stats-sec .sb-num {
  color: var(--ink);
}
body.page-home .stats-sec .sb-num--text {
  color: var(--cyan-dk);
}
body.page-home .stats-sec .sb-num span {
  color: var(--cyan-dk);
}
body.page-home .stats-sec .sb-label {
  color: var(--muted2);
}
body.page-home .stats-sec .sb:not(:first-child)::after {
  background: linear-gradient(90deg, var(--cyan-dk), transparent);
}

/* Why Choose Us → light surface (was dark, card grid with icons) */
body.page-home .why-sec {
  background: var(--surface);
  color: var(--ink);
}
body.page-home .why-sec::before {
  background: radial-gradient(
    ellipse 50% 80% at 80% 50%,
    rgba(58, 124, 165, 0.05),
    transparent 60%
  );
}
body.page-home .why-sec .eyebrow {
  color: var(--cyan-dk);
}
body.page-home .why-sec .sh {
  color: var(--ink);
}
body.page-home .why-sec .ss {
  color: var(--muted2);
}
body.page-home .why-block {
  border-top-color: var(--border-ui);
}
body.page-home .why-num {
  color: rgba(58, 124, 165, 0.14);
}
body.page-home .why-block h3 {
  color: var(--ink);
}
body.page-home .why-block p {
  color: var(--muted2);
}

/* ——— Inline CTAs (varied per section to avoid repetition) ——— */

/* How It Works: centered phone CTA after the 3 steps */
.hiw-cta {
  text-align: center;
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hiw-cta p {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-on-dark-muted);
  margin-bottom: 1rem;
}
.hiw-cta .btn-p {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cyan);
  color: var(--ink);
  font-weight: 800;
  font-size: 1rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-cta);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 8px 28px rgba(129, 195, 215, 0.2);
}
.hiw-cta .btn-p:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(129, 195, 215, 0.3);
}

/* Why Choose Us: single button CTA (light bg context) */
.why-cta {
  text-align: center;
  margin-top: 3rem;
}
.btn-p--surface {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ink2);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-cta);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 10px 34px rgba(15, 45, 61, 0.14);
}
.btn-p--surface:hover {
  background: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 14px 42px rgba(15, 45, 61, 0.2);
}

/* Service Area: button pair below the area tags */
.area-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.area-cta .btn-n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.75rem;
  padding: 0.5rem 1.25rem;
  font-family: var(--font-b);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, border-color 0.2s;
}
.area-cta .btn-call {
  background: var(--cyan);
  color: var(--ink);
  border: 1px solid var(--cyan);
}
.area-cta .btn-call:hover {
  background: var(--white);
  border-color: var(--white);
  transform: translateY(-1px);
}
.area-cta .btn-quote {
  background: rgba(129, 195, 215, 0.15);
  color: var(--white);
  border: 1px solid rgba(129, 195, 215, 0.35);
}
.area-cta .btn-quote:hover {
  background: rgba(129, 195, 215, 0.25);
  transform: translateY(-1px);
}
