:root {
  --ink: #101820;
  --muted: #5d6975;
  --line: #dde5e8;
  --paper: #f7faf9;
  --white: #ffffff;
  --green: #16a36a;
  --green-dark: #0d704e;
  --amber: #ffb629;
  --red: #e84d43;
  --blue: #244b7a;
  --shadow: 0 24px 70px rgba(16, 24, 32, 0.14);
  --header-height: 78px;
  --header-top-gap: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin-top:-2px !important;
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

body.coupon-modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  min-height: var(--header-height);
  margin-top: var(--header-top-gap);
  margin-bottom: calc((var(--header-height) + var(--header-top-gap)) * -1);
  padding: 14px 10%;
  background: rgba(255, 255, 255, 0);
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 1);
  border-bottom-color: rgba(221, 229, 232, 0.78);
  box-shadow: 0 10px 28px rgba(16, 24, 32, 0.08);
}

body:not(.inner-page) .site-header {
  grid-template-columns: auto minmax(0, 1fr) auto;
  background: rgba(255, 255, 255, 0);
  border-bottom-color: rgba(255, 255, 255, 0);
  box-shadow: none;
}

body:not(.inner-page) .site-header.is-scrolled {
  background: rgba(255, 255, 255, 1);
  border-bottom-color: rgba(221, 229, 232, 0.78);
  box-shadow: 0 10px 28px rgba(16, 24, 32, 0.08);
}

body:not(.inner-page) .brand {
  grid-column: 1 / 2;
}

body:not(.inner-page) .site-header:not(.is-scrolled) .brand {
  transform: translateY(10px);
}

body:not(.inner-page) .site-header.is-scrolled .brand {
  transform: translateY(0);
}

body:not(.inner-page) .nav {
  grid-column: 2 / 3;
  justify-self: right;
}

body:not(.inner-page) .menu-toggle {
  grid-column: 3 / 4;
}

body:not(.inner-page) .header-action {
  grid-column: 3 / 4;
  justify-self: end;
}

.header-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 44px;
  padding: 0 10%;
  color: var(--white);
  background: #202020;
}

.inner-page {
  --header-height: 74px;
}

.inner-page .site-header {
  display: block;
  min-height: var(--header-height);
  padding: 0;
  background: transparent;
  border-bottom: 0;
}

.inner-page .site-header.is-scrolled {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: 0 10px 28px rgba(16, 24, 32, 0.12);
}

@media (min-width: 641px) {
  .inner-page .site-header.is-scrolled {
    min-height: 74px;
    margin-bottom: -74px;
  }
}

.inner-page .header-main {
  background: transparent;
}

.inner-page .site-header.is-scrolled .header-main {
  background: rgba(255, 255, 255, 1);
}

.inner-page .site-header.is-scrolled .nav {
  color: #34424d;
}

.inner-page .site-header.is-scrolled .menu-toggle span {
  background: #34424d;
}

.page-info-bar {
  position: relative;
  z-index: 2;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  min-width: 0;
  font-size: 13px;
  font-weight: 700;
}

.header-contact span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}

.header-contact i {
  color: #f5823a;
}

.topbar-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 26px;
  color: #101820;
  background: #f1732f;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 74px;
  padding: 0 10%;
  background:
    radial-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px) 0 0 / 6px 6px,
    #f1732f;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  position: relative;
  transform: none;
  transition: transform 0.3s ease;
}

.site-header.is-scrolled .brand {
  transform: translateY(0);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--blue));
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.brand-logo {
  height: 50px;
  width: auto;
  display: block;
  transition: opacity 0.3s ease;
}

.brand-logo-dark {
  position: absolute;
  inset: 0 auto auto 0;
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-light {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-dark {
  opacity: 1;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 1.6vw, 24px);
  color: var(--white);
  font-size: 13px;
  font-weight: lighter;
  letter-spacing: 0.12em;
  text-transform: uppercase;

}

.site-header.is-scrolled .nav {
  color: #34424d;
}

.nav-link {
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--amber);
}

.nav-link.is-active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--amber);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  justify-self: end;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--white);
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled .menu-toggle span {
  background: #34424d;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.header-action,
.button,
.quote-form button,
.contact-form button,
.tracking-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  padding: 0 20px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.header-action {
  flex-shrink: 0;
  justify-self: end;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 28px rgba(232, 77, 67, 0.24);
}

.header-action,
.button.primary,
.contact-form button,
.quote-form button {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 28px rgba(232, 77, 67, 0.24);
}

.button.secondary,
.tracking-form button {
  color: var(--ink);
  background: var(--amber);
}

.coupon-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.coupon-modal.is-visible {
  display: flex;
}

.coupon-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 13, 18, 0.68);
  backdrop-filter: blur(5px);
}

.coupon-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.75fr);
  width: min(920px, 100%);
  overflow: hidden;
  border: 2px dashed rgba(16, 24, 32, 0.44);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.coupon-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 28px rgba(16, 24, 32, 0.18);
  cursor: pointer;
}

