:root {
  --navy: #0b253e;
  --orange: #e8742a;
  --cream: #f4f1ea;
  --white: #fff;
  --ink: #10283d;
  --muted: #65737f;
  --line: rgba(11, 37, 62, 0.15);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}
.section {
  padding: 96px 0;
}
.section-sm {
  padding: 66px 0;
}
.bg-white {
  background: #fff;
}
.bg-navy {
  background: var(--navy);
  color: #fff;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.eyebrow:before {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--orange);
}
h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
  font-weight: 900;
}
h1 {
  font-size: clamp(3rem, 7vw, 6.7rem);
}
h2 {
  font-size: clamp(2.2rem, 4.4vw, 4.5rem);
}
h3 {
  font-size: 1.45rem;
}
p {
  margin: 0 0 18px;
}
.lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 760px;
}
.bg-navy .lead {
  color: rgba(255, 255, 255, 0.72);
}
.btn-main,
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: 0.25s;
}
.btn-main {
  background: var(--orange);
  color: #fff;
}
.btn-main:hover {
  background: #fff;
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
.btn-outline:hover {
  background: #fff;
  color: var(--navy);
}
.topbar {
  background: var(--orange);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 0;
}
.site-header {
  position: absolute;
  z-index: 30;
  left: 0;
  right: 0;
  top: 32px;
  color: #fff;
}
.site-header.fixed {
  position: fixed;
  top: 0;
  background: var(--navy);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
  animation: navIn 0.3s ease;
}
@keyframes navIn {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.nav-wrap {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.brand {
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}
.brand span {
  display: block;
  color: var(--orange);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  margin-top: 8px;
}
.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.nav-links a {
  position: relative;
  padding: 34px 0;
}
.nav-links a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 25px;
  height: 2px;
  background: var(--orange);
  transition: 0.2s;
}
.nav-links a:hover:after,
.nav-links a.active:after {
  right: 0;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.phone-label {
  font-size: 0.61rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.phone-number {
  font-weight: 900;
}
.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  width: 48px;
  height: 48px;
}
.hero {
  min-height: 870px;
  position: relative;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: flex-end;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 22, 36, 0.95),
    rgba(5, 22, 36, 0.72) 47%,
    rgba(5, 22, 36, 0.24) 78%,
    rgba(5, 22, 36, 0.34)
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 220px 0 90px;
  max-width: 900px;
}
.hero h1 span {
  color: var(--orange);
}
.hero-sub {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.06rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  margin-top: 54px;
}
.hero-meta div {
  padding: 22px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.hero-meta small {
  display: block;
  opacity: 0.55;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.63rem;
}
.hero-meta strong {
  font-size: 0.84rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 68px;
  align-items: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.split-image {
  position: relative;
}
.split-image img {
  width: 100%;
  height: 640px;
  object-fit: cover;
}
.image-tag {
  position: absolute;
  left: -28px;
  bottom: 30px;
  background: var(--orange);
  color: #fff;
  padding: 22px 28px;
  width: 220px;
}
.image-tag strong {
  display: block;
  font-size: 2rem;
}
.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.check-list li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 900;
  font-size: 0.86rem;
}
.check-list li:before {
  content: "↗";
  color: var(--orange);
  margin-right: 9px;
}
.service-card {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(11, 37, 62, 0.1);
}
.service-card img {
  width: 100%;
  height: 285px;
  object-fit: cover;
  transition: 0.5s;
}
.service-card:hover img {
  transform: scale(1.055);
}
.service-card-body {
  padding: 24px;
}
.service-no {
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--muted);
}
.card-link {
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.card-link:hover {
  color: var(--orange);
}
.system-list {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.system-row {
  display: grid;
  grid-template-columns: 70px 1.1fr 1fr 35px;
  gap: 22px;
  align-items: center;
  padding: 27px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.system-row .no {
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 900;
}
.system-row h3,
.system-row p {
  margin: 0;
}
.system-row p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}
.system-row .go {
  color: var(--orange);
  font-size: 1.3rem;
}
.cta-band {
  position: relative;
  overflow: hidden;
  color: #fff;
}
.cta-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-band:after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 37, 62, 0.86);
}
.cta-band .container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding-top: 80px;
  padding-bottom: 80px;
}
.cta-band h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 4rem);
}
.offer {
  background: var(--navy);
  color: #fff;
  padding: 30px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.offer:before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  border: 28px solid rgba(232, 116, 42, 0.18);
  border-radius: 50%;
  right: -50px;
  top: -50px;
}
.offer.popular {
  background: var(--orange);
}
.offer.popular:before {
  border-color: rgba(255, 255, 255, 0.18);
}
.offer small {
  font-weight: 900;
  letter-spacing: 0.14em;
  opacity: 0.7;
}
.offer .price {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
}
.offer .price span {
  font-size: 1.1rem;
}
.offer a {
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.process-step {
  border-top: 3px solid var(--orange);
  padding: 26px 10px 4px 0;
}
.process-step .num {
  font-size: 0.7rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: 0.1em;
}
.process-step p {
  color: var(--muted);
  font-size: 0.88rem;
}
.brands {
  overflow: hidden;
}
.brand-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: marquee 25s linear infinite;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
.brand-chip {
  min-width: 185px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 22px;
  text-align: center;
  font-weight: 900;
}
.area-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: var(--navy);
  color: #fff;
}
.area-copy {
  padding: 58px;
}
.zip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 24px;
}
.zip {
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 13px;
  text-align: center;
  font-weight: 900;
}
.map iframe {
  width: 100%;
  height: 100%;
  min-height: 510px;
  border: 0;
}
.review {
  background: #fff;
  padding: 28px;
  border-top: 3px solid var(--orange);
  box-shadow: 0 20px 50px rgba(11, 37, 62, 0.1);
}
.stars {
  color: var(--orange);
  letter-spacing: 0.1em;
}
.review small {
  color: var(--muted);
}
.faq {
  border-top: 1px solid var(--line);
}
.faq-layout {
  grid-template-columns: 5fr 7fr;
}
.faq-section-title {
  position: relative;
  isolation: isolate;
}
.faq-section-title::before {
  content: "?";
  position: absolute;
  left: -105px;
  bottom: -15px;
  z-index: -1;
  color: rgba(239, 118, 34, 0.14);
  font-size: 300px;
  line-height: 1;
  transform: translateY(-20%);
  pointer-events: none;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  border: 0;
  background: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  font-size: 18px;
  font-weight: 900;
  color: var(--ink);
  cursor: pointer;
}
.faq-a {
  display: none;
  padding: 0 0 22px;
  color: #536476;
  font-size: 17px;
  line-height: 1.75;
}
.faq-item.open .faq-a {
  display: block;
}
.faq-item.open .faq-q span {
  transform: rotate(45deg);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  background: var(--navy);
  color: #fff;
}
.contact-side {
  padding: 56px;
  background: var(--orange);
}
.contact-info {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 28px;
}
.contact-info div {
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.contact-form,
.contact-grid > .request-form {
  padding: 56px;
  align-self: center;
}
.contact-grid > .request-form fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
.contact-grid > .request-form .row {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}
.contact-grid > .request-form .col-md-4 {
  grid-column: span 4;
}
.contact-grid > .request-form .col-md-6 {
  grid-column: span 6;
}
.contact-grid > .request-form .col-md-12 {
  grid-column: 1 / -1;
}
.contact-grid > .request-form .col-lg-3 {
  grid-column: span 3;
}
.contact-grid > .request-form p {
  margin: 0 0 18px;
}
.contact-grid > .request-form .form-control {
  width: 100%;
  background: transparent;
  color: #fff;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  padding: 12px 0;
  outline: none;
  font: inherit;
}
.contact-grid > .request-form select.form-control option {
  background: #fff;
  color: #111;
}
.contact-grid > .request-form select.form-control {
  color-scheme: light;
}
.contact-grid > .request-form .subject {
  display: none;
}
.contact-grid > .request-form .justify-content-end > .col-md-6 {
  grid-column: 7 / span 6;
}
.contact-grid > .request-form .justify-content-end {
  margin-top: 24px;
}
.contact-grid > .request-form .btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px 22px;
  border: 0;
  background: var(--orange);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field label {
  display: block;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 7px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: transparent;
  color: #fff;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  padding: 12px 0;
  outline: none;
}
.field select option {
  color: #111;
}
.field textarea {
  min-height: 105px;
}
.field.full {
  grid-column: 1/-1;
}
.field button {
  border: 0;
}
.footer-cta {
  background: var(--orange);
  color: #fff;
  padding: 36px 0;
}
.footer-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.site-footer {
  background: #071b2d;
  color: #fff;
  padding: 72px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.25fr 1fr;
  gap: 40px;
}
.footer-title {
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.87rem;
}
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 21px;
  margin-top: 48px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.page-hero {
  background: var(--navy);
  color: #fff;
  padding: 215px 0 92px;
  position: relative;
  overflow: hidden;
}
/* .page-hero:after {
  content: "IRVING / TX";
  position: absolute;
  right: -20px;
  bottom: -55px;
  font-size: 10vw;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.035);
} */
.page-answers:after {
  content: "?!";
  position: absolute;
  right: 150px;
  bottom: -55px;
  font-size: 18vw;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.035);
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  font-size: clamp(3rem, 6vw, 6rem);
  max-width: 960px;
}
.breadcrumbs {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 22px;
}
.breadcrumbs span {
  color: var(--orange);
}
.inner-layout {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 32px;
  align-items: start;
}
.content-panel {
  background: #fff;
  padding: 52px;
  box-shadow: 0 20px 50px rgba(11, 37, 62, 0.1);
}
.content-panel h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}
.content-panel h3 {
  margin-top: 28px;
}
.aside-card {
  background: var(--navy);
  color: #fff;
  padding: 32px;
}
.aside-card ul {
  list-style: none;
  padding: 0;
  margin: 18px 0;
}
.aside-card li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 0;
}
.aside-card li a:hover {
  color: var(--orange);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.blog-card {
  background: #fff;
  box-shadow: 0 20px 50px rgba(11, 37, 62, 0.1);
}
.blog-card img {
  width: 100%;
  height: 235px;
  object-fit: cover;
}
.blog-card .copy {
  padding: 25px;
}
.error-page {
  min-height: 75vh;
  padding-top: 140px;
  display: flex;
  align-items: center;
  text-align: center;
  background: var(--navy);
  color: #fff;
}
.error-code {
  font-size: clamp(5rem, 20vw, 12rem);
  font-weight: 900;
  line-height: 0.8;
  color: var(--orange);
}
.error-sec{padding-top: 100px;}
.error-sec h2{font-size: clamp(1.5rem, 3.15vw, 2rem); padding-top: 50px;}
@media (max-width: 1000px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .nav-links.open a {
    padding: 12px 0;
  }
  .grid-2,
  .area-wrap,
  .contact-grid,
  .inner-layout {
    grid-template-columns: 1fr;
  }
  .grid-3,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-meta {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .system-row {
    grid-template-columns: 55px 1fr 35px;
  }
  .system-row p {
    grid-column: 2/-1;
  }
}
@media (max-width: 650px) {
  .container {
    width: min(100% - 28px, 1180px);
  }
  .contact-grid > .request-form {
    padding: 32px 24px;
  }
  .contact-grid > .request-form .row {
    grid-template-columns: 1fr;
  }
  .contact-grid > .request-form .col-md-4,
  .contact-grid > .request-form .col-md-6,
  .contact-grid > .request-form .col-md-12,
  .contact-grid > .request-form .col-lg-3,
  .contact-grid > .request-form .justify-content-end > .col-md-6 {
    grid-column: 1;
  }
  .section {
    padding: 70px 0;
  }
  .topbar {
    display: none;
  }
  .site-header {
    top: 0;
  }
  .hero {
    min-height: 760px;
  }
  .hero-content {
    padding-top: 170px;
  }
  .hero-meta,
  .grid-3,
  .grid-4,
  .blog-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    gap: 35px;
  }
  .split-image img {
    height: 470px;
  }
  .image-tag {
    left: 12px;
  }
  .check-list {
    grid-template-columns: 1fr;
  }
  .cta-band .container,
  .footer-cta .container {
    align-items: flex-start;
    flex-direction: column;
  }
  .area-copy,
  .contact-side,
  .contact-form,
  .content-panel {
    padding: 32px 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .copyright {
    flex-direction: column;
  }
  .system-row {
    grid-template-columns: 42px 1fr 24px;
    gap: 11px;
  }
}

/* =========================================================
   TRANS-HUB STYLE WATER HEATER NETWORK SECTION
   Entire section is HTML/CSS. Only center product is an <img>.
   ========================================================= */
.wh-solutions-network {
  position: relative;
  overflow: hidden;
  padding: 105px 0 112px;
  background: #fff;
}
.wh-solutions-network:before,
.wh-solutions-network:after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(232, 116, 42, 0.07),
    rgba(232, 116, 42, 0) 68%
  );
  pointer-events: none;
}
.wh-solutions-network:before {
  left: -260px;
  top: 90px;
}
.wh-solutions-network:after {
  right: -260px;
  bottom: -150px;
}
.wh-solutions-head {
  position: relative;
  z-index: 3;
  max-width: 850px;
  margin: 0 auto 54px;
  text-align: center;
}
.wh-solutions-head h2 {
  margin-bottom: 15px;
  font-size: clamp(2.3rem, 4.3vw, 4.25rem);
}
.wh-solutions-head p {
  margin: 0 auto;
  max-width: 740px;
  color: var(--muted);
  font-size: 1.04rem;
}
.wh-center-eyebrow {
  justify-content: center;
}
.wh-center-eyebrow:after {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--orange);
}

.wh-network-stage {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(250px, 1fr) minmax(400px, 1.35fr) minmax(
      250px,
      1fr
    );
  align-items: center;
  min-height: 590px;
  gap: 24px;
}
.wh-dots-bg {
  position: absolute;
  inset: -40px -80px;
  z-index: -3;
  opacity: 0.55;
  background-image: radial-gradient(
    rgba(11, 37, 62, 0.15) 1.25px,
    transparent 1.25px
  );
  background-size: 15px 15px;
  mask-image: radial-gradient(
    ellipse at center,
    #000 16%,
    rgba(0, 0, 0, 0.75) 45%,
    transparent 76%
  );
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    #000 16%,
    rgba(0, 0, 0, 0.75) 45%,
    transparent 76%
  );
}

.wh-network-left,
.wh-network-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 64px;
  position: relative;
  z-index: 4;
}
.wh-network-card {
  position: relative;
  min-height: 94px;
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 16px 18px;
  background: #edf0f2;
  border: 1px solid rgba(11, 37, 62, 0.06);
  box-shadow: 0 15px 40px rgba(11, 37, 62, 0.06);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}
