* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(19, 166, 118, 0.18);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(1160px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
  color: #0b211d;
  text-decoration: none;
  white-space: nowrap;
}

.logo-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, #13A676 0%, #3BFFBF 100%);
  color: #ffffff;
  font-size: 28px;
  font-weight: 900;
  box-shadow: 0 12px 32px rgba(19, 166, 118, 0.32);
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 20px;
}

.desktop-nav a,
.mobile-menu a {
  font-size: 16px;
  font-weight: 700;
  color: #17342f;
  text-decoration: none;
}

.desktop-nav a:hover,
.mobile-menu a:hover {
  color: #087F5B;
}

.header-phone-desktop {
  display: none !important;
}

.hamburger {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(19, 166, 118, 0.32);
  background: #ffffff;
  display: grid;
  place-items: center;
  padding: 0;
  cursor: pointer;
}

.hamburger span,
.hamburger span::before,
.hamburger span::after {
  display: block;
  width: 24px;
  height: 2px;
  background: #0b211d;
  position: relative;
  transition: 0.25s ease;
}

.hamburger span::before,
.hamburger span::after {
  content: "";
  position: absolute;
  left: 0;
}

.hamburger span::before {
  top: -8px;
}

.hamburger span::after {
  top: 8px;
}

.hamburger.is-active span {
  background: transparent;
}

.hamburger.is-active span::before {
  top: 0;
  transform: rotate(45deg);
}

.hamburger.is-active span::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  z-index: 90;
  background: #ffffff;
  border-bottom: 1px solid rgba(19, 166, 118, 0.24);
  padding: 20px 16px 24px;
  box-shadow: 0 24px 60px rgba(7, 27, 24, 0.16);
}

.mobile-menu.is-open {
  display: grid;
  gap: 16px;
}

.btn,
.cta-button,
.phone-button {
  border: 0;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 20px;
  background: #13A676;
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.58), 0 18px 40px rgba(19, 166, 118, 0.28);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  animation: whitePulse 2.6s ease-in-out infinite;
}

.btn:hover,
.cta-button:hover,
.phone-button:hover {
  background: #087F5B;
  color: #ffffff !important;
  transform: translateY(-2px);
}

.btn-dark {
  background: #071B18;
}

.btn-dark:hover {
  background: #000000;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
  padding: 112px 16px 82px;
  isolation: isolate;
  overflow: hidden;
  background: #071B18 url("../images/hero-kitchen.jpg") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(145deg, rgba(4, 22, 19, 0.88), rgba(5, 42, 34, 0.7) 52%, rgba(4, 22, 19, 0.82));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -20% -28% -20%;
  height: 390px;
  z-index: -1;
  background: radial-gradient(circle at center, rgba(59, 255, 191, 0.42), transparent 62%);
  filter: blur(22px);
  animation: waveFloat 8s ease-in-out infinite;
}

