/*==============================================================
  West LA Mobile Auto Glass - Homepage Styles  v2
  home-style.css  |  depends on style1.css (base) loading first
==============================================================*/

/* ─────────────────────────────────────────────────────────────
   SHARED TOKENS
───────────────────────────────────────────────────────────── */
:root {
  --teal: #59d4b9;
  --teal-dark: #35b1a4;
  --teal-deeper: #1a8f80;
  --navy: #1a3b36;
  --navy-dark: #0e201c;
  --off-white: #f7fdfa;
  --border-soft: rgba(89, 212, 185, 0.18);
  --shadow-sm: 0 4px 18px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 36px rgba(0, 0, 0, 0.10);
  --shadow-teal: 0 8px 28px rgba(89, 212, 185, 0.28);
  --radius-card: 18px;
  --radius-pill: 50px;
}

/* ─────────────────────────────────────────────────────────────
   SHARED UTILITIES
───────────────────────────────────────────────────────────── */
.hp-section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 48px;
}

.hp-section-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 14px;
  font-family: "Poppins", sans-serif;
}

.hp-section-intro {
  font-size: 15.5px;
  color: #555;
  line-height: 1.78;
  margin: 0;
}

/* ── check bubble ── */
.hp-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(89, 212, 185, 0.35);
}

/* ── primary CTA button ── */
.hp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-teal);
  letter-spacing: 0.2px;
}

.hp-btn-primary:hover {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal-deeper));
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(89, 212, 185, 0.42);
  text-decoration: none;
}

/* ── secondary phone button ── */
.hp-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--teal);
  text-decoration: none;
  transition: all 0.3s ease;
}

.hp-btn-secondary:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  transform: translateY(-2px);
  text-decoration: none;
}


/* ═══════════════════════════════════════════════════════════
   SECTION 1 - HERO  (enhanced v3)
═══════════════════════════════════════════════════════════ */
#home-hero-content.hp-hero-section {
  padding: 80px 0 70px;
  background: #fff;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

/* Layered background: teal blob top-left, white center, soft mesh */
.hp-hero-bg-layer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at -5% 20%, rgba(89, 212, 185, 0.13) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 105% 80%, rgba(53, 177, 164, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, #f5fdfb 0%, #ffffff 50%, #f0fdf8 100%);
  z-index: -2;
  pointer-events: none;
}

.hp-hero-dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(89, 212, 185, 0.09) 1px, transparent 1px);
  background-size: 28px 28px;
  z-index: -1;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 100% at 50% 50%, black 30%, transparent 100%);
}

.hp-hero-container {
  position: relative;
}

/* ── image column ── */
.hp-hero-img-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  padding: 0;
}

/* decorative animated ring */
.hp-img-ring {
  position: absolute;
  inset: 0;
  border-radius: 30px;
  border: 2px dashed rgba(89, 212, 185, 0.35);
  animation: spin-ring 18s linear infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes spin-ring {
  to {
    transform: rotate(360deg);
  }
}

.hp-hero-img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.13),
    0 0 0 5px #fff,
    0 0 0 8px rgba(89, 212, 185, 0.18);
  display: block;
  position: relative;
  z-index: 1;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hp-hero-img-wrap:hover .hp-hero-img {
  transform: scale(1.018);
}

/* floating stat chips - redesigned as horizontal pill cards */
.hp-img-chip {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 12px 18px 12px 14px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.14);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  z-index: 4;
  border: 1.5px solid rgba(89, 212, 185, 0.25);
  backdrop-filter: blur(6px);
}

.hp-chip-tl {
  top: 20px;
  left: 14px;
}

.hp-chip-br {
  bottom: 24px;
  right: 14px;
}

.hp-chip-icon-bg {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: #fff;
  flex-shrink: 0;
}

.hp-chip-icon-bg.hp-chip-green {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.hp-chip-icon-bg i {
  line-height: 1;
}

.hp-img-chip>div {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.hp-chip-num {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  font-family: "Poppins", sans-serif;
  white-space: nowrap;
}

.hp-chip-num small {
  font-size: 11px;
  font-weight: 600;
  color: var(--teal-dark);
  margin-left: 2px;
}

.hp-chip-label {
  font-size: 11px;
  font-weight: 500;
  color: #888;
  white-space: nowrap;
}

/* ── content column ── */
.hp-hero-content {
  padding-left: 10px;
}

.hp-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--teal-deeper);
  background: rgba(89, 212, 185, 0.1);
  border: 1px solid rgba(89, 212, 185, 0.35);
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.hp-eyebrow-dot {
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse-dot 1.6s ease infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.6);
    opacity: 0.4;
  }
}

.hp-h1 {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.22;
  color: var(--navy);
  margin-bottom: 12px;
  font-family: "Poppins", sans-serif;
  letter-spacing: -0.3px;
}

.hp-hero-subheading {
  font-size: 16px;
  font-weight: 500;
  color: #555;
  margin-bottom: 24px;
  font-family: "Open Sans", sans-serif;
  line-height: 1.55;
}

/* ── checklist - 2-col on md+ ── */
.hp-checklist,
.hp-credentials-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
}

.hp-checklist li,
.hp-credentials-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: #333;
  padding: 7px 10px;
  background: #f8fffe;
  border: 1px solid rgba(89, 212, 185, 0.15);
  border-radius: 8px;
  font-family: "Open Sans", sans-serif;
  transition: background 0.2s;
}

.hp-checklist li:hover {
  background: rgba(89, 212, 185, 0.07);
}

/* credentials list stays single-col */
.hp-credentials-list {
  grid-template-columns: 1fr;
  gap: 4px;
}

.hp-credentials-list li {
  border-radius: 8px;
}

/* ── dual CTA ── */
.hp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
  align-items: center;
}

/* ── stats bar below CTAs ── */
.hp-hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: #f8fffe;
  border: 1px solid rgba(89, 212, 185, 0.2);
  border-radius: 14px;
  padding: 14px 20px;
  flex-wrap: wrap;
}

.hp-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 80px;
}

.hp-stat-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  font-family: "Poppins", sans-serif;
  line-height: 1;
}

.hp-stat-num small {
  font-size: 13px;
  color: var(--teal-dark);
  font-weight: 600;
  margin-left: 2px;
}

.hp-stat-label {
  font-size: 11px;
  color: #888;
  font-weight: 500;
  margin-top: 3px;
  white-space: nowrap;
}

.hp-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(89, 212, 185, 0.25);
  flex-shrink: 0;
  margin: 0 8px;
}

/* ── reviewer link ── */
a.hp-reviewer {
  color: var(--navy);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-weight: 700;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  transition: color 0.2s;
}

a.hp-reviewer:hover {
  color: var(--teal-dark);
  text-decoration: none;
}


/* ═══════════════════════════════════════════════════════════
   SECTION 2 - FORM  (v5: dark left col, clean white right)
═══════════════════════════════════════════════════════════ */
.hp-form-section {
  background: #fff;
  overflow: hidden;
}

.hp-form-container {
  position: relative;
}

/* ── LEFT panel - dark background applied directly on the col ── */
.hp-form-left-panel {
  background: linear-gradient(160deg, #0e1f1c 0%, #163832 55%, #1c5045 100%);
  position: relative;
  overflow: hidden;
}

/* subtle teal blob decorations on dark panel */
.hp-form-left-panel::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(89, 212, 185, 0.12) 0%, transparent 65%);
  top: -80px;
  left: -60px;
  pointer-events: none;
}

.hp-form-left-panel::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(89, 212, 185, 0.08) 0%, transparent 65%);
  bottom: -40px;
  right: 0;
  pointer-events: none;
}

