:root {
  --navy: #071d35;
  --navy-soft: #0b2440;
  --blue: #1787d6;
  --cyan: #20c7c9;
  --gold: #d8b15d;
  --gold-soft: #f2d78f;
  --mint: #dff8f4;
  --ice: #f4fbff;
  --gray: #64748b;
  --gray-soft: #e7eef5;
  --white: #ffffff;
  --ink: #102033;
  --shadow: 0 18px 45px rgba(7, 29, 53, 0.12);
  --shadow-strong: 0 26px 70px rgba(7, 29, 53, 0.22);
  --radius: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

body.preloader-active {
  overflow: hidden;
}

.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 38%, rgba(32, 199, 201, 0.18), transparent 32%),
    linear-gradient(135deg, #03111f 0%, #071d35 52%, #0b2440 100%);
  overflow: hidden;
  animation: preloaderFallbackHide 4.7s ease forwards;
}

.site-preloader::before,
.site-preloader::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.site-preloader::before {
  width: min(520px, 82vw);
  height: min(520px, 82vw);
  border: 1px solid rgba(32, 199, 201, 0.2);
  box-shadow: inset 0 0 70px rgba(32, 199, 201, 0.12);
  animation: preloaderPulse 2.4s ease-in-out infinite;
}

.site-preloader::after {
  width: min(780px, 110vw);
  height: min(780px, 110vw);
  background: conic-gradient(from 140deg, transparent, rgba(216, 177, 93, 0.2), transparent 34%, rgba(32, 199, 201, 0.18), transparent 70%);
  filter: blur(18px);
  opacity: 0.65;
  animation: preloaderSweep 5s linear infinite;
}

.site-preloader.preloader-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  animation: none;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.preloader-card {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(420px, 100%);
  padding: 38px 30px 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
  text-align: center;
}

.preloader-logo-wrap {
  position: relative;
  display: grid;
  place-items: center;
  width: 178px;
  height: 112px;
  margin-bottom: 18px;
  overflow: hidden;
}

.preloader-logo-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.28));
  animation: preloaderLogoFloat 2.4s ease-in-out infinite;
}

.preloader-shine {
  position: absolute;
  inset: -45% auto -45% -70%;
  width: 46%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  animation: preloaderShine 2.2s ease-in-out infinite;
}

.preloader-copy {
  display: grid;
  gap: 2px;
  margin-bottom: 22px;
}

.preloader-copy strong {
  color: var(--white);
  font-size: 1.45rem;
  letter-spacing: 0;
}

