:root {
  --font-heading: Inter, Montserrat, Arial, sans-serif;
  --font-body: Inter, Open Sans, Arial, sans-serif;
  --cobalt: #0032ff;
  --cobalt-2: #4065ff;
  --ink: #111827;
  --muted: #4b5563;
  --dark: #050816;
  --line: rgba(17, 24, 39, .12);
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  letter-spacing: -.04em;
  line-height: 1.02;
  font-weight: 900;
}

h1 {
  font-size: clamp(39px, 7vw, 74px);
}

h2 {
  font-size: clamp(31px, 5vw, 54px);
}

h3,
h4 {
  font-size: clamp(22px, 3vw, 28px);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  background: rgba(5, 8, 22, .72);
  backdrop-filter: blur(18px);
}

.logo-text {
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.05em;
}

.logo-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}

.desktop-nav a,
.mobile-panel a {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  transition: color .2s ease;
}

.desktop-nav a:hover,
.mobile-panel a:hover {
  color: #cbd5ff;
}

.phone-button,
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 54px;
  padding: 0 1.25rem;
  border: 1px solid rgba(255, 255, 255, .2);
  background: linear-gradient(135deg, var(--cobalt), var(--cobalt-2));
  color: #fff !important;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, .45), 0 22px 60px rgba(0, 50, 255, .35);
  animation: whitePulse 2.4s infinite;
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}

.phone-button:hover,
.cta-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 0 0 12px rgba(255, 255, 255, .08), 0 28px 70px rgba(0, 50, 255, .48);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #050816 url('../images/hero-kitchen.jpg') center/cover no-repeat;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(64, 101, 255, .32), transparent 28%), linear-gradient(180deg, rgba(5, 8, 22, .72), rgba(5, 8, 22, .92));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 118px;
  padding-bottom: 64px;
}

.hero h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: #fff;
}

.hero-lead {
  color: #eef2ff;
  font-size: clamp(17px, 2.4vw, 22px);
  line-height: 1.7;
}

.stars {
  color: var(--accent);
  font-size: 25px;
  letter-spacing: .16em;
  text-shadow: 0 8px 22px rgba(247, 201, 72, .24);
}

.trust-icons img {
  width: auto;
  height: 48px;
  max-width: 118px;
  object-fit: contain;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(14px);
}

.glass-card {
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(22px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .24);
}

.badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: .45rem .75rem;
  background: rgba(0, 50, 255, .1);
  color: #0026bf;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section-dark .badge {
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

.heading-rule {
  width: 82px;
  height: 5px;
  margin-top: 18px;
  background: linear-gradient(90deg, var(--cobalt), var(--cobalt-2));
}

.service-card,
.reason-card,
.review-card,
.faq-card {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 22px 70px rgba(17, 24, 39, .08);
}

.service-icon,
.reason-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--cobalt), var(--cobalt-2));
  color: #fff;
}

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

.issue-list li {
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.7;
}

.issue-list li::before {
  content: "";
  position: absolute;
  top: .75rem;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--cobalt);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.split-image img,
.premium-image {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  box-shadow: 0 28px 80px rgba(17, 24, 39, .18);
}

.blue-panel {
  background: linear-gradient(135deg, #0032ff, #07144f 70%, #050816);
  color: #fff;
}

.blue-panel h2,
.blue-panel h3,
.blue-panel p,
.blue-panel li {
  color: #fff;
}

.blue-panel .heading-rule,
.section-dark .heading-rule {
  background: #fff;
}

.reviews-track {
  display: flex;
  transition: transform .45s ease;
  will-change: transform;
}

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

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

.review-card p {
  color: #374151;
  line-height: 1.75;
}

.carousel-button {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
}

.faq-card summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  color: var(--ink);
}

.faq-card p {
  margin-top: .9rem;
  line-height: 1.7;
}

.mobile-panel {
  position: fixed;
  inset: 73px 0 auto 0;
  z-index: 55;
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
  background: rgba(5, 8, 22, .98);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  transition: transform .25s ease, opacity .25s ease;
}

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

.hamburger-line {
  width: 25px;
  height: 2px;
  display: block;
  margin: 5px 0;
  background: #fff;
}

.sticky-call {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  display: none;
  padding: 10px 12px max(10px, env(safe-area-inset-bottom));
  background: rgba(5, 8, 22, .94);
  transform: translateY(110%);
  opacity: 0;
  transition: transform .25s ease, opacity .25s ease;
}

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

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

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

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

@keyframes whitePulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, .42), 0 22px 60px rgba(0, 50, 255, .35); }
  70% { box-shadow: 0 0 0 14px rgba(255, 255, 255, 0), 0 22px 60px rgba(0, 50, 255, .35); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0), 0 22px 60px rgba(0, 50, 255, .35); }
}

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

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

  .split-section {
    grid-template-columns: minmax(0, 70%) minmax(250px, 30%);
  }

  .split-section.reverse {
    grid-template-columns: minmax(250px, 30%) minmax(0, 70%);
  }
}

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

  h2 {
    font-size: 31px;
  }

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

  .sticky-call {
    display: block;
  }

  .hero-content {
    padding-top: 106px;
  }

  .trust-icons {
    gap: .55rem;
  }

  .trust-icons img {
    height: 44px;
    max-width: 96px;
    padding: 7px 8px;
  }
}

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