.hp-form-left-inner {
  padding: 64px 44px 64px 44px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.hp-form-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: "Poppins", sans-serif;
  background: rgba(89, 212, 185, 0.1);
  padding: 5px 14px 5px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(89, 212, 185, 0.2);
  width: fit-content;
}

.hp-form-eyebrow i {
  font-size: 13px;
}

.hp-form-heading {
  font-size: 26px;
  font-weight: 800;
  color: #fff !important;
  background: none !important;
  -webkit-text-fill-color: #fff !important;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
  line-height: 1.28;
  letter-spacing: -0.2px;
}

.hp-form-sub {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.7;
}

.hp-form-body {
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  line-height: 1.75;
  margin-bottom: 10px;
}

/* ── 3 feature icon rows ── */
.hp-form-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}

.hp-form-feat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.25s, border-color 0.25s;
}

.hp-form-feat:hover {
  background: rgba(89, 212, 185, 0.07);
  border-color: rgba(89, 212, 185, 0.25);
}

.hp-form-feat-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: rgba(89, 212, 185, 0.15);
  border: 1px solid rgba(89, 212, 185, 0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--teal);
  flex-shrink: 0;
}

.hp-form-feat-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 2px;
  font-family: "Poppins", sans-serif;
}

.hp-form-feat-desc {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.48);
  margin: 0;
  line-height: 1.45;
  font-family: "Open Sans", sans-serif;
}

/* ── trust strip ── */
.hp-form-trust-strip {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(89, 212, 185, 0.18);
  border-left: 3px solid var(--teal);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 22px;
}

.hp-trust-headline {
  font-size: 11px;
  font-weight: 700;
  color: rgba(180, 245, 214, 0.75);
  margin-bottom: 8px;
  font-family: "Poppins", sans-serif;
  line-height: 1.5;
}

.hp-trust-phone {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hp-trust-phone a {
  color: var(--teal);
  text-decoration: none;
  transition: color 0.2s;
}

.hp-trust-phone a:hover {
  color: #fff;
}

.hp-trust-hours {
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: 10px;
}

.hp-trust-badges-row {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hp-trust-badges-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: rgba(212, 249, 239, 0.75);
  font-family: "Open Sans", sans-serif;
}

.hp-trust-badges-row i {
  color: var(--teal);
  font-size: 12px;
  flex-shrink: 0;
}

/* ── direct call ── */
.hp-form-direct-call {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 20px;
}

.hp-form-direct-call>span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}

.hp-btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: #fff !important;
  font-weight: 700;
  font-size: 14.5px;
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  text-decoration: none !important;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
  box-shadow: 0 6px 20px rgba(89, 212, 185, 0.35);
}

.hp-btn-phone:hover {
  background: #fff;
  color: var(--navy) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
}

/* ── RIGHT panel - pure white ── */
.hp-form-right-panel {
  background: #fff;
}

.hp-form-right-inner {
  padding: 64px 48px 64px 44px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.hp-form-accent-ring {
  display: none;
}

/* ── form card ── */
.hp-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 36px;
  border: 1px solid #e8e8e8;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.04),
    0 12px 40px rgba(0, 0, 0, 0.07);
  position: relative;
  overflow: hidden;
}

.hp-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--teal-dark), var(--navy));
  border-radius: 20px 20px 0 0;
}

/* ── stat row below form card ── */
.hp-form-stat-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 20px;
  background: #f8f8f8;
  border: 1px solid #ebebeb;
  border-radius: 14px;
  padding: 16px 20px;
}

.hp-form-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.hp-form-stat-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  font-family: "Poppins", sans-serif;
  line-height: 1;
}

.hp-form-stat-num small {
  font-size: 12px;
  color: var(--teal-dark);
  font-weight: 600;
  margin-left: 2px;
}

.hp-form-stat-label {
  font-size: 11px;
  color: #999;
  font-weight: 500;
  margin-top: 4px;
  white-space: nowrap;
}

.hp-form-stat-sep {
  width: 1px;
  height: 36px;
  background: #e0e0e0;
  margin: 0 8px;
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════
   SECTION 3 - SERVICES
═══════════════════════════════════════════════════════════ */
.hp-services-section {
  padding: 90px 0;
  background: var(--off-white);
}

.hp-service-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 32px 24px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.hp-service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.hp-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(89, 212, 185, 0.18), var(--shadow-md);
  border-color: rgba(89, 212, 185, 0.35);
}

.hp-service-card:hover::after {
  transform: scaleX(1);
}

.hp-service-icon-wrap {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, rgba(89, 212, 185, 0.15), rgba(53, 177, 164, 0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 24px;
  color: var(--teal-dark);
  transition: all 0.3s ease;
  border: 1px solid rgba(89, 212, 185, 0.2);
}

.hp-service-card:hover .hp-service-icon-wrap {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff;
  border-color: transparent;
  transform: rotate(-4deg) scale(1.08);
}

.hp-service-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
}

.hp-service-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.68;
  flex: 1;
  margin-bottom: 20px;
}

.hp-service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal-dark);
  font-weight: 600;
  font-size: 13.5px;
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
  transition: all 0.25s ease;
  font-family: "Poppins", sans-serif;
  margin-top: auto;
}

.hp-service-link:hover {
  color: var(--navy);
  border-bottom-color: var(--teal);
  gap: 10px;
  text-decoration: none;
}


/* ═══════════════════════════════════════════════════════════
   SECTION 4 - WHY CHOOSE US
═══════════════════════════════════════════════════════════ */
.hp-why-section {
  padding: 90px 0;
  background: #fff;
}

.hp-why-card {
  background: var(--off-white);
  border-radius: var(--radius-card);
  padding: 34px 26px;
  height: 100%;
  border: 1px solid var(--border-soft);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.hp-why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.hp-why-card:hover {
  background: #fff;
  border-color: rgba(89, 212, 185, 0.4);
  box-shadow: 0 16px 44px rgba(89, 212, 185, 0.15);
  transform: translateY(-6px);
}

.hp-why-card:hover::before {
  transform: scaleX(1);
}

.hp-why-icon-wrap {
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 26px;
  color: #fff;
  box-shadow: 0 6px 18px rgba(89, 212, 185, 0.35);
  transition: transform 0.3s ease;
}

.hp-why-card:hover .hp-why-icon-wrap {
  transform: rotate(-6deg) scale(1.1);
}

.hp-why-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
}

.hp-why-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.68;
  margin: 0;
}