.coupon-offer {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 360px;
  padding: clamp(30px, 5vw, 58px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 24, 32, 0.94), rgba(16, 24, 32, 0.86)),
    repeating-linear-gradient(35deg, rgba(255, 255, 255, 0.05) 0 2px, transparent 2px 22px),
    #101820;
}

.coupon-offer::after {
  content: "";
  position: absolute;
  top: 0;
  right: -18px;
  width: 36px;
  height: 100%;
  background:
    linear-gradient(135deg, transparent 12px, var(--white) 0) top left / 36px 36px repeat-y;
}

.coupon-kicker {
  margin: 0 0 10px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.coupon-offer h2 {
  margin: 0;
  max-width: 460px;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 0.95;
  text-transform: uppercase;
}

.coupon-offer h2 span {
  display: block;
  color: var(--amber);
}

.coupon-code {
  width: fit-content;
  margin: 24px 0 12px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--amber);
  font-weight: 900;
  text-transform: uppercase;
}

.coupon-note {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.coupon-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  padding: 0 24px;
  color: var(--white);
  background: var(--red);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(232, 77, 67, 0.28);
}

.coupon-review {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  min-height: 360px;
  padding: clamp(26px, 4vw, 44px);
  text-align: center;
  background:
    radial-gradient(circle at top right, rgba(255, 182, 41, 0.2), transparent 36%),
    #ffffff;
}

.coupon-review-logo {
  width: 132px;
  max-height: 60px;
  object-fit: contain;
  margin-bottom: 6px;
}

.coupon-review p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.coupon-review h3 {
  margin: 0;
  max-width: 230px;
  font-size: 22px;
  line-height: 1.16;
}

.coupon-qr {
  width: min(190px, 54vw);
  border: 8px solid var(--paper);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(16, 24, 32, 0.13);
}