.wh-network-left .wh-network-card {
  clip-path: polygon(0 0, 94% 0, 100% 50%, 94% 100%, 7% 100%, 0 50%);
  padding-left: 34px;
}
.wh-network-right .wh-network-card {
  clip-path: polygon(6% 0, 100% 0, 100% 50%, 100% 100%, 6% 100%, 0 50%);
  padding-left: 29px;
}
.wh-network-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 23px 54px rgba(11, 37, 62, 0.13);
  background: #fff;
}
.wh-card-copy {
  flex: 1;
  text-align: right;
}
.wh-network-right .wh-card-copy {
  text-align: left;
}
.wh-card-copy strong {
  font-size: 1rem;
  line-height: 1.25;
  color: var(--navy);
}
.wh-card-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  font-size: 1.65rem;
  font-weight: 900;
  box-shadow: 0 12px 25px rgba(232, 116, 42, 0.22);
  transition: transform 0.28s ease;
}
.wh-network-card:hover .wh-card-icon {
  transform: rotate(-5deg) scale(1.05);
}

.wh-connector {
  position: absolute;
  top: 50%;
  width: 145px;
  height: 2px;
  background: rgba(232, 116, 42, 0.72);
  transform: translateY(-50%);
  z-index: -1;
}
.wh-connector:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 13px;
  height: 13px;
  margin-top: -6.5px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--orange);
  box-shadow: 0 0 0 5px rgba(232, 116, 42, 0.12);
}
.wh-connector i {
  position: absolute;
  width: 48px;
  height: 2px;
  top: 0;
  background: rgba(232, 116, 42, 0.72);
}
.wh-connector-left {
  right: -132px;
}
.wh-connector-left:after {
  right: -4px;
}
.wh-connector-left i {
  right: -34px;
  transform: rotate(27deg);
  transform-origin: left center;
}
.wh-connector-right {
  left: -132px;
}
.wh-connector-right:after {
  left: -4px;
}
.wh-connector-right i {
  left: -34px;
  transform: rotate(-27deg);
  transform-origin: right center;
}

.wh-network-center {
  position: relative;
  display: grid;
  place-items: center;
  height: 590px;
  z-index: 2;
}
.wh-center-product {
  position: relative;
  z-index: 5;
  width: min(430px, 90%);
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 30px 30px rgba(11, 37, 62, 0.22));
  animation: whFloat 4.5s ease-in-out infinite;
}
.wh-center-product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@keyframes whFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}
.wh-center-glow {
  position: absolute;
  width: 410px;
  height: 410px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(232, 116, 42, 0.24),
    rgba(232, 116, 42, 0.08) 40%,
    rgba(232, 116, 42, 0) 72%
  );
}
.wh-orbit {
  position: absolute;
  border: 1px dashed rgba(232, 116, 42, 0.42);
  border-radius: 50%;
  animation: whSpin 18s linear infinite;
}
.wh-orbit-one {
  width: 455px;
  height: 455px;
}
.wh-orbit-two {
  width: 525px;
  height: 525px;
  border-color: rgba(11, 37, 62, 0.13);
  animation-duration: 28s;
  animation-direction: reverse;
}
@keyframes whSpin {
  to {
    transform: rotate(360deg);
  }
}
.wh-orbit-one:before,
.wh-orbit-two:before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  top: 50%;
  left: -6px;
}
.wh-hotspot {
  position: absolute;
  z-index: 6;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--orange);
  border: 4px solid #fff;
  box-shadow: 0 0 0 5px rgba(232, 116, 42, 0.18);
}
.wh-hotspot-1 {
  left: 11%;
  top: 25%;
}
.wh-hotspot-2 {
  left: 8%;
  top: 50%;
}
.wh-hotspot-3 {
  left: 17%;
  bottom: 17%;
}
.wh-hotspot-4 {
  right: 11%;
  top: 25%;
}
.wh-hotspot-5 {
  right: 8%;
  top: 50%;
}
.wh-hotspot-6 {
  right: 17%;
  bottom: 17%;
}

@media (max-width: 1100px) {
  .wh-network-stage {
    grid-template-columns: 280px 1fr 280px;
    gap: 10px;
  }
  .wh-connector {
    width: 95px;
  }
  .wh-connector-left {
    right: -82px;
  }
  .wh-connector-right {
    left: -82px;
  }
  .wh-network-card {
    min-height: 88px;
  }
  .wh-card-icon {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }
}
@media (max-width: 900px) {
  .wh-solutions-network {
    padding: 82px 0;
  }
  .wh-network-stage {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
  }
  .wh-network-center {
    grid-row: 1;
    height: 440px;
  }
  .wh-network-left,
  .wh-network-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  .wh-network-left {
    grid-row: 2;
  }
  .wh-network-right {
    grid-row: 3;
  }
  .wh-network-left .wh-network-card,
  .wh-network-right .wh-network-card {
    clip-path: none;
    border-radius: 10px;
    padding: 18px;
    flex-direction: column;
    text-align: center;
  }
  .wh-card-copy,
  .wh-network-right .wh-card-copy {
    text-align: center;
  }
  .wh-connector {
    display: none;
  }
  .wh-orbit-one {
    width: 370px;
    height: 370px;
  }
  .wh-orbit-two {
    width: 420px;
    height: 420px;
  }
  .wh-center-product {
    width: 340px;
  }
}
@media (max-width: 650px) {
  .wh-solutions-head {
    margin-bottom: 30px;
  }
  .wh-network-center {
    height: 350px;
  }
  .wh-network-left,
  .wh-network-right {
    grid-template-columns: 1fr;
  }
  .wh-network-card {
    flex-direction: row !important;
    min-height: 82px;
  }
  .wh-card-copy,
  .wh-network-right .wh-card-copy {
    text-align: left;
  }
  .wh-orbit-one {
    width: 280px;
    height: 280px;
  }
  .wh-orbit-two {
    width: 320px;
    height: 320px;
  }
  .wh-center-product {
    width: 270px;
  }
  .wh-hotspot {
    display: none;
  }
}

/* Services dropdown */
.nav-dropdown {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
}
.nav-dropdown-toggle {
  height: 100%;
  display: flex;
  align-items: center;
}
.nav-dropdown-toggle::before {
  content: "⌄";
  order: 2;
  margin-left: 6px;
  font-size: 0.7rem;
  transition: transform 0.2s;
}
.nav-dropdown:hover .nav-dropdown-toggle::before {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  left: -22px;
  top: 100%;
  width: 290px;
  background: var(--navy);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.2s ease;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  z-index: 50;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block !important;
  padding: 13px 22px !important;
  line-height: 1.35;
  text-transform: none;
  letter-spacing: 0;
}
.nav-dropdown-menu a:after {
  display: none;
}
.nav-dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--orange);
}
.script-pillars {
  margin-top: 42px;
}
.script-content-section .lead {
  max-width: none;
}
@media (max-width: 1000px) {
  .nav-dropdown {
    width: 100%;
    display: block;
  }
  .nav-dropdown-toggle {
    padding: 12px 0 !important;
  }
  .nav-dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    padding: 0 0 8px 16px;
    background: transparent;
  }
  .nav-links.open .nav-dropdown:hover .nav-dropdown-menu,
  .nav-links.open .nav-dropdown:focus-within .nav-dropdown-menu {
    display: block;
  }
  .nav-dropdown-menu a {
    padding: 10px 0 !important;
    font-size: 0.72rem;
  }
}
@media (max-width: 1000px) {
  .nav-dropdown.mobile-open .nav-dropdown-menu {
    display: block;
  }
  .nav-dropdown.mobile-open .nav-dropdown-toggle::before {
    transform: rotate(180deg);
  }
}

/* TransHub-inspired water heater services slider */
.services-showcase {
  background: #f4f6f5;
  overflow: hidden;
  position: relative;
}
.services-showcase:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.34;
  background-image: radial-gradient(
    rgba(11, 37, 62, 0.14) 1.2px,
    transparent 1.2px
  );
  background-size: 24px 24px;
  mask-image: linear-gradient(
    90deg,
    #000,
    transparent 32%,
    transparent 68%,
    #000
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    #000,
    transparent 32%,
    transparent 68%,
    #000
  );
}
.services-showcase .container {
  position: relative;
  z-index: 1;
}
.services-slider-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}
.services-slider-head h2 {
  max-width: 760px;
  margin-bottom: 14px;
}
.services-slider-nav {
  display: flex;
  gap: 14px;
  flex: 0 0 auto;
  padding-bottom: 8px;
}
.services-slider-btn {
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 9px;
  background: var(--orange);
  color: #fff;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    opacity 0.25s ease;
}
.services-slider-btn:hover {
  transform: translateY(-3px);
  background: var(--navy);
}
.services-slider-btn:disabled {
  opacity: 0.45;
  cursor: default;
  transform: none;
}
.services-slider-viewport {
  overflow: visible;
}
.services-slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.62s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}
.service-slide-card {
  flex: 0 0 calc((100% - 72px) / 4);
  min-width: 0;
  background: #fff;
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 12px 32px rgba(11, 37, 62, 0.035);
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease;
}
.service-slide-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(11, 37, 62, 0.11);
}
.service-slide-media {
  height: 116px;
  border-radius: 13px 28px 13px 13px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 92px 1fr;
  margin-bottom: 28px;
  background: var(--navy);
}
.service-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.service-slide-card:hover .service-slide-media img {
  transform: scale(1.07);
}
.service-slide-icon {
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 2.15rem;
  font-weight: 900;
  background: var(--navy);
  transition: background 0.3s ease;
}
.service-slide-card:hover .service-slide-icon {
  background: var(--orange);
}
.service-slide-body {
  display: flex;
  flex-direction: column;
  min-height: 305px;
}
.service-slide-body h3 {
  font-size: 1.2rem;
  margin: 10px 0 17px;
}
.service-slide-body p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 24px;
}
.service-slide-footer {
  border-top: 1px solid var(--line);
  margin-top: auto;
  padding-top: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.service-square-arrow {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: var(--navy);
  color: #fff;
  font-weight: 900;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}
.service-slide-card:hover .service-square-arrow {
  background: var(--orange);
  transform: translateX(3px);
}
.service-slide-footer .card-link {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.82rem;
  color: var(--ink);
}
.service-slide-card:hover .card-link {
  color: var(--orange);
}

/* Light reveal animations */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal-on-scroll.reveal-visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 {
  transition-delay: 0.08s;
}
.reveal-delay-2 {
  transition-delay: 0.16s;
}
.reveal-delay-3 {
  transition-delay: 0.24s;
}
@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .services-slider-track {
    transition: none;
  }
  .wh-center-product,
  .wh-orbit {
    animation: none !important;
  }
}

@media (max-width: 1100px) {
  .service-slide-card {
    flex-basis: calc((100% - 48px) / 3);
  }
}
@media (max-width: 800px) {
  .services-slider-head {
    align-items: flex-start;
    margin-bottom: 34px;
  }
  .service-slide-card {
    flex-basis: calc((100% - 24px) / 2);
  }
}
@media (max-width: 650px) {
  .services-slider-head {
    gap: 18px;
  }
  .services-slider-nav {
    gap: 8px;
    padding-top: 4px;
  }
  .services-slider-btn {
    width: 46px;
    height: 46px;
  }
  .service-slide-card {
    flex-basis: 88%;
    padding: 21px;
    border-radius: 22px;
  }
  .service-slide-body {
    min-height: 285px;
  }
  .service-slide-media {
    height: 105px;
    grid-template-columns: 78px 1fr;
  }
}

/* Mobile navigation hover/active underline correction */
@media (max-width: 1000px) {
  .nav-links.open > a,
  .nav-links.open > .nav-dropdown > .nav-dropdown-toggle {
    display: inline-flex;
    width: auto;
    align-self: flex-start;
  }
  .nav-links.open > a:after,
  .nav-links.open > .nav-dropdown > .nav-dropdown-toggle:after {
    left: 0;
    right: auto;
    bottom: 5px;
    width: 0;
    height: 2px;
    transition: width 0.22s ease;
  }
  .nav-links.open > a:hover:after,
  .nav-links.open > a.active:after,
  .nav-links.open > .nav-dropdown > .nav-dropdown-toggle:hover:after {
    width: 100%;
  }
  .nav-dropdown-menu a:after {
    display: none !important;
  }
}

/* v3 refinements: wider service slider cards, smoother FAQs, refined footer */
@media (min-width: 1101px) {
  .service-slide-card {
    flex-basis: calc((100% - 48px) / 3);
  }
}
@media (min-width: 801px) and (max-width: 1100px) {
  .service-slide-card {
    flex-basis: calc((100% - 24px) / 2);
  }
}

/* Smooth FAQ opening / closing */
.faq-a {
  display: block;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0;
  transform: translateY(-5px);
  transition:
    max-height 0.5s cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 0.3s ease,
    transform 0.42s ease,
    padding 0.42s ease;
}
.faq-item.open .faq-a {
  max-height: 520px;
  opacity: 1;
  padding: 0 0 22px;
  transform: translateY(0);
}
.faq-q span {
  display: inline-block;
  transition:
    transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
    color 0.25s ease;
}
.faq-item.open .faq-q span {
  transform: rotate(45deg);
  color: var(--orange);
}
.faq-q {
  transition:
    color 0.25s ease,
    padding 0.25s ease;
}
.faq-q:hover {
  color: var(--orange);
}

/* Footer closer to the TransHub reference while keeping the existing Irving content */
.footer-cta {
  background: linear-gradient(110deg, #f07a2b, var(--orange));
  padding: 34px 0;
  position: relative;
  overflow: hidden;
}
.footer-cta:after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  right: -80px;
  top: -150px;
  pointer-events: none;
}
.site-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(115deg, #061728 0%, #0a243b 58%, #071827 100%);
  padding: 78px 0 0;
}
.site-footer:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 14% 25%,
      rgba(255, 255, 255, 0.045),
      transparent 23%
    ),
    radial-gradient(
      circle at 84% 35%,
      rgba(240, 122, 43, 0.08),
      transparent 28%
    );
  pointer-events: none;
}
.site-footer .container {
  position: relative;
  z-index: 1;
}
.footer-grid {
  grid-template-columns: 1.45fr 0.8fr 1.15fr 1.2fr;
  gap: 54px;
  padding-bottom: 54px;
}
.site-footer .brand {
  font-size: 1rem;
  line-height: 1.15;
}
.site-footer .brand span {
  margin-top: 5px;
}
.footer-title {
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-transform: none;
  margin-bottom: 24px;
  padding-bottom: 12px;
  position: relative;
}
.footer-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 66px;
  height: 2px;
  background: linear-gradient(90deg, #fff 0 16px, var(--orange) 16px 100%);
}
.footer-links li {
  margin: 11px 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
}
.footer-links a {
  transition:
    color 0.22s ease,
    padding-left 0.22s ease;
}
.footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}
.footer-contact-list a[href^="mailto:"]:hover {
  color: #e8742a;
  padding-left: 0;
}
.copyright {
  width: auto;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 18px max(14px, calc((100vw - 1180px) / 2));
}
.copyright a {
  color: #fff;
}
.copyright a:hover {
  text-decoration: underline;
}
@media (max-width: 1000px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px;
  }
}
@media (max-width: 650px) {
  .site-footer {
    padding-top: 58px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 42px;
  }
  .copyright {
    gap: 8px;
    padding-top: 18px;
    padding-bottom: 18px;
  }
}