/* ═══════════════════════════════════════════════════════════
   SECTION 5 - CREDENTIALS
═══════════════════════════════════════════════════════════ */
.hp-credentials-section {
  padding: 90px 0;
  background: linear-gradient(155deg, #eafaf5 0%, #fff 60%, #f0fdf8 100%);
}

.hp-cred-badge-box {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
  transition: all 0.3s ease;
  overflow: hidden;
}

.hp-cred-badge-box:hover {
  box-shadow: var(--shadow-teal);
  transform: translateY(-4px);
  border-color: rgba(89, 212, 185, 0.4);
}

.hp-cred-badge-box img {
  max-height: 116px;
  max-width: 100%;
  object-fit: contain;
}


/* ═══════════════════════════════════════════════════════════
   SECTION 6 - AREAS WE SERVE
═══════════════════════════════════════════════════════════ */
.hp-areas-section {
  padding: 90px 0;
  background: #fff;
}

.hp-primary-coverage {
  font-size: 14px;
  color: #555;
  margin-top: 6px;
}

.hp-areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.hp-areas-grid a {
  display: inline-block;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(89, 212, 185, 0.22);
}

.hp-areas-grid a:hover {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(26, 59, 54, 0.25);
  text-decoration: none;
}


/* ═══════════════════════════════════════════════════════════
   SECTION 7 - TESTIMONIALS
═══════════════════════════════════════════════════════════ */
.hp-testimonials-section {
  padding: 90px 0;
  background: linear-gradient(160deg, #f7fdfa 0%, #eafaf5 100%);
}

.hp-testimonial-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 34px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.hp-testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 12px;
  right: 22px;
  font-size: 80px;
  color: rgba(89, 212, 185, 0.12);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.hp-testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(89, 212, 185, 0.18);
  border-color: rgba(89, 212, 185, 0.35);
}

.hp-stars {
  color: #f4c430;
  font-size: 19px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.hp-review-text {
  font-size: 14.5px;
  color: #444;
  line-height: 1.72;
  font-style: italic;
  flex: 1;
  margin-bottom: 20px;
}

.hp-reviewer-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}

.hp-reviewer-avatar {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
  font-family: "Poppins", sans-serif;
}

.hp-reviewer {
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
  margin: 0;
  font-family: "Poppins", sans-serif;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.hp-rev-source {
  font-size: 11px;
  font-weight: 500;
  color: #999;
  background: #f5f5f5;
  padding: 2px 8px;
  border-radius: 20px;
}


/* ═══════════════════════════════════════════════════════════
   SECTION 8 - CTA BANNER
═══════════════════════════════════════════════════════════ */
.hp-cta-section {
  padding: 90px 0;
  background: #fff;
}

.hp-cta-box {
  background: linear-gradient(140deg, var(--navy-dark) 0%, #164f4b 50%, var(--teal-deeper) 100%);
  border-radius: 28px;
  padding: 70px 60px;
  text-align: center;
  color: #fff;
  box-shadow: 0 24px 70px rgba(22, 79, 75, 0.35);
  position: relative;
  overflow: hidden;
}

.hp-cta-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(89, 212, 185, 0.18), transparent 70%);
  top: -120px;
  right: -80px;
  pointer-events: none;
}

.hp-cta-heading {
  font-size: 34px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
  position: relative;
}

.hp-cta-box>p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.72;
  max-width: 680px;
  margin: 0 auto 16px;
  position: relative;
}

.hp-cta-callout {
  font-size: 19px !important;
  font-weight: 700 !important;
  color: #fff !important;
}

.hp-cta-callout a {
  color: var(--teal);
  text-decoration: underline;
  font-weight: 800;
}

.hp-cta-hours {
  font-size: 14px !important;
  opacity: 0.75;
  margin-bottom: 32px !important;
}

.hp-cta-hours i {
  color: var(--teal);
}

.hp-btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  font-size: 19px;
  padding: 17px 42px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
  box-shadow: 0 10px 30px rgba(89, 212, 185, 0.4);
  position: relative;
}

.hp-btn-cta:hover {
  background: #fff;
  color: var(--navy) !important;
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
  text-decoration: none;
}