.preloader-copy span {
  color: var(--gold-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.preloader-progress {
  width: min(260px, 74vw);
  height: 7px;
  padding: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.preloader-progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
  transform-origin: left;
  animation: preloaderProgress 3.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.preloader-card p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

@keyframes preloaderFallbackHide {
  0%, 86% {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@keyframes preloaderPulse {
  0%, 100% {
    transform: scale(0.92);
    opacity: 0.58;
  }
  50% {
    transform: scale(1.02);
    opacity: 1;
  }
}

@keyframes preloaderSweep {
  to {
    transform: rotate(360deg);
  }
}

@keyframes preloaderLogoFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@keyframes preloaderShine {
  0% {
    left: -70%;
  }
  55%, 100% {
    left: 122%;
  }
}

@keyframes preloaderProgress {
  from {
    transform: scaleX(0.08);
  }
  to {
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-preloader,
  .site-preloader::before,
  .site-preloader::after,
  .preloader-logo-wrap img,
  .preloader-shine,
  .preloader-progress span {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
  }
}

@media (max-width: 575px) {
  .site-preloader {
    padding: 18px;
  }

  .preloader-card {
    padding: 30px 20px 26px;
    border-radius: 24px;
  }

  .preloader-logo-wrap {
    width: 146px;
    height: 92px;
  }

  .preloader-copy strong {
    font-size: 1.25rem;
  }

  .preloader-card p {
    font-size: 0.8rem;
  }
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 104px 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
}

.section-heading {
  width: min(760px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2,
.about-copy h2,
.comparison-copy h2,
.service-areas-copy h2,
.contact-form-wrap h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.14;
}

.section-heading p,
.about-copy p,
.comparison-copy p,
.service-areas-copy p,
.contact-info p {
  color: var(--gray);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, #061728, var(--navy-soft) 45%, var(--gold));
  box-shadow: 0 16px 30px rgba(216, 177, 93, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 20px 38px rgba(216, 177, 93, 0.38);
}

.btn-light {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
}

.btn-text {
  min-height: auto;
  padding: 0;
  color: var(--blue);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  --header-bg: rgba(7, 29, 53, 0.82);
  --header-border: rgba(255, 255, 255, 0.14);
  --header-shadow: 0 14px 38px rgba(7, 29, 53, 0.18);
  --header-brand: var(--white);
  --header-pill-bg: rgba(255, 255, 255, 0.1);
  --header-pill-border: rgba(255, 255, 255, 0.18);
  --header-link: rgba(255, 255, 255, 0.9);
  --header-link-active: var(--white);
  --header-link-active-bg: rgba(255, 255, 255, 0.16);
  --header-link-shadow: inset 0 0 0 1px rgba(216, 177, 93, 0.2), 0 8px 18px rgba(0, 0, 0, 0.1);
  --header-toggle-bg: rgba(255, 255, 255, 0.12);
  --header-toggle-line: var(--white);
  --header-line: linear-gradient(90deg, var(--navy), var(--gold) 48%, var(--cyan));
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-border);
  box-shadow: var(--header-shadow);
  backdrop-filter: blur(18px);
  transition: background 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--header-line);
}

.site-header.scrolled {
  box-shadow: var(--header-shadow);
}

.site-header[data-theme="light"] {
  --header-bg: rgba(255, 255, 255, 0.88);
  --header-border: rgba(226, 232, 240, 0.88);
  --header-shadow: 0 14px 36px rgba(7, 29, 53, 0.11);
  --header-brand: var(--navy);
  --header-pill-bg: rgba(248, 250, 252, 0.82);
  --header-pill-border: rgba(226, 232, 240, 0.92);
  --header-link: var(--navy);
  --header-link-active: var(--navy);
  --header-link-active-bg: rgba(255, 255, 255, 0.94);
  --header-link-shadow: inset 0 0 0 1px rgba(216, 177, 93, 0.28), 0 8px 18px rgba(7, 29, 53, 0.08);
  --header-toggle-bg: rgba(7, 29, 53, 0.08);
  --header-toggle-line: var(--navy);
}

.site-header[data-theme="ice"] {
  --header-bg: rgba(236, 250, 255, 0.9);
  --header-border: rgba(32, 199, 201, 0.18);
  --header-shadow: 0 14px 36px rgba(23, 135, 214, 0.12);
  --header-brand: var(--navy);
  --header-pill-bg: rgba(255, 255, 255, 0.62);
  --header-pill-border: rgba(32, 199, 201, 0.2);
  --header-link: var(--navy);
  --header-link-active: var(--navy);
  --header-link-active-bg: rgba(255, 255, 255, 0.96);
  --header-link-shadow: inset 0 0 0 1px rgba(32, 199, 201, 0.2), 0 8px 18px rgba(23, 135, 214, 0.08);
  --header-toggle-bg: rgba(32, 199, 201, 0.12);
  --header-toggle-line: var(--navy);
  --header-line: linear-gradient(90deg, var(--cyan), var(--blue) 52%, var(--gold));
}

.site-header[data-theme="aqua"] {
  --header-bg: rgba(6, 57, 76, 0.78);
  --header-border: rgba(141, 239, 240, 0.22);
  --header-shadow: 0 16px 40px rgba(7, 29, 53, 0.2);
  --header-brand: var(--white);
  --header-pill-bg: rgba(255, 255, 255, 0.12);
  --header-pill-border: rgba(141, 239, 240, 0.22);
  --header-link: rgba(255, 255, 255, 0.9);
  --header-link-active: var(--white);
  --header-link-active-bg: rgba(141, 239, 240, 0.15);
  --header-link-shadow: inset 0 0 0 1px rgba(141, 239, 240, 0.24), 0 8px 18px rgba(0, 0, 0, 0.12);
  --header-toggle-bg: rgba(255, 255, 255, 0.13);
  --header-toggle-line: var(--white);
  --header-line: linear-gradient(90deg, var(--blue), var(--cyan) 54%, var(--gold));
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--header-brand);
  transition: color 0.28s ease;
}

.brand-mark {
  display: grid;
  width: 78px;
  height: 54px;
  place-items: center;
  border-radius: 0;
  color: var(--white);
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.brand-mark img {
  width: 68px;
  height: 42px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
  letter-spacing: 0;
}

.brand small {
  margin-top: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.94;
}

.nav-panel,
.nav-links {
  display: flex;
  align-items: center;
}

.nav-panel {
  gap: 18px;
}

.nav-links {
  gap: 4px;
  padding: 6px;
  margin: 0;
  border: 1px solid var(--header-pill-border);
  border-radius: 999px;
  background: var(--header-pill-bg);
  list-style: none;
  transition: background 0.28s ease, border-color 0.28s ease;
}

.nav-links a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--header-link);
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active {
  color: var(--header-link-active);
  background: var(--header-link-active-bg);
  box-shadow: var(--header-link-shadow);
  outline: none;
}

.nav-links a.active {
  color: var(--header-link-active);
  box-shadow: var(--header-link-shadow);
}

.nav-cta.btn-primary {
  min-height: 48px;
  padding-inline: 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy) 0%, #0a2747 56%, var(--gold));
  box-shadow: 0 14px 28px rgba(7, 29, 53, 0.18);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: var(--header-toggle-bg);
  cursor: pointer;
  transition: background 0.28s ease;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: var(--header-toggle-line);
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 29, 53, 0.9) 0%, rgba(7, 29, 53, 0.68) 48%, rgba(7, 29, 53, 0.24) 100%),
    url("https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1800&q=82") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), var(--white));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.62fr);
  gap: 56px;
  align-items: center;
  padding: 132px 0 92px;
}

.hero .section-kicker {
  color: var(--gold-soft);
}