/* =========================================================
   v4 structure + requested offer/hero refinements
   HTML uses: container > row > col-* for easy editing.
   Existing custom layout classes remain the visual source of truth.
   ========================================================= */
.row,
.col-12,
.col-8,
.col-6,
.col-4,
.col-3 {
  min-width: 0;
}

.hero-phone-btn {
  font-size: 1.5rem;
  letter-spacing: 0.045em;
  padding: 18px 27px;
}

.offers-feature-media {
  position: relative;
  overflow: hidden;
  min-height: 285px;
  margin: 30px 0 34px;
  background: var(--navy);
}
.offers-feature-media img {
  width: 100%;
  height: 285px;
  object-fit: cover;
  object-position: center 46%;
  transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.offers-feature-media:hover img {
  transform: scale(1.035);
}
.offers-feature-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 27, 45, 0.94) 0%,
    rgba(7, 27, 45, 0.78) 38%,
    rgba(7, 27, 45, 0.18) 75%
  );
  pointer-events: none;
}
.offers-feature-overlay {
  position: absolute;
  z-index: 2;
  left: 38px;
  top: 50%;
  transform: translateY(-50%);
  max-width: 540px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.offers-feature-overlay span {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}
.offers-feature-overlay strong {
  font-size: clamp(1.8rem, 3.2vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}
.offers-feature-overlay small {
  margin-top: 4px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.035em;
}

@media (max-width: 650px) {
  .hero-phone-btn {
    font-size: 1rem;
    padding: 16px 20px;
  }
  .offers-feature-media,
  .offers-feature-media img {
    min-height: 250px;
    height: 250px;
  }
  .offers-feature-overlay {
    left: 22px;
    right: 22px;
    max-width: none;
  }
  .offers-feature-media:after {
    background: linear-gradient(
      90deg,
      rgba(7, 27, 45, 0.93),
      rgba(7, 27, 45, 0.58)
    );
  }
}

/* =========================================================
   v5 TransHub-inspired script section + local Font Awesome
   ========================================================= */
.fa-solid,
.fa-regular,
.fa-brands {
  line-height: 1;
}
.mobile-toggle i {
  font-size: 1.15rem;
}
.btn-main i,
.btn-outline i,
.card-link i {
  font-size: 0.9em;
  margin-left: 6px;
}
.service-slide-icon i {
  font-size: 1.55rem;
}
.service-square-arrow i {
  font-size: 0.8rem;
}
.wh-card-icon i {
  font-size: 1.18rem;
}

.script-success-section {
  position: relative;
  overflow: hidden;
  background: #06182e;
  color: #fff;
  padding: 100px 0;
}
.script-success-section:before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 58%;
  opacity: 0.16;
  background:
    linear-gradient(90deg, rgba(6, 24, 46, 0.25), #06182e),
    url("../img/gasWaterHeater.png")
      center/cover no-repeat;
  pointer-events: none;
}
.script-success-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  gap: 58px;
  align-items: center;
}
.script-success-copy .eyebrow {
  color: var(--orange);
}
.script-success-copy h2 {
  color: #fff;
  max-width: 720px;
  margin-bottom: 34px;
}
.script-success-list {
  display: grid;
  gap: 0;
  max-width: 760px;
}
.script-success-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px;
  gap: 24px;
  align-items: center;
  padding: 25px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s ease;
}
.script-success-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}
.script-success-item.active,
.script-success-item:hover {
  background: rgba(255, 255, 255, 0.085);
  border-left: 4px solid var(--orange);
  border-radius: 16px;
  transform: translateX(4px);
}
.script-success-item h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1.15rem;
}
.script-success-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
  line-height: 1.72;
}
.script-success-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  transition: 0.3s ease;
}
.script-success-item.active .script-success-arrow,
.script-success-item:hover .script-success-arrow {
  background: var(--orange);
  transform: rotate(6deg);
}
.script-success-media {
  position: relative;
  min-height: 610px;
  overflow: visible;
}
.script-success-media:before {
  content: "";
  position: absolute;
  left: -1px;
  top: -1px;
  width: 112px;
  height: 112px;
  background: #06182e;
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.script-success-media > img {
  width: 100%;
  height: 610px;
  object-fit: cover;
  display: block;
}
.script-success-card {
  position: absolute;
  left: 34px;
  bottom: -30px;
  width: min(310px, calc(100% - 68px));
  background: #fff;
  color: var(--ink);
  padding: 28px 28px 25px;
  border-radius: 0 0 22px 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.17);
}
.script-success-card-icon {
  color: var(--orange);
  font-size: 1.8rem;
  display: inline-flex;
  margin-bottom: 17px;
}
.script-success-card h3 {
  font-size: 1.15rem;
  margin: 0 0 9px;
}
.script-success-card p {
  font-size: 0.86rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 18px;
}
.script-success-card a {
  font-size: 0.82rem;
  font-weight: 900;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.script-success-card a:hover {
  color: var(--orange);
}

@media (max-width: 1000px) {
  .script-success-row {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .script-success-media {
    min-height: 520px;
  }
  .script-success-media > img {
    height: 520px;
  }
}
@media (max-width: 650px) {
  .script-success-section {
    padding: 72px 0;
  }
  .script-success-item {
    grid-template-columns: minmax(0, 1fr) 44px;
    padding: 21px 18px;
    gap: 14px;
  }
  .script-success-arrow {
    width: 42px;
    height: 42px;
  }
  .script-success-media {
    min-height: 430px;
  }
  .script-success-media > img {
    height: 430px;
  }
  .script-success-card {
    left: 18px;
    bottom: 18px;
    width: calc(100% - 36px);
    padding: 22px;
  }
}

/* Core pillars — TransHub-inspired split feature */
.core-pillars-feature-section {
  background: #06172d;
  color: #fff;
  padding: 110px 0;
  overflow: hidden;
}
.core-pillars-feature-section .core-pillars-layout {
  display: flex;
  align-items: center;
  gap: 58px;
}
.core-pillars-feature-section .col-6 {
  width: calc(50% - 29px);
}
.core-pillars-feature-section .eyebrow {
  color: #ef7622;
  margin-bottom: 18px;
}
.core-pillars-feature-section h2 {
  color: #fff;
  max-width: 690px;
  margin: 0 0 38px;
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1.06;
}
.core-pillar-list {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.core-pillar-row {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 58px;
  gap: 18px;
  align-items: start;
  padding: 26px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s ease;
  border-left: 4px solid transparent;
}
.core-pillar-row.core-pillar-row-no-icon {
  grid-template-columns: minmax(0, 1fr) 58px;
}
.core-pillar-row:hover,
.core-pillar-row.is-active {
  background: rgba(255, 255, 255, 0.075);
  border-left-color: #ef7622;
  transform: translateX(4px);
}
.core-pillar-icon,
.core-pillar-arrow {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 18px;
  transition: all 0.35s ease;
}
.core-pillar-row:hover .core-pillar-icon,
.core-pillar-row.is-active .core-pillar-icon {
  background: #ef7622;
}
.core-pillar-arrow {
  align-self: center;
  background: #14243e;
}
.core-pillar-row:hover .core-pillar-arrow,
.core-pillar-row.is-active .core-pillar-arrow {
  background: #ef7622;
  transform: rotate(4deg);
}
.core-pillar-text h3 {
  color: #fff;
  margin: 0 0 9px;
  font-size: 22px;
}
.core-pillar-text p {
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
  line-height: 1.75;
  font-size: 15px;
  max-width: 610px;
}
.core-pillars-image-wrap {
  position: relative;
  min-height: 650px;
}
.core-pillars-image-wrap > img {
  display: block;
  width: 100%;
  height: 650px;
  object-fit: cover;
  clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%, 0 16%);
}
.core-pillars-info-card {
  position: absolute;
  left: 34px;
  bottom:-30px;
  width: min(360px, calc(100% - 68px));
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #fff;
  color: #0b2943;
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.23);
}
.core-pillars-info-icon {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #fff2e9;
  color: #ef7622;
  font-size: 22px;
}
.core-pillars-info-card strong {
  display: block;
  font-size: 20px;
  line-height: 1.25;
  margin-bottom: 7px;
}
.core-pillars-info-card p {
  margin: 0 0 12px;
  color: #607184;
  line-height: 1.55;
  font-size: 14px;
}
.core-pillars-info-card a {
  font-weight: 800;
  color: #0b2943;
  text-decoration: none;
}
.core-pillars-info-card a i {
  margin-left: 7px;
  color: #ef7622;
  transition: transform 0.25s ease;
}
.core-pillars-info-card a:hover i {
  transform: translateX(4px);
}
@media (max-width: 991px) {
  .core-pillars-feature-section {
    padding: 78px 0;
  }
  .core-pillars-feature-section .core-pillars-layout {
    gap: 38px;
  }
  .core-pillars-feature-section .col-6 {
    width: 100%;
  }
  .core-pillars-feature-section .core-pillars-layout {
    display: flex;
    flex-direction: column;
  }
  .core-pillars-copy,
  .core-pillars-visual {
    max-width: 760px;
  }
  .core-pillars-image-wrap,
  .core-pillars-image-wrap > img {
    min-height: 520px;
    height: 520px;
  }
}
@media (max-width: 575px) {
  .core-pillars-feature-section {
    padding: 62px 0;
  }
  .core-pillars-feature-section h2 {
    font-size: 36px;
  }
  .core-pillar-row {
    grid-template-columns: 46px minmax(0, 1fr) 42px;
    gap: 12px;
    padding: 22px 14px;
  }
  .core-pillar-icon,
  .core-pillar-arrow {
    width: 42px;
    height: 42px;
  }
  .core-pillar-text h3 {
    font-size: 19px;
  }
  .core-pillar-text p {
    font-size: 14px;
  }
  .core-pillars-image-wrap,
  .core-pillars-image-wrap > img {
    min-height: 430px;
    height: 430px;
  }
  .core-pillars-info-card {
    left: 18px;
    bottom: 18px;
    width: calc(100% - 36px);
    padding: 20px;
  }
  .core-pillars-info-icon {
    display: none;
  }
}

/* Heading scale adjustment */
h1 {
  font-size: clamp(2.65rem, 5.8vw, 5.7rem);
}
h2 {
  font-size: clamp(1.95rem, 3.7vw, 3.85rem);
}
h3 {
  font-size: 1.3rem;
}
.page-hero h1 {
  font-size: clamp(2.65rem, 5.1vw, 5.1rem);
}
.content-panel h2 {
  font-size: clamp(1.85rem, 3.35vw, 3.05rem);
}
.cta-band h2 {
  font-size: clamp(1.85rem, 3.35vw, 3.4rem);
}
.core-pillars-feature-section h2 {
  font-size: clamp(34px, 3.45vw, 54px);
}
.core-pillar-text h3 {
  font-size: 20px;
}
@media (max-width: 575px) {
  h1 {
    font-size: clamp(2.2rem, 11vw, 3.35rem);
  }
  h2 {
    font-size: clamp(1.75rem, 8.5vw, 2.55rem);
  }
  h3 {
    font-size: 1.18rem;
  }
  .core-pillars-feature-section h2 {
    font-size: 31px;
  }
  .core-pillar-text h3 {
    font-size: 18px;
  }
}

/* V8 — wider TransHub-style commercial feature */
.script-success-fluid {
  width: 100%;
  max-width: 1760px;
  margin: 0 auto;
  padding-left: clamp(28px, 6vw, 110px);
  padding-right: clamp(28px, 4vw, 72px);
}
.script-success-row {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1.18fr);
  gap: clamp(52px, 6vw, 105px);
}
.script-success-copy {
  min-width: 0;
}
.script-success-copy h2 {
  max-width: 880px;
  font-size: clamp(2.35rem, 3.45vw, 4.55rem);
  line-height: 1.02;
  text-wrap: balance;
}
.script-success-list {
  max-width: 880px;
}
.script-success-media-col {
  min-width: 0;
}
.script-success-media {
  min-height: 650px;
}
.script-success-media > img {
  height: 650px;
  width: 100%;
  object-fit: cover;
}

/* Keep major headings compact: H1 <= ~2 lines, long H2 <= ~3 lines on desktop */
h1 {
  font-size: clamp(2.55rem, 4.9vw, 5.25rem);
  line-height: 1.02;
  text-wrap: balance;
}
.hero h1,
.page-hero h1 {
  max-width: 18ch;
}
h2 {
  font-size: clamp(1.9rem, 3.15vw, 3.45rem);
  line-height: 1.06;
  text-wrap: balance;
}
.section h2,
.content-panel h2,
.cta-band h2 {
  max-width: 27ch;
}

@media (max-width: 1100px) {
  .script-success-fluid {
    padding-left: 32px;
    padding-right: 32px;
  }
  .script-success-row {
    grid-template-columns: 1fr 1fr;
    gap: 38px;
  }
  .script-success-copy h2 {
    font-size: clamp(2.1rem, 4vw, 3.4rem);
  }
  .script-success-media,
  .script-success-media > img {
    min-height: 560px;
    height: 560px;
  }
}
@media (max-width: 991px) {
  .script-success-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .script-success-copy h2 {
    max-width: 22ch;
  }
  .script-success-media,
  .script-success-media > img {
    min-height: 520px;
    height: 520px;
  }
  h1,
  .page-hero h1 {
    font-size: clamp(2.35rem, 7vw, 4.3rem);
    max-width: 19ch;
  }
  h2 {
    font-size: clamp(1.85rem, 5vw, 3rem);
  }
}
@media (max-width: 575px) {
  .script-success-fluid {
    padding-left: 18px;
    padding-right: 18px;
  }
  .script-success-copy h2 {
    font-size: clamp(1.85rem, 9.2vw, 2.55rem);
    max-width: none;
  }
  .script-success-media,
  .script-success-media > img {
    min-height: 430px;
    height: 430px;
  }
  h1,
  .page-hero h1 {
    font-size: clamp(2rem, 10vw, 2.85rem);
    max-width: none;
    line-height: 1.03;
  }
  h2 {
    font-size: clamp(1.65rem, 7.9vw, 2.3rem);
    max-width: none;
    line-height: 1.08;
  }
}

/* =========================================================
   V9 — true full-width commercial feature + subtle hot-water motion
   ========================================================= */
.script-success-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