/* ─── MAP ─── */
.hp-map-section {
  overflow: hidden;
  box-shadow: 0 -4px 20px rgba(89, 212, 185, 0.18);
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
/* ── Primary coverage link ── */
.hp-primary-coverage a {
  color: var(--teal-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.hp-primary-coverage a:hover {
  color: var(--navy);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1199px) {
  .hp-hero-img {
    height: 480px;
  }

  .hp-h1 {
    font-size: 26px;
  }

  .hp-form-left-inner {
    padding: 60px 32px 60px 20px;
  }

  .hp-form-right-inner {
    padding: 60px 20px 60px 32px;
  }

  .hp-cta-box {
    padding: 60px 40px;
  }

  .hp-cta-heading {
    font-size: 28px;
  }
}

@media (max-width: 991px) {

  /* Hero */
  #home-hero-content.hp-hero-section {
    padding: 44px 0 52px;
  }

  .hp-hero-img {
    height: 380px;
  }

  .hp-chip-tl {
    left: 10px;
    top: 14px;
  }

  .hp-chip-br {
    right: 10px;
    bottom: 16px;
  }

  .hp-hero-content {
    padding-left: 0;
    padding-top: 30px;
  }

  .hp-h1 {
    font-size: 22px;
  }

  .hp-hero-stats {
    gap: 0;
  }

  /* Checklist back to single col on tablet */
  .hp-checklist {
    grid-template-columns: 1fr;
  }

  /* Section 2: stack on tablet */
  .hp-form-left-inner {
    padding: 52px 28px 40px;
  }

  .hp-form-right-inner {
    padding: 40px 28px 52px;
  }

  .hp-form-card {
    padding: 32px 24px;
  }

  /* Other */
  .hp-cta-box {
    padding: 50px 28px;
  }

  .hp-cta-heading {
    font-size: 24px;
  }

  .hp-section-title {
    font-size: 26px;
  }
}

@media (max-width: 767px) {

  /* Hero */
  .hp-hero-img {
    height: 270px;
    border-radius: 18px;
  }

  .hp-img-ring {
    display: none;
  }

  .hp-h1 {
    font-size: 20px;
  }

  .hp-hero-subheading {
    font-size: 14.5px;
  }

  .hp-hero-actions {
    flex-direction: column;
    gap: 10px;
  }

  .hp-btn-primary,
  .hp-btn-secondary {
    width: 100%;
    justify-content: center;
    font-size: 13.5px;
  }

  .hp-hero-stats {
    padding: 12px 14px;
    gap: 0;
  }

  .hp-stat-num {
    font-size: 18px;
  }

  .hp-chip-tl {
    top: 10px;
    left: 10px;
  }

  .hp-chip-br {
    bottom: 10px;
    right: 10px;
  }

  .hp-img-chip {
    padding: 9px 12px;
    gap: 8px;
  }

  .hp-chip-icon-bg {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .hp-chip-num {
    font-size: 13px;
  }

  /* Section 2 */
  .hp-form-left-inner {
    padding: 40px 20px 32px;
  }

  .hp-form-right-inner {
    padding: 32px 20px 44px;
  }

  .hp-form-heading {
    font-size: 22px;
  }

  .hp-form-card {
    padding: 26px 18px;
  }

  .hp-form-stat-row {
    padding: 12px 14px;
  }

  .hp-form-stat-num {
    font-size: 19px;
  }

  .hp-form-direct-call {
    flex-direction: column;
    align-items: flex-start;
  }

  .hp-form-features {
    gap: 8px;
  }

  .hp-form-feat {
    padding: 10px 12px;
    gap: 10px;
  }

  .hp-form-feat-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 16px;
  }

  /* Other */
  .hp-section-title {
    font-size: 22px;
  }

  .hp-cta-box {
    padding: 40px 20px;
    border-radius: 18px;
  }

  .hp-cta-heading {
    font-size: 21px;
  }

  .hp-btn-cta {
    font-size: 16px;
    padding: 14px 28px;
  }

  .hp-cred-badge-box {
    height: 120px;
  }

  .hp-areas-grid a {
    font-size: 12px;
    padding: 7px 14px;
  }
}

@media (max-width: 480px) {
  .hp-hero-img {
    height: 230px;
  }

  .hp-chip-tl,
  .hp-chip-br {
    display: none;
  }

  .hp-checklist {
    grid-template-columns: 1fr;
  }

  .hp-hero-stats {
    flex-direction: column;
    gap: 10px;
  }

  .hp-stat-divider {
    display: none;
  }
}


/*═══════════════════════════════════════════════════════════════
  ▓▓▓  PREMIUM POLISH LAYER  (v2)  ▓▓▓
  Override layer that elevates the existing v3 homepage with richer
  depth, refined typography, glass materials, and micro-interactions.
  Loaded last → wins specificity ties without touching markup.
═══════════════════════════════════════════════════════════════*/
:root {
  --teal-light: #7fe3cc;
  --ink: #122e2a;
  --shadow-xl: 0 28px 70px -18px rgba(18, 46, 42, 0.28);
  --shadow-float: 0 18px 48px -12px rgba(89, 212, 185, 0.40);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Smooth anchor scrolling for the in-page CTAs */
html {
  scroll-behavior: smooth;
}

/* ── Refined section headers — richer title + decorative accent ── */
.hp-section-header {
  margin-bottom: 54px;
}

.h2-gradient.hp-section-title,
.hp-credentials-section .h2-gradient {
  background: linear-gradient(100deg, var(--ink) 0%, #1a8f80 55%, #35b1a4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.6px;
  font-size: 34px;
  line-height: 1.18;
}

/* centered titles get an underline flourish */
.hp-section-header .hp-section-title {
  position: relative;
  display: inline-block;
}

.hp-section-header .hp-section-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin: 16px auto 0;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--teal), var(--teal-dark));
  box-shadow: 0 2px 10px rgba(89, 212, 185, 0.45);
}

/* small "eyebrow" kicker above the credentials title (left-aligned) */
.hp-credentials-section .h2-gradient {
  display: inline-block;
}

.hp-section-intro {
  color: #5a6a66;
  font-size: 16px;
}


/*───────────────────────────────────────────────────────────────
  FORM SECTION — deeper material, gradient sheen on card
───────────────────────────────────────────────────────────────*/
.hp-form-left-panel {
  background: linear-gradient(155deg, #0b1a17 0%, #143430 50%, #1c5045 100%);
}

/* faint mesh texture on the dark panel */
.hp-form-left-panel {
  background-image:
    radial-gradient(ellipse 60% 50% at 90% 10%, rgba(89, 212, 185, 0.10), transparent 60%),
    linear-gradient(155deg, #0b1a17 0%, #143430 50%, #1c5045 100%);
}

.hp-form-heading {
  letter-spacing: -0.4px;
}

.hp-form-card {
  border-radius: 22px;
  box-shadow: var(--shadow-xl);
  border-color: #eef2f1;
}

.hp-form-card::before {
  height: 5px;
}

.hp-btn-phone {
  box-shadow: 0 10px 26px -8px rgba(89, 212, 185, 0.5);
}


/*───────────────────────────────────────────────────────────────
  SERVICES + WHY CARDS — premium lift & gradient wash on hover
───────────────────────────────────────────────────────────────*/
.hp-service-card,
.hp-why-card,
.hp-testimonial-card,
.hp-cred-badge-box {
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out),
    border-color 0.3s, background 0.4s;
}

.hp-service-card {
  border-radius: 20px;
  box-shadow: 0 6px 24px -14px rgba(18, 46, 42, 0.20);
}

.hp-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 32px 60px -22px rgba(18, 46, 42, 0.30), 0 0 0 1px rgba(89, 212, 185, 0.25);
}

.hp-service-icon-wrap {
  box-shadow: inset 0 0 0 1px rgba(89, 212, 185, 0.18), 0 6px 16px -10px rgba(89, 212, 185, 0.5);
}

.hp-why-icon-wrap {
  box-shadow: 0 10px 24px -8px rgba(89, 212, 185, 0.55);
}

.hp-why-card:hover {
  transform: translateY(-8px);
}

/* subtle numbered rhythm on service titles via icon emphasis */
.hp-service-title,
.hp-why-title {
  letter-spacing: -0.2px;
}


/*───────────────────────────────────────────────────────────────
  CREDENTIALS — badge cards with sheen
───────────────────────────────────────────────────────────────*/
.hp-cred-badge-box {
  background: linear-gradient(180deg, #ffffff, #f7fdfb);
}

.hp-cred-badge-box:hover {
  transform: translateY(-6px);
}


/*───────────────────────────────────────────────────────────────
  AREAS — chips with refined depth
───────────────────────────────────────────────────────────────*/
.hp-areas-grid a {
  box-shadow: 0 6px 16px -8px rgba(89, 212, 185, 0.45);
  letter-spacing: 0.2px;
}

.hp-areas-grid a:hover {
  transform: translateY(-3px);
}


/*───────────────────────────────────────────────────────────────
  TESTIMONIALS — refined quote cards
───────────────────────────────────────────────────────────────*/
.hp-testimonial-card {
  border-radius: 20px;
}

.hp-testimonial-card::before {
  font-size: 96px;
  top: 6px;
  right: 24px;
}

.hp-testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -24px rgba(18, 46, 42, 0.28);
}

.hp-stars {
  text-shadow: 0 2px 6px rgba(244, 196, 48, 0.35);
}


/*───────────────────────────────────────────────────────────────
  CTA BANNER — richer glow + animated gradient
───────────────────────────────────────────────────────────────*/
.hp-cta-box {
  background: linear-gradient(135deg, #0b1a17 0%, #164f4b 48%, #1a8f80 100%);
  box-shadow: 0 36px 90px -30px rgba(11, 26, 23, 0.7);
}

.hp-cta-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 120%, rgba(89, 212, 185, 0.16), transparent 45%);
  pointer-events: none;
}

.hp-cta-heading {
  letter-spacing: -0.5px;
}

.hp-btn-cta {
  box-shadow: 0 16px 40px -10px rgba(89, 212, 185, 0.6);
}

.hp-btn-cta:hover {
  transform: translateY(-4px) scale(1.02);
}


/*───────────────────────────────────────────────────────────────
  MAP — soften the top seam
───────────────────────────────────────────────────────────────*/
.hp-map-section {
  border-top: 3px solid var(--teal);
}


/*───────────────────────────────────────────────────────────────
  RESPONSIVE tune-ups for the polish layer
───────────────────────────────────────────────────────────────*/
@media (max-width: 991px) {

  .h2-gradient.hp-section-title,
  .hp-credentials-section .h2-gradient {
    font-size: 27px;
  }
}

@media (max-width: 767px) {

  .h2-gradient.hp-section-title,
  .hp-credentials-section .h2-gradient {
    font-size: 23px;
  }

  .hp-section-header {
    margin-bottom: 36px;
  }
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}


/*═══════════════════════════════════════════════════════════════
  ▓▓▓  SECTION 1 — HERO  (Premium light & airy redesign)  ▓▓▓
  Self-contained, prefixed hpx-. Replaces the old .hp-hero-* hero.
═══════════════════════════════════════════════════════════════*/
.hpx-hero {
  position: relative;
  isolation: isolate;
  overflow: clip;
  /* The topbar (51px) is in normal flow and pushes #main down by 51px. Pull
     the hero up by that 51px so the tinted bg starts flush at the very top,
     then pad past the fixed header (bottom ≈127px = topbar 51 + header 76) so
     the eyebrow/H1 clear it with a comfortable gap. (Was -117/+117 which left
     the top content tucked ~28px under the header on desktop.) */
  margin-top: -51px;
  padding: calc(127px + 38px) 0 88px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f4fdfa 48%, #effdf8 100%);
  background-color: #f6fefc;
}

/* ── ambient background ── */
.hpx-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hpx-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
}

.hpx-blob-1 {
  width: 520px;
  height: 520px;
  top: -160px;
  left: -120px;
  background: radial-gradient(circle, rgba(89, 212, 185, 0.40), transparent 68%);
}