.hero .section-kicker::before {
  background: linear-gradient(90deg, var(--gold-soft), #8deff0);
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 1.02;
}

.hero p {
  max-width: 700px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.7vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-panel {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(18px);
}

.hero-panel-top {
  padding: 10px 8px 20px;
}

.hero-panel-top span {
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-panel-top strong {
  display: block;
  margin-top: 8px;
  font-size: 1.38rem;
  line-height: 1.25;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.trust-item {
  position: relative;
  isolation: isolate;
  min-height: 124px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, color 0.35s ease;
}

.trust-item::before,
.trust-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.trust-item::before {
  background: linear-gradient(135deg, var(--navy-soft), var(--blue) 55%, var(--cyan));
}

.trust-item::after {
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.34), transparent 36%);
}

.trust-item:hover,
.trust-item:focus-within {
  color: var(--white);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 45px rgba(32, 199, 201, 0.32), 0 0 0 1px rgba(141, 239, 240, 0.36);
}

.trust-item:hover::before,
.trust-item:hover::after,
.trust-item:focus-within::before,
.trust-item:focus-within::after {
  opacity: 1;
}

.trust-item span {
  display: block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  transition: color 0.35s ease;
}

.trust-item:hover span,
.trust-item:focus-within span {
  color: var(--gold-soft);
}

.trust-item strong {
  display: block;
  margin-top: 18px;
  line-height: 1.25;
}

.services {
  background: linear-gradient(180deg, var(--white), var(--ice));
}

.service-grid,
.feature-grid,
.testimonial-grid,
.blog-grid {
  display: grid;
  gap: 22px;
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.feature-card,
.testimonial-card,
.blog-card,
.contact-form-wrap,
.contact-info {
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.service-card,
.blog-card {
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 432px;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 210px;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(135deg, rgba(2, 7, 13, 0.5), rgba(11, 36, 64, 0.38)),
    linear-gradient(45deg, rgba(216, 177, 93, 0.16), transparent 56%);
  transition: opacity 0.3s ease;
}

.service-card:hover,
.blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(32, 199, 201, 0.4);
  box-shadow: var(--shadow);
}

.service-card.detail-open {
  transform: translateY(-8px);
  border-color: rgba(216, 177, 93, 0.72);
  box-shadow: 0 24px 58px rgba(7, 29, 53, 0.14), 0 0 0 1px rgba(216, 177, 93, 0.16);
}

.service-card.detail-open::before {
  opacity: 1;
}

.service-card img,
.blog-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.service-card img {
  display: block;
  transition: transform 0.32s ease, filter 0.32s ease;
}

.service-card:hover img,
.service-card.detail-open img {
  transform: scale(1.035);
}

.service-card.detail-open img {
  filter: brightness(0.72) saturate(0.95);
}

.service-card div,
.blog-card div {
  padding: 24px;
}

.service-card > div {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.service-card h3,
.feature-card h3,
.testimonial-card h3,
.blog-card h3,
.contact-info h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.25;
}

.service-card p,
.feature-card p,
.testimonial-card p,
.blog-card p {
  margin: 12px 0 18px;
  color: var(--gray);
}

.service-summary {
  max-height: 86px;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
  transition: max-height 0.3s ease, opacity 0.24s ease, margin 0.3s ease, transform 0.3s ease;
}

.service-card.detail-open .service-summary {
  max-height: 0;
  margin: 0;
  opacity: 0;
  transform: translateY(-8px);
}

.service-detail {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(14px);
  border: 1px solid rgba(216, 177, 93, 0);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.86)),
    radial-gradient(circle at 18% 0%, rgba(216, 177, 93, 0.16), transparent 34%);
  box-shadow: 0 16px 34px rgba(7, 29, 53, 0);
  transition: max-height 0.34s ease, opacity 0.28s ease, transform 0.34s ease, padding 0.34s ease, margin 0.34s ease, border-color 0.34s ease, box-shadow 0.34s ease;
}

.service-card.detail-open .service-detail {
  max-height: 232px;
  margin: 14px 0 18px;
  padding: 15px;
  opacity: 1;
  transform: translateY(0);
  border-color: rgba(216, 177, 93, 0.42);
  box-shadow: 0 16px 34px rgba(7, 29, 53, 0.08);
}

.service-detail h4 {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.25;
}

.service-detail h4 span {
  display: grid;
  place-items: center;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(32, 199, 201, 0.14);
  color: var(--turquoise);
  font-size: 0.78rem;
}

.service-detail p {
  margin: 0;
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.62;
}

.service-toggle {
  width: fit-content;
  margin-top: auto;
  border: 0;
  border-radius: 999px;
  padding: 11px 17px;
  background: rgba(11, 36, 64, 0.06);
  color: var(--navy-soft);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.service-toggle:hover,
.service-toggle:focus-visible,
.service-card.detail-open .service-toggle {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-soft), #061728 52%, var(--gold));
  box-shadow: 0 14px 26px rgba(216, 177, 93, 0.24);
}

.service-toggle:hover,
.service-toggle:focus-visible {
  transform: translateY(-2px);
}

.service-toggle:focus-visible {
  outline: 3px solid rgba(32, 199, 201, 0.26);
  outline-offset: 3px;
}

.service-page-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 12px;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 800;
  transition: color 0.2s ease, transform 0.2s ease;
}

.service-page-link:hover,
.service-page-link:focus-visible {
  color: var(--navy);
  transform: translateX(3px);
  outline: none;
}

.comparison {
  background:
    radial-gradient(circle at 12% 12%, rgba(32, 199, 201, 0.12), transparent 30%),
    linear-gradient(180deg, var(--ice), var(--white));
}

.comparison-layout,
.service-areas-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 54px;
  align-items: center;
}

.comparison-copy p,
.service-areas-copy p {
  margin: 18px 0;
}