/* soft animated bubbles / steam behind the section */
.script-success-section::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -12% -4% -18% 34%;
  pointer-events: none;
  opacity: 0.28;
  background:
    radial-gradient(
      circle at 12% 72%,
      rgba(255, 255, 255, 0.16) 0 5px,
      transparent 6px
    ),
    radial-gradient(
      circle at 24% 35%,
      rgba(239, 118, 34, 0.22) 0 8px,
      transparent 9px
    ),
    radial-gradient(
      circle at 48% 82%,
      rgba(255, 255, 255, 0.12) 0 4px,
      transparent 5px
    ),
    radial-gradient(
      circle at 69% 28%,
      rgba(239, 118, 34, 0.16) 0 11px,
      transparent 12px
    ),
    radial-gradient(
      circle at 83% 64%,
      rgba(255, 255, 255, 0.11) 0 6px,
      transparent 7px
    ),
    radial-gradient(
      ellipse at 58% 72%,
      rgba(255, 255, 255, 0.075) 0 2%,
      transparent 17%
    ),
    radial-gradient(
      ellipse at 76% 46%,
      rgba(255, 255, 255, 0.055) 0 2%,
      transparent 15%
    );
  background-size:
    240px 240px,
    330px 330px,
    200px 200px,
    410px 410px,
    280px 280px,
    540px 300px,
    460px 270px;
  animation: hotWaterDrift 18s ease-in-out infinite alternate;
  filter: blur(0.2px);
}

@keyframes hotWaterDrift {
  0% {
    transform: translate3d(0, 20px, 0) scale(1);
    background-position:
      0 0,
      0 0,
      0 0,
      0 0,
      0 0,
      0 0,
      0 0;
  }
  50% {
    transform: translate3d(-12px, -10px, 0) scale(1.015);
    background-position:
      24px -44px,
      -18px -55px,
      18px -34px,
      -26px -60px,
      22px -45px,
      18px -34px,
      -20px -28px;
  }
  100% {
    transform: translate3d(10px, -34px, 0) scale(1.025);
    background-position:
      40px -82px,
      -32px -100px,
      30px -70px,
      -46px -112px,
      38px -88px,
      34px -68px,
      -35px -58px;
  }
}

.script-success-section:before {
  z-index: 0;
}
.script-success-fluid {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: clamp(34px, 5vw, 92px);
  padding-right: clamp(34px, 5vw, 92px);
}
.script-success-row {
  width: 100%;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: clamp(42px, 4.5vw, 82px);
  align-items: center;
}
.script-success-copy h2 {
  max-width: 820px;
  font-size: clamp(2.35rem, 3.15vw, 4rem);
  line-height: 1.04;
}
.script-success-list {
  max-width: 850px;
}
.script-success-media-col {
  position: relative;
  min-width: 0;
  width: 100%;
}
.script-success-media {
  min-height: 680px;
  width: 100%;
}
.script-success-media > img {
  width: 100%;
  height: 680px;
  object-fit: cover;
}

/* a few restrained bubbles around the image edge */
.script-success-media-col::before,
.script-success-media-col::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  animation: heaterBubbleFloat 7s ease-in-out infinite;
}
.script-success-media-col::before {
  width: 92px;
  height: 92px;
  left: -36px;
  bottom: 74px;
  box-shadow:
    44px -118px 0 -26px rgba(239, 118, 34, 0.16),
    96px -32px 0 -34px rgba(255, 255, 255, 0.11);
}
.script-success-media-col::after {
  width: 48px;
  height: 48px;
  right: 18px;
  top: -28px;
  border-color: rgba(239, 118, 34, 0.2);
  animation-delay: -3s;
}
@keyframes heaterBubbleFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.45;
  }
  50% {
    transform: translateY(-20px) scale(1.07);
    opacity: 0.75;
  }
}

@media (max-width: 1100px) {
  .script-success-fluid {
    padding-left: 28px;
    padding-right: 28px;
  }
  .script-success-row {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }
  .script-success-media,
  .script-success-media > img {
    min-height: 590px;
    height: 590px;
  }
}
@media (max-width: 991px) {
  .script-success-fluid {
    padding-left: 24px;
    padding-right: 24px;
  }
  .script-success-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .script-success-copy,
  .script-success-list {
    max-width: none;
  }
  .script-success-media,
  .script-success-media > img {
    min-height: 520px;
    height: 520px;
  }
  .script-success-section::after {
    inset: 0 -10% -12% 0;
    opacity: 0.2;
  }
}
@media (max-width: 575px) {
  .script-success-fluid {
    padding-left: 18px;
    padding-right: 18px;
  }
  .script-success-media,
  .script-success-media > img {
    min-height: 430px;
    height: 430px;
  }
  .script-success-media-col::before {
    width: 64px;
    height: 64px;
    left: -12px;
    bottom: 42px;
  }
  .script-success-media-col::after {
    width: 34px;
    height: 34px;
    right: 8px;
    top: -18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .script-success-section::after,
  .script-success-media-col::before,
  .script-success-media-col::after {
    animation: none;
  }
}

/* =========================================================
   V10 — layered tankless imagery + site-wide subtle hot-water motion
   Reuses the circle/orbit language from Complete Water Heater Solutions.
   ========================================================= */
.tankless-showcase-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.tankless-showcase-section > .container {
  position: relative;
  z-index: 2;
}
.tankless-showcase-row {
  min-height: 690px;
  gap: clamp(58px, 6vw, 105px);
}
.tankless-showcase-copy {
  position: relative;
  z-index: 3;
}
.tankless-double-visual {
  position: relative;
  min-height: 650px;
  z-index: 2;
}
.tankless-image-back {
  position: absolute;
  right: 0;
  top: 22px;
  width: 86%;
  height: 560px;
  overflow: hidden;
  box-shadow: 0 28px 65px rgba(11, 37, 62, 0.14);
}
.tankless-image-back img,
.tankless-image-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tankless-image-front {
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 48%;
  height: 340px;
  overflow: hidden;
  border: 10px solid #fff;
  box-shadow: 0 24px 58px rgba(11, 37, 62, 0.2);
  transform: translateX(-6%);
}
.tankless-image-back img {
  transition: transform 0.7s ease;
}
.tankless-image-front img {
  transition: transform 0.7s ease;
}
.tankless-double-visual:hover .tankless-image-back img {
  transform: scale(1.035);
}
.tankless-double-visual:hover .tankless-image-front img {
  transform: scale(1.055);
}

.tankless-bg-motion {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.tankless-bg-motion:before {
  content: "";
  position: absolute;
  inset: 8% -5% -10% 44%;
  opacity: 0.35;
  background-image: radial-gradient(
    rgba(11, 37, 62, 0.12) 1.35px,
    transparent 1.35px
  );
  background-size: 17px 17px;
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    #000 12%,
    rgba(0, 0, 0, 0.7) 46%,
    transparent 78%
  );
  mask-image: radial-gradient(
    ellipse at center,
    #000 12%,
    rgba(0, 0, 0, 0.7) 46%,
    transparent 78%
  );
  animation: whDotsDrift 16s ease-in-out infinite alternate;
}
.tankless-orbit {
  position: absolute;
  border: 1px dashed rgba(232, 116, 42, 0.23);
  border-radius: 50%;
  animation: whSpin 24s linear infinite;
}
.tankless-orbit:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  top: 50%;
  left: -5px;
  box-shadow: 0 0 0 5px rgba(232, 116, 42, 0.08);
}
.tankless-orbit-one {
  width: 520px;
  height: 520px;
  right: 7%;
  top: 90px;
}
.tankless-orbit-two {
  width: 680px;
  height: 680px;
  right: -3%;
  top: 15px;
  border-color: rgba(11, 37, 62, 0.09);
  animation-duration: 34s;
  animation-direction: reverse;
}
.tankless-bubble {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(232, 116, 42, 0.16);
  background: rgba(232, 116, 42, 0.035);
  animation: whSoftBubble 8s ease-in-out infinite;
}
.tankless-bubble-one {
  width: 58px;
  height: 58px;
  right: 35%;
  top: 18%;
  animation-delay: -1s;
}
.tankless-bubble-two {
  width: 34px;
  height: 34px;
  right: 12%;
  bottom: 17%;
  animation-delay: -3s;
}
.tankless-bubble-three {
  width: 78px;
  height: 78px;
  left: 4%;
  bottom: 10%;
  border-color: rgba(11, 37, 62, 0.08);
  animation-delay: -5s;
}

/* extra movement in other large section backgrounds without altering the existing center-heater animation */
.ambient-motion-dark,
.ambient-motion-light {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.ambient-motion-dark > .container,
.ambient-motion-light > .container {
  position: relative;
  z-index: 2;
}
.ambient-motion-dark:after,
.ambient-motion-light:after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  border: 1px dashed rgba(232, 116, 42, 0.11);
  right: -160px;
  top: 12%;
  box-shadow:
    -135px 170px 0 -176px rgba(232, 116, 42, 0.18),
    -245px 42px 0 -198px rgba(255, 255, 255, 0.14),
    65px 210px 0 -188px rgba(11, 37, 62, 0.14);
  animation: whAmbientOrbit 24s linear infinite;
}
.ambient-motion-light:after {
  border-color: rgba(11, 37, 62, 0.08);
}

@keyframes whDotsDrift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-22px, -16px, 0);
  }
}
@keyframes whSoftBubble {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.35;
  }
  50% {
    transform: translateY(-24px) scale(1.08);
    opacity: 0.7;
  }
}
@keyframes whAmbientOrbit {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1000px) {
  .tankless-showcase-row {
    min-height: auto;
    gap: 42px;
  }
  .tankless-double-visual {
    min-height: 580px;
  }
  .tankless-image-back {
    width: 88%;
    height: 500px;
  }
  .tankless-image-front {
    width: 50%;
    height: 300px;
    transform: translateX(0);
  }
  .tankless-orbit-one {
    width: 430px;
    height: 430px;
    right: 2%;
  }
  .tankless-orbit-two {
    width: 560px;
    height: 560px;
    right: -8%;
  }
}
@media (max-width: 650px) {
  .tankless-double-visual {
    min-height: 470px;
  }
  .tankless-image-back {
    top: 0;
    width: 88%;
    height: 390px;
  }
  .tankless-image-front {
    width: 56%;
    height: 230px;
    bottom: 0;
    border-width: 7px;
  }
  .tankless-orbit-one {
    width: 330px;
    height: 330px;
    right: -12%;
    top: 80px;
  }
  .tankless-orbit-two {
    display: none;
  }
  .ambient-motion-dark:after,
  .ambient-motion-light:after {
    width: 300px;
    height: 300px;
    right: -160px;
    opacity: 0.75;
  }
}
@media (prefers-reduced-motion: reduce) {
  .tankless-bg-motion:before,
  .tankless-orbit,
  .tankless-bubble,
  .ambient-motion-dark:after,
  .ambient-motion-light:after {
    animation: none !important;
  }
}

/* =========================================================
   V11 — Automec-inspired hero, professional entrances,
   endless logo carousel, and back-to-top control
   ========================================================= */
.hero {
  height: 100vh;
  align-items: center;
  background: #07192c;
  isolation: isolate;
  padding-top: 70px;
}
.hero-media {
  left: 43%;
  width: 57%;
  z-index: 0;
  overflow: hidden;
  clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%, 0 74%, 11% 53%, 0 33%);
}
.hero-media img {
  transform: scale(1.035);
  filter: saturate(0.95) contrast(1.03);
  animation: heroMediaIn 1.35s cubic-bezier(0.2, 0.72, 0.2, 1) both;
}
.hero-media:after {
  background: linear-gradient(
    90deg,
    rgba(7, 25, 44, 0.62),
    rgba(7, 25, 44, 0.06) 46%,
    rgba(7, 25, 44, 0.18)
  );
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0 48% 0 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 12% 70%,
      rgba(232, 116, 42, 0.17) 0 3px,
      transparent 4px
    ),
    radial-gradient(
      circle at 19% 77%,
      rgba(255, 255, 255, 0.11) 0 2px,
      transparent 3px
    ),
    linear-gradient(115deg, rgba(255, 255, 255, 0.025), transparent 38%);
  background-size:
    150px 150px,
    110px 110px,
    100% 100%;
  animation: heroWaterDrift 11s ease-in-out infinite alternate;
}
.hero-content {
  width: min(1280px, calc(100% - 64px));
  max-width: none;
  padding: 205px 0 90px;
  position: relative;
}
.hero-copy-col {
  max-width: 620px;
  position: relative;
  z-index: 3;
}
.hero h1 {
  max-width: none;
  font-size: clamp(3.45rem, 5.35vw, 6.15rem);
  line-height: 0.93;
  margin-bottom: 25px;
  text-transform: uppercase;
}
.hero-line {
  display: block;
  white-space: nowrap;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero h1:hover > .hero-line:first-child {
  transform: translateX(-18px);
}
.hero h1:hover > .hero-line:last-child {
  transform: translateX(18px);
}
.hero-accent {
  color: var(--orange) !important;
}
.hero-sub {
  max-width: 610px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.76);
}
.hero-slash-lines {
  position: absolute;
  z-index: 3;
  left: 49.5%;
  top: 31%;
  width: 95px;
  height: 205px;
  pointer-events: none;
  transform: skewX(-27deg);
  opacity: 0.85;
}
.hero-slash-lines span {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--orange);
}
.hero-slash-lines span:first-child {
  left: 18px;
}
.hero-slash-lines span:last-child {
  right: 18px;
  opacity: 0.62;
}
.hero-meta {
  width: min(960px, calc(100vw - 64px));
  margin-top: 55px;
  border: 0;
  background: linear-gradient(90deg, var(--orange), #ef843a);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.22);
}
.hero-meta div {
  padding: 21px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}
.hero-meta small {
  opacity: 0.72;
}
.hero-meta strong {
  font-size: 0.88rem;
}
.hero .eyebrow,
.hero h1,
.hero-sub,
.hero-actions,
.hero-meta {
  opacity: 0;
  animation: heroCopyIn 0.78s cubic-bezier(0.2, 0.72, 0.2, 1) forwards;
}
.hero .eyebrow {
  animation-delay: 0.16s;
}
.hero h1 {
  animation-delay: 0.28s;
}
.hero-sub {
  animation-delay: 0.42s;
}
.hero-actions {
  animation-delay: 0.54s;
}
.hero-meta {
  animation-delay: 0.68s;
}
@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translate3d(0, 32px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes heroMediaIn {
  from {
    opacity: 0;
    transform: scale(1.1) translateX(35px);
  }
  to {
    opacity: 1;
    transform: scale(1.035) translateX(0);
  }
}
@keyframes heroWaterDrift {
  to {
    background-position:
      26px -18px,
      -18px 14px,
      0 0;
  }
}

.reveal-on-scroll {
  opacity: 0;
  will-change: opacity, transform;
  transition:
    opacity 0.82s ease,
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-on-scroll.reveal-up {
  transform: translate3d(0, 42px, 0);
}
.reveal-on-scroll.reveal-left {
  transform: translate3d(-52px, 0, 0);
}
.reveal-on-scroll.reveal-right {
  transform: translate3d(52px, 0, 0);
}
.reveal-on-scroll.reveal-scale {
  transform: scale(0.965);
}
.reveal-on-scroll.reveal-visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 {
  transition-delay: 0.06s;
}
.reveal-delay-2 {
  transition-delay: 0.14s;
}
.reveal-delay-3 {
  transition-delay: 0.22s;
}

.brands {
  overflow: hidden;
  position: relative;
  padding: 8px 0 14px;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
}
.brand-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: brandMarquee 38s linear infinite;
  will-change: transform;
}
.brand-track:hover {
  animation-play-state: paused;
}
.brand-set {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-right: 18px;
  flex: none;
}
.brand-chip {
  width: 210px;
  height: 132px;
  min-width: 210px;
  padding: 18px 22px;
  border: 1px solid rgba(11, 37, 62, 0.1);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 34px rgba(11, 37, 62, 0.06);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}
.brand-chip img {
  width: 100%;
  height: 82px;
  object-fit: contain;
  filter: grayscale(0.22);
  opacity: 0.86;
  transition:
    filter 0.28s ease,
    opacity 0.28s ease,
    transform 0.28s ease;
}
.brand-chip:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(11, 37, 62, 0.11);
  border-color: rgba(232, 116, 42, 0.34);
}
.brand-chip:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.045);
}
@keyframes brandMarquee {
  to {
    transform: translateX(-50%);
  }
}