.hpx-blob-2 {
  width: 460px;
  height: 460px;
  bottom: -180px;
  right: -120px;
  background: radial-gradient(circle, rgba(53, 177, 164, 0.30), transparent 70%);
}

.hpx-hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(26, 59, 54, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, #000 25%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, #000 25%, transparent 80%);
}

.hpx-hero-container {
  position: relative;
}

/* ─────────────  CONTENT COLUMN  ───────────── */
.hpx-hero-content {
  max-width: 560px;
}

.hpx-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "Poppins", sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #18796d;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(89, 212, 185, 0.4);
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
  box-shadow: 0 4px 14px -6px rgba(89, 212, 185, 0.5);
  backdrop-filter: blur(6px);
}

.hpx-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2bbf9f;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(43, 191, 159, 0.6);
  animation: hpx-pulse 1.8s ease-out infinite;
}

@keyframes hpx-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(43, 191, 159, 0.55);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(43, 191, 159, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(43, 191, 159, 0);
  }
}

.hpx-h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 40px;
  line-height: 1.16;
  letter-spacing: -0.9px;
  color: #112e2a;
  margin: 0 0 18px;
}

.hpx-h1-accent {
  background: linear-gradient(100deg, #1a8f80, #2bbf9f 60%, #35b1a4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hpx-h1-sep {
  color: rgba(26, 59, 54, 0.22);
  font-weight: 500;
  margin: 0 2px;
}

.hpx-sub {
  font-family: "Open Sans", sans-serif;
  font-size: 16.5px;
  line-height: 1.7;
  color: #51635e;
  margin: 0 0 26px;
}

/* benefit chips — airy, no heavy borders */
.hpx-benefits {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.hpx-benefits li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Open Sans", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #2f4a44;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(26, 59, 54, 0.07);
  padding: 8px 14px 8px 11px;
  border-radius: 50px;
  box-shadow: 0 2px 10px -6px rgba(18, 46, 42, 0.18);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), border-color 0.25s;
}

.hpx-benefits li:hover {
  transform: translateY(-2px);
  border-color: rgba(89, 212, 185, 0.5);
  box-shadow: 0 8px 18px -8px rgba(89, 212, 185, 0.4);
}

.hpx-benefits li i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  height: 19px;
  background: linear-gradient(135deg, #59d4b9, #35b1a4);
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  flex-shrink: 0;
}

/* CTA row */
.hpx-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 14px;
  margin-bottom: 30px;
}

.hpx-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  background: linear-gradient(135deg, #2bbf9f, #1a8f80);
  padding: 0 30px;
  height: 60px;
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 16px 34px -12px rgba(26, 143, 128, 0.75);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.hpx-btn-primary i {
  font-size: 19px;
}

.hpx-btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-18deg);
  transition: left 0.7s var(--ease-out);
}

.hpx-btn-primary:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 22px 42px -12px rgba(26, 143, 128, 0.8);
}

.hpx-btn-primary:hover::before {
  left: 135%;
}

.hpx-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #112e2a;
  background: #fff;
  border: 1px solid rgba(26, 59, 54, 0.10);
  padding: 0 24px;
  height: 60px;
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 10px 26px -14px rgba(18, 46, 42, 0.35);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s;
}

.hpx-btn-ghost i {
  font-size: 18px;
  color: #2bbf9f;
}

.hpx-btn-ghost span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.hpx-btn-ghost small {
  font-family: "Open Sans", sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #8aa39d;
}

.hpx-btn-ghost:hover {
  color: #112e2a;
  transform: translateY(-3px);
  border-color: rgba(89, 212, 185, 0.55);
  box-shadow: 0 16px 32px -14px rgba(18, 46, 42, 0.4);
}

/* trust row */
.hpx-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  color: #51635e;
}

.hpx-trust-stars {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #2f4a44;
}

.hpx-stars {
  color: #f5b301;
  letter-spacing: 1px;
  font-size: 15px;
}

.hpx-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  color: #2f4a44;
}

.hpx-trust-item i {
  color: #2bbf9f;
  font-size: 15px;
}

.hpx-trust-sep {
  width: 1px;
  height: 18px;
  background: rgba(26, 59, 54, 0.15);
}

/* ─────────────  IMAGE COLUMN  ───────────── */
.hpx-hero-visual {
  position: relative;
  padding: 14px;
}

.hpx-img-frame {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow:
    0 40px 80px -28px rgba(18, 46, 42, 0.45),
    0 0 0 1px rgba(26, 59, 54, 0.04);
}

.hpx-img-frame::after {
  /* subtle top sheen so the photo reads premium, not flat */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.10), transparent 30%, rgba(11, 26, 23, 0.12));
  pointer-events: none;
}

.hpx-hero-img {
  display: block;
  width: 100%;
  height: 540px;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
  transition: transform 0.7s var(--ease-out);
}

.hpx-hero-visual:hover .hpx-hero-img {
  transform: scale(1.04);
}

/* floating glass cards */
.hpx-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px) saturate(1.5);
  -webkit-backdrop-filter: blur(14px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  padding: 12px 18px 12px 13px;
  box-shadow: 0 18px 44px -14px rgba(18, 46, 42, 0.4);
  z-index: 3;
  animation: hpx-float-anim 5s var(--ease-out) infinite;
}

.hpx-float-top {
  top: 30px;
  left: -14px;
}

.hpx-float-bottom {
  bottom: 34px;
  right: -14px;
  animation-delay: 1.8s;
}

@keyframes hpx-float-anim {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

.hpx-float-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #2bbf9f, #1a8f80);
  color: #fff;
  font-size: 19px;
  flex-shrink: 0;
  box-shadow: 0 8px 18px -6px rgba(26, 143, 128, 0.7);
}