.comparison-points {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.comparison-points div {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr;
  column-gap: 13px;
  row-gap: 3px;
  align-items: center;
  padding: 17px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 251, 255, 0.88));
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.07);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.comparison-points div:hover {
  transform: translateY(-4px);
  border-color: rgba(32, 199, 201, 0.46);
  box-shadow: 0 20px 42px rgba(7, 29, 53, 0.11);
}

.comparison-points span {
  display: grid;
  grid-row: span 2;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-weight: 800;
}

.comparison-points strong {
  color: var(--navy);
  line-height: 1.2;
}

.comparison-points small {
  color: var(--gray);
  font-size: 0.85rem;
  line-height: 1.45;
}

.comparison-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
  padding: 18px;
  border: 1px solid rgba(32, 199, 201, 0.28);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

.comparison-cta strong {
  color: var(--navy);
  line-height: 1.25;
}

.comparison-showcase {
  display: grid;
  gap: 14px;
}

.comparison-slider {
  position: relative;
  --position: 50%;
  min-height: 470px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  background:
    linear-gradient(135deg, rgba(7, 29, 53, 0.1), rgba(32, 199, 201, 0.14)),
    #e8f6fb;
  user-select: none;
}

.comparison-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 29, 53, 0.42), rgba(7, 29, 53, 0.14) 46%, rgba(255, 255, 255, 0.06) 54%, rgba(255, 255, 255, 0.12)),
    radial-gradient(circle at 24% 28%, rgba(255, 255, 255, 0.14), transparent 26%);
}

.comparison-image {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.comparison-before {
  width: var(--position);
  background-image:
    linear-gradient(135deg, rgba(7, 29, 53, 0.48), rgba(7, 29, 53, 0.12)),
    url("assets/before-cleaning.jpg"),
    radial-gradient(circle at 22% 24%, rgba(148, 163, 184, 0.5), transparent 22%),
    linear-gradient(135deg, #334155, #94a3b8 52%, #dbeafe);
  box-shadow: 16px 0 36px rgba(7, 29, 53, 0.18);
  z-index: 2;
  transition: width 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.comparison-after {
  background-image:
    linear-gradient(135deg, rgba(32, 199, 201, 0.08), rgba(255, 255, 255, 0.12)),
    url("assets/after-cleaning.jpg"),
    radial-gradient(circle at 76% 24%, rgba(255, 255, 255, 0.72), transparent 24%),
    linear-gradient(135deg, #20c7c9, #eaffff 48%, #ffffff);
}

.comparison-image-content {
  position: absolute;
  bottom: 28px;
  z-index: 3;
  width: min(310px, calc(100% - 46px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 20px;
  color: var(--white);
  background: rgba(7, 29, 53, 0.66);
  box-shadow: 0 16px 36px rgba(7, 29, 53, 0.22);
  backdrop-filter: blur(12px);
}

.before-content {
  left: 24px;
}

.after-content {
  right: 24px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.82);
}

.comparison-image-content span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #8deff0;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.after-content span {
  color: var(--blue);
}

.comparison-image-content h3 {
  margin: 0;
  font-size: clamp(1.12rem, 1.8vw, 1.42rem);
  line-height: 1.18;
}

.comparison-image-content p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  line-height: 1.55;
}

.after-content p {
  color: var(--gray);
}

.comparison-label {
  position: absolute;
  top: 18px;
  z-index: 5;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(7, 29, 53, 0.74);
  font-size: 0.82rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.before-label {
  left: 18px;
}

.after-label {
  right: 18px;
}

.comparison-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  z-index: 6;
  width: 58px;
  padding: 0;
  border: 0;
  background: transparent;
  transform: translateX(-50%);
  cursor: pointer;
  transition: left 0.55s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.25s ease;
}

.comparison-divider::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: linear-gradient(180deg, rgba(141, 239, 240, 0.28), rgba(255, 255, 255, 0.96), rgba(141, 239, 240, 0.28));
  transform: translateX(-50%);
}

.comparison-divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 3px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 14px 34px rgba(7, 29, 53, 0.3), 0 0 0 8px rgba(32, 199, 201, 0.12);
  transform: translate(-50%, -50%);
  transition: box-shadow 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.comparison-slider:hover .comparison-divider span,
.comparison-divider:focus-visible span {
  box-shadow: 0 16px 38px rgba(7, 29, 53, 0.32), 0 0 0 10px rgba(32, 199, 201, 0.18);
  transform: translate(-50%, -50%) scale(1.04);
}

.comparison-divider:focus-visible {
  outline: none;
}

.comparison-divider:focus-visible span {
  background: linear-gradient(135deg, var(--navy), var(--gold));
}

.comparison-slider.show-before .before-label,
.comparison-slider.show-after .after-label {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.comparison-note {
  margin: 0;
  padding: 14px 18px;
  border: 1px solid rgba(32, 199, 201, 0.24);
  border-radius: 18px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
  font-size: 0.92rem;
  font-weight: 600;
}

.comparison-caption-row {
  display: none;
}

.process {
  background:
    radial-gradient(circle at 85% 15%, rgba(32, 199, 201, 0.13), transparent 28%),
    var(--white);
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-card,
.badge-card {
  position: relative;
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.process-card:hover,
.badge-card:hover {
  transform: translateY(-7px);
  border-color: rgba(32, 199, 201, 0.5);
  box-shadow: var(--shadow);
}

.process-number {
  color: rgba(23, 135, 214, 0.22);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
}

.process-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin: 18px 0;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-weight: 800;
}

.process-card h3,
.badge-card h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.25;
}

.process-card p,
.badge-card p {
  margin: 12px 0 0;
  color: var(--gray);
}

.why {
  background:
    radial-gradient(circle at 12% 20%, rgba(32, 199, 201, 0.13), transparent 30%),
    linear-gradient(180deg, var(--ice), var(--white));
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  min-height: 230px;
  padding: 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-soft), var(--gold));
  font-weight: 800;
}

.trust-badges {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 29, 53, 0.96), rgba(13, 51, 86, 0.94)),
    url("https://images.unsplash.com/photo-1628177142898-93e36e4e3a50?auto=format&fit=crop&w=1800&q=72") center / cover no-repeat;
}