.coupon-review-link {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.captcha-field {
  display: grid;
  align-content: end;
  min-height: 78px;
}

.booking-wizard .captcha-field {
  justify-content: end;
  min-height: 72px;
}

.booking-wizard .g-recaptcha {
  transform: scale(0.9);
  transform-origin: right top;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  min-height: 100vh;
  padding: calc(var(--header-height) + clamp(42px, 7vw, 96px)) clamp(18px, 4vw, 64px) 112px;
  overflow: hidden;
  background: #111b24;
  
  padding-left: 10% !important;
    padding-right: 10% !important;
}

.hero-slider,
.hero-slide,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-slider {
  z-index: 0;
}

.hero-slide {
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 700ms ease, transform 1400ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide img,
.hero-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 14, 20, 0.88) 0%, rgba(7, 14, 20, 0.64) 48%, rgba(7, 14, 20, 0.36) 100%),
    linear-gradient(0deg, rgba(7, 14, 20, 0.34), rgba(7, 14, 20, 0.12));
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: min(1320px, 100%);
  max-width: 1320px;
  margin: 0 auto;
  color: var(--white);
  text-align: left;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--amber);
  font-size: 15px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 100%;
  margin: 0 0 22px;
  font-size: clamp(58px, 8vw, 118px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-title {
  max-width: 880px;
  font-size: clamp(58px, 6.6vw, 90px);
  font-weight: 900;
  text-transform: uppercase;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.hero-title.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

.hero-text {
  max-width: 720px;
  margin-left: 0;
  margin-right: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  margin: 42px 0 0;
}

.hero-stats {
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  margin: 0;
}

.hero-stats div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.hero-stats dt {
  font-weight: 800;
}

.hero-stats dd {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.hero-visual img {
  position: absolute;
  right: clamp(-95px, -4vw, -24px);
  bottom: -72px;
  width: min(1040px, 56vw);
  filter: drop-shadow(0 34px 35px rgba(16, 24, 32, 0.24));
}

.slider-controls {
  position: absolute;
  z-index: 4;
  left: 50%;
  transform: translateX(-50%);
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.slider-arrow {
  display: grid;
  place-items: center;
  width: 42px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font: inherit;
  font-size: 24px;
  font-weight: 900;
  cursor: pointer;
  backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.slider-controls:hover .slider-arrow {
  opacity: 1;
}

.slider-arrow:hover,
.slider-dot:hover {
  background: rgba(255, 255, 255, 0.24);
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.slider-dot {
  width: 56px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
}

.slider-dot.is-active {
  background: var(--amber);
}

.page-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 48vh;
  padding: calc(var(--header-height) + 70px) clamp(18px, 6vw, 96px) 84px;
  overflow: hidden;
  color: var(--white);
  background: #101820;
  
  padding-left: 10% !important;
    padding-right: 10% !important;
}

.page-hero-media-frame,
.page-hero-scrim {
  position: absolute;
  inset: 0;
}

.page-hero-media-frame {
  overflow: hidden;
}

.page-hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-scrim {
  background:
    linear-gradient(90deg, rgba(7, 14, 20, 0.86), rgba(7, 14, 20, 0.58)),
    linear-gradient(0deg, rgba(7, 14, 20, 0.24), rgba(7, 14, 20, 0.08));
}

.page-hero-copy {
  position: relative;
  z-index: 2;
  width: min(900px, 100%);
}

.page-hero-copy h1 {
  margin-bottom: 16px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
}

.page-hero-copy p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.5;
}

.page-content {
  padding: 72px clamp(18px, 6vw, 96px);
  background: var(--paper);
}

.page-content-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.page-content h2 {
  margin-bottom: 16px;
  font-size: 31px;
}

.page-content p {
  max-width: 760px;
  color: var(--muted);
}

.inner-section {
  padding: 84px clamp(18px, 6vw, 96px);
  background: var(--white);
}

.inner-section.alt {
  background: #eef7f4;
}

.inner-section.dark {
  color: var(--white);
  background: #101820;
}

.inner-wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-title {
  max-width: 780px;
  margin: 0 0 18px;
  font-size: clamp(26px, 3vw, 31px);
  line-height: 1.15;
}

.section-lede {
  max-width: 760px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.inner-section.dark .section-lede,
.inner-section.dark .feature-card p,
.inner-section.dark .contact-card p {
  color: rgba(255, 255, 255, 0.78);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
}

.split-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-grid,
.service-grid,
.contact-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.service-detail,
.contact-card,
.value-card {
  padding: 24px;
  border: 1px solid rgba(221, 229, 232, 0.86);
  border-radius: 8px;
  background: var(--white);
}

.feature-card i,
.service-detail i,
.contact-card i,
.value-card i {
  color: var(--red);
  font-size: 24px;
}

.feature-card h2,
.service-detail h2,
.contact-card h2,
.value-card h2 {
  margin: 18px 0 10px;
  font-size: 20px;
}

.feature-card p,
.service-detail p,
.contact-card p,
.value-card p,
.service-detail li {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.service-detail ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 18px;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border-radius: 8px;
  background: #101820;
  color: var(--white);
}

.cta-band p {
  max-width: 650px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.contact-card a {
  color: inherit;
}

.map-frame {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(221, 229, 232, 0.86);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
}

.career-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.career-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.career-list i {
  margin-top: 4px;
  color: var(--red);
}

.blog-card {
  border: 1px solid rgba(221, 229, 232, 0.86);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.blog-card {
  overflow: hidden;
}

.blog-card-media {
  position: relative;
  display: block;
  overflow: hidden;
  color: var(--white);
}

.blog-card-media img {
  aspect-ratio: 16 / 10;
  transition: transform 0.25s ease;
}

.blog-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 14, 20, 0.18), rgba(7, 14, 20, 0.82));
  pointer-events: none;
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.03);
}

.blog-card-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 6px;
}

.blog-card-overlay strong {
  color: var(--white);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.15;
}

.blog-card-overlay small {
  max-width: 92%;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  line-height: 1.45;
}

.blog-card-body {
  padding: 22px;
}

.blog-card-body span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-card-body h3 {
  margin: 10px 0;
  font-size: 20px;
  line-height: 1.25;
}

.blog-card-body h3 a {
  color: inherit;
}

.blog-card-body p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.blog-card-body a {
  color: var(--green);
  font-weight: 900;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
}

.pagination a {
  display: grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  border: 1px solid rgba(221, 229, 232, 0.86);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(16, 24, 32, 0.06);
}

.pagination a:hover,
.pagination a.is-active {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.blog-post-hero .page-hero-media {
  object-position: center;
}

.post-section {
  background: #fbfdfc;
}

.post-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(260px, 0.28fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.post-article {
  border: 1px solid rgba(221, 229, 232, 0.86);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.post-lede {
  margin: 0 0 28px;
  color: #24313a;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
}

.post-featured-image {
  overflow: hidden;
  margin: 0 0 28px;
  background: #dde5e8;
}

.post-featured-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.post-content-body {
  padding: 30px;
}

.post-article h2 {
  margin: 34px 0 12px;
  font-size: clamp(22px, 2.3vw, 28px);
  line-height: 1.2;
}

.post-article p,
.post-article li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.post-callout {
  margin: 34px 0;
  padding: 24px;
  border-left: 4px solid var(--red);
  border-radius: 8px;
  background: #eef7f4;
}

.post-callout h2 {
  margin-top: 0;
}

.post-callout ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.post-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  display: grid;
  gap: 16px;
}

.post-side-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(221, 229, 232, 0.86);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.post-side-card h2 {
  margin: 0;
  font-size: 20px;
}

.post-side-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.post-side-card a:not(.button) {
  color: var(--green);
  font-weight: 900;
}

.quick-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.6fr);
  gap: 18px;
  padding: 0 clamp(18px, 4vw, 64px) 72px;
  margin-top: -28px;
}

.quote-form,
.track-card {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.quote-form {
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  align-items: end;
}

.form-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  grid-column: 1 / -1;
}

.form-heading h2 {
  margin-bottom: 2px;
  font-size: 22px;
}

.form-heading p {
  margin-bottom: 0;
  color: var(--muted);
}

.icon-box {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
  font-weight: 900;
}

.icon-box.dark {
  background: var(--blue);
}

label {
  display: grid;
  gap: 7px;
  color: #364652;
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cbd7dc;
  border-radius: 8px;
  padding: 0 13px;
  color: var(--ink);
  background: #fbfdfc;
  font: inherit;
}

textarea {
  min-height: 126px;
  padding-top: 12px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
  outline: 3px solid rgba(232, 77, 67, 0.14);
}

.tracking-form {
  display: flex;
  gap: 10px;
}

.status-line {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 14px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.status-line span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.status-line.is-error,
.status-line.is-success {
  padding: 12px 14px;
  border-radius: 8px;
  font-weight: 800;
}

.status-line.is-error {
  border: 1px solid rgba(232, 77, 67, 0.38);
  color: #9e261f;
  background: rgba(232, 77, 67, 0.09);
  animation: notice-shake 0.28s ease;
}

.status-line.is-error span {
  background: var(--red);
}

.status-line.is-success {
  border: 1px solid rgba(22, 163, 106, 0.3);
  color: var(--green-dark);
  background: rgba(22, 163, 106, 0.08);
}

@keyframes notice-shake {
  0%,
  100% {
    transform: translateX(0);
  }

  35% {
    transform: translateX(-4px);
  }

  70% {
    transform: translateX(4px);
  }
}

.form-link {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  width: fit-content;
}

.form-link:hover {
  text-decoration: underline;
}

.form-stack {
  display: grid;
  gap: 16px;
}

.form-stack .quote-form,
.form-stack .contact-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-stack .full-span,
.form-stack .form-heading,
.form-stack .status-line {
  grid-column: 1 / -1;
}

.booking-wizard {
  align-items: start;
}

.wizard-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  grid-column: 1 / -1;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: wizard-step;
}

.wizard-steps li {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #d7e1e5;
  border-radius: 8px;
  color: var(--muted);
  background: #fbfdfc;
  font-size: 13px;
  font-weight: 900;
}

.wizard-steps li::before {
  counter-increment: wizard-step;
  content: counter(wizard-step);
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--white);
  background: #9aabb4;
  font-size: 12px;
}

.wizard-steps li.is-active {
  border-color: rgba(232, 77, 67, 0.38);
  color: var(--ink);
  background: rgba(232, 77, 67, 0.08);
}

.wizard-steps li.is-active::before {
  background: var(--red);
}

.wizard-steps li.is-complete {
  border-color: rgba(22, 163, 106, 0.36);
  color: var(--green-dark);
  background: rgba(22, 163, 106, 0.08);
}

.wizard-steps li.is-complete::before {
  background: var(--green);
}

.wizard-panel {
  display: none;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.wizard-panel.is-active {
  display: grid;
}

.wizard-panel-heading {
  padding: 4px 0 2px;
}

.wizard-panel-heading h3 {
  margin: 0 0 4px;
  font-size: 20px;
}

.wizard-panel-heading p {
  margin: 0;
  color: var(--muted);
}

.wizard-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 4px;
}

.wizard-actions .wizard-back {
  color: var(--ink);
  background: var(--amber);
  box-shadow: none;
}

.wizard-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.52;
  box-shadow: none;
}