.back-to-top {
  position: fixed;
  right: 16px;
  bottom: 75px;
  z-index: 90;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(232, 116, 42, 0.75);
  background: #fff;
  color: var(--navy);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 34px rgba(7, 25, 44, 0.22);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.9);
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease,
    transform 0.28s ease,
    background 0.22s ease,
    color 0.22s ease;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.back-to-top:hover {
  background: var(--orange);
  color: #fff;
}
.back-to-top i {
  font-size: 0.92rem;
}

@media (max-width: 1000px) {
  .hero {
    min-height: 830px;
  }
  .hero-media {
    left: 36%;
    width: 64%;
    opacity: 0.72;
    clip-path: none;
  }
  .hero-media:after {
    background: linear-gradient(
      90deg,
      rgba(7, 25, 44, 0.96),
      rgba(7, 25, 44, 0.67) 54%,
      rgba(7, 25, 44, 0.28)
    );
  }
  .hero-content {
    width: min(100% - 40px, 1180px);
  }
  .hero-copy-col {
    max-width: 650px;
  }
  .hero-slash-lines {
    display: none;
  }
  .hero-meta {
    width: 100%;
  }
}
@media (max-width: 650px) {
  .hero {
    min-height: 790px;
    align-items: flex-end;
  }
  .hero-media {
    inset: 0;
    width: 100%;
    opacity: 0.58;
  }
  .hero-content {
    width: min(100% - 28px, 1180px);
    padding: 100px 0 55px;
  }
  .hero h1 {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }
  .hero-line {
    white-space: normal;
  }
  .hero h1:hover > .hero-line:first-child {
    transform: none;
  }
  .hero-sub {
    font-size: 0.94rem;
  }
  .hero-meta {
    grid-template-columns: 1fr 1fr;
    margin-top: 34px;
  }
  .hero-meta div {
    padding: 16px 14px;
  }
  .brand-chip {
    width: 165px;
    min-width: 165px;
    height: 108px;
    padding: 14px;
  }
  .brand-chip img {
    height: 66px;
  }
  .brand-set {
    gap: 12px;
    padding-right: 12px;
  }
  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 46px;
    height: 46px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero .eyebrow,
  .hero h1,
  .hero-sub,
  .hero-actions,
  .hero-meta,
  .hero-media img {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .brand-track {
    animation: none !important;
  }
  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* v12: image logo + subtle falling outline coins for Special Savings */
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.brand img {
  display: block;
  width: 230px;
  height: auto;
  object-fit: contain;
  object-position: left center;
  padding: 20px 0;
}
.site-footer .brand img {
  width: 205px;
  height: 46px;
}

.coin-rain-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.coin-rain-section > .container {
  position: relative;
  z-index: 2;
}
.offer-coins {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.offer-coins .coin {
  position: absolute;
  top: -90px;
  width: 58px;
  height: 58px;
  border: 2px solid rgba(232, 116, 42, 0.22);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: rgba(232, 116, 42, 0.22);
  font:
    800 1.25rem/1 Arial,
    sans-serif;
  box-shadow: inset 0 0 0 7px rgba(232, 116, 42, 0.025);
  animation: offerCoinFall 13s linear infinite;
  will-change: transform, opacity;
}
.offer-coins .coin:after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px dashed currentColor;
  border-radius: 50%;
  opacity: 0.6;
}
.coin-1 {
  left: 4%;
  animation-duration: 15s !important;
  animation-delay: -3s !important;
  opacity: 0.34;
}
.coin-2 {
  left: 14%;
  width: 42px !important;
  height: 42px !important;
  animation-duration: 11s !important;
  animation-delay: -8s !important;
  opacity: 0.22;
}
.coin-3 {
  left: 27%;
  width: 70px !important;
  height: 70px !important;
  animation-duration: 18s !important;
  animation-delay: -12s !important;
  opacity: 0.28;
}
.coin-4 {
  left: 39%;
  width: 48px !important;
  height: 48px !important;
  animation-duration: 13.5s !important;
  animation-delay: -5s !important;
  opacity: 0.18;
}
.coin-5 {
  left: 51%;
  width: 62px !important;
  height: 62px !important;
  animation-duration: 16.5s !important;
  animation-delay: -10s !important;
  opacity: 0.3;
}
.coin-6 {
  left: 62%;
  width: 38px !important;
  height: 38px !important;
  animation-duration: 12s !important;
  animation-delay: -2s !important;
  opacity: 0.2;
}
.coin-7 {
  left: 73%;
  width: 74px !important;
  height: 74px !important;
  animation-duration: 19s !important;
  animation-delay: -14s !important;
  opacity: 0.25;
}
.coin-8 {
  left: 83%;
  width: 50px !important;
  height: 50px !important;
  animation-duration: 14s !important;
  animation-delay: -7s !important;
  opacity: 0.18;
}
.coin-9 {
  left: 91%;
  width: 64px !important;
  height: 64px !important;
  animation-duration: 17s !important;
  animation-delay: -11s !important;
  opacity: 0.24;
}
.coin-10 {
  left: 34%;
  width: 34px !important;
  height: 34px !important;
  animation-duration: 10.5s !important;
  animation-delay: -1s !important;
  opacity: 0.17;
}
@keyframes offerCoinFall {
  0% {
    transform: translate3d(0, -100px, 0) rotate(0deg);
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  88% {
    opacity: 1;
  }
  100% {
    transform: translate3d(38px, 760px, 0) rotate(300deg);
    opacity: 0;
  }
}
@media (max-width: 850px) {
  .brand img {
    width: 174px;
    height: auto;
  }
  .offer-coins .coin {
    transform: scale(0.82);
  }
}
@media (prefers-reduced-motion: reduce) {
  .offer-coins .coin {
    animation: none !important;
    display: none;
  }
}

/* V13 — refined hero palette and service facts */
.hero-slash-lines {
  position: relative;
  z-index: 3;
  left: auto;
  top: auto;
  width: 92px;
  height: 34px;
  margin: -10px 36px 18px auto;
  transform: skewX(-34deg);
  opacity: 0.78;
}
.hero-slash-lines span {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(232, 116, 42, 0.82);
  box-shadow: 0 0 18px rgba(232, 116, 42, 0.12);
}
.hero-slash-lines span:first-child {
  left: 24px;
}
.hero-slash-lines span:last-child {
  right: 24px;
  opacity: 0.48;
}

.hero-meta {
  width: min(960px, calc(100vw - 64px));
  margin-top: 46px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 2px;
  background: rgba(10, 32, 53, 0.34);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.14);
  overflow: hidden;
}
.hero-meta div {
  position: relative;
  padding: 20px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.018);
  transition:
    background 0.34s ease,
    transform 0.34s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.34s ease;
}
.hero-meta div:last-child {
  border-right: 0;
}
.hero-meta div:hover {
  background: rgba(232, 116, 42, 0.115);
  transform: translateY(-3px);
  box-shadow: inset 0 2px 0 rgba(232, 116, 42, 0.58);
}
.hero-meta small {
  color: rgba(255, 255, 255, 0.52);
  opacity: 1;
}
.hero-meta strong {
  color: #fff;
  font-size: 0.9rem;
}

@media (max-width: 1000px) {
  .hero-slash-lines {
    display: block;
    margin-right: 24px;
  }
  .hero-meta {
    width: 100%;
  }
}
@media (max-width: 650px) {
  .hero-slash-lines {
    width: 70px;
    height: 28px;
    margin: -4px 12px 14px auto;
  }
  .hero-meta {
    margin-top: 30px;
    border-radius: 0;
  }
  .hero-meta div {
    padding: 15px 14px;
  }
}

/* V16 — services slider starts with the first service card fully visible */
.services-slider-viewport {
  --service-start-peek: 0px;
  overflow: hidden;
  margin-left: 0;
  width: calc(100% + max(0px, (100vw - 1180px)/2));
  padding-right: max(0px, (100vw - 1180px)/2);
}
.services-slider-track {
  padding-left: 0;
}
@media (max-width: 1200px) {
  .services-slider-viewport {
    --service-start-peek: 0px;
    margin-left: 0;
    width: calc(100% + 20px);
    padding-right: 20px;
  }
}
@media (max-width: 800px) {
  .services-slider-viewport {
    --service-start-peek: 0px;
    margin-left: 0;
    width: calc(100% + 14px);
    padding-right: 14px;
  }
}
@media (max-width: 650px) {
  .services-slider-viewport {
    --service-start-peek: 0px;
    margin-left: 0;
    width: calc(100% + 10px);
    padding-right: 10px;
  }
}

/* Keep the original three-part hero title palette */
.hero h1 .hero-line {
  color: #fff !important;
}
.hero h1 .hero-accent {
  color: var(--orange) !important;
}

/* V15 — premium animated homepage intro */
.intro-premium {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 112px 0 118px;
  background:
    radial-gradient(
      circle at 8% 18%,
      rgba(232, 116, 42, 0.045),
      transparent 22%
    ),
    radial-gradient(
      circle at 92% 78%,
      rgba(11, 37, 62, 0.045),
      transparent 24%
    ),
    #fff;
}
.intro-premium > .container {
  position: relative;
  z-index: 2;
}
.intro-premium-row {
  display: flex;
  align-items: center;
  gap: 72px;
}
.intro-premium-row > .col-6 {
  width: calc(50% - 36px);
}
.intro-premium-copy {
  position: relative;
  padding: 18px 0 18px 8px;
}
.intro-premium-copy .eyebrow {
  margin-bottom: 22px;
}
.intro-premium-copy h2 {
  max-width: 600px;
  margin: 0;
  line-height: 1.04;
  letter-spacing: -0.035em;
}
.intro-copy-rule {
  width: 96px;
  height: 2px;
  margin: 28px 0 24px;
  background: linear-gradient(
    90deg,
    var(--orange) 0 52%,
    rgba(232, 116, 42, 0.16) 52% 100%
  );
  transform-origin: left center;
  animation: introRulePulse 4.8s ease-in-out infinite;
}
.intro-premium-copy .lead {
  max-width: 620px;
  margin: 0;
  color: #617184;
  line-height: 1.72;
}
.intro-premium-media {
  position: relative;
  padding: 18px 0 18px 18px;
}
.intro-image-frame {
  position: relative;
  width: min(100%, 600px);
  margin-left: auto;
  padding: 0 0 28px 28px;
}
.intro-image-frame:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72%;
  height: 66%;
  border-left: 2px solid rgba(232, 116, 42, 0.58);
  border-bottom: 2px solid rgba(232, 116, 42, 0.58);
  z-index: -1;
}
.intro-image-frame img {
  display: block;
  width: 100%;
  height: 620px;
  object-fit: cover;
  position: relative;
  z-index: 2;
  box-shadow: 0 28px 70px rgba(11, 37, 62, 0.13);
  transition:
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.75s ease;
}
.intro-image-frame:hover img {
  transform: translate3d(-5px, -7px, 0);
  box-shadow: 0 36px 82px rgba(11, 37, 62, 0.18);
}
.intro-image-outline {
  position: absolute;
  z-index: 1;
  right: -22px;
  top: -22px;
  width: 58%;
  height: 49%;
  border: 1px dashed rgba(11, 37, 62, 0.19);
  pointer-events: none;
  animation: introOutlineFloat 7s ease-in-out infinite alternate;
}
.intro-premium .image-tag {
  z-index: 4;
  left: 0;
  bottom: 0;
  width: 205px;
  padding: 22px 26px;
  box-shadow: 0 16px 34px rgba(11, 37, 62, 0.16);
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}
.intro-image-frame:hover .image-tag {
  transform: translate3d(6px, -6px, 0);
}
.intro-premium .image-tag strong {
  font-size: 1.75rem;
  margin: 5px 0 2px;
}

.intro-motion {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.intro-orbit {
  position: absolute;
  border: 1px dashed rgba(11, 37, 62, 0.095);
  border-radius: 50%;
  animation: introOrbitSpin 26s linear infinite;
}
.intro-orbit:before,
.intro-orbit:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 7px rgba(232, 116, 42, 0.045);
}
.intro-orbit:before {
  width: 9px;
  height: 9px;
  left: 14%;
  top: 9%;
}
.intro-orbit:after {
  width: 5px;
  height: 5px;
  right: 5%;
  bottom: 22%;
  opacity: 0.45;
}
.intro-orbit-1 {
  width: 360px;
  height: 360px;
  left: -150px;
  top: 44px;
  animation-duration: 34s;
}
.intro-orbit-2 {
  width: 245px;
  height: 245px;
  right: -72px;
  top: 74px;
  animation-direction: reverse;
  animation-duration: 28s;
}
.intro-orbit-3 {
  width: 520px;
  height: 520px;
  right: 10%;
  bottom: -390px;
  border-color: rgba(232, 116, 42, 0.085);
  animation-duration: 42s;
}
.intro-dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(232, 116, 42, 0.12);
  animation: introDotDrift 7s ease-in-out infinite alternate;
}
.intro-dot-1 {
  width: 54px;
  height: 54px;
  left: 4.8%;
  bottom: 19%;
  animation-delay: -2s;
}
.intro-dot-2 {
  width: 23px;
  height: 23px;
  right: 34%;
  top: 13%;
  background: rgba(11, 37, 62, 0.09);
  animation-delay: -4s;
}
.intro-dot-3 {
  width: 38px;
  height: 38px;
  right: 4%;
  bottom: 14%;
  background: rgba(232, 116, 42, 0.075);
  animation-delay: -1s;
}
.intro-dash {
  position: absolute;
  width: 190px;
  height: 90px;
  border-top: 1px dashed rgba(232, 116, 42, 0.15);
  border-radius: 50%;
  transform: rotate(-16deg);
  animation: introDashGlide 8s ease-in-out infinite alternate;
}
.intro-dash-1 {
  left: 24%;
  top: 7%;
}
.intro-dash-2 {
  right: 22%;
  bottom: 6%;
  width: 230px;
  border-color: rgba(11, 37, 62, 0.12);
  transform: rotate(14deg);
  animation-delay: -3s;
}