.trust-badges .section-heading h2 {
  color: var(--white);
}

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

.badge-card {
  min-height: 210px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.badge-card span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 14px;
  color: var(--navy);
  background: #8deff0;
}

.badge-card h3 {
  color: var(--white);
}

.badge-card p {
  color: rgba(255, 255, 255, 0.78);
}

.about-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: center;
}

.about-copy p {
  margin: 20px 0;
}

.about-copy .btn {
  margin-top: 10px;
}

.about-visual {
  position: relative;
}

.about-visual img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.stats-grid {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.stat-card {
  min-height: 112px;
  padding: 18px 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 18px;
  color: var(--white);
  background: rgba(7, 29, 53, 0.72);
  backdrop-filter: blur(14px);
}

.stat-card strong,
.stat-card span {
  display: block;
}

.stat-card strong {
  font-size: clamp(1.3rem, 2vw, 1.85rem);
  line-height: 1.1;
}

.stat-card span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  line-height: 1.35;
}

.testimonials {
  background: var(--navy);
  color: var(--white);
}

.testimonials .section-heading h2 {
  color: var(--white);
}

.testimonials .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.review-score {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 10px 16px;
  border: 1px solid rgba(242, 215, 143, 0.24);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.review-score strong {
  font-size: 1.05rem;
}

.review-score span {
  color: var(--gold-soft);
  font-size: 0.86rem;
  letter-spacing: 1px;
}

.review-score small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}

.testimonial-card {
  padding: 30px;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

.testimonial-card p {
  color: rgba(255, 255, 255, 0.82);
}

.testimonial-card span {
  color: #8deff0;
  font-weight: 700;
}

.stars {
  color: var(--gold-soft);
  letter-spacing: 2px;
}

.blog {
  background: var(--ice);
}

.blog-grid {
  grid-template-columns: repeat(3, 1fr);
}

.blog-card time {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 700;
}

.blog-card h3 {
  margin-top: 10px;
}

.blog-toggle {
  font-weight: 800;
}

.blog-card.blog-active {
  border-color: rgba(216, 177, 93, 0.58);
  box-shadow: 0 24px 58px rgba(7, 29, 53, 0.14), 0 0 0 1px rgba(216, 177, 93, 0.14);
}

.blog-card.blog-active img {
  filter: saturate(1.05) contrast(1.02);
}

.blog-detail-panel {
  position: relative;
  margin-top: 28px;
  padding: 32px;
  border: 1px solid rgba(216, 177, 93, 0.32);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 251, 255, 0.9)),
    radial-gradient(circle at 8% 0%, rgba(216, 177, 93, 0.16), transparent 34%),
    radial-gradient(circle at 92% 0%, rgba(32, 199, 201, 0.14), transparent 34%);
  box-shadow: 0 24px 60px rgba(7, 29, 53, 0.12);
  animation: blogDetailIn 0.32s ease both;
}

.blog-detail-panel[hidden] {
  display: none;
}

.blog-detail-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-detail-panel h3 {
  max-width: 820px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.15;
}

.blog-detail-intro {
  max-width: 860px;
  margin: 14px 0 22px;
  color: var(--gray);
  font-size: 1rem;
}

.blog-detail-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  margin-bottom: 24px;
}

.blog-detail-content p,
.blog-detail-content li {
  color: #475569;
  line-height: 1.7;
}

.blog-detail-content p {
  margin: 0;
}

.blog-detail-content ul {
  display: grid;
  gap: 10px;
  padding: 18px;
  margin: 0;
  border: 1px solid rgba(32, 199, 201, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  list-style: none;
}

.blog-detail-content li {
  position: relative;
  padding-left: 26px;
}

.blog-detail-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cyan);
  font-weight: 800;
}

.blog-detail-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--navy);
  background: rgba(7, 29, 53, 0.07);
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
  transition: background 0.2s ease, transform 0.2s ease;
}

.blog-detail-close:hover {
  background: rgba(216, 177, 93, 0.2);
  transform: rotate(90deg);
}

@keyframes blogDetailIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-areas {
  background: linear-gradient(180deg, var(--ice), var(--white));
}

.service-areas-layout {
  grid-template-columns: 0.9fr 1.1fr;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.area-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
  transition: transform 0.25s ease, color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.area-tags span:hover {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-color: transparent;
  transform: translateY(-3px);
}

.faq {
  background: var(--white);
}

.faq-layout {
  width: min(920px, calc(100% - 40px));
}

.accordion {
  display: grid;
  gap: 14px;
}

.accordion-item {
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
  overflow: hidden;
}

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 20px 22px;
  border: 0;
  color: var(--navy);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
  text-align: left;
}