.hpx-float-icon-alt {
  background: linear-gradient(135deg, #f5b301, #e08a00);
  box-shadow: 0 8px 18px -6px rgba(224, 138, 0, 0.6);
}

.hpx-float div {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.hpx-float strong {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #112e2a;
}

.hpx-float small {
  font-family: "Open Sans", sans-serif;
  font-size: 11.5px;
  color: #7a8c87;
}

/* ─────────────  HERO RESPONSIVE  ───────────── */
@media (max-width: 1199px) {
  .hpx-h1 {
    font-size: 34px;
  }

  .hpx-hero-img {
    height: 480px;
  }
}

@media (max-width: 991px) {
  .hpx-hero {
    /* 768–991px: chrome 127px (topbar 51 + header 76), margin -51 from base */
    padding: calc(127px + 26px) 0 60px;
  }

  .hpx-hero-content {
    max-width: 100%;
  }

  .hpx-h1 {
    font-size: 32px;
  }

  .hpx-hero-img {
    height: 420px;
  }

  .hpx-float-top {
    left: 6px;
  }

  .hpx-float-bottom {
    right: 6px;
  }
}

@media (max-width: 767px) {

  /* On mobile the topbar is position:fixed (out of flow), so #main starts at
     y=0 — NO negative margin. Pad past the fixed chrome (topbar 48 + header
     64 = 112px) so the eyebrow/H1 clear the header. */
  .hpx-hero {
    margin-top: 0;
    padding: calc(112px + 26px) 0 48px;
  }

  .hpx-h1 {
    font-size: 26px;
  }

  .hpx-sub {
    font-size: 15px;
  }

  .hpx-hero-visual {
    padding: 6px;
  }

  .hpx-hero-img {
    height: 320px;
  }

  .hpx-actions {
    flex-direction: column;
  }

  .hpx-btn-primary,
  .hpx-btn-ghost {
    width: 100%;
    justify-content: center;
  }

  /* hide the floating cards on mobile — they crowd the smaller hero image */
  .hpx-float {
    display: none;
  }
}

@media (max-width: 480px) {
  .hpx-h1 {
    font-size: 23px;
  }

  .hpx-hero-img {
    height: 250px;
  }

  .hpx-trust {
    font-size: 12px;
    gap: 10px;
  }

  .hpx-trust-sep {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {

  .hpx-float,
  .hpx-eyebrow-dot {
    animation: none !important;
  }

  .hpx-btn-primary::before {
    transition: none;
  }
}


/*═══════════════════════════════════════════════════════════════
  ▓▓▓  SECTION 2 — FORM  (Premium redesign)  ▓▓▓
  One unified elevated card on a soft section background.
  Self-contained, prefixed fx-. Replaces the old .hp-form-* section.
═══════════════════════════════════════════════════════════════*/
.fx-section {
  position: relative;
  padding: 88px 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 0%, rgba(89, 212, 185, 0.10), transparent 60%),
    linear-gradient(180deg, #effdf8 0%, #f6fefc 40%, #ffffff 100%);
}

/* unified card */
.fx-card {
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 40px 90px -36px rgba(18, 46, 42, 0.45),
    0 2px 6px rgba(18, 46, 42, 0.05),
    0 0 0 1px rgba(26, 59, 54, 0.05);
}

/* ─────────────  LEFT — dark info panel  ───────────── */
.fx-info {
  position: relative;
  background:
    radial-gradient(ellipse 70% 40% at 100% 0%, rgba(89, 212, 185, 0.16), transparent 60%),
    linear-gradient(160deg, #0c211d 0%, #143a34 55%, #1b5247 100%);
  overflow: hidden;
}

.fx-info::before {
  /* faint dot texture */
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}

.fx-info-inner {
  position: relative;
  padding: 56px 44px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.fx-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #7fe3cc;
  background: rgba(89, 212, 185, 0.12);
  border: 1px solid rgba(89, 212, 185, 0.28);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.fx-eyebrow i {
  font-size: 13px;
}

.fx-heading {
  font-family: "Poppins", sans-serif;
  font-size: 27px;
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.4px;
  color: #fff;
  margin: 0 0 12px;
}

.fx-lead {
  font-family: "Open Sans", sans-serif;
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.66);
  margin: 0 0 26px;
}

/* feature rows */
.fx-features {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fx-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.fx-feat-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(89, 212, 185, 0.14);
  border: 1px solid rgba(89, 212, 185, 0.26);
  color: #7fe3cc;
  font-size: 19px;
}

.fx-features strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}

.fx-features small {
  font-family: "Open Sans", sans-serif;
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}

/* SEO body copy — condensed, low-emphasis */
.fx-body-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding-top: 20px;
  margin-bottom: 26px;
}

.fx-body-copy p {
  font-family: "Open Sans", sans-serif;
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.46);
  margin: 0 0 12px;
}

.fx-body-copy p:last-child {
  margin-bottom: 0;
}

/* direct call */
/* doc trust headline */
.fx-trust-line {
  font-family: "Poppins", sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.55;
  color: rgba(127, 227, 204, 0.92);
  margin: 0 0 4px;
  padding: 14px 16px;
  background: rgba(89, 212, 185, 0.07);
  border-left: 3px solid #2bbf9f;
  border-radius: 0 10px 10px 0;
}

.fx-call {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.fx-call-label {
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
}

.fx-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
}

.fx-call-btn>i {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2bbf9f, #1a8f80);
  color: #fff;
  border-radius: 13px;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 10px 22px -8px rgba(43, 191, 159, 0.7);
  transition: transform 0.3s var(--ease-out);
}

.fx-call-btn span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}

.fx-call-btn small {
  font-family: "Open Sans", sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.3px;
}

.fx-call-btn:hover>i {
  transform: translateY(-3px);
}

/* ─────────────  RIGHT — form  ───────────── */
.fx-form-col {
  background: #fff;
}

.fx-form-inner {
  padding: 44px 44px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fx-form-card {
  background: #fff;
  border: 1px solid #eef2f1;
  border-radius: 20px;
  padding: 36px 34px;
  box-shadow: 0 24px 60px -30px rgba(18, 46, 42, 0.30);
  position: relative;
  overflow: hidden;
}

.fx-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #59d4b9, #35b1a4, #1a8f80);
}

/* stat strip */
.fx-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 22px;
  padding: 16px 20px;
  background: #f7faf9;
  border: 1px solid #eef2f1;
  border-radius: 16px;
}

.fx-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fx-stat-num {
  font-family: "Poppins", sans-serif;
  font-size: 23px;
  font-weight: 800;
  color: #112e2a;
  line-height: 1;
}

.fx-stat-num small {
  font-size: 12px;
  color: #2bbf9f;
  font-weight: 600;
  margin-left: 2px;
}

.fx-stat-label {
  font-family: "Open Sans", sans-serif;
  font-size: 11px;
  color: #8aa39d;
  font-weight: 500;
  margin-top: 4px;
  white-space: nowrap;
}

.fx-stat-sep {
  width: 1px;
  height: 34px;
  background: #e3eae8;
  flex-shrink: 0;
  margin: 0 6px;
}

/* ─────────────  FORM RESPONSIVE  ───────────── */
@media (max-width: 991px) {
  .fx-section {
    padding: 56px 0;
  }

  .fx-info-inner {
    padding: 44px 32px;
  }

  .fx-form-inner {
    padding: 36px 32px;
  }
}

@media (max-width: 767px) {
  .fx-section {
    padding: 40px 0;
  }

  .fx-card {
    border-radius: 22px;
  }

  .fx-info-inner {
    padding: 36px 22px;
  }

  .fx-form-inner {
    padding: 28px 18px;
  }

  .fx-form-card {
    padding: 28px 20px;
  }

  .fx-heading {
    font-size: 23px;
  }

  .fx-stats {
    padding: 14px;
  }

  .fx-stat-num {
    font-size: 20px;
  }
}


/*═══════════════════════════════════════════════════════════════
  ▓▓▓  SHARED SECTION HEADER  (premium, reused across sections)  ▓▓▓
═══════════════════════════════════════════════════════════════*/
.sx-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.sx-kicker {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #18796d;
  background: rgba(89, 212, 185, 0.13);
  border: 1px solid rgba(89, 212, 185, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.sx-title {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.7px;
  line-height: 1.18;
  color: #112e2a;
  margin: 0 0 16px;
}

.sx-intro {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.72;
  color: #5a6a66;
  margin: 0;
}


/*═══════════════════════════════════════════════════════════════
  ▓▓▓  SECTION 3 — SERVICES  (Premium redesign)  ▓▓▓
═══════════════════════════════════════════════════════════════*/
.sx-section {
  padding: 96px 0;
  background:
    radial-gradient(ellipse 50% 40% at 0% 0%, rgba(89, 212, 185, 0.07), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f6fefc 100%);
}

.sx-grid {
  margin-bottom: 28px;
}

/* service card */
.sx-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  padding: 32px 28px 28px;
  background: #fff;
  border: 1px solid #edf2f0;
  border-radius: 20px;
  text-decoration: none;
  box-shadow: 0 10px 30px -18px rgba(18, 46, 42, 0.30);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.3s;
}

.sx-card::before {
  /* top accent bar grows on hover */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2bbf9f, #1a8f80);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.sx-card:hover {
  transform: translateY(-8px);
  border-color: rgba(89, 212, 185, 0.4);
  box-shadow: 0 30px 60px -28px rgba(18, 46, 42, 0.4);
}

.sx-card:hover::before {
  transform: scaleX(1);
}

.sx-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-bottom: 20px;
  font-size: 26px;
  color: #fff;
  background: linear-gradient(135deg, #2bbf9f, #1a8f80);
  box-shadow: 0 12px 24px -10px rgba(26, 143, 128, 0.7);
  transition: transform 0.4s var(--ease-out);
}

.sx-card:hover .sx-icon {
  transform: translateY(-3px) rotate(-5deg) scale(1.05);
}

.sx-card-title {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: #112e2a;
  margin: 0 0 10px;
}

.sx-card p {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 1.68;
  color: #66756f;
  margin: 0 0 20px;
  flex: 1;
}

.sx-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "Poppins", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #1a8f80;
  margin-top: auto;
}