.hero-content {
  width: min(940px, 100%);
  text-align: center;
  color: #ffffff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(59, 255, 191, 0.48);
  background: rgba(255, 255, 255, 0.09);
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

h1 {
  margin: 18px 0 14px;
  color: #ffffff;
  font-size: clamp(39px, 10vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 900;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(31px, 8vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 900;
}

h3,
h4 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 900;
}

p {
  margin: 0 0 18px;
  font-size: 16px;
}

.hero p {
  color: #ffffff;
  font-size: 18px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.stars {
  color: #3BFFBF;
  font-size: 25px;
  letter-spacing: 6px;
  margin: 12px 0 14px;
  text-shadow: 0 0 22px rgba(59, 255, 191, 0.45);
}

.trust-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 14px auto 24px;
}

.trust-icons img {
  width: auto;
  height: 48px;
  object-fit: contain;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.hero-cta-text {
  font-weight: 900;
  margin-top: 20px;
}

.section {
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

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

.intro-card {
  margin-top: -42px;
  position: relative;
  z-index: 4;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  box-shadow: 0 28px 80px rgba(7, 27, 24, 0.14);
  padding: clamp(24px, 5vw, 44px);
}

.grid {
  display: grid;
  gap: 20px;
}

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

.service-card,
.reason-card,
.review-card,
.faq-item,
.payment-card {
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 20px 48px rgba(7, 27, 24, 0.08);
  padding: 24px;
}

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

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #13A676, #3BFFBF);
}

.svg-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border: 1px solid rgba(19, 166, 118, 0.28);
  color: #087F5B;
  background: linear-gradient(135deg, rgba(59, 255, 191, 0.14), rgba(19, 166, 118, 0.06));
}

.svg-icon svg {
  width: 31px;
  height: 31px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.split-section {
  background: linear-gradient(135deg, #F4FBF8 0%, #FFFFFF 56%, #E9FFF7 100%);
}

.split-row {
  display: grid;
  gap: 24px;
  align-items: center;
  margin-top: 32px;
}

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

.split-media img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border: 1px solid rgba(19, 166, 118, 0.22);
}

.local-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 18px;
}

.pill {
  display: inline-flex;
  padding: 8px 10px;
  border: 1px solid rgba(19, 166, 118, 0.25);
  background: #ffffff;
  color: #17342f;
  font-size: 16px;
  font-weight: 800;
}

.dark-band {
  background: #071B18;
  color: #ffffff;
}

.dark-band h2,
.dark-band h3,
.dark-band p,
.dark-band a {
  color: #ffffff;
}

.dark-band .reason-card,
.dark-band .review-card {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(59, 255, 191, 0.22);
  color: #ffffff;
}

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

.cta-panel {
  background: linear-gradient(135deg, #13A676, #087F5B);
  color: #ffffff;
  padding: clamp(28px, 6vw, 52px);
  display: grid;
  gap: 22px;
  align-items: center;
  box-shadow: 0 28px 80px rgba(19, 166, 118, 0.28);
}

.cta-panel h2,
.cta-panel p {
  color: #ffffff;
}

.reviews-wrap {
  position: relative;
}

.reviews-viewport {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 0.45s ease;
}

.review-slide {
  flex: 0 0 100%;
  padding: 0 8px;
}

.review-card {
  min-height: 100%;
}

.review-card .stars-small {
  color: #3BFFBF;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(59, 255, 191, 0.45);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
}

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

.footer {
  background: #041310;
  color: #ffffff;
  padding: 48px 0 28px;
}

.footer h3,
.footer p,
.footer a,
.footer li {
  color: #ffffff;
}

.footer p,
.footer a,
.footer li {
  font-size: 14px;
}

.footer-grid {
  display: grid;
  gap: 28px;
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer a {
  text-decoration: none;
}

.footer .logo {
  color: #ffffff;
}

.disclaimer {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
}

.mobile-sticky-call {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  display: none !important;
  width: 100%;
  min-height: 58px;
  padding: 16px 10px calc(16px + env(safe-area-inset-bottom));
  background: #087F5B;
  color: #ffffff !important;
  text-decoration: none;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 -12px 34px rgba(0, 0, 0, 0.22);
  transform: translateY(105%);
  opacity: 0;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.mobile-sticky-call.is-visible {
  display: block !important;
  transform: translateY(0);
  opacity: 1;
}

.bottom-safe {
  padding-bottom: 92px;
}

@keyframes whitePulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.46), 0 18px 40px rgba(19, 166, 118, 0.28);
  }
  50% {
    box-shadow: 0 0 0 13px rgba(255, 255, 255, 0), 0 18px 40px rgba(19, 166, 118, 0.36);
  }
}

@keyframes waveFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-28px) scale(1.08);
  }
}

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

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

  .hamburger,
  .mobile-menu,
  .mobile-sticky-call,
  .mobile-sticky-call.is-visible {
    display: none !important;
  }

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

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

  .split-row {
    grid-template-columns: minmax(0, 7fr) minmax(230px, 3fr);
  }

  .split-row.media-left {
    grid-template-columns: minmax(230px, 3fr) minmax(0, 7fr);
  }

  .split-row.media-left .split-media {
    order: 1;
  }

  .split-row.media-left .split-text {
    order: 2;
  }

  .cta-panel {
    grid-template-columns: 1fr auto;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
}

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

  .reason-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .review-slide {
    flex-basis: 33.3333%;
  }
}

@media (max-width: 767px) {
  .site-header .logo-text {
    max-width: 210px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero {
    min-height: 690px;
    padding-top: 86px;
  }

  .section {
    padding: 56px 0;
  }

  .hero p {
    font-size: 16px;
  }

  .trust-icons img {
    height: 44px;
  }
}

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