.coupon-apply {
  align-self: end;
}

.booking-review {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.booking-wizard .booking-review {
  justify-items: stretch;
}

.booking-wizard [data-step-panel="2"] {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  align-items: start;
}

.booking-wizard [data-step-panel="2"] .wizard-panel-heading,
.booking-wizard [data-step-panel="2"] .booking-review,
.booking-wizard [data-step-panel="2"] .wizard-actions {
  grid-column: 1 / -1;
}

.booking-wizard [data-step-panel="2"] .coupon-apply,
.booking-wizard [data-step-panel="2"] .captcha-field {
  grid-column: 2 / 3;
}

.review-group {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid #d7e1e5;
  border-radius: 8px;
  background: #fbfdfc;
}

.review-group.full-span {
  grid-column: 1 / -1;
}

.review-group h4 {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
}

.review-group dl {
  display: grid;
  gap: 7px;
  margin: 0;
}

.review-group div {
  display: grid;
  grid-template-columns: minmax(120px, 0.42fr) minmax(0, 1fr);
  gap: 10px;
}

.review-group dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.review-group dd {
  margin: 0;
  color: #2b3a43;
  font-size: 14px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-form {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.section,
.process,
.coverage {
  padding: 76px clamp(18px, 4vw, 64px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-heading h2,
.coverage h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 31px);
  line-height: 1.08;
  letter-spacing: 0;
}

#services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  min-height: auto;
  background: #ffffff;
  padding-left: 10%;
  padding-right: 10%;
}

.services-heading {
  max-width: 1120px;
}

.services-heading h2 {
  margin-bottom: 16px;
  color: #05090d;
  font-size: 31px;
  line-height: 1.15;
}

.services-heading h2 span {
  color: var(--red);
}

.services-heading p {
  max-width: 720px;
  margin-bottom: 0;
  color: #2f3740;
  font-size: 14px;
  line-height: 1.55;
}

.services-product {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.88fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
}

.services-feature h3 {
  margin-bottom: 24px;
  color: #05090d;
  font-size: 31px;
  line-height: 1.12;
}

.services-feature p {
  max-width: 680px;
  margin: 0;
  color: #2f3740;
  font-size: 14px;
  line-height: 1.6;
}

.product-stack {
  position: relative;
  min-height: 430px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(232, 77, 67, 0.08), rgba(86, 124, 235, 0.18)),
    #f6edf1;
}

.product-stack::before,
.product-stack::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 84%;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(232, 77, 67, 0.12), rgba(86, 124, 235, 0.2)),
    #f9e3e4;
}