.sx-link i {
  transition: transform 0.3s var(--ease-out);
}

.sx-card:hover .sx-link {
  color: #112e2a;
}

.sx-card:hover .sx-link i {
  transform: translateX(5px);
}

/* Commercial — full-width feature banner */
.sx-feature {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 32px 40px;
  border-radius: 22px;
  text-decoration: none;
  background:
    radial-gradient(ellipse 50% 120% at 100% 0%, rgba(89, 212, 185, 0.18), transparent 60%),
    linear-gradient(135deg, #0c211d 0%, #143a34 55%, #1b5247 100%);
  box-shadow: 0 30px 70px -34px rgba(11, 26, 23, 0.7);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.sx-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 40px 80px -34px rgba(11, 26, 23, 0.8);
}

.sx-feature-icon {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-size: 32px;
  color: #fff;
  background: linear-gradient(135deg, #2bbf9f, #1a8f80);
  box-shadow: 0 14px 30px -10px rgba(43, 191, 159, 0.7);
}

.sx-feature-text {
  flex: 1;
}

.sx-feature-text h3 {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
}

.sx-feature-text p {
  font-family: "Open Sans", sans-serif;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
}

.sx-feature-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "Poppins", sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: #112e2a;
  background: #fff;
  padding: 14px 26px;
  border-radius: 50px;
  box-shadow: 0 12px 28px -12px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.sx-feature-cta i {
  transition: transform 0.3s var(--ease-out);
}

.sx-feature:hover .sx-feature-cta {
  transform: translateY(-2px);
}

.sx-feature:hover .sx-feature-cta i {
  transform: translateX(5px);
}

/* ─── SERVICES RESPONSIVE ─── */
@media (max-width: 991px) {
  .sx-section {
    padding: 64px 0;
  }

  .sx-title {
    font-size: 29px;
  }

  .sx-feature {
    flex-direction: column;
    text-align: center;
    gap: 18px;
    padding: 32px 28px;
  }

  .sx-feature-text {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .sx-section {
    padding: 48px 0;
  }

  .sx-header {
    margin-bottom: 36px;
  }

  .sx-title {
    font-size: 24px;
  }

  .sx-intro {
    font-size: 14.5px;
  }

  .sx-card {
    padding: 26px 22px 24px;
  }

  .sx-feature-cta {
    width: 100%;
    justify-content: center;
  }
}




/*═══════════════════════════════════════════════════════════════
  ▓▓▓  SECTION 4 — WHY CHOOSE US  (Light & clean — wx-)  ▓▓▓
═══════════════════════════════════════════════════════════════*/
.wx-section {
  padding: 96px 0;
  background:
    radial-gradient(ellipse 55% 45% at 100% 0%, rgba(89, 212, 185, 0.08), transparent 55%),
    linear-gradient(180deg, #f6fefc 0%, #ffffff 60%);
}

.wx-card {
  height: 100%;
  padding: 34px 28px;
  background: #fff;
  border: 1px solid #edf2f0;
  border-radius: 20px;
  box-shadow: 0 10px 30px -18px rgba(18, 46, 42, 0.28);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.3s;
}

.wx-card::after {
  /* corner glow accent on hover */
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(89, 212, 185, 0.18), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.wx-card:hover {
  transform: translateY(-8px);
  border-color: rgba(89, 212, 185, 0.4);
  box-shadow: 0 30px 60px -28px rgba(18, 46, 42, 0.38);
}

.wx-card:hover::after {
  opacity: 1;
}

.wx-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 17px;
  margin-bottom: 20px;
  font-size: 27px;
  color: #fff;
  background: linear-gradient(135deg, #2bbf9f, #1a8f80);
  box-shadow: 0 14px 28px -10px rgba(26, 143, 128, 0.65);
  position: relative;
  z-index: 1;
  transition: transform 0.4s var(--ease-out);
}

.wx-card:hover .wx-icon {
  transform: translateY(-3px) rotate(-6deg) scale(1.06);
}

.wx-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: #112e2a;
  margin: 0 0 11px;
  position: relative;
  z-index: 1;
}

.wx-card p {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #66756f;
  margin: 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .wx-section {
    padding: 64px 0;
  }
}

@media (max-width: 767px) {
  .wx-section {
    padding: 48px 0;
  }

  .wx-card {
    padding: 28px 24px;
  }
}


/*═══════════════════════════════════════════════════════════════
  ▓▓▓  SECTION 6 — AREAS WE SERVE  (Premium redesign — ax-)  ▓▓▓
═══════════════════════════════════════════════════════════════*/
.ax-section {
  padding: 96px 0;
  background:
    radial-gradient(ellipse 50% 50% at 0% 100%, rgba(89, 212, 185, 0.07), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f6fefc 100%);
}

/* ── left info panel ── */
.ax-info {
  padding-right: 16px;
}

.ax-title {
  font-family: "Poppins", sans-serif;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.7px;
  line-height: 1.18;
  color: #112e2a;
  margin: 0 0 14px;
}

.ax-intro {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  line-height: 1.72;
  color: #5a6a66;
  margin: 0 0 24px;
}

.ax-primary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid rgba(89, 212, 185, 0.3);
  border-radius: 16px;
  box-shadow: 0 12px 30px -18px rgba(18, 46, 42, 0.3);
  margin-bottom: 22px;
}

.ax-primary-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #2bbf9f, #1a8f80);
  color: #fff;
  font-size: 20px;
  box-shadow: 0 10px 22px -8px rgba(43, 191, 159, 0.6);
}

.ax-primary-label {
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #8aa39d;
  margin-bottom: 2px;
}

.ax-primary a {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #112e2a;
  text-decoration: none;
  transition: color 0.2s;
}

.ax-primary a:hover {
  color: #1a8f80;
}

.ax-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "Poppins", sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #2bbf9f, #1a8f80);
  padding: 13px 26px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 14px 30px -12px rgba(26, 143, 128, 0.7);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.ax-cta:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 20px 38px -12px rgba(26, 143, 128, 0.8);
}

/* ── right structured grid ── */
.ax-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.ax-grid a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 16px;
  background: #fff;
  border: 1px solid #e9efed;
  border-radius: 12px;
  font-family: "Open Sans", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #2f4a44;
  text-decoration: none;
  box-shadow: 0 4px 14px -10px rgba(18, 46, 42, 0.25);
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out),
    border-color 0.28s, background 0.28s, color 0.28s;
}

.ax-grid a i {
  color: #2bbf9f;
  font-size: 15px;
  flex-shrink: 0;
  transition: transform 0.28s var(--ease-out);
}

