html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  line-height: 1.72;
  overflow-x: hidden;
}

.site-shell {
  background:
    radial-gradient(circle at 8% 5%, rgba(131, 136, 198, 0.22), transparent 26rem),
    linear-gradient(180deg, #ffffff 0%, #f7f7fc 100%);
}

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

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

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

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

  .mobile-only {
    display: none !important;
  }
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(18, 23, 92, 0.12);
  backdrop-filter: blur(14px);
}

.logo-mark {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #12175c;
  color: #ffffff;
  border: 2px solid #8388c6;
}

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

.nav-link {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  text-decoration: none;
  transition: color 220ms ease;
}

.nav-link:hover {
  color: #12175c;
}

.phone-btn,
.cta-btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #12175c;
  color: #ffffff !important;
  border: 1px solid #8388c6;
  padding: 14px 22px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 0;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.42);
  animation: softPulse 2.7s ease-in-out infinite;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.phone-btn:hover,
.cta-btn:hover {
  background: #070a31;
  border-color: #ffffff;
  color: #ffffff !important;
  transform: translateY(-2px);
}

.hero {
  min-height: 760px;
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(rgba(6, 8, 38, 0.72), rgba(6, 8, 38, 0.78)), url('../images/hero-kitchen.jpg');
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.hero::before,
.hero::after,
.decor-column {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero::before {
  width: 230px;
  height: 420px;
  left: -70px;
  top: 150px;
  border-radius: 999px 999px 0 0;
}

.hero::after {
  width: 360px;
  height: 170px;
  right: -110px;
  bottom: 96px;
  border-radius: 50%;
}

.hero h1 {
  color: #ffffff;
  font-size: 39px;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.hero-subtitle {
  color: #ffffff;
  font-size: 18px;
  max-width: 850px;
}

.stars {
  color: #f6c65b;
  font-size: 30px;
  letter-spacing: 0.14em;
  line-height: 1;
}

.review-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.review-icons img {
  width: auto;
  height: 48px;
  max-width: 112px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.94);
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.75);
}

.trust-strip {
  border: 1px solid rgba(131, 136, 198, 0.25);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(131, 136, 198, 0.18);
  color: #12175c;
  border-left: 4px solid #8388c6;
  padding: 8px 12px;
  font-weight: 800;
  font-size: 16px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-dark .badge,
.hero .badge {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-left-color: #f6c65b;
}

.heading-rule {
  width: 82px;
  height: 4px;
  background: #8388c6;
  margin-top: 18px;
}

h2 {
  font-size: 31px;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

h3,
h4 {
  font-size: 22px;
  line-height: 1.24;
  letter-spacing: -0.02em;
}

p,
li,
summary,
details {
  font-size: 16px;
}

.premium-card {
  background: #ffffff;
  border: 1px solid rgba(18, 23, 92, 0.14);
  box-shadow: 0 22px 50px rgba(18, 23, 92, 0.08);
  border-radius: 0;
  color: #263044;
}

.premium-card strong,
.review-card strong {
  color: #111827;
}

.icon-box {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f1f2fb;
  color: #12175c;
  border: 1px solid rgba(131, 136, 198, 0.52);
}

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

.two-column {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.two-column .text-col {
  order: 2;
}

.two-column .image-col {
  order: 1;
}

@media (min-width: 768px) {
  .two-column {
    grid-template-columns: minmax(0, 7fr) minmax(260px, 3fr);
    gap: 42px;
  }

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

  .two-column .text-col,
  .two-column .image-col {
    order: initial;
  }
}

.section-image {
  width: 100%;
  min-height: 300px;
  object-fit: cover;
  border: 10px solid #ffffff;
  box-shadow: 0 24px 60px rgba(18, 23, 92, 0.18);
}

.appliance-card {
  background: #ffffff;
  border: 1px solid rgba(18, 23, 92, 0.14);
  border-top: 5px solid #8388c6;
  border-radius: 0;
  min-height: 100%;
  color: #263044;
}

.dark-panel .appliance-card h3,
.dark-panel .appliance-card h4,
.dark-panel .appliance-card p,
.dark-panel .appliance-card li,
.dark-panel .appliance-card strong {
  color: #111827;
}

.appliance-card ul {
  margin-top: 16px;
}

.appliance-card li {
  margin-top: 10px;
}

.dark-panel {
  background:
    linear-gradient(135deg, rgba(18, 23, 92, 0.97), rgba(7, 10, 49, 0.98)),
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(255, 255, 255, 0.05) 39px 40px);
  color: #ffffff;
}

.dark-panel h2,
.dark-panel h3,
.dark-panel p,
.dark-panel li,
.dark-panel strong {
  color: #ffffff;
}

.review-track {
  transition: transform 450ms ease;
}

.review-card {
  background: #ffffff;
  border: 1px solid rgba(18, 23, 92, 0.14);
  color: #263044;
  min-height: 360px;
}

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

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

.carousel-btn {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #12175c;
  color: #ffffff;
  border: 1px solid #8388c6;
  font-size: 24px;
  line-height: 1;
}

.faq-card {
  background: #ffffff;
  border: 1px solid rgba(18, 23, 92, 0.14);
  color: #263044;
}

.faq-card summary {
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 800;
  color: #111827;
}

.service-area-pill {
  border: 1px solid rgba(131, 136, 198, 0.52);
  background: #ffffff;
  color: #12175c;
  padding: 8px 12px;
  font-weight: 800;
}

.mobile-menu {
  display: none;
  background: #ffffff;
  border-top: 1px solid rgba(18, 23, 92, 0.12);
}

.mobile-menu.open {
  display: block;
}

.sticky-call {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none !important;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 15px 10px calc(15px + env(safe-area-inset-bottom));
  background: #12175c;
  color: #ffffff !important;
  border-top: 2px solid #8388c6;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 260ms ease, opacity 260ms ease;
}

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

@media (min-width: 768px) {
  .sticky-call,
  .sticky-call.is-visible {
    display: none !important;
  }
}

.footer {
  background: #070a31;
  color: #ffffff;
  font-size: 14px;
}

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

.footer .logo-text,
.footer h3,
.footer strong {
  color: #ffffff;
}

.footer a:hover {
  color: #f6c65b;
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 760ms ease, transform 760ms ease;
}

.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes softPulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.36); }
  70% { box-shadow: 0 0 0 12px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

@media (max-width: 767px) {
  .container-wide {
    width: min(100% - 28px, 680px);
  }

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

  .hero h1 {
    font-size: 39px;
  }

  h2 {
    font-size: 31px;
  }

  .review-icons {
    gap: 8px;
  }

  .review-icons img {
    height: 48px;
    max-width: 94px;
  }

  .phone-btn,
  .cta-btn {
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: clamp(56px, 6vw, 82px);
  }

  h2 {
    font-size: clamp(42px, 4vw, 58px);
  }
}