.product-stack::before {
  top: -42px;
  z-index: 0;
}

.product-stack::after {
  top: -21px;
  z-index: 1;
}

.product-card {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 18px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(232, 77, 67, 0.08), rgba(86, 124, 235, 0.22)),
    #f5edf3;
}

.product-card h3 {
  margin-bottom: 16px;
  color: #05090d;
  font-size: 31px;
  line-height: 1.1;
}

.product-card p {
  max-width: 620px;
  margin-bottom: 24px;
  color: #4e5359;
  font-size: 14px;
  line-height: 1.55;
}

.product-visual {
  display: grid;
  place-items: center;
  min-height: 210px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.22);
}

.warehouse-scene {
  position: relative;
  width: min(310px, 82%);
  aspect-ratio: 1.35;
  overflow: hidden;
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.16) 1px, transparent 1px) 0 0 / 46px 100%,
    linear-gradient(0deg, rgba(16, 24, 32, 0.16) 1px, transparent 1px) 0 0 / 100% 38px,
    linear-gradient(135deg, #c7d3df, #eef2f6 52%, #d6dee7);
  box-shadow: inset 0 -42px 0 rgba(16, 24, 32, 0.08);
}

.warehouse-scene span {
  position: absolute;
  top: 18%;
  bottom: 20%;
  width: 18%;
  background:
    repeating-linear-gradient(0deg, #7a8792 0 9px, #d8b46a 10px 18px, #9f7c37 19px 26px);
}

.warehouse-scene span:nth-child(1) {
  left: 8%;
}

.warehouse-scene span:nth-child(2) {
  left: 41%;
}

.warehouse-scene span:nth-child(3) {
  right: 8%;
}

.warehouse-scene i {
  position: absolute;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 26px rgba(16, 24, 32, 0.18);
}

.warehouse-scene .fa-box {
  left: 28%;
  bottom: 18%;
}

.warehouse-scene .fa-truck-fast {
  right: 26%;
  bottom: 14%;
}

.warehouse-scene .fa-location-dot {
  left: 50%;
  top: 38%;
  transform: translateX(-50%);
  background: #ffa319;
}

.steps h3 {
  margin-bottom: 9px;
  font-size: 20px;
}

.steps p,
.coverage p {
  margin-bottom: 0;
  color: var(--muted);
}

.process {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  padding-left: 10%;
  padding-right: 10%;
  background: #ffffff;
}

section.businesses {
  position: relative;
  overflow: hidden;
  padding: 78px 10%;
  color: var(--white);
  background: #202020;
}

section.businesses::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background:
    radial-gradient(circle at 72% 16%, rgba(255, 255, 255, 0.16) 0 8px, transparent 9px),
    radial-gradient(circle at 78% 72%, rgba(255, 255, 255, 0.16) 0 10px, transparent 11px),
    radial-gradient(circle at 96% 86%, rgba(255, 255, 255, 0.16) 0 9px, transparent 10px),
    linear-gradient(135deg, transparent 0 57%, rgba(255, 255, 255, 0.2) 57.2% 57.6%, transparent 57.8%),
    linear-gradient(45deg, transparent 0 62%, rgba(232, 77, 67, 0.32) 62.2% 62.5%, transparent 62.7%),
    repeating-linear-gradient(45deg, transparent 0 42px, rgba(255, 255, 255, 0.2) 43px 45px, transparent 46px 86px);
}

section.businesses h2,
section.businesses .business-grid {
  position: relative;
  z-index: 1;
}

section.businesses h2 {
  margin: 0 0 54px;
  font-size: clamp(32px, 4vw, 31px);
  line-height: 1.12;
  text-align: center;
}

section.businesses h2 span {
  color: var(--red);
}

section.businesses .business-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(34px, 6vw, 96px);
}

section.businesses .business-grid article {
  max-width: 460px;
}

section.businesses .business-grid i {
  margin-bottom: 24px;
  color: var(--red);
  font-size: 42px;
}

section.businesses .business-grid h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(25px, 2.4vw, 20px);
  line-height: 1.1;
}

section.businesses .business-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.48;
}

.testimonial-intro {
  max-width: 680px;
}

.testimonial-intro h2 {
  margin-bottom: 20px;
  color: #02080e;
  font-size: clamp(34px, 4.5vw, 31px);
  line-height: 1.08;
}

.testimonial-intro h2 span {
  color: var(--red);
}

.testimonial-intro > p:not(.eyebrow) {
  margin-bottom: 0;
  color: #2e3842;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.5;
}

.testimonial-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 22px;
  color: var(--red);
  font-weight: 900;
}