.accordion-trigger strong {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: var(--ice);
  transition: transform 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.accordion-panel p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--gray);
}

.accordion-item.active {
  border-color: rgba(32, 199, 201, 0.5);
}

.accordion-item.active .accordion-trigger strong {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  transform: rotate(45deg);
}

.contact {
  background:
    linear-gradient(135deg, rgba(244, 251, 255, 0.95), rgba(223, 248, 244, 0.7)),
    url("https://images.unsplash.com/photo-1527515637462-cff94eecc1ac?auto=format&fit=crop&w=1800&q=70") center / cover fixed;
}

.contact-layout {
  grid-template-columns: 1fr 0.82fr;
}

.contact-form-wrap,
.contact-info {
  padding: clamp(26px, 4vw, 42px);
}

.contact-form {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-form label {
  color: var(--navy);
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--gray-soft);
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--ink);
  background: #f8fbfe;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(32, 199, 201, 0.14);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .btn {
  width: fit-content;
  margin-top: 8px;
}

.form-feedback {
  min-height: 26px;
  margin: 4px 0 0;
  font-weight: 700;
}

.form-feedback.success {
  color: #087f5b;
}

.form-feedback.error {
  color: #d9480f;
}

.contact-info {
  background: var(--navy);
  color: var(--white);
}

.contact-info h3 {
  color: var(--white);
  font-size: 1.5rem;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-info ul {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.contact-info li {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-info li:last-child {
  border-bottom: 0;
}

.contact-info strong,
.contact-info span,
.contact-info a {
  display: block;
}

.contact-info strong {
  margin-bottom: 5px;
  color: var(--gold-soft);
}

.contact-info span,
.contact-info a {
  color: rgba(255, 255, 255, 0.84);
}

.location-reveal {
  margin-top: 28px;
}

.location-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
  border: 1px solid rgba(216, 177, 93, 0.34);
  border-radius: 24px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 29, 53, 0.96), rgba(10, 39, 71, 0.94) 56%, rgba(216, 177, 93, 0.7)),
    radial-gradient(circle at 12% 0%, rgba(32, 199, 201, 0.16), transparent 36%);
  box-shadow: 0 22px 54px rgba(7, 29, 53, 0.22);
  cursor: pointer;
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.location-trigger:hover,
.location-trigger:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(216, 177, 93, 0.62);
  box-shadow: 0 28px 64px rgba(7, 29, 53, 0.28);
  outline: none;
}

.location-trigger small,
.location-trigger strong {
  display: block;
}

.location-trigger small {
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.location-trigger strong {
  margin-top: 5px;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1.25;
}

.location-trigger em {
  flex: 0 0 auto;
  min-width: 128px;
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  font-style: normal;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.14);
}

.location-panel {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 24px;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  border: 1px solid rgba(226, 232, 240, 0);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 251, 255, 0.9)),
    radial-gradient(circle at 8% 0%, rgba(216, 177, 93, 0.16), transparent 34%),
    radial-gradient(circle at 92% 0%, rgba(32, 199, 201, 0.12), transparent 34%);
  box-shadow: 0 24px 60px rgba(7, 29, 53, 0);
  pointer-events: none;
  transition: max-height 0.56s ease, margin 0.34s ease, opacity 0.34s ease, transform 0.4s ease, padding 0.34s ease, border-color 0.34s ease, box-shadow 0.34s ease;
}

.location-panel.open {
  max-height: 780px;
  margin-top: 18px;
  padding: 24px;
  opacity: 1;
  transform: translateY(0);
  border-color: rgba(216, 177, 93, 0.26);
  box-shadow: 0 24px 60px rgba(7, 29, 53, 0.12);
  pointer-events: auto;
}

.location-copy {
  align-self: center;
}

.location-copy h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.15;
}

.location-copy p {
  margin: 16px 0 22px;
  color: var(--gray);
}

.location-map {
  min-height: 280px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(7, 29, 53, 0.14);
}

.location-map img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.location-panel.open .location-map img {
  transform: scale(1.02);
}

.footer {
  color: rgba(255, 255, 255, 0.78);
  background: #04111f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 1fr 1fr;
  gap: 38px;
  padding: 64px 0 42px;
}

.footer .brand {
  color: var(--white);
  margin-bottom: 18px;
}

.footer h3 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 1rem;
}

.footer a,
.footer span {
  display: block;
  margin: 10px 0;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: var(--gold-soft);
}

.footer-bottom {
  display: grid;
  gap: 6px;
  padding: 18px 20px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  line-height: 1.55;
}

.footer-bottom .footer-credit {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
}

.footer-bottom .footer-credit a {
  display: inline;
  margin: 0;
  color: var(--gold-soft);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.22s ease, text-shadow 0.22s ease;
}

.footer-bottom .footer-credit a:hover,
.footer-bottom .footer-credit a:focus-visible {
  color: var(--white);
  text-shadow: 0 0 16px rgba(216, 177, 93, 0.38);
}

.whatsapp-float,
.back-to-top {
  position: fixed;
  z-index: 999;
  box-shadow: 0 16px 36px rgba(7, 29, 53, 0.24);
}

.whatsapp-float {
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--white);
  background: #25d366;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 20px 42px rgba(37, 211, 102, 0.34);
}

