:root {
  --font-heading: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ink: #111827;
  --body: #374151;
  --muted: #4B5563;
  --teal: #0F766E;
  --teal-dark: #115E59;
  --navy: #0B1820;
  --gold: #D97706;
  --mist: #F6F8F8;
  --line: rgba(15, 118, 110, 0.18);
  --shadow: 0 22px 60px rgba(11, 24, 32, 0.13);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--body);
  background: #FFFFFF;
  overflow-x: hidden;
}

body.mobile-menu-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--ink);
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(35px, 7vw, 68px);
  line-height: 0.96;
}

h2 {
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.05;
}

h3,
h4 {
  font-size: clamp(20px, 3vw, 24px);
  line-height: 1.2;
}

p,
li,
label,
input,
button,
a {
  font-size: 16px;
}

.site-shell {
  position: relative;
  isolation: isolate;
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: -20% -10% auto auto;
  width: 52vw;
  height: 52vw;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.22), transparent 62%);
  pointer-events: none;
  z-index: -1;
}

.container-custom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.glass {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15, 118, 110, 0.12);
}

.nav-link {
  font-size: 18px;
  color: #1F2937;
  font-weight: 700;
  transition: color 180ms ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--teal-dark);
}

.brand-text {
  font-size: 24px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.04em;
}

.btn-primary,
.btn-secondary,
.header-call,
.mobile-menu-call,
.sticky-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn-primary {
  min-height: 54px;
  padding: 0 24px;
  color: #FFFFFF;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  box-shadow: 0 18px 36px rgba(15, 118, 110, 0.28);
}

.btn-primary:hover,
.header-call:hover,
.mobile-menu-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(15, 118, 110, 0.32);
}

.btn-secondary {
  min-height: 54px;
  padding: 0 22px;
  color: #111827;
  background: #FFFFFF;
  border: 1px solid rgba(17, 24, 39, 0.14);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 118, 110, 0.36);
}

.header-call {
  display: none !important;
  min-height: 46px;
  padding: 0 18px;
  color: #FFFFFF;
  background: var(--navy);
}

.mobile-menu-call {
  width: 100%;
  min-height: 52px;
  color: #FFFFFF;
  background: var(--teal-dark);
}

.desktop-nav {
  display: none !important;
}

.mobile-toggle {
  display: inline-flex !important;
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex !important;
  }

  .header-call {
    display: inline-flex !important;
  }

  .mobile-toggle,
  .mobile-panel,
  .sticky-call {
    display: none !important;
  }
}

.mobile-panel {
  position: fixed;
  top: 73px;
  left: 0;
  right: 0;
  z-index: 49;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(15, 118, 110, 0.14);
  box-shadow: 0 30px 70px rgba(11, 24, 32, 0.18);
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-panel.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.hero-section {
  min-height: calc(100vh - 73px);
  display: flex;
  align-items: center;
  padding: 34px 0 48px;
  background:
    linear-gradient(135deg, rgba(246, 248, 248, 0.96), rgba(229, 247, 245, 0.78)),
    radial-gradient(circle at 18% 20%, rgba(217, 119, 6, 0.12), transparent 28%);
}

.hero-grid {
  display: grid;
  gap: 24px;
  align-items: stretch;
}

.hero-copy,
.hero-media {
  border-radius: 34px;
  min-height: 100%;
}

.hero-copy {
  padding: clamp(24px, 5vw, 54px);
}

.hero-media {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  aspect-ratio: 1 / 1;
}

.hero-media img.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
}

.trust-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.trust-icons img {
  width: auto;
  height: 48px;
  max-width: 86px;
  object-fit: contain;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 14px;
  background: #FFFFFF;
  padding: 5px;
}

.stars {
  color: var(--gold);
  letter-spacing: 0.08em;
  font-size: 22px;
}

.section-pad {
  padding: 76px 0;
}

.section-sticker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding: 9px 14px;
  border-radius: 999px;
  color: #115E59;
  background: #E0F2F1;
  font-weight: 900;
}

.section-sticker svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.3;
  fill: none;
}

.split-section {
  display: grid;
  gap: 28px;
  align-items: center;
}

.split-section .split-text {
  min-width: 0;
}

.split-section .split-image {
  width: 100%;
}

.split-section .split-image img {
  width: 100%;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.service-card,
.step-card,
.part-card,
.review-card,
.faq-card {
  background: #FFFFFF;
  color: #374151;
  border: 1px solid rgba(15, 118, 110, 0.14);
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(11, 24, 32, 0.08);
}

.service-card {
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(15, 118, 110, 0.08);
}

.icon-bubble {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: #0F766E;
  background: #E0F2F1;
  margin-bottom: 18px;
}

.icon-bubble svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.dark-cta {
  background:
    linear-gradient(135deg, rgba(11, 24, 32, 0.98), rgba(17, 94, 89, 0.94)),
    radial-gradient(circle at 80% 20%, rgba(217, 119, 6, 0.24), transparent 34%);
  color: #F9FAFB;
}

.dark-cta h2,
.dark-cta h3,
.dark-cta p,
.dark-cta li {
  color: #FFFFFF;
}

.dark-cta .section-sticker {
  color: #115E59;
}

.step-card {
  padding: 22px;
}

.step-number {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  background: var(--teal-dark);
  font-weight: 900;
}

.part-card {
  padding: 13px 16px;
  font-weight: 800;
  color: #1F2937;
}

.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(292px, 1fr);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 2px 24px;
  scrollbar-width: thin;
}

.review-card {
  padding: 24px;
  scroll-snap-align: start;
}

.review-card .stars {
  font-size: 17px;
}

.area-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(15, 118, 110, 0.12);
}

.payment-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: #FFFFFF;
  border: 1px solid rgba(15, 118, 110, 0.16);
  font-weight: 900;
  color: #111827;
}

.faq-card {
  padding: 24px;
}

.site-footer {
  background: var(--navy);
  color: #D1D5DB;
  font-size: 14px;
}

.site-footer p,
.site-footer a,
.site-footer li,
.site-footer address {
  font-size: 14px;
  color: #D1D5DB;
}

.site-footer h3,
.site-footer .brand-text {
  color: #FFFFFF;
}

.footer-link:hover {
  color: #FFFFFF;
}

.sticky-call {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  min-height: 58px;
  width: 100%;
  border-radius: 18px 18px 0 0;
  color: #FFFFFF;
  background: linear-gradient(135deg, #0F766E, #115E59);
  box-shadow: 0 -18px 38px rgba(11, 24, 32, 0.22);
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}

.sticky-call.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  }

  .split-section {
    grid-template-columns: minmax(0, 65fr) minmax(280px, 35fr);
  }

  .split-section.reverse {
    grid-template-columns: minmax(280px, 35fr) minmax(0, 65fr);
  }

  .split-section.reverse .split-image {
    order: -1;
  }

  .reviews-track {
    grid-auto-columns: calc((100% - 36px) / 3);
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 35px;
  }

  h2 {
    font-size: 28px;
  }

  .hero-section {
    min-height: auto;
    padding-top: 18px;
  }

  .hero-copy {
    padding: 22px;
  }

  .hero-media {
    aspect-ratio: 1 / 0.82;
  }

  .section-pad {
    padding: 56px 0;
  }

  .trust-icons img {
    height: 42px;
    max-width: 76px;
  }

  .sticky-spacer {
    padding-bottom: 74px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
