*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}
html, body {
  width: 100%;
  margin: 0;
  direction: ltr;
}

body {
  font-family: var(--body-font-family, DM Sans);
  font-size: var(--body-font-size, 16px);
  font-weight: var(--body-font-weight, 400);
  line-height: var(--body-line-height, 1.5);
  text-align: var(--body-text-align, left);
  color: var(--body-color, #000);
  background-color: var(--body-bg, #fff);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

#page {
  background-color: #fff;
}

h1 {
  font-family: var(--heading-1-font-family, DM Sans);
  font-size: var(--heading-1-font-size, 24px);
  font-weight: var(--heading-1-font-weight, 700);
  line-height: var(--heading-1-line-height, 1.5);
  text-align: var(--heading-1-text-align, left);
  color: var(--heading-1-color, #000);
  margin: var(--heading-1-margin, 0 0 16px 0);
}

h2 {
  font-family: var(--heading-2-font-family, DM Sans);
  font-size: var(--heading-2-font-size, 20px);
  font-weight: var(--heading-2-font-weight, 700);
  line-height: var(--heading-2-line-height, 1.5);
  text-align: var(--heading-2-text-align, left);
  color: var(--heading-2-color, #000);
  margin: var(--heading-2-margin, 0 0 16px 0);
}

h3 {
  font-family: var(--heading-3-font-family, DM Sans);
  font-size: var(--heading-3-font-size, 18px);
  font-weight: var(--heading-3-font-weight, 700);
  line-height: var(--heading-3-line-height, 1.5);
  text-align: var(--heading-3-text-align, left);
  color: var(--heading-3-color, #000);
  margin: var(--heading-3-margin, 0 0 16px 0);
}

h4 {
  font-family: var(--heading-4-font-family, DM Sans);
  font-size: var(--heading-4-font-size, 16px);
  font-weight: var(--heading-4-font-weight, 700);
  line-height: var(--heading-4-line-height, 1.5);
  text-align: var(--heading-4-text-align, left);
  color: var(--heading-4-color, #000);
  margin: var(--heading-4-margin, 0 0 16px 0);
}

h5 {
  font-family: var(--heading-5-font-family, DM Sans);
  font-size: var(--heading-5-font-size, 14px);
  font-weight: var(--heading-5-font-weight, 700);
  line-height: var(--heading-5-line-height, 1.5);
  text-align: var(--heading-5-text-align, left);
  color: var(--heading-5-color, #000);
  margin: var(--heading-5-margin, 0 0 16px 0);
}

h6 {
  font-family: var(--heading-6-font-family, DM Sans);
  font-size: var(--heading-6-font-size, 12px);
  font-weight: var(--heading-6-font-weight, 700);
  line-height: var(--heading-6-line-height, 1.5);
  text-align: var(--heading-6-text-align, left);
  color: var(--heading-6-color, #000);
  margin: var(--heading-6-margin, 0 0 16px 0);
}

p {
  font-family: var(--paragraph-font-family, DM Sans);
  font-size: var(--paragraph-font-size, 16px);
  font-weight: var(--paragraph-font-weight, 400);
  line-height: var(--paragraph-line-height, 1.5);
  text-align: var(--paragraph-text-align, left);
  color: var(--paragraph-color, #000);
  margin: var(--paragraph-margin, 0 0 16px 0);
}

a {
  display: var(--link-display, inline);
  font-weight: var(--link-font-weight, inherit);
  color: var(--link-color, #000);
  padding: var(--link-padding, 0);
  text-decoration: none;
  transition: color 100ms;
}

a:hover {
  color: var(--link-hover-color, #000);
}

ul,
ol {
  font-size: var(--list-font-size, inherit);
  font-weight: var(--list-font-weight, inherit);
  color: var(--list-color, inherit);
  list-style: var(--list-style, none);
  margin: var(--list-margin, 0);
  padding: var(--list-padding, 0);
}
ul li,
ol li {
  font-weight: var(--item-font-weight, inherit);
  color: var(--item-color, inherit);
}
ul li:not(:last-child),
ol li:not(:last-child) {
  margin-bottom: var(--item-margin-bottom, 0);
}

b,
strong,
.strong {
  font-weight: 500;
}

svg {
  vertical-align: middle;
}

:root {
  --primary: #071a2b;
  --primaryText: #ffffff;
  --accent: #f59f0a;
  --accentText: #052033;
  --hero-bg1: #071a2b;
  --hero-bg2: #0a2b4a;
  --text-muted: rgba(255, 255, 255, .8);
  --card-bg: rgba(255, 255, 255, .10);
  --bg: #ffffff;
  --card: rgba(255, 255, 255, .95);
  --border: rgba(15, 23, 42, .12);
  --text: #0b1220;
  --muted: rgba(11, 18, 32, .65);
}

.container-narrow {
  width: 1100px;
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: calc(100vh - 112px);
  min-height: calc(100dvh - 112px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--text);
}

.hero-gradient {
  background: radial-gradient(1200px 800px at 20% 10%, rgba(59, 183, 255, 0.18), transparent 60%), linear-gradient(135deg, var(--hero-bg1), var(--hero-bg2));
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding: 6rem 1rem 8rem;
}

@media (min-width: 768px) {
  .hero__inner {
    padding: 5rem 1rem 9rem;
  }
}
.hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  z-index: 0;
}

.hero__pattern-inner {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgb(249, 39, 23);
  color: #ffffff;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  width: fit-content;
  font-weight: 700;
  font-size: 18px;
}

.hero__title {
  font-size: clamp(2.2rem, 4vw, 3.75rem);
  line-height: 1.05;
  margin: 0 0 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  --heading-1-color: #fff;
}

.hero__title-accent {
  display: block;
  background: linear-gradient(90deg, #ffffff, var(--accent));
  background-clip: text;
  color: transparent;
}

.hero__subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 44rem;
  margin: 0 0 2rem;
}

.trustpilot-widget {
  height: 38px;
  width: 234px;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
  --text: #ffffff;
}
.hero__cta .btn--outline {
  border-color: rgba(255, 255, 255, 0.2509803922);
}

@media (min-width: 640px) {
  .hero__cta {
    flex-direction: row;
    align-items: center;
  }
}
#following::after {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 150px at var(--x) var(--y), #fff, transparent);
  mix-blend-mode: overlay;
}

.btn--primary {
  background: var(--accent);
  color: #052033;
  box-shadow: 0 0 0 rgba(59, 183, 255, 0);
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn--primary:hover {
  filter: brightness(0.95);
  transform: translateY(-1px);
  box-shadow: 0 14px 40px rgba(59, 183, 255, 0.22);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

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

@media (min-width: 768px) {
  .hero__trust {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.trust-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--card-bg);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  white-space: nowrap;
}

.trust-card__icon {
  color: var(--accent);
  display: inline-flex;
}

.trust-card__text {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}

.hero__wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 1;
}

[data-animate=fade-in] {
  opacity: 0;
  transform: translateY(8px);
  animation: fadeInUp 0.7s ease forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--card);
  border-bottom: 1px solid var(--border);
}

.topbar {
  display: none;
  background: var(--primary);
  color: var(--primaryText);
}

@media (min-width: 768px) {
  .topbar {
    display: block;
  }
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

.topbar__left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.topbar__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.topbar__link:hover {
  color: var(--accent);
}

.mainnav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  gap: 1rem;
}

.brand {
  display: block;
  text-decoration: none;
  margin-bottom: -1px;
}
.brand img {
  display: block;
  width: 350px;
}

.brand__mark {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--primaryText);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.05rem;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__name {
  font-weight: 800;
  font-size: 1.05rem;
}

.brand__tagline {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

.nav--desktop {
  display: none;
}

@media (min-width: 1024px) {
  .nav--desktop {
    display: block;
  }
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__list a {
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(11, 18, 32, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav__list a:hover {
  color: var(--primary);
}

.header-cta {
  display: none;
  align-items: center;
  gap: 0.75rem;
}
.header-cta .btn--outline {
  background: #4caf50;
  --text: #fff;
}

@media (min-width: 768px) {
  .header-cta {
    display: flex;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 12px;
  padding: 0.9rem 1.05rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text);
  transition: background 0.2s ease;
}

.btn--sm {
  padding: 0.55rem 0.85rem;
  font-size: 0.9rem;
  border-radius: 10px;
}

.btn--primary {
  background: var(--accent);
  color: var(--accentText);
}

.btn--primary:hover {
  filter: brightness(0.95);
}

.btn--outline {
  border-color: rgba(11, 18, 32, 0.18);
}

.btn--outline:hover {
  background: rgba(11, 18, 32, 0.04);
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border: none;
  background: transparent;
  cursor: pointer;
}
.menu-toggle[aria-expanded=false] .menu-toggle_icon--close {
  display: none;
}
.menu-toggle[aria-expanded=true] .menu-toggle_icon--open {
  display: none;
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}
.menu-toggle__icon--close {
  display: none;
}

.nav--mobile {
  border-top: 1px solid var(--border);
  background: var(--bg);
  --link-color: #000;
  --link-hover-color: #000000aa;
  --link-display: block;
  --link-padding: 8px 0;
}

.nav--mobile__inner {
  padding: 1rem 1rem 1.25rem;
}

.nav__list--mobile {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.nav__list--mobile a {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--text);
}

.icon {
  display: inline-flex;
}

.icon--sm {
  width: 16px;
  height: 16px;
}

/* Prevent content hiding behind fixed header */
.site-content {
  padding-top: 133px;
}

.section {
  padding: 5rem 0;
  background: #fff;
  color: var(--text, #0b1220);
}

.section__header {
  margin-bottom: 4rem;
}

.section__header--center {
  text-align: center;
}

.kicker {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--accent, #3bb7ff);
}

.section__title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0.6rem 0 0.8rem;
  letter-spacing: -0.02em;
  --heading-2-color: #000;
}

.section__subtitle {
  max-width: 42rem;
  color: rgba(11, 18, 32, 0.65);
  line-height: 1.65;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.service-card {
  position: relative;
  display: block;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 16px;
  padding: 1.5rem;
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
  color: inherit;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.1);
  border-color: rgba(15, 23, 42, 0.18);
}

.service-card--urgent {
  border-color: rgba(59, 183, 255, 0.35);
}

.service-card__badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--accent, #3bb7ff);
  color: var(--accentText, #052033);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(59, 183, 255, 0.22);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: rgba(7, 26, 43, 0.08);
  color: var(--primary, #071a2b);
}

.service-card--urgent .service-card__icon {
  background: rgba(59, 183, 255, 0.12);
  color: var(--accent, #3bb7ff);
}

.service-card__title {
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.service-card:hover .service-card__title {
  color: var(--primary, #071a2b);
}

.service-card__desc {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(11, 18, 32, 0.65);
}

.section--emergency {
  position: relative;
  overflow: hidden;
  background: var(--primary, #071a2b);
  color: var(--primaryText, #ffffff);
  padding: 5.5rem 0;
}

.emergency__accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: rgba(59, 183, 255, 0.06);
  /* accent/5 */
  transform: skewX(-12deg);
  transform-origin: top right;
  pointer-events: none;
}

.emergency__inner {
  position: relative;
  z-index: 2;
  padding-left: 1rem;
  padding-right: 1rem;
}

.emergency__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .emergency__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
  }
}
.emergency__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(59, 183, 255, 0.2);
  color: var(--accent, #3bb7ff);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.emergency__badge-icon {
  display: inline-flex;
  animation: pulseSlow 2.4s ease-in-out infinite;
}

@keyframes pulseSlow {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.75;
    transform: scale(1.06);
  }
}
.emergency__title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 1.25rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  --heading-2-color: #fff;
}

.emergency__title-accent {
  display: block;
  color: var(--accent, #3bb7ff);
}

.emergency__lead {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 1.75rem;
  max-width: 44rem;
}

.emergency__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.emergency__list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.emergency__check {
  display: inline-flex;
  color: var(--accent, #3bb7ff);
  flex: 0 0 auto;
  margin-top: 0.15rem;
}

.emergency__list-text {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.55;
}

.emergency__cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  --text: #fff;
  --link-hover-color: #ffffff90;
}
.emergency__cta .btn--outline {
  border-color: rgba(255, 255, 255, 0.5647058824);
}

@media (min-width: 640px) {
  .emergency__cta {
    flex-direction: row;
    align-items: center;
  }
}
/* Stats grid */
.emergency__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.stat-card__number {
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  font-weight: 900;
  color: var(--accent, #3bb7ff);
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.stat-card__label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* CTA BAND */
.cta-band {
  background: var(--accent, #3bb7ff);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .cta-band {
    padding: 4rem 0;
  }
}
.cta-band__inner {
  padding-left: 1rem;
  padding-right: 1rem;
}

.cta-band__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .cta-band__content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.cta-band__title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  margin: 0 0 0.35rem;
  color: var(--accentText, #052033);
  letter-spacing: -0.02em;
}

.cta-band__subtitle {
  margin: 0;
  color: rgba(5, 32, 51, 0.8);
  font-size: 1rem;
}

.cta-band__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .cta-band__actions {
    flex-direction: row;
    align-items: center;
  }
}
/* Large buttons for CTA */
.btn--lg {
  padding: 0.95rem 1.25rem;
  font-size: 1rem;
  border-radius: 14px;
}

.btn__icon--end {
  margin-left: 0.5rem;
}

.section--pricing {
  background: rgba(15, 23, 42, 0.04);
  /* muted */
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
  }
}
/* Pricing table */
.pricing-table {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 16px;
  overflow: hidden;
}

.pricing-table__header {
  display: grid;
  grid-template-columns: 2fr 1fr;
  background: var(--primary, #071a2b);
  color: var(--primaryText, #ffffff);
  padding: 1rem 1.25rem;
  font-weight: 800;
}

.pricing-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  padding: 1rem 1.25rem;
  align-items: center;
}

.pricing-row--even {
  background: #fff;
}

.pricing-row--odd {
  background: rgba(15, 23, 42, 0.04);
}

.pricing-row__title {
  font-weight: 700;
  color: var(--text, #0b1220);
}

.pricing-row__note {
  font-size: 0.85rem;
  color: rgba(11, 18, 32, 0.65);
}

.pricing-row__price {
  font-weight: 800;
  color: var(--primary, #071a2b);
}

/* Included box */
.pricing-included {
  background: var(--primary, #071a2b);
  color: var(--primaryText, #ffffff);
  border-radius: 16px;
  padding: 2rem;
}

.pricing-included__title {
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 1.25rem;
  --heading-3-color: #fff;
}

.pricing-included__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-included__item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.pricing-included__icon {
  color: var(--accent, #3bb7ff);
  display: inline-flex;
}

.pricing-included__cta {
  width: 100%;
  justify-content: center;
}

/* Disclaimer */
.pricing-disclaimer {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(11, 18, 32, 0.65);
  margin-top: 2rem;
}

.section--areas {
  background: #fff;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .areas-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
}
@media (min-width: 1024px) {
  .areas-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
.area-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.area-chip:hover {
  border-color: rgba(7, 26, 43, 0.3);
  background: rgba(7, 26, 43, 0.05);
  transform: translateY(-1px);
}

.area-chip__icon {
  display: inline-flex;
  color: #2196f3;
  flex-shrink: 0;
}

.area-chip__text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text, #0b1220);
}

.areas-note {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(11, 18, 32, 0.65);
}

.areas-note__link {
  color: var(--primary, #071a2b);
  font-weight: 700;
  text-decoration: none;
  margin-left: 0.25rem;
}

.areas-note__link:hover {
  text-decoration: underline;
}

.section--reviews {
  background: rgba(15, 23, 42, 0.04);
  /* muted */
}

.reviews-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin: 1rem 0 0.75rem;
  color: var(--accent, #3bb7ff);
}

.reviews-subtext {
  color: rgba(11, 18, 32, 0.65);
  font-size: 0.95rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.review-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.review-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.1);
  border-color: rgba(15, 23, 42, 0.18);
}

.review-card__quote {
  color: rgba(59, 183, 255, 0.3);
  margin-bottom: 1rem;
}

.review-card__text {
  margin: 0 0 1.25rem;
  color: var(--text, #0b1220);
  line-height: 1.7;
}

.review-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.review-card__name {
  font-weight: 800;
  color: var(--text, #0b1220);
}

.review-card__location {
  font-size: 0.85rem;
  color: rgba(11, 18, 32, 0.65);
}

.review-card__service {
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(7, 26, 43, 0.08);
  color: var(--primary, #071a2b);
  white-space: nowrap;
}

.review-card__rating {
  display: flex;
  gap: 0.25rem;
  margin-top: 1rem;
  color: var(--accent, #3bb7ff);
}

.section--faq {
  background: #fff;
}

.faq__inner {
  max-width: 820px;
  /* matches your max-w-3xl */
  padding-left: 1rem;
  padding-right: 1rem;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  /* space-y-4 */
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item.is-open {
  border-color: rgba(7, 26, 43, 0.3);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  background: transparent;
  border: none;
  padding: 1.25rem 1.5rem;
  /* py-5 px-6 */
  cursor: pointer;
  color: var(--text, #0b1220);
  font-weight: 700;
}

.faq-trigger:hover {
  color: var(--primary, #071a2b);
}

.faq-icon {
  display: inline-flex;
  transition: transform 0.2s ease;
  color: rgba(11, 18, 32, 0.7);
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
}

.faq-panel {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.faq-content {
  padding: 1.25rem 1.5rem;
  /* pb-5 */
  color: rgba(11, 18, 32, 0.65);
  line-height: 1.7;
}

.section--callback {
  background: var(--primary, #071a2b);
  color: var(--primaryText, #fff);
  padding: 5.5rem 0;
}

.callback__inner {
  padding-left: 1rem;
  padding-right: 1rem;
}

.callback-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .callback-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}
.callback-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0.6rem 0 1.25rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  --heading-2-color: #fff;
}

.callback-lead {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 2rem;
  max-width: 44rem;
}

.callback-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.92);
}

.step__num {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(59, 183, 255, 0.2);
  color: var(--accent, #3bb7ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.callback-card {
  background: #fff;
  color: var(--text, #0b1220);
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  padding: 1.5rem;
  --paragraph-color: var(--text, #0b1220);
}

@media (min-width: 768px) {
  .callback-card {
    padding: 2rem;
  }
}
.callback-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}

@media (min-width: 768px) {
  .field-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.wpforms-field label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.45rem;
  color: var(--text, #0b1220);
}

.wpforms-field input,
.wpforms-field select,
.wpforms-field textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: #fff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-size: 1rem;
}

.wpforms-field input:focus,
.wpforms-field select:focus,
.wpforms-field textarea:focus {
  border-color: rgba(59, 183, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(59, 183, 255, 0.18);
}

.callback-submit {
  width: 100%;
  justify-content: center;
}

.callback-legal {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(11, 18, 32, 0.6);
  text-align: center;
}

/* Honeypot hidden */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Success state */
.callback-success {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  color: var(--text, #0b1220);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(15, 23, 42, 0.12);
}

@media (min-width: 768px) {
  .callback-success {
    padding: 3rem;
  }
}
.callback-success__icon {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: rgba(59, 183, 255, 0.12);
  color: var(--accent, #3bb7ff);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.callback-success__title {
  font-size: 1.6rem;
  font-weight: 900;
  margin: 0 0 0.75rem;
}

.callback-success__text {
  color: rgba(11, 18, 32, 0.7);
  line-height: 1.7;
  margin: 0 0 1.25rem;
}

.callback-success__link {
  color: var(--primary, #071a2b);
  font-weight: 900;
  text-decoration: none;
}

.callback-success__link:hover {
  text-decoration: underline;
}

.site-footer {
  background: var(--primary, #071a2b);
  color: var(--primaryText, #ffffff);
}

.site-footer__top {
  padding: 5rem 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.social-medias {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 14px;
  padding-top: 24px;
  --heading-4-color: #fff;
  --heading-4-margin: 0;
}
.social-medias a {
  display: block;
  transition: transform 0.2s;
}
.social-medias a:hover {
  transform: translateY(-3px);
}
.social-medias img {
  display: block;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.footer-brand__row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.footer-brand__mark {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--accent, #3bb7ff);
  color: var(--accentText, #052033);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.05rem;
}

.footer-brand__name {
  font-weight: 900;
  font-size: 1.1rem;
}

.footer-brand__desc {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-badge {
  display: inline-block;
  background: rgba(59, 183, 255, 0.2);
  color: var(--accent, #3bb7ff);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
}

.footer-col__title {
  margin: 0 0 1.25rem;
  font-weight: 900;
  font-size: 1.05rem;
  --heading-4-color: #fff;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent, #3bb7ff);
}

.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  --link-color: #fff;
  --link-hover-color: #f59f0a;
}

.footer-contact__icon {
  color: var(--accent, #3bb7ff);
  display: inline-flex;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.footer-contact__link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 0.95rem;
}

.footer-contact__link--strong {
  font-weight: 900;
  color: rgba(255, 255, 255, 0.92);
}

.footer-contact__link:hover {
  color: var(--accent, #3bb7ff);
}

.footer-contact__muted {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-top: 0.2rem;
}

.footer-contact__text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Bottom bar */
.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom__inner {
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom__inner {
    flex-direction: row;
    text-align: left;
  }
}
.footer-bottom__copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.fab-container {
  position: fixed;
  bottom: 28px;
  right: 32px;
  z-index: 10;
}
.fab-container .fab-main {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  padding: 0;
  outline: none;
  border: 0;
  background: #4267b2;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  z-index: 1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3764705882);
}
.fab-container .fab-action {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  padding: 0;
  outline: none;
  background-color: #41c452;
  cursor: pointer;
  transition: transform 0.35s, opacity 0.35s;
  opacity: 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2509803922);
  border: 1px solid rgba(0, 0, 0, 0.062745098);
}
.fab-container .fab-action:hover .tooltip {
  opacity: 1;
}
.fab-container .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.35s, opacity 0.15s;
  transform-origin: center center;
}
.fab-container .icon-open {
  opacity: 1;
}
.fab-container .icon-close {
  opacity: 0;
}
.fab-container .tooltip {
  position: absolute;
  right: calc(100% + 14px);
  background-color: #555;
  color: #fff;
  text-align: center;
  padding: 5px 8px;
  border-radius: 6px;
  z-index: 1;
  transition: opacity 0.6s;
  opacity: 0;
  font-size: 14px;
}
.fab-container.active .fab-action {
  opacity: 1;
}
.fab-container.active .fab-action:nth-child(2) {
  transform: translate(-50%, calc(-50% - 66px));
}
.fab-container.active .fab-action:nth-child(3) {
  transform: translate(-50%, calc(-50% - 132px));
}
.fab-container.active .icon-open {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(360deg);
}
.fab-container.active .icon-close {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(360deg);
}

@media (max-width: 767px) {
  .fab-container {
    bottom: 84px;
  }
}
/* MOBILE BOTTOM BAR */
.mobile-bottom-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: var(--primary, #071a2b);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: env(safe-area-inset-bottom);
}

/* Hide on tablet & desktop */
@media (min-width: 768px) {
  .mobile-bottom-bar {
    display: none;
  }
}
.mobile-bottom-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}

.mobile-bottom-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.65rem 0 0.75rem;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  background: transparent;
  border: none;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s ease;
}

.mobile-bottom-bar__item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.mobile-bottom-bar__icon {
  display: inline-flex;
  color: var(--accent, #3bb7ff);
}

.mobile-bottom-bar__label {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.1;
}

/* Accent (callback) */
.mobile-bottom-bar__item--accent {
  background: var(--accent, #3bb7ff);
  color: var(--accentText, #052033);
}

.mobile-bottom-bar__item--accent:hover {
  background: rgba(59, 183, 255, 0.9);
}

.section--google-reviews {
  background: #fff;
}

.google-reviews-embed {
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.08);
}

.google-reviews-embed iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.google-reviews-actions {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
}

.services-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

.services-header h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.services-header p {
  max-width: 700px;
  --paragraph-color: #555;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.service-card {
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  padding: 20px;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.service-card ul {
  padding-left: 18px;
  line-height: 1.7;
}

.service-note {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 10px;
}

.services-footer {
  margin-top: 30px;
  padding: 20px;
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  --heading-3-color: #000;
}

.services-scope h3 {
  margin-bottom: 6px;
}

.services-scope p {
  color: #555;
}

.services-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-secondary {
  border: 1px solid #111;
  color: #111;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
}

.flip-card {
  background-color: transparent;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  height: 100%;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front {
  position: absolute;
  inset: 0;
}
.flip-card-front img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.flip-card-front, .flip-card-back {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  backface-visibility: hidden;
}

.flip-card-back {
  transform: rotateY(180deg);
}

.about-page {
  margin-top: 32px;
}
.about-page section {
  margin-bottom: 32px;
}
.about-page .swiper {
  user-select: none;
  background-color: #f59f0a;
  padding: 16px 0;
}
.about-page .swiper img {
  width: 100%;
}
.about-page .swiper-slide {
  flex-basis: 255px;
  width: 255px;
  height: 167px;
  display: flex;
  align-items: center;
  justify-content: center;
}