.back-to-top {
  right: 22px;
  bottom: 88px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-contact-bar {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1060px) {
  .nav-toggle {
    display: block;
  }

  .nav-panel {
    position: fixed;
    top: 78px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 18px;
    padding: 22px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-panel.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links {
    display: grid;
    gap: 12px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .nav-links a,
  .site-header.scrolled .nav-links a {
    min-height: 44px;
    justify-content: flex-start;
    padding: 0 14px;
    background: rgba(248, 250, 252, 0.9);
    color: var(--navy);
  }

  .nav-links a.active {
    color: var(--navy);
    background: var(--white);
  }

  .nav-cta {
    width: 100%;
  }

  .hero-content,
  .comparison-layout,
  .service-areas-layout,
  .about-layout,
  .contact-layout,
  .location-panel {
    grid-template-columns: 1fr;
  }

  .hero-content {
    gap: 34px;
  }

  .service-grid,
  .feature-grid,
  .process-grid,
  .badge-grid,
  .testimonial-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-detail-content {
    grid-template-columns: 1fr;
  }

  .area-tags {
    justify-content: flex-start;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .navbar {
    min-height: 74px;
  }

  .brand-mark {
    width: 66px;
    height: 44px;
  }

  .brand-mark img {
    width: 58px;
    height: 34px;
  }

  .nav-panel {
    top: 74px;
    left: 14px;
    right: 14px;
  }

  .hero {
    min-height: auto;
    background-position: 58% center;
  }

  .hero-content {
    padding: 118px 0 74px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 13vw, 3.8rem);
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .hero-panel {
    padding: 16px;
    border-radius: 22px;
  }

  .trust-grid,
  .service-grid,
  .feature-grid,
  .process-grid,
  .badge-grid,
  .testimonial-grid,
  .blog-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom p {
    font-size: 0.8rem;
  }

  .review-score {
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 10px;
    border-radius: 18px;
  }

  .trust-item {
    min-height: 98px;
  }

  .service-card img,
  .blog-card img {
    height: 190px;
  }

  .blog-detail-panel {
    padding: 26px 20px;
  }

  .blog-detail-close {
    top: 14px;
    right: 14px;
  }

  .service-card {
    min-height: 412px;
  }

  .service-card::before {
    height: 190px;
  }

  .service-card.detail-open .service-detail {
    max-height: 260px;
  }

  .feature-card {
    min-height: auto;
  }

  .comparison-slider {
    min-height: 360px;
    border-radius: 24px;
  }

  .comparison-image-content {
    bottom: 20px;
    width: min(300px, calc(100% - 32px));
    padding: 18px;
  }

  .before-content {
    left: 16px;
  }

  .after-content {
    right: 16px;
  }

  .process-card,
  .badge-card {
    min-height: auto;
    padding: 24px;
  }

  .service-areas-layout {
    gap: 26px;
  }

  .area-tags {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .area-tags span {
    min-height: 46px;
    padding: 0 12px;
    text-align: center;
  }

  .faq-layout {
    width: min(100% - 28px, 920px);
  }

  .accordion-trigger {
    align-items: flex-start;
    padding: 18px;
  }

  .accordion-panel p {
    padding: 0 18px 18px;
  }

  .about-visual img {
    min-height: 420px;
    border-radius: 24px;
  }

  .stats-grid {
    position: static;
    margin-top: -92px;
    padding: 0 16px 16px;
  }

  .stat-card {
    background: rgba(7, 29, 53, 0.86);
  }

  .contact-form .btn {
    width: 100%;
  }

  .location-trigger {
    align-items: flex-start;
    flex-direction: column;
  }

  .location-trigger em {
    width: 100%;
  }

  .location-panel.open {
    max-height: 980px;
  }

  .whatsapp-float {
    display: none;
  }

  .back-to-top {
    right: 14px;
    bottom: 88px;
  }

  body {
    padding-bottom: 78px;
  }

  .mobile-contact-bar {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 1001;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 9px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    background: rgba(7, 29, 53, 0.96);
    box-shadow: 0 -14px 34px rgba(7, 29, 53, 0.22);
    backdrop-filter: blur(14px);
  }

  .mobile-contact-bar a {
    display: grid;
    min-height: 48px;
    place-items: center;
    border-radius: 16px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.88rem;
    font-weight: 800;
  }

.mobile-contact-bar a:nth-child(2) {
  background: #25d366;
}

.service-seo-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #f4fbff, #ffffff 42%, #eef9fb);
}

.service-seo-hero {
  padding: 148px 0 72px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 29, 53, 0.96), rgba(7, 29, 53, 0.76) 58%, rgba(32, 199, 201, 0.22)),
    radial-gradient(circle at 78% 20%, rgba(216, 177, 93, 0.22), transparent 28%);
}

.service-seo-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: center;
}

.service-seo-hero h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.05;
}

.service-seo-hero p {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
}

.service-seo-card {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(14px);
}

.service-seo-card strong,
.service-seo-card span {
  display: block;
}

.service-seo-card strong {
  color: var(--gold-soft);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.service-seo-card span {
  margin-top: 10px;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.3;
}

.service-seo-content {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 34px;
  padding: 72px 0;
}

.service-seo-main,
.service-seo-aside {
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(7, 29, 53, 0.08);
}

.service-seo-main {
  padding: 34px;
}

.service-seo-main h2,
.service-seo-aside h2 {
  margin: 0 0 16px;
  color: var(--navy);
  line-height: 1.2;
}

.service-seo-main p,
.service-seo-main li,
.service-seo-aside p {
  color: var(--gray);
}

.service-seo-main a,
.service-seo-card a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(32, 199, 201, 0.45);
  text-underline-offset: 4px;
}

.service-seo-main a:hover,
.service-seo-card a:hover {
  color: var(--navy);
  text-decoration-color: var(--gold);
}

.service-seo-main ul,
.service-seo-aside ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 18px 0 30px;
  list-style: none;
}