@keyframes introOrbitSpin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes introDotDrift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(18px, -22px, 0);
  }
}
@keyframes introDashGlide {
  from {
    transform: translate3d(-8px, 0, 0) rotate(-16deg);
  }
  to {
    transform: translate3d(18px, 10px, 0) rotate(-10deg);
  }
}
@keyframes introOutlineFloat {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(10px, -10px, 0);
  }
}
@keyframes introRulePulse {
  0%,
  100% {
    transform: scaleX(1);
    opacity: 1;
  }
  50% {
    transform: scaleX(0.72);
    opacity: 0.65;
  }
}

@media (max-width: 1000px) {
  .intro-premium {
    padding: 88px 0 92px;
  }
  .intro-premium-row {
    gap: 42px;
  }
  .intro-premium-row > .col-6 {
    width: calc(50% - 21px);
  }
  .intro-image-frame img {
    height: 560px;
  }
  .intro-premium-copy h2 {
    font-size: clamp(2.2rem, 4.4vw, 3.7rem);
  }
}
@media (max-width: 800px) {
  .intro-premium-row {
    display: flex;
    flex-direction: column;
    gap: 52px;
  }
  .intro-premium-row > .col-6 {
    width: 100%;
  }
  .intro-premium-copy {
    padding-left: 0;
  }
  .intro-premium-copy h2,
  .intro-premium-copy .lead {
    max-width: none;
  }
  .intro-premium-media {
    padding-left: 0;
    width: 100%;
  }
  .intro-image-frame {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    padding-left: 22px;
  }
  .intro-image-frame img {
    height: 520px;
  }
  .intro-orbit-2 {
    right: -140px;
  }
}
@media (max-width: 575px) {
  .intro-premium {
    padding: 68px 0 76px;
  }
  .intro-premium-copy h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }
  .intro-image-frame {
    padding-left: 14px;
    padding-bottom: 22px;
  }
  .intro-image-frame img {
    height: 440px;
  }
  .intro-premium .image-tag {
    left: 0;
    bottom: 0;
    width: 180px;
    padding: 18px 20px;
  }
  .intro-premium .image-tag strong {
    font-size: 1.5rem;
  }
  .intro-orbit-1 {
    left: -230px;
  }
  .intro-orbit-3 {
    display: none;
  }
  .intro-dash-1 {
    left: 10%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .intro-orbit,
  .intro-dot,
  .intro-dash,
  .intro-image-outline,
  .intro-copy-rule {
    animation: none !important;
  }
}

/* =========================================================
   V17 — refined directional background motion + full responsive pass
   ========================================================= */

/* Prevent layout-level horizontal scrolling without changing section designs. */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}
main,
section,
.site-header,
.site-footer {
  max-width: 100%;
}
img,
svg,
video,
iframe {
  max-width: 100%;
}

/* Services: first card starts fully visible; carousel itself never widens the page. */
.services-showcase .container {
  overflow: visible;
}
.services-slider-viewport {
  --service-start-peek: 0px !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  overflow: hidden !important;
}
.services-slider-track {
  padding-left: 0 !important;
  margin-left: 0 !important;
}
.services-slider-track .service-slide-card:first-child {
  margin-left: 0 !important;
}

/* Replace the old large circles with cleaner directional water-service orbits. */
.ambient-motion-dark.ambient-motion-right,
.ambient-motion-dark.ambient-motion-left {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.ambient-motion-dark.ambient-motion-right:before,
.ambient-motion-dark.ambient-motion-left:before,
.ambient-motion-dark.ambient-motion-right:after,
.ambient-motion-dark.ambient-motion-left:after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  background: none;
  box-shadow: none;
}
.ambient-motion-dark.ambient-motion-right:before,
.ambient-motion-dark.ambient-motion-left:before {
  width: 430px;
  height: 430px;
  top: 12%;
  border: 1px dashed rgba(255, 255, 255, 0.075);
  opacity: 0.9;
  animation: whOrbitCalm 28s linear infinite;
}
.ambient-motion-dark.ambient-motion-right:after,
.ambient-motion-dark.ambient-motion-left:after {
  width: 300px;
  height: 300px;
  top: 27%;
  border: 1px dashed rgba(232, 116, 42, 0.13);
  opacity: 0.8;
  animation: whOrbitCalmReverse 22s linear infinite;
}
.ambient-motion-dark.ambient-motion-right:before {
  right: -165px;
  left: auto;
}
.ambient-motion-dark.ambient-motion-right:after {
  right: -68px;
  left: auto;
}
.ambient-motion-dark.ambient-motion-left:before {
  left: -165px;
  right: auto;
}
.ambient-motion-dark.ambient-motion-left:after {
  left: -68px;
  right: auto;
}

/* small orbit nodes, created with restrained shadows rather than solid blobs */
.ambient-motion-dark.ambient-motion-right:before {
  box-shadow:
    -42px 78px 0 -204px rgba(255, 255, 255, 0.55),
    -116px 210px 0 -202px rgba(232, 116, 42, 0.58);
}
.ambient-motion-dark.ambient-motion-left:before {
  box-shadow:
    42px 78px 0 -204px rgba(255, 255, 255, 0.55),
    116px 210px 0 -202px rgba(232, 116, 42, 0.58);
}
@keyframes whOrbitCalm {
  to {
    transform: rotate(360deg);
  }
}
@keyframes whOrbitCalmReverse {
  to {
    transform: rotate(-360deg);
  }
}

.ambient-motion-dark.ambient-motion-right > .container,
.ambient-motion-dark.ambient-motion-left > .container {
  position: relative;
  z-index: 2;
}

/* Responsive hardening: common components never force viewport overflow. */
.nav-wrap,
.hero-content,
.hero-meta,
.services-slider-head,
.core-pillars-layout,
.tankless-showcase-row,
.footer-grid,
.contact-grid,
.area-wrap,
.inner-layout,
.grid-2,
.grid-3,
.grid-4,
.system-row {
  min-width: 0;
}
.nav-links,
.nav-cta,
.hero-actions,
.services-slider-nav {
  min-width: 0;
}
.hero h1,
.page-hero h1,
h2,
h3,
p,
.lead {
  overflow-wrap: break-word;
}

@media (max-width: 1200px) {
  .container {
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }
  .core-pillars-feature-section .core-pillars-layout {
    gap: 36px;
  }
  .core-pillars-image-wrap,
  .core-pillars-image-wrap > img {
    max-width: 100%;
  }
}

@media (max-width: 1000px) {
  .site-header {
    width: 100%;
  }
  .nav-wrap {
    min-height: 78px;
  }
  .nav-links.open {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }
  .hero {
    min-height: auto;
  }
  .hero-content {
    max-width: 100%;
    padding-bottom: 70px;
  }
  .hero-meta {
    width: 100%;
  }
  .grid-2,
  .area-wrap,
  .contact-grid,
  .inner-layout {
    width: 100%;
    min-width: 0;
  }
  .core-pillars-feature-section .core-pillars-layout {
    width: 100%;
    gap: 34px;
  }
  .core-pillars-feature-section .col-6 {
    width: 100% !important;
    max-width: 100%;
  }
  .core-pillars-copy,
  .core-pillars-visual {
    width: 100%;
    max-width: 100%;
  }
  .services-slider-head {
    width: 100%;
  }
  .tankless-showcase-row > .col-6 {
    width: 100%;
    max-width: 100%;
  }
  .footer-grid > * {
    min-width: 0;
  }
}

@media (max-width: 800px) {
  .services-slider-head {
    gap: 20px;
  }
  .services-slider-nav {
    flex: 0 0 auto;
  }
  .service-slide-card {
    min-width: 0;
  }
  .system-row {
    width: 100%;
  }
  .offers-feature-media {
    min-height: 230px;
  }
  .offers-feature-media img {
    height: 230px;
  }
}

@media (max-width: 650px) {
  .container {
    width: calc(100% - 28px);
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }
  .section {
    padding-left: 0;
    padding-right: 0;
  }
  .site-header .container {
    width: calc(100% - 24px);
  }
  .nav-wrap {
    gap: 12px;
  }
  .brand,
  .header-logo {
    max-width: 190px;
  }
  .mobile-toggle {
    flex: 0 0 46px;
  }
  .hero-content {
    padding-left: 0;
    padding-right: 0;
  }
  .hero-actions {
    width: 100%;
  }
  .hero-actions .btn-main,
  .hero-actions .btn-outline {
    max-width: 100%;
  }
  .hero-meta {
    grid-template-columns: 1fr 1fr;
  }
  .hero-meta div {
    min-width: 0;
  }
  .services-slider-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }
  .services-slider-head h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }
  .services-slider-head .lead {
    font-size: 0.95rem;
  }
  .services-slider-btn {
    width: 44px;
    height: 44px;
  }
  .service-slide-card {
    flex-basis: 100% !important;
    width: 100%;
    max-width: 100%;
    padding: 20px;
  }
  .service-slide-media {
    grid-template-columns: 72px minmax(0, 1fr);
    width: 100%;
  }
  .service-slide-body {
    min-height: 270px;
  }
  .core-pillar-row {
    width: 100%;
    max-width: 100%;
  }
  .core-pillars-image-wrap,
  .core-pillars-image-wrap > img {
    width: 100%;
    max-width: 100%;
  }
  .core-pillars-info-card {
    max-width: calc(100% - 36px);
  }
  .tankless-double-visual {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .tankless-image-back,
  .tankless-image-front {
    max-width: 100%;
  }
  .offers-grid,
  .offer-grid {
    max-width: 100%;
  }
  .offer {
    min-width: 0;
  }
  .area-copy,
  .contact-side,
  .contact-form,
  .content-panel {
    width: 100%;
    max-width: 100%;
  }
  .map,
  .map iframe {
    max-width: 100%;
  }
  .footer-grid,
  .copyright {
    width: 100%;
  }
  .ambient-motion-dark.ambient-motion-right:before,
  .ambient-motion-dark.ambient-motion-left:before {
    width: 280px;
    height: 280px;
    top: 8%;
    opacity: 0.65;
  }
  .ambient-motion-dark.ambient-motion-right:after,
  .ambient-motion-dark.ambient-motion-left:after {
    width: 190px;
    height: 190px;
    top: 22%;
    opacity: 0.6;
  }
  .ambient-motion-dark.ambient-motion-right:before {
    right: -160px;
  }
  .ambient-motion-dark.ambient-motion-right:after {
    right: -90px;
  }
  .ambient-motion-dark.ambient-motion-left:before {
    left: -160px;
  }
  .ambient-motion-dark.ambient-motion-left:after {
    left: -90px;
  }
}

@media (max-width: 430px) {
  .container {
    width: calc(100% - 22px);
  }
  .hero-meta {
    grid-template-columns: 1fr;
  }
  .hero-meta div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }
  .services-slider-head {
    grid-template-columns: 1fr;
  }
  .services-slider-nav {
    justify-self: start;
    padding-bottom: 0;
  }
  .service-slide-card {
    padding: 17px;
  }
  .service-slide-media {
    height: 96px;
    grid-template-columns: 64px minmax(0, 1fr);
  }
  .service-slide-icon {
    font-size: 1.55rem;
  }
  .core-pillars-info-card {
    left: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    max-width: calc(100% - 24px);
  }
  .zip-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ambient-motion-dark.ambient-motion-right:before,
  .ambient-motion-dark.ambient-motion-left:before,
  .ambient-motion-dark.ambient-motion-right:after,
  .ambient-motion-dark.ambient-motion-left:after {
    animation: none !important;
  }
}

/* =========================================================
   V18 — restore Complete Water Heater Care card geometry
   + animated professional service process
   ========================================================= */

/* Services carousel: same clean 4-card presentation as the approved reference. */
.services-showcase {
  overflow: hidden;
}
.services-showcase .container {
  overflow: visible;
}
.services-slider-viewport {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}
.services-slider-track {
  display: flex !important;
  gap: 24px !important;
  padding: 0 !important;
  margin: 0 !important;
  transform: translate3d(0, 0, 0);
}
.service-slide-card {
  flex: 0 0 calc((100% - 72px) / 4) !important;
  width: calc((100% - 72px) / 4) !important;
  min-width: calc((100% - 72px) / 4) !important;
  margin: 0 !important;
}
.services-slider-track .service-slide-card:first-child {
  margin-left: 0 !important;
}
.service-slide-media {
  width: 100%;
}