.testimonial-window {
  position: relative;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
  height: 350px;
  padding-right: 10px;
}

.testimonial-window::-webkit-scrollbar {
  display: none;
}

.testimonial-window::before,
.testimonial-window::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  height: 48px;
  pointer-events: none;
}

.testimonial-window::before {
  top: 0;
  background: linear-gradient(#ffffff, rgba(255, 255, 255, 0));
}

.testimonial-window::after {
  bottom: 0;
  background: linear-gradient(rgba(255, 255, 255, 0), #ffffff);
}

.testimonial-track {
  display: grid;
  gap: 38px;
  animation: testimonial-scroll 22s linear infinite;
}

.testimonial-window:hover .testimonial-track {
  animation-play-state: paused;
}

.testimonial {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 128px;
  gap: clamp(22px, 3.2vw, 44px);
  align-items: start;
}

.testimonial-copy {
  color: #30343a;
}

.quote-mark {
  display: block;
  height: 28px;
  color: rgba(232, 77, 67, 0.38);
  font-size: 58px;
  font-weight: 900;
  line-height: 0.8;
}

.testimonial-copy p {
  margin-bottom: 18px;
  color: #444a50;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.46;
}

.testimonial-copy strong,
.testimonial-copy small {
  display: block;
  color: #05090d;
  font-size: 15px;
  line-height: 1.15;
}

.testimonial-copy small {
  font-weight: 800;
}

.testimonial img {
  width: 128px;
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
}

.review-avatar {
  display: grid;
  place-items: center;
  width: 58px;
  aspect-ratio: 1;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(232, 77, 67, 0.96), rgba(20, 157, 112, 0.96)),
    #101820;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 16px 32px rgba(16, 24, 32, 0.16);
}

.testimonial .review-avatar {
  width: 128px;
}

.reviews-heading {
  margin-bottom: 18px;
}

.google-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.google-review-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(221, 229, 232, 0.9);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(16, 24, 32, 0.08);
}

.review-card-top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 13px;
  align-items: center;
}

.review-card-top h2 {
  margin: 0 0 3px;
  font-size: 18px;
  line-height: 1.2;
}

.review-card-top p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.review-rating {
  color: #f5a623;
  font-size: 17px;
  letter-spacing: 0;
}

.google-review-card > p {
  margin: 0;
  color: #37444f;
  font-size: 15px;
  line-height: 1.72;
}

@keyframes testimonial-scroll {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(calc(-75% - 39px));
  }
}

.trusted {
  overflow: hidden;
  width: 100%;
  padding: 26px 0 24px;
  background: #fbeaea;
}

.trusted h2 {
  margin: 0 18px 18px;
  color: #05090d;
  font-size: clamp(22px, 2.6vw, 31px);
  line-height: 1.15;
  text-align: center;
}

.trusted-marquee {
  overflow: hidden;
  width: 100%;
}

.trusted-track {
  --trusted-gap: clamp(38px, 6vw, 86px);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--trusted-gap);
  width: max-content;
  animation: trusted-marquee 32s linear infinite;
  will-change: transform;
}

.trusted-group {
  display: flex;
  flex: 0 0 auto;
  flex-direction: row;
  align-items: center;
  gap: var(--trusted-gap);
  padding-right: var(--trusted-gap);
}

.trusted-marquee:hover .trusted-track {
  animation-play-state: paused;
}

.trusted-group img {
  display: block;
  flex: 0 0 auto;
  width: auto;
  height: clamp(42px, 6vw, 86px);
  max-width: 180px;
  object-fit: contain;
}

@keyframes trusted-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - (var(--trusted-gap) / 2)));
  }
}

.coverage {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  background:
    linear-gradient(135deg, rgba(36, 75, 122, 0.08), rgba(22, 163, 106, 0.1)),
    #f1f6f4;
}

.faq-heading {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.faq-heading .eyebrow {
  color: var(--green-dark);
}

.faq-list {
  display: grid;
  gap: 0;
  background: transparent;
  border-radius: 0;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(16, 24, 32, 0.13);
  transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, padding 0.22s ease;
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item[open] {
  margin-bottom: 18px;
  border-bottom-color: transparent;
  border-radius: 8px;
  padding: 0 clamp(14px, 2vw, 22px);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(16, 24, 32, 0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  min-height: 62px;
  border: 0;
  padding: 12px 0;
  color: #02080e;
  background: transparent;
  font: inherit;
  font-size: clamp(15px, 1.35vw, 15px);
  font-weight: 900;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question i {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--red);
  background: #e9e9e9;
  font-size: 13px;
  transition: transform 0.22s ease;
}

.faq-item[open] .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
}

.faq-answer > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.faq-item[open] .faq-answer {
  display: block;
}

.faq-item[open] .faq-answer > p {
  padding-bottom: 16px;
}

.footer {
  color: var(--white);
  background:
    linear-gradient(rgba(16, 24, 32, 0.88), rgba(16, 24, 32, 0.9)),
    url("https://enovathemes.com/globax/wp-content/uploads/globus_image_large_dark.jpg?id=13226") center / cover no-repeat,
    #101820;
  border-radius: 28px 28px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) repeat(4, minmax(150px, 0.75fr));
  gap: clamp(26px, 4vw, 72px);
  max-width: 1320px;
  margin: 0 auto;
  padding: 76px clamp(18px, 4vw, 64px) 72px;
}

.footer-logo {
  width: 220px;
  height: auto;
  margin-bottom: 24px;
}

.footer-brand-name {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 20px;
  line-height: 1.2;
}

.footer-brand > p {
  max-width: 330px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.footer-socials a,
.footer-contact-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #101820;
  background: var(--white);
  font-size: 14px;
  font-weight: 900;
}

.footer-contact-icon i {
  font-size: 13px;
  line-height: 1;
}

.footer-contact {
  display: grid;
  gap: 18px;
  font-style: normal;
}

.footer-contact div {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
}

.footer-contact p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.45;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 16px;
}