.ax-grid a:hover {
  transform: translateY(-3px);
  border-color: transparent;
  background: linear-gradient(135deg, #2bbf9f, #1a8f80);
  color: #fff;
  box-shadow: 0 14px 28px -12px rgba(26, 143, 128, 0.6);
}

.ax-grid a:hover i {
  color: #fff;
  transform: scale(1.15);
}

/* ── responsive ── */
@media (max-width: 991px) {
  .ax-section {
    padding: 64px 0;
  }

  .ax-info {
    padding-right: 0;
    text-align: center;
  }

  .ax-info .sx-kicker {
    margin-left: auto;
    margin-right: auto;
  }

  .ax-primary {
    justify-content: center;
    text-align: left;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .ax-title {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .ax-section {
    padding: 48px 0;
  }

  .ax-title {
    font-size: 25px;
  }

  .ax-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .ax-grid a {
    font-size: 12.5px;
    padding: 11px 13px;
  }
}

@media (max-width: 420px) {
  .ax-grid {
    grid-template-columns: 1fr;
  }
}


/*═══════════════════════════════════════════════════════════════
  ▓▓▓  SECTION 7 — TESTIMONIALS  (Premium redesign — tx-)  ▓▓▓
═══════════════════════════════════════════════════════════════*/
.tx-section {
  padding: 96px 0;
  background:
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(89, 212, 185, 0.08), transparent 55%),
    linear-gradient(180deg, #f6fefc 0%, #ffffff 100%);
}

/* rating summary bar */
.tx-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.tx-summary-num {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #112e2a;
}

.tx-summary-stars {
  color: #f5b301;
  font-size: 20px;
  letter-spacing: 2px;
}

.tx-summary-text {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  color: #5a6a66;
}

.tx-summary-text strong {
  color: #1a8f80;
}

/* review card */
.tx-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 34px 30px 28px;
  background: #fff;
  border: 1px solid #edf2f0;
  border-radius: 22px;
  box-shadow: 0 12px 34px -20px rgba(18, 46, 42, 0.3);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.3s;
}

.tx-card:hover {
  transform: translateY(-8px);
  border-color: rgba(89, 212, 185, 0.4);
  box-shadow: 0 32px 60px -28px rgba(18, 46, 42, 0.4);
}

.tx-quote {
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 56px;
  line-height: 1;
  color: rgba(89, 212, 185, 0.18);
  pointer-events: none;
}

.tx-stars {
  color: #f5b301;
  font-size: 17px;
  letter-spacing: 2px;
  margin-bottom: 16px;
  text-shadow: 0 2px 6px rgba(245, 179, 1, 0.25);
}

.tx-text {
  font-family: "Open Sans", sans-serif;
  font-size: 14.5px;
  line-height: 1.74;
  color: #4a5953;
  margin: 0 0 24px;
  flex: 1;
}

.tx-reviewer {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  padding-top: 18px;
  border-top: 1px solid #f0f4f3;
}

.tx-avatar {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #2bbf9f, #1a8f80);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 8px 18px -6px rgba(43, 191, 159, 0.6);
}

.tx-reviewer-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.tx-reviewer-meta strong {
  font-family: "Poppins", sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: #112e2a;
}

.tx-reviewer-meta small {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  color: #8aa39d;
}

.tx-reviewer-meta small i {
  color: #4285F4;
  font-size: 13px;
}

.tx-reviewer:hover .tx-reviewer-meta strong {
  color: #1a8f80;
}

@media (max-width: 991px) {
  .tx-section {
    padding: 64px 0;
  }
}

@media (max-width: 767px) {
  .tx-section {
    padding: 48px 0;
  }

  .tx-card {
    padding: 28px 24px 24px;
  }
}


/*═══════════════════════════════════════════════════════════════
  ▓▓▓  SECTION 8 — FINAL CTA  (Light & airy redesign — cx-)  ▓▓▓
═══════════════════════════════════════════════════════════════*/
.cx-section {
  padding: 40px 0 96px;
  background: #fff;
}

.cx-box {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 28px;
  padding: 64px 48px;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(89, 212, 185, 0.14), transparent 60%),
    radial-gradient(ellipse 50% 70% at 0% 100%, rgba(89, 212, 185, 0.10), transparent 60%),
    linear-gradient(180deg, #f4fdfa 0%, #ffffff 100%);
  border: 1px solid rgba(89, 212, 185, 0.3);
  box-shadow: 0 30px 70px -36px rgba(18, 46, 42, 0.3);
}

/* soft dotted texture */
.cx-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(circle, rgba(26, 59, 54, 0.045) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 15%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 15%, transparent 72%);
  pointer-events: none;
}

.cx-glow {
  display: none;
}

.cx-inner {
  position: relative;
  z-index: 1;
}

.cx-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "Poppins", sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #18796d;
  background: rgba(89, 212, 185, 0.13);
  border: 1px solid rgba(89, 212, 185, 0.35);
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
}

.cx-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2bbf9f;
  box-shadow: 0 0 0 0 rgba(43, 191, 159, 0.6);
  animation: hpx-pulse 1.8s ease-out infinite;
}

.cx-heading {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.14;
  color: #112e2a;
  margin: 0 0 16px;
}

.cx-text {
  font-family: "Open Sans", sans-serif;
  font-size: 15.5px;
  line-height: 1.72;
  color: #51635e;
  max-width: 660px;
  margin: 0 auto 16px;
}

.cx-callout {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #112e2a;
  max-width: 660px;
  margin: 6px auto 30px;
}

.cx-callout a {
  color: #1a8f80;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cx-callout a:hover {
  color: #112e2a;
}

/* CTA actions */
.cx-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
}

.cx-btn-call {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #2bbf9f, #1a8f80);
  color: #fff;
  padding: 0 32px;
  height: 64px;
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 18px 38px -14px rgba(26, 143, 128, 0.7);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.cx-btn-call>i {
  font-size: 22px;
  color: #fff;
}

.cx-btn-call span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
  font-family: "Poppins", sans-serif;
  font-size: 21px;
  font-weight: 800;
}

.cx-btn-call small {
  font-family: "Open Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.cx-btn-call:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 26px 46px -16px rgba(26, 143, 128, 0.8);
}

.cx-btn-quote {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 64px;
  padding: 0 30px;
  border-radius: 16px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #112e2a;
  background: #fff;
  border: 1px solid rgba(26, 59, 54, 0.12);
  text-decoration: none;
  box-shadow: 0 10px 26px -14px rgba(18, 46, 42, 0.3);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s;
}

.cx-btn-quote i {
  font-size: 19px;
  color: #2bbf9f;
}

.cx-btn-quote:hover {
  color: #112e2a;
  transform: translateY(-3px);
  border-color: rgba(89, 212, 185, 0.55);
  box-shadow: 0 16px 32px -14px rgba(18, 46, 42, 0.4);
}

/* trust row */
.cx-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 28px;
}

.cx-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Open Sans", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #51635e;
}

.cx-trust i {
  color: #2bbf9f;
  font-size: 14px;
}

/* ── responsive ── */
@media (max-width: 991px) {
  .cx-box {
    padding: 52px 32px;
  }

  .cx-heading {
    font-size: 33px;
  }
}

@media (max-width: 767px) {
  .cx-section {
    padding: 24px 0 52px;
  }

  .cx-box {
    padding: 40px 22px;
    border-radius: 22px;
  }

  .cx-heading {
    font-size: 26px;
  }

  .cx-heading br {
    display: none;
  }

  .cx-text {
    font-size: 14.5px;
  }

  .cx-actions {
    flex-direction: column;
  }

  .cx-btn-call,
  .cx-btn-quote {
    width: 100%;
    justify-content: center;
  }

  .cx-trust {
    gap: 10px 18px;
  }

  .cx-trust span {
    font-size: 12.5px;
  }
}