/* Process timeline */
.service-process-section {
  position: relative;
  overflow: hidden;
}
.process-heading-wrap {
  max-width: 760px;
}
.process-intro {
  max-width: 650px;
  margin-bottom: 0;
}
.process-timeline-row {
  margin-top: 46px;
}
.service-process-timeline {
  --process-line: #d9dee3;
  --process-fill: var(--orange);
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  padding-top: 4px;
}
.process-progress {
  position: absolute;
  top: 76px;
  left: 7%;
  right: 7%;
  height: 3px;
  background: var(--process-line);
  border-radius: 999px;
  overflow: hidden;
  z-index: 0;
}
.process-progress-fill {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), #f3a16c);
  border-radius: inherit;
  transition: width 2.2s cubic-bezier(0.22, 0.61, 0.36, 1);
  box-shadow: 0 0 16px rgba(232, 116, 42, 0.25);
}
.service-process-section.process-active .process-progress-fill {
  width: 100%;
}
.process-timeline-step {
  position: relative;
  z-index: 1;
  text-align: center;
  min-width: 0;
}
.process-icon-wrap {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fffaf6;
  border: 2px solid #edf0f2;
  color: var(--navy);
  font-size: 2rem;
  box-shadow: 0 12px 30px rgba(11, 37, 62, 0.055);
  transition:
    border-color 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease,
    color 0.35s ease;
}
.process-icon-wrap:before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 7px solid transparent;
  border-left-color: var(--orange);
  transform: rotate(-42deg) scale(0.93);
  opacity: 0.18;
  transition:
    opacity 0.4s ease,
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.process-step-number {
  position: absolute;
  top: -8px;
  right: 4px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  transition:
    background 0.35s ease,
    transform 0.35s ease;
}
.process-step-copy {
  max-width: 250px;
  margin: 0 auto;
}
.process-kicker {
  display: block;
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
}
.process-step-copy h3 {
  font-size: 1.18rem;
  margin: 0 0 10px;
}
.process-step-copy p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}
.process-timeline-step:after {
  content: "";
  position: absolute;
  top: 66px;
  right: -25px;
  width: 48px;
  height: 20px;
  border-top: 2px dashed rgba(11, 37, 62, 0.45);
  border-radius: 50%;
  transform: rotate(7deg);
  opacity: 0.55;
}
.process-timeline-step:last-child:after {
  display: none;
}
.service-process-section.process-active
  .process-timeline-step
  .process-icon-wrap {
  animation: processStepWake 0.65s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.service-process-section.process-active
  .process-timeline-step:nth-child(2)
  .process-icon-wrap {
  animation-delay: 0.45s;
}
.service-process-section.process-active
  .process-timeline-step:nth-child(3)
  .process-icon-wrap {
  animation-delay: 0.9s;
}
.service-process-section.process-active
  .process-timeline-step:nth-child(4)
  .process-icon-wrap {
  animation-delay: 1.35s;
}
.service-process-section.process-active
  .process-timeline-step
  .process-icon-wrap:before {
  opacity: 1;
  transform: rotate(318deg) scale(1);
}
.service-process-section.process-active
  .process-timeline-step:nth-child(2)
  .process-icon-wrap:before {
  transition-delay: 0.45s;
}
.service-process-section.process-active
  .process-timeline-step:nth-child(3)
  .process-icon-wrap:before {
  transition-delay: 0.9s;
}
.service-process-section.process-active
  .process-timeline-step:nth-child(4)
  .process-icon-wrap:before {
  transition-delay: 1.35s;
}
.service-process-section.process-active .process-step-number {
  background: var(--orange);
}
.process-timeline-step:hover .process-icon-wrap {
  transform: translateY(-6px);
  border-color: rgba(232, 116, 42, 0.35);
  box-shadow: 0 20px 40px rgba(11, 37, 62, 0.1);
  color: var(--orange);
}
.process-timeline-step:hover .process-step-number {
  transform: scale(1.08);
}
@keyframes processStepWake {
  0% {
    transform: scale(0.9);
    opacity: 0.55;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 1100px) {
  .service-slide-card {
    flex-basis: calc((100% - 48px) / 3) !important;
    width: calc((100% - 48px) / 3) !important;
    min-width: calc((100% - 48px) / 3) !important;
  }
  .service-process-timeline {
    gap: 18px;
  }
  .process-icon-wrap {
    width: 132px;
    height: 132px;
  }
  .process-progress {
    top: 67px;
  }
}
@media (max-width: 800px) {
  .service-slide-card {
    flex-basis: calc((100% - 24px) / 2) !important;
    width: calc((100% - 24px) / 2) !important;
    min-width: calc((100% - 24px) / 2) !important;
  }
  .service-process-timeline {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 4px;
  }
  .process-progress {
    top: 20px;
    bottom: 20px;
    left: 74px;
    right: auto;
    width: 3px;
    height: auto;
  }
  .process-progress-fill {
    width: 100%;
    height: 0;
    transition: height 2.2s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  .service-process-section.process-active .process-progress-fill {
    width: 100%;
    height: 100%;
  }
  .process-timeline-step {
    display: grid;
    grid-template-columns: 145px minmax(0, 1fr);
    align-items: center;
    text-align: left;
    padding: 0 0 34px;
  }
  .process-icon-wrap {
    width: 128px;
    height: 128px;
    margin: 0;
  }
  .process-step-copy {
    max-width: none;
    margin: 0;
    padding-left: 8px;
  }
  .process-timeline-step:after {
    display: none;
  }
}
@media (max-width: 650px) {
  .service-slide-card {
    flex-basis: 100% !important;
    width: 100% !important;
    min-width: 100% !important;
  }
  .process-timeline-row {
    margin-top: 34px;
  }
  .process-progress {
    left: 54px;
  }
  .process-timeline-step {
    grid-template-columns: 105px minmax(0, 1fr);
    padding-bottom: 28px;
  }
  .process-icon-wrap {
    width: 96px;
    height: 96px;
    font-size: 1.5rem;
  }
  .process-step-number {
    width: 34px;
    height: 34px;
    font-size: 0.66rem;
    right: -1px;
  }
  .process-step-copy {
    padding-left: 10px;
  }
  .process-step-copy h3 {
    font-size: 1.05rem;
  }
  .process-step-copy p {
    font-size: 0.86rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .process-progress-fill {
    transition: none !important;
  }
  .service-process-section.process-active
    .process-timeline-step
    .process-icon-wrap {
    animation: none !important;
  }
}

/* V19 — Special Savings card motion + slightly larger falling coins */
.offers-section .offer {
  transition:
    transform 0.45s cubic-bezier(0.2, 0.75, 0.25, 1),
    box-shadow 0.45s ease,
    background-color 0.35s ease;
  will-change: transform;
}
.offers-section .offer > * {
  position: relative;
  z-index: 2;
}
.offers-section .offer small,
.offers-section .offer .price,
.offers-section .offer h3,
.offers-section .offer a {
  transition:
    transform 0.4s cubic-bezier(0.2, 0.75, 0.25, 1),
    opacity 0.35s ease;
}
.offers-section .offer:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 48px rgba(7, 27, 45, 0.16);
}
.offers-section .offer:hover small {
  transform: translateX(5px);
}
.offers-section .offer:hover .price {
  transform: translateY(-4px) scale(1.035);
}
.offers-section .offer:hover h3 {
  transform: translateX(5px);
}
.offers-section .offer:hover a {
  transform: translateX(7px);
}
.offers-section .offer:after {
  content: "";
  position: absolute;
  inset: auto -45% -75% auto;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.045);
  transform: scale(0.55);
  opacity: 0;
  transition:
    transform 0.55s ease,
    opacity 0.45s ease;
  pointer-events: none;
}
.offers-section .offer:hover:after {
  transform: scale(1.15);
  opacity: 1;
}

/* Keep the same coin fall animation; only increase coin sizes slightly. */
.offer-coins .coin {
  width: 66px;
  height: 66px;
  font-size: 1.35rem;
}
.coin-2 {
  width: 49px !important;
  height: 49px !important;
}
.coin-3 {
  width: 80px !important;
  height: 80px !important;
}
.coin-4 {
  width: 56px !important;
  height: 56px !important;
}
.coin-5 {
  width: 71px !important;
  height: 71px !important;
}
.coin-6 {
  width: 45px !important;
  height: 45px !important;
}
.coin-7 {
  width: 84px !important;
  height: 84px !important;
}
.coin-8 {
  width: 58px !important;
  height: 58px !important;
}
.coin-9 {
  width: 73px !important;
  height: 73px !important;
}
.coin-10 {
  width: 41px !important;
  height: 41px !important;
}
@media (max-width: 767px) {
  .offers-section .offer:hover {
    transform: translateY(-5px);
  }
  .offer-coins .coin {
    scale: 0.86;
  }
}
@media (prefers-reduced-motion: reduce) {
  .offers-section .offer,
  .offers-section .offer * {
    transition: none !important;
  }
  .offers-section .offer:hover {
    transform: none !important;
  }
}

/* =========================================================
   V20 — edge-reaching services carousel + single split offer
   ========================================================= */

/* Complete Water Heater Care starts at the normal content edge,
   while its viewport continues all the way to the right screen edge. */
.services-showcase {
  overflow: hidden;
}
.services-showcase .container {
  overflow: visible;
}
.services-slider-viewport {
  width: calc(100vw - max(20px, (100vw - 1180px)/2)) !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}
.services-slider-track {
  display: flex !important;
  gap: 24px !important;
  padding: 0 !important;
  margin: 0 !important;
}
.service-slide-card {
  flex: 0 0 clamp(285px, 22vw, 355px) !important;
  width: clamp(285px, 22vw, 355px) !important;
  min-width: clamp(285px, 22vw, 355px) !important;
  margin: 0 !important;
}
.services-slider-track .service-slide-card:first-child {
  margin-left: 0 !important;
}
@media (max-width: 1200px) {
  .services-slider-viewport {
    width: calc(100vw - 20px) !important;
  }
  .service-slide-card {
    flex-basis: clamp(270px, 30vw, 330px) !important;
    width: clamp(270px, 30vw, 330px) !important;
    min-width: clamp(270px, 30vw, 330px) !important;
  }
}
@media (max-width: 800px) {
  .services-slider-viewport {
    width: calc(100vw - 20px) !important;
  }
  .service-slide-card {
    flex-basis: min(78vw, 340px) !important;
    width: min(78vw, 340px) !important;
    min-width: min(78vw, 340px) !important;
  }
}
@media (max-width: 520px) {
  .services-slider-viewport {
    width: calc(100vw - 16px) !important;
  }
  .service-slide-card {
    flex-basis: calc(100vw - 48px) !important;
    width: calc(100vw - 48px) !important;
    min-width: calc(100vw - 48px) !important;
  }
}

/* Special Savings — one large 50/50 offer + image. */
.offers-section {
  position: relative;
  overflow: hidden;
}
.offers-section .container {
  position: relative;
  z-index: 2;
}
.offers-single-row {
  margin-top: 34px;
  align-items: stretch;
}
.offer-single-col,
.offer-single-image-col {
  display: flex;
}
.offer-single,
.offer-single-image {
  width: 100%;
  min-height: 340px;
}
.offer-single {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 42px;
  background: #0b2b45;
  color: #fff;
  overflow: hidden;
  transition: background-color 0.42s ease;
}
.offer-single:hover {
  background: #173a55;
}
.offer-single:before {
  content: "";
  position: absolute;
  right: -70px;
  top: -90px;
  width: 230px;
  height: 230px;
  border: 2px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  pointer-events: none;
}
.offer-single-icon {
  flex: 0 0 86px;
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 1.65rem;
}
.offer-single-copy {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.offer-single-copy small {
  display: block;
  color: #f4b78f;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}
.offer-single-title {
  display: flex;
  align-items: baseline;
  gap: 13px;
  flex-wrap: wrap;
  margin-bottom: 8px;
  font-weight: 800;
}
.offer-single-price {
  font-size: clamp(3rem, 4.7vw, 5.2rem);
  line-height: 0.9;
  color: #fff;
  letter-spacing: -0.04em;
}
.offer-single-title > span:last-child {
  font-size: clamp(1.5rem, 2.2vw, 2.25rem);
  line-height: 1.05;
}
.offer-single-copy p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
  margin: 14px 0 24px;
}
.offer-single-btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: #fff;
  color: #0b2b45;
  padding: 14px 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
}
.offer-single-image {
  position: relative;
  overflow: hidden;
  background: #102d43;
}
.offer-single-image img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
}
.offer-single-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 30, 48, 0.38),
    rgba(7, 30, 48, 0.04) 65%
  );
  pointer-events: none;
}
.offer-single-image-overlay {
  position: absolute;
  z-index: 2;
  left: 32px;
  bottom: 30px;
  max-width: 360px;
  color: #fff;
}
.offer-single-image-overlay span {
  display: block;
  color: #f28a4c;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 7px;
}
.offer-single-image-overlay strong {
  font-size: 1.5rem;
  line-height: 1.1;
}

/* Professional entry: no bouncing/scaling. */
.offers-section .offer-single-col,
.offers-section .offer-single-image-col {
  opacity: 0;
  transition:
    opacity 0.72s ease,
    transform 0.72s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.offers-section .offer-single-col {
  transform: translate3d(-34px, 0, 0);
}
.offers-section .offer-single-image-col {
  transform: translate3d(34px, 0, 0);
}
.offers-section.reveal-visible .offer-single-col,
.offers-section.reveal-visible .offer-single-image-col {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.offers-section.reveal-visible .offer-single-image-col {
  transition-delay: 0.1s;
}

@media (max-width: 900px) {
  .offers-single-row {
    gap: 18px;
  }
  .offer-single-col,
  .offer-single-image-col {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .offer-single,
  .offer-single-image {
    min-height: 300px;
  }
  .offer-single {
    padding: 34px 28px;
  }
}
@media (max-width: 560px) {
  .offer-single {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 22px;
  }
  .offer-single-icon {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
  }
  .offer-single-price {
    font-size: 2.7rem;
  }
  .offer-single-title > span:last-child {
    font-size: 1.35rem;
  }
  .offer-single-image img {
    min-height: 260px;
  }
  .offer-single-image-overlay {
    left: 22px;
    bottom: 22px;
    right: 22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .offers-section .offer-single-col,
  .offers-section .offer-single-image-col {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* V21 — transparent topbar over hero, split coupon, ordered process and refined reviews */
.topbar {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 40;
  background: rgba(8, 31, 50, 0.48);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
}
.topbar .container {
  padding-top: 8px;
  padding-bottom: 8px;
}
.site-header {
  top: 32px;
}
.hero {
  margin-top: 0;
}

.offer-split-link {
  display: block;
  color: inherit;
  text-decoration: none;
  position: relative;
  z-index: 2;
}
.offers-single-row {
  min-height: 64vh;
  max-height: 720px;
  margin-top: 30px;
  align-items: stretch;
  overflow: hidden;
}
.offer-single-col,
.offer-single-image-col {
  min-height: inherit;
}
.offer-single,
.offer-single-image {
  min-height: inherit;
  height: 100%;
}
.offer-single {
  justify-content: center;
  padding: clamp(34px, 4vw, 68px);
  background: #0b2b45;
}
.offer-split-link:hover .offer-single {
  background: #173a55;
}
.offer-single-image img {
  height: 100%;
  min-height: inherit;
}
.offer-split-link:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 5px;
}

/* Process sequence: 01 -> 02 -> 03 -> 04 */
.service-process-section.process-active
  .process-timeline-step[data-step="1"]
  .process-icon-wrap {
  animation-delay: 0s;
}
.service-process-section.process-active
  .process-timeline-step[data-step="2"]
  .process-icon-wrap {
  animation-delay: 0.62s;
}
.service-process-section.process-active
  .process-timeline-step[data-step="3"]
  .process-icon-wrap {
  animation-delay: 1.24s;
}
.service-process-section.process-active
  .process-timeline-step[data-step="4"]
  .process-icon-wrap {
  animation-delay: 1.86s;
}
.service-process-section.process-active
  .process-timeline-step[data-step="1"]
  .process-icon-wrap:before {
  transition-delay: 0s;
}
.service-process-section.process-active
  .process-timeline-step[data-step="2"]
  .process-icon-wrap:before {
  transition-delay: 0.62s;
}
.service-process-section.process-active
  .process-timeline-step[data-step="3"]
  .process-icon-wrap:before {
  transition-delay: 1.24s;
}
.service-process-section.process-active
  .process-timeline-step[data-step="4"]
  .process-icon-wrap:before {
  transition-delay: 1.86s;
}
.service-process-section.process-active
  .process-timeline-step[data-step="1"]
  .process-step-number {
  transition-delay: 0s;
  background: var(--orange);
}
.service-process-section.process-active
  .process-timeline-step[data-step="2"]
  .process-step-number {
  transition-delay: 0.62s;
  background: var(--orange);
}
.service-process-section.process-active
  .process-timeline-step[data-step="3"]
  .process-step-number {
  transition-delay: 1.24s;
  background: var(--orange);
}
.service-process-section.process-active
  .process-timeline-step[data-step="4"]
  .process-step-number {
  transition-delay: 1.86s;
  background: var(--orange);
}
.process-progress-fill {
  transition-duration: 2.48s;
}

/* Customer reviews: gentle staggered fade-up, no scale pop */
.reviews-section {
  position: relative;
  overflow: hidden;
}
.reviews-section .review.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  filter: blur(3px);
  transition:
    opacity 0.7s ease,
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.7s ease,
    box-shadow 0.3s ease;
}
.reviews-section .review.reveal-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}
.reviews-section .review:nth-child(1) {
  transition-delay: 0.05s;
}
.reviews-section .review:nth-child(2) {
  transition-delay: 0.17s;
}
.reviews-section .review:nth-child(3) {
  transition-delay: 0.29s;
}
.reviews-section .review:hover {
  box-shadow: 0 26px 58px rgba(11, 37, 62, 0.13);
}

@media (max-width: 900px) {
  .offers-single-row {
    min-height: auto;
    max-height: none;
  }
  .offer-single-col,
  .offer-single-image-col {
    min-height: 0;
  }
  .offer-single,
  .offer-single-image {
    min-height: 310px;
    height: auto;
  }
  .offer-single-image img {
    min-height: 310px;
    height: 100%;
  }
}
@media (max-width: 650px) {
  .topbar {
    display: none;
  }
  .site-header {
    top: 0;
  }
  .offer-single,
  .offer-single-image {
    min-height: 280px;
  }
  .offer-single-image img {
    min-height: 280px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .reviews-section .review.reveal-on-scroll {
    filter: none !important;
  }
}

/* =========================================================
   V22 — true side-by-side coupon, orange glass topbar,
   fixed-image rotating customer reviews
   ========================================================= */
.topbar {
  background: rgba(232, 116, 42, 0.4) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22) !important;
  -webkit-backdrop-filter: blur(9px) saturate(120%);
  backdrop-filter: blur(9px) saturate(120%);
}

/* Coupon: strict horizontal 50 / 50 split on desktop. */
.offer-split-link {
  display: block;
  width: 100%;
}
.offers-single-row {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 0 !important;
  width: 100%;
  min-height: clamp(430px, 64vh, 650px) !important;
  max-height: 650px !important;
}
.offers-single-row > .offer-single-col,
.offers-single-row > .offer-single-image-col {
  flex: 0 0 50% !important;
  width: 50% !important;
  max-width: 50% !important;
  min-height: inherit !important;
}
.offer-single,
.offer-single-image {
  height: 100% !important;
  min-height: inherit !important;
}
.offer-single {
  justify-content: center !important;
}
.offer-single-image img {
  width: 100%;
  height: 100% !important;
  min-height: 0 !important;
  object-fit: cover;
}

/* Reviews: one fixed image + one rotating testimonial. */
.reviews-section {
  background: #fff;
}
.reviews-split-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  min-height: 560px;
  overflow: hidden;
  background: #f8f6f1;
}
.reviews-split-row > .col-6 {
  width: 50%;
  max-width: 50%;
  flex: 0 0 50%;
}
.reviews-fixed-media {
  position: relative;
  overflow: hidden;
  min-height: 560px;
}
.reviews-fixed-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.2, 0.75, 0.2, 1);
}
.reviews-section.reveal-visible .reviews-fixed-media img {
  transform: scale(1.025);
}
.reviews-fixed-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 27, 45, 0.03),
    rgba(7, 27, 45, 0.34)
  );
  pointer-events: none;
}
.reviews-media-badge {
  position: absolute;
  z-index: 2;
  left: 30px;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(11, 37, 62, 0.88);
  color: #fff;
  padding: 14px 18px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}