.footer-column h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 18px;
  line-height: 1.2;
}

.footer-column a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.2s ease;
}

.footer-column a {
  font-size: 14px;
}

.footer-column a:hover,
.footer-contact a:hover {
  color: var(--red);
}

.footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding: 20px clamp(18px, 4vw, 64px);
  border-top: 1px solid rgba(255, 255, 255, 0.55);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: var(--white);
}

@media (max-width: 980px) {
  .inner-page {
    --header-height: 74px;
  }

  .inner-page .header-topbar,
  .inner-page .header-main {
    padding-left: clamp(18px, 4vw, 64px);
    padding-right: clamp(18px, 4vw, 64px);
  }

  .inner-page .header-contact {
    gap: 16px;
    overflow: hidden;
    font-size: 12px;
  }

  .inner-page .header-contact span:nth-child(1) {
    display: none;
  }

  .inner-page .topbar-action {
    min-height: 38px;
    padding: 0 18px;
  }

  .nav {
    justify-content: flex-end;
    gap: 18px;
    overflow-x: auto;
  }

  .hero,
  .quick-panel,
  .page-hero,
  #services,
  .process,
  .coverage {
    grid-template-columns: 1fr;
  }

  #services {
    min-height: auto;
  }

  .services-heading h2 {
    font-size: 31px;
  }

  .services-product {
    grid-template-columns: 1fr;
  }

  .product-stack {
    min-height: 420px;
  }

  .testimonial-intro {
    max-width: 760px;
  }

  section.businesses {
    padding: 64px clamp(18px, 4vw, 64px);
  }

  section.businesses .business-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .testimonial-window {
    height: 340px;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 48px);
    padding-bottom: 96px;
  }

  .page-hero {
    min-height: 42vh;
  }

  .split-layout,
  .post-layout,
  .feature-grid,
  .service-grid,
  .contact-grid,
  .values-grid,
  .blog-grid,
  .google-reviews-grid {
    grid-template-columns: 1fr;
  }

  .post-sidebar {
    position: static;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(7, 14, 20, 0.9) 0%, rgba(7, 14, 20, 0.72) 54%, rgba(7, 14, 20, 0.08) 100%),
      linear-gradient(90deg, rgba(7, 14, 20, 0.78), rgba(7, 14, 20, 0.16));
  }

  .hero-visual {
    display: none;
  }

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

  h1 {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .quote-form,
  .contact-form,
  .form-stack .quote-form,
  .form-stack .contact-form,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .coupon-card {
    grid-template-columns: 1fr;
    max-width: 640px;
  }

  .coupon-offer,
  .coupon-review {
    min-height: auto;
  }

  .coupon-offer::after {
    display: none;
  }

  .quote-form button {
    grid-column: 1 / -1;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 62px;
    --header-top-gap: 6px;
  }

  .inner-page {
    --header-height: 64px;
    --header-top-gap: 0px;
  }

  .inner-page .header-topbar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 18px;
  }

  .inner-page .page-info-bar .topbar-action {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    min-height: var(--header-height);
    padding: 6px 18px;
  }

  .inner-page .site-header {
    display: block;
    padding: 0;
  }

  .inner-page .header-main {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    min-height: var(--header-height);
    padding: 6px 18px;
  }

  .brand {
    grid-column: 1 / 2;
    transform: translateY(0);
  }

  .menu-toggle {
    grid-column: 3 / 4;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    height: 42px;
  }

  .nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
    width: 34px;
    height: 34px;
  }

  .header-action {
    display: none;
  }

  .menu-toggle span {
    width: 22px;
    margin: 3px 0;
  }

  .nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    color: #34424d;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px);
    padding: 16px;
    gap: 8px;
    border-bottom: 1px solid rgba(221, 229, 232, 0.5);
  }

  .nav.is-open .nav-link {
    padding: 12px 16px;
    border-radius: 6px;
    transition: background 0.2s ease;
  }

  .nav.is-open .nav-link:hover {
    background: rgba(16, 24, 32, 0.05);
  }

  .hero {
    min-height: 92vh;
    align-items: center;
    padding: calc(var(--header-height) + 56px) 18px 74px;
  }

  .page-hero {
    min-height: 40vh;
    padding: calc(var(--header-height) + 50px) 18px 62px;
  }

  .page-hero-copy h1 {
    font-size: 34px;
  }

  .page-hero-copy p:not(.eyebrow) {
    font-size: 15px;
  }

  .page-content {
    padding: 52px 18px;
  }

  .inner-section {
    padding: 58px 18px;
  }

  .section-title {
    font-size: 28px;
  }

  .blog-card-body,
  .post-article,
  .post-side-card {
    padding: 20px;
  }

  .feature-card,
  .service-detail,
  .contact-card,
  .value-card,
  .cta-band {
    padding: 20px;
  }

  .map-frame iframe {
    min-height: 320px;
  }

  h1 {
    font-size: clamp(38px, 13vw, 54px);
  }

  .hero-title {
    max-width: 92vw;
    font-size: clamp(42px, 13vw, 60px);
    line-height: 1.02;
  }

  .hero-text {
    max-width: 86vw;
    font-size: 17px;
    line-height: 1.42;
  }

  .hero .eyebrow {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 28px;
  }

  .hero-actions .button {
    flex: 1 1 0;
    min-width: 0;
    min-height: 52px;
    padding: 0 14px;
    font-size: 15px;
  }

  .hero-stats,
  .quote-form,
  .contact-form,
  .blog-grid,
  .form-stack .quote-form,
  .form-stack .contact-form,
  .steps {
    grid-template-columns: 1fr;
  }

  .coupon-modal {
    align-items: flex-start;
    padding: 12px;
    overflow-y: auto;
  }

  .coupon-card {
    grid-template-columns: 1fr;
  }

  .coupon-close {
    top: 8px;
    right: 8px;
  }

  .coupon-offer,
  .coupon-review {
    min-height: auto;
    padding: 28px 20px;
  }

  .coupon-offer::after {
    display: none;
  }

  .coupon-offer h2 {
    font-size: clamp(38px, 14vw, 58px);
  }

  .coupon-action {
    width: 100%;
  }

  .wizard-steps {
    grid-template-columns: 1fr;
  }

  .wizard-panel,
  .booking-review {
    grid-template-columns: 1fr;
  }

  .booking-wizard [data-step-panel="2"],
  .booking-wizard [data-step-panel="2"] .coupon-apply,
  .booking-wizard [data-step-panel="2"] .captcha-field {
    grid-column: 1 / -1;
  }

  .booking-wizard [data-step-panel="2"] {
    grid-template-columns: 1fr;
  }

  .booking-wizard .booking-review {
    justify-items: center;
    text-align: left;
  }

  .booking-wizard .review-group {
    width: min(100%, 430px);
  }

  .wizard-actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .review-group div {
    grid-template-columns: minmax(82px, 0.38fr) minmax(0, 1fr);
    gap: 8px;
    text-align: left;
  }

  .captcha-field {
    justify-content: center;
    overflow-x: auto;
  }

  .booking-wizard .captcha-field {
    justify-content: center;
  }

  .booking-wizard .g-recaptcha {
    transform-origin: center top;
  }

  .services-heading h2 {
    font-size: 31px;
  }

  .services-heading p,
  .services-feature p,
  .product-card p {
    font-size: 14px;
  }

  .services-feature h3,
  .product-card h3 {
    font-size: 28px;
  }

  .product-stack {
    min-height: 430px;
  }

  .product-card {
    padding: 24px 18px;
  }

  .product-visual {
    min-height: 220px;
  }

  .testimonial-intro h2 {
    font-size: clamp(32px, 10vw, 46px);
  }

  .testimonial-window {
    height: 390px;
  }

  .testimonial {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .testimonial img {
    width: 96px;
    order: -1;
  }

  .testimonial .review-avatar {
    width: 96px;
    order: -1;
  }

  .testimonial-copy p {
    font-size: 15px;
  }

  .google-review-card {
    min-height: 0;
    padding: 20px;
  }

  .faq-question {
    min-height: 70px;
    font-size: 18px;
  }

  .slider-controls {
    left: 50%;
    transform: translateX(-50%);
    bottom: 22px;
  }

  .slider-arrow {
    width: 38px;
    height: 38px;
  }

  .slider-dot {
    width: 26px;
  }

  .quick-panel {
    margin-top: 0;
  }

  .tracking-form {
    flex-direction: column;
  }

  .footer {
    border-radius: 20px 20px 0 0;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 22px;
    padding-top: 40px;
    padding-bottom: 34px;
  }

  .footer-logo {
    width: 170px;
    margin-bottom: 16px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand > p {
    max-width: 100%;
    font-size: 14px;
  }

  .footer-contact {
    gap: 12px;
  }

  .footer-contact p {
    font-size: 13px;
  }

  .footer-column {
    gap: 9px;
  }

  .footer-column h2 {
    margin-bottom: 4px;
    font-size: 16px;
  }

  .footer-column a {
    font-size: 13px;
    line-height: 1.25;
  }

  .footer-bottom {
    padding: 16px 18px;
  }

  .footer-bottom p {
    font-size: 13px;
  }
}
