:root {
  --font-heading: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: hidden;
}

[x-cloak] {
  display: none !important;
}

a,
button {
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.site-shell {
  background: radial-gradient(circle at top left, rgba(77, 121, 171, 0.16), transparent 34rem), linear-gradient(180deg, #ffffff 0%, #f4f7fb 45%, #ffffff 100%);
}

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

.logo-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #001A38;
  color: #D7B46A;
  border: 1px solid rgba(215, 180, 106, 0.65);
  flex: 0 0 auto;
}

.brand-text {
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #111827;
  font-weight: 800;
}

.header-phone,
.btn-pulse {
  position: relative;
  isolation: isolate;
  overflow: visible;
  border-radius: 0;
  color: #ffffff;
}

.header-phone:hover,
.btn-pulse:hover,
.mobile-header-phone a,
.mobile-header-phone a:hover,
.dark-section a,
.dark-section a:hover,
footer .brand-text {
  color: #ffffff;
}

.btn-pulse::after {
  content: "";
  position: absolute;
  inset: -7px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.16);
  animation: pulseGlow 1.9s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.35; transform: scale(0.98); }
  50% { opacity: 0.85; transform: scale(1.035); }
}

.hero {
  min-height: 760px;
  background-image: linear-gradient(180deg, rgba(0, 26, 56, 0.88), rgba(0, 26, 56, 0.74)), url('../images/hero-kitchen.jpg');
  background-size: cover;
  background-position: center;
}

.hero h1 {
  font-size: clamp(39px, 7vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.07em;
  color: #ffffff;
}

.hero p,
.hero a,
.hero span {
  color: #ffffff;
}

.stars {
  color: #D7B46A;
  letter-spacing: 0.18em;
  text-shadow: 0 10px 26px rgba(215, 180, 106, 0.28);
}

.hero-badge-img {
  width: auto;
  height: 48px;
  max-width: 100%;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 6px 10px;
  backdrop-filter: blur(14px);
}

.section-title {
  font-size: clamp(31px, 5vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  color: #111827;
}

.dark-section .section-title,
.dark-section h2,
.dark-section h3 {
  color: #ffffff;
}

.accent-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(215, 180, 106, 0.14);
  border-left: 4px solid #D7B46A;
  color: #111827;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
  padding: 9px 12px;
}

.dark-section .accent-badge {
  color: #ffffff;
  background: rgba(215, 180, 106, 0.18);
}

.heading-rule {
  width: 78px;
  height: 4px;
  background: #D7B46A;
  margin-top: 18px;
}

.glass-card {
  border-radius: 0;
  border: 1px solid rgba(77, 121, 171, 0.22);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 70px rgba(0, 26, 56, 0.12);
  backdrop-filter: blur(16px);
}

.glass-card:hover,
.service-card:hover,
.issue-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 90px rgba(0, 26, 56, 0.18);
}

.dark-glass {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  color: #ffffff;
}

.dark-glass h3,
.dark-glass p,
.dark-glass li,
.dark-glass span {
  color: #ffffff;
}

.issue-card,
.service-card,
.review-card,
.faq-card {
  border-radius: 0;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.issue-card h3,
.service-card h3,
.review-card h3,
.faq-card h3 {
  font-size: 22px;
  color: #111827;
}

.icon-box {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(77, 121, 171, 0.28);
  background: linear-gradient(135deg, rgba(77, 121, 171, 0.13), rgba(215, 180, 106, 0.13));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #001A38;
}

.icon-box svg {
  width: 34px;
  height: 34px;
  stroke-width: 1.8;
}

.two-col-feature {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(240px, 3fr);
  gap: 32px;
  align-items: center;
}

.two-col-feature.reverse {
  grid-template-columns: minmax(240px, 3fr) minmax(0, 7fr);
}

.feature-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 0;
  box-shadow: 18px 18px 0 rgba(77, 121, 171, 0.22);
}

.premium-grid {
  background-image: linear-gradient(rgba(77, 121, 171, 0.16) 1px, transparent 1px), linear-gradient(90deg, rgba(77, 121, 171, 0.16) 1px, transparent 1px);
  background-size: 34px 34px;
}

.service-chip {
  border: 1px solid rgba(77, 121, 171, 0.24);
  color: #111827;
  background: #ffffff;
}

.review-track {
  display: flex;
  transition: transform 360ms ease;
}

.review-slide {
  min-width: 100%;
  padding: 0 10px;
}

.review-card {
  min-height: 246px;
  border: 1px solid rgba(77, 121, 171, 0.22);
  background: #ffffff;
  box-shadow: 0 18px 54px rgba(0, 26, 56, 0.1);
}

.review-card p,
.faq-card p,
.issue-card p,
.service-card p {
  font-size: 16px;
  color: #374151;
}

.sticky-call {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 220ms ease, opacity 220ms ease;
  color: #ffffff;
}

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

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

footer {
  font-size: 14px;
}

@media (min-width: 768px) {
  .review-slide {
    min-width: 33.3333%;
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: 710px;
    padding-top: 150px;
  }

  .hero h1,
  .section-title {
    transform-origin: left center;
  }

  .hero h1 {
    font-size: clamp(39px, 12vw, 53px);
  }

  .section-title {
    font-size: clamp(31px, 10vw, 38px);
  }

  .two-col-feature,
  .two-col-feature.reverse {
    grid-template-columns: 1fr;
  }

  .two-col-feature.reverse > img {
    order: 2;
  }

  .mobile-header-phone {
    display: flex;
    white-space: nowrap;
  }

  .mobile-header-phone a {
    display: inline-flex;
  }
}

@media (min-width: 768px) {
  .mobile-header-phone {
    display: none;
  }
}