.service-seo-main li,
.service-seo-aside li {
  position: relative;
  padding-left: 26px;
}

.service-seo-main li::before,
.service-seo-aside li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 800;
}

.service-seo-aside {
  align-self: start;
  padding: 28px;
}

.service-seo-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

@media (max-width: 900px) {
  .service-seo-hero .container,
  .service-seo-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .service-seo-hero {
    padding-top: 124px;
  }

  .service-seo-main,
  .service-seo-aside,
  .service-seo-card {
    padding: 22px;
  }
}
}

@media (max-width: 420px) {
  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 60px;
    height: 40px;
  }

  .brand-mark img {
    width: 53px;
    height: 31px;
  }

  .brand span:last-child {
    max-width: 138px;
  }

  .section-heading {
    text-align: left;
  }

  .section-heading h2,
  .about-copy h2,
  .comparison-copy h2,
  .service-areas-copy h2,
  .contact-form-wrap h2 {
    font-size: 2rem;
  }

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

  .service-card img,
  .blog-card img {
    height: 176px;
  }

  .service-card::before {
    height: 176px;
  }

  .service-card.detail-open .service-detail {
    margin: 12px 0 16px;
  }
}

@media (min-width: 1200px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .hero h1 {
    font-size: clamp(3.4rem, 6vw, 5rem);
  }

  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .section {
    padding: 86px 0;
  }

  .comparison-slider {
    min-height: 430px;
  }

  .badge-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .hero {
    background:
      linear-gradient(90deg, rgba(7, 29, 53, 0.93) 0%, rgba(7, 29, 53, 0.78) 100%),
      url("https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1200&q=78") center / cover no-repeat;
  }

  .comparison-divider span {
    width: 48px;
    height: 48px;
  }

  .contact {
    background-attachment: scroll;
  }
}

@media (max-width: 575px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .hero-content {
    padding: 106px 0 62px;
  }

  .trust-item:hover,
  .trust-item:focus-within {
    transform: translateY(-4px) scale(1.01);
  }

  .comparison-slider {
    min-height: 320px;
  }

  .comparison-slider::before {
    background:
      linear-gradient(90deg, rgba(7, 29, 53, 0.38), rgba(7, 29, 53, 0.1) 50%, rgba(255, 255, 255, 0.08)),
      radial-gradient(circle at 24% 28%, rgba(255, 255, 255, 0.14), transparent 26%);
  }

  .comparison-cta,
  .comparison-cta .btn {
    width: 100%;
  }

  .comparison-image-content {
    display: none;
  }

  .comparison-label {
    top: 12px;
    padding: 7px 10px;
    font-size: 0.74rem;
  }

  .comparison-caption-row {
    display: grid;
    gap: 10px;
  }

  .comparison-caption-row div {
    padding: 15px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.05);
  }

  .comparison-caption-row span {
    display: block;
    margin-bottom: 5px;
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
  }

  .comparison-caption-row p {
    margin: 0;
    color: var(--gray);
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .comparison-caption-row strong {
    display: block;
    margin-bottom: 5px;
    color: var(--navy);
    line-height: 1.25;
  }

  .service-card div,
  .blog-card div {
    padding: 20px;
  }

  .blog-detail-panel {
    padding: 24px 18px;
  }

  .blog-detail-content ul {
    padding: 16px;
  }

  .service-detail p {
    font-size: 0.86rem;
    line-height: 1.55;
  }

  .contact-form-wrap,
  .contact-info {
    padding: 24px;
  }

  .location-panel.open {
    padding: 18px;
  }

  .location-map,
  .location-map img {
    min-height: 230px;
  }
}

@media (max-width: 374px) {
  .container,
  .faq-layout {
    width: min(100% - 20px, var(--container));
  }

  .brand strong {
    font-size: 0.9rem;
  }

  .brand small {
    font-size: 0.58rem;
  }

  .hero h1 {
    font-size: 2.22rem;
  }

  .hero-panel {
    padding: 12px;
  }

  .comparison-slider {
    min-height: 360px;
  }

  .service-card {
    min-height: 400px;
  }

  .service-card img,
  .blog-card img {
    height: 166px;
  }

  .service-card::before {
    height: 166px;
  }

  .service-card div,
  .blog-card div {
    padding: 17px;
  }

  .service-card.detail-open .service-detail {
    margin: 10px 0 14px;
    padding: 13px;
  }

  .service-detail h4 {
    font-size: 0.94rem;
  }

  .service-detail p {
    font-size: 0.84rem;
    line-height: 1.5;
  }

  .area-tags,
  .mobile-contact-bar {
    grid-template-columns: 1fr;
  }

  body {
    padding-bottom: 204px;
  }

  .back-to-top {
    bottom: 210px;
  }
}