.reviews-media-badge i {
  color: var(--orange);
}
.reviews-carousel-side {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 5vw, 74px);
  overflow: hidden;
}
.reviews-carousel-side:after {
  content: "“";
  position: absolute;
  right: 32px;
  top: 6px;
  font-size: 12rem;
  line-height: 1;
  color: rgba(232, 116, 42, 0.075);
  font-family: Georgia, serif;
  pointer-events: none;
}
.reviews-carousel {
  position: relative;
  min-height: 260px;
  margin-top: 26px;
}
.reviews-section .review.review-slide {
  position: absolute;
  inset: 0;
  border-top: 3px solid var(--orange);
  box-shadow: none;
  background: #fff;
  padding: 34px;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(36px, 0, 0);
  filter: none;
  transition:
    opacity 0.55s ease,
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s linear 0.7s,
    background-color 0.3s ease;
}
.reviews-section .review.review-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  transition-delay: 0s;
}
.reviews-section .review.review-slide p {
  font-size: 1.08rem;
  line-height: 1.75;
  color: #435666;
  margin: 18px 0 24px;
}
.reviews-section .review.review-slide strong {
  display: block;
  font-size: 1.05rem;
}
.reviews-section .review.review-slide small {
  display: block;
  margin-top: 3px;
}
.reviews-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}
.reviews-controls button {
  width: 46px;
  height: 46px;
  border: 0;
  background: var(--navy);
  color: #fff;
  cursor: pointer;
  transition: background-color 0.25s ease;
}
.reviews-controls button:hover {
  background: var(--orange);
}
.reviews-dots {
  display: flex;
  gap: 7px;
  align-items: center;
}
.reviews-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(11, 37, 62, 0.22);
  transition: 0.3s;
}
.reviews-dots span.is-active {
  width: 22px;
  border-radius: 8px;
  background: var(--orange);
}

@media (max-width: 900px) {
  .offers-single-row {
    flex-wrap: wrap !important;
    max-height: none !important;
    min-height: 0 !important;
  }
  .offers-single-row > .offer-single-col,
  .offers-single-row > .offer-single-image-col {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .offer-single,
  .offer-single-image {
    min-height: 330px !important;
    height: auto !important;
  }
  .offer-single-image img {
    height: 330px !important;
  }
  .reviews-split-row {
    flex-direction: column;
    min-height: 0;
  }
  .reviews-split-row > .col-6 {
    width: 100%;
    max-width: 100%;
    flex-basis: auto;
  }
  .reviews-fixed-media,
  .reviews-fixed-media img {
    min-height: 400px;
    height: 400px;
  }
  .reviews-carousel-side {
    min-height: 500px;
  }
}
@media (max-width: 560px) {
  .offer-single,
  .offer-single-image {
    min-height: 300px !important;
  }
  .offer-single-image img {
    height: 300px !important;
  }
  .reviews-fixed-media,
  .reviews-fixed-media img {
    height: 310px;
    min-height: 310px;
  }
  .reviews-carousel-side {
    padding: 32px 22px;
    min-height: 480px;
  }
  .reviews-carousel {
    min-height: 300px;
  }
  .reviews-section .review.review-slide {
    padding: 28px 24px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .reviews-section .review.review-slide {
    transform: none !important;
    transition: none !important;
  }
  .reviews-fixed-media img {
    transform: none !important;
    transition: none !important;
  }
}

/* V23 — requested coupon + testimonial refinement */
.offer-single-copy {
  max-width: 620px;
}
.offer-price-line {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}
.offer-single-price {
  font-size: clamp(4.4rem, 6.3vw, 7rem) !important;
  line-height: 0.86 !important;
  letter-spacing: -0.055em;
}
.offer-off {
  font-size: clamp(1.25rem, 1.65vw, 1.8rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #fff;
}
.offer-single-title > span:last-child {
  display: block;
  margin-top: 12px;
}
.offer-single-icon {
  display: none !important;
}
.reviews-section {
  padding-top: clamp(80px, 8vw, 130px);
  padding-bottom: clamp(90px, 9vw, 145px);
}
.reviews-section .container {
  max-width: 1120px;
}
.reviews-split-row {
  position: relative;
  overflow: visible;
  background: transparent;
  min-height: 610px;
  align-items: center;
}
.reviews-fixed-media {
  min-height: 540px;
  height: 540px;
  flex: 0 0 44% !important;
  width: 44% !important;
  max-width: 44% !important;
  z-index: 1;
}
.reviews-fixed-media img {
  min-height: 540px;
  height: 540px;
  object-fit: cover;
}
.reviews-fixed-media:after {
  background: linear-gradient(
    180deg,
    rgba(7, 27, 45, 0.02),
    rgba(7, 27, 45, 0.08)
  );
}
.reviews-carousel-side {
  flex: 0 0 56% !important;
  width: 56% !important;
  max-width: 56% !important;
  min-height: 540px;
  padding: 48px 0 40px 34px;
  overflow: visible;
  justify-content: flex-start;
  z-index: 2;
}
.reviews-carousel-side .eyebrow {
  margin-top: 68px;
}
.reviews-carousel-side h2 {
  max-width: 480px;
  margin: 12px 0 0;
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  line-height: 1.03;
}
.reviews-carousel {
  width: calc(100% + 120px);
  min-height: 300px;
  margin-top: 42px;
  margin-left: -120px;
  z-index: 3;
}
.reviews-section .review.review-slide {
  min-height: 275px;
  border-top: 0;
  padding: 36px 40px 34px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 24px 55px rgba(11, 37, 62, 0.1);
  border: 1px solid rgba(11, 37, 62, 0.05);
  transform: translate3d(42px, 0, 0);
}
.reviews-section .review.review-slide:after {
  content: "”";
  position: absolute;
  right: 28px;
  bottom: 8px;
  font:
    900 4.4rem/1 Georgia,
    serif;
  color: var(--orange);
}
.reviews-section .review.review-slide p {
  font-size: 1.04rem;
  line-height: 1.8;
  margin: 20px 0 22px;
  max-width: 94%;
}
.reviews-controls {
  margin-top: 18px;
  margin-left: -120px;
}
@media (max-width: 900px) {
  .reviews-split-row {
    min-height: 0;
    overflow: hidden;
  }
  .reviews-fixed-media,
  .reviews-carousel-side {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .reviews-fixed-media,
  .reviews-fixed-media img {
    height: 390px;
    min-height: 390px;
  }
  .reviews-carousel-side {
    padding: 38px 24px 48px;
    min-height: 500px;
  }
  .reviews-carousel-side .eyebrow {
    margin-top: 0;
  }
  .reviews-carousel {
    width: 100%;
    margin-left: 0;
    margin-top: 28px;
  }
  .reviews-controls {
    margin-left: 0;
  }
}
@media (max-width: 600px) {
  .offer-price-line {
    gap: 10px;
  }
  .offer-single-price {
    font-size: clamp(3.6rem, 18vw, 5.3rem) !important;
  }
  .offer-off {
    font-size: 1.15rem;
  }
  .reviews-fixed-media,
  .reviews-fixed-media img {
    height: 310px;
    min-height: 310px;
  }
  .reviews-section .review.review-slide {
    padding: 28px 24px;
  }
}

/* V24 — larger testimonial quote watermark + more air above slider arrows */
.reviews-carousel-side:after {
  font-size: clamp(9rem, 14vw, 15rem) !important;
  line-height: 0.7 !important;
  right: 10px !important;
  top: 12px !important;
  opacity: 0.085 !important;
}

.reviews-controls {
  margin-top: 42px !important;
}

@media (max-width: 900px) {
  .reviews-carousel-side:after {
    font-size: clamp(7rem, 20vw, 11rem) !important;
    top: 12px !important;
    right: 12px !important;
  }
  .reviews-controls {
    margin-top: 34px !important;
  }
}

/* Final V24 refinement — larger testimonial quote watermark only */
.reviews-carousel-side:after {
  font-size: clamp(11rem, 17vw, 18rem) !important;
  line-height: 0.68 !important;
  opacity: 0.09 !important;
}
@media (max-width: 900px) {
  .reviews-carousel-side:after {
    font-size: clamp(8.5rem, 24vw, 13rem) !important;
  }
}

/* V24 revision — requested refinements only */

/* Reviews: restore the pale background quotation mark, only slightly larger */
.reviews-carousel-side::after {
  content: "“" !important;
  display: block !important;
  position: absolute !important;
  right: 36px !important;
  top: 12px !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(8rem, 10vw, 11rem) !important;
  line-height: 0.8 !important;
  font-weight: 700 !important;
  color: rgba(239, 116, 38, 0.1) !important;
  opacity: 1 !important;
  z-index: 0 !important;
  pointer-events: none !important;
}
.reviews-carousel-side > * {
  position: relative;
  z-index: 1;
}

/* Coupon: $100 orange */
.offer-single-price,
.offer-price-line .offer-single-price {
  color: var(--orange) !important;
}

/* Hero: restore full-screen height */
.hero,
.hero-section,
.home-hero,
.hero-wrap,
.hero-area {
  min-height: 100vh !important;
}
.hero .container,
.hero-section .container,
.home-hero .container,
.hero-wrap .container,
.hero-area .container {
  min-height: 100vh !important;
}
.hero .row,
.hero-section .row,
.home-hero .row,
.hero-wrap .row,
.hero-area .row {
  min-height: 100vh !important;
  align-items: center;
}

@media (max-width: 900px) {
  .reviews-carousel-side::after {
    right: 18px !important;
    top: 8px !important;
    font-size: clamp(6.5rem, 18vw, 9rem) !important;
  }
  .hero,
  .hero-section,
  .home-hero,
  .hero-wrap,
  .hero-area,
  .hero .container,
  .hero-section .container,
  .home-hero .container,
  .hero-wrap .container,
  .hero-area .container,
  .hero .row,
  .hero-section .row,
  .home-hero .row,
  .hero-wrap .row,
  .hero-area .row {
    min-height: 100svh !important;
  }
}

/* ================================
   Footer Social Icons
================================ */

.footer-socials {
       display: flex;
       align-items: center;
       gap: 10px;
       margin-top: 24px;
}

.footer-socials a {
       width: 38px;
       height: 38px;

       display: inline-flex;
       align-items: center;
       justify-content: center;

       background: rgba(255, 255, 255, 0.06);
       color: #e8742a;

       border: 1px solid rgba(255, 255, 255, 0.12);

       font-size: 14px;
       text-decoration: none;

       transition: all 0.3s ease;
}

.footer-socials a:hover {
       background: #e8742a;
       border-color: #e8742a;
       color: #fff;

       transform: translateY(-3px);
}


/* ================================
   Footer Contact Icons
================================ */

.footer-contact-list li {
       display: flex;
       align-items: flex-start;
       gap: 10px;
}

.footer-contact-icon {
       flex: 0 0 auto;

       width: 16px;
       margin-top: 5px;

       color: #e8742a;

       font-size: 13px;
       line-height: 1;
       text-align: center;
}

.footer-contact-list li a,
.footer-contact-list li span {
       flex: 1;
}


/* Keep obfuscated email aligned
   with the other contact details */

#obfuscatedEmail {
       display: inline-block;
}

.bg-navy .col-5 img{
  width: 85%;
  height: auto;
}
