: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;
  --ink: #111827;
  --navy: #050816;
  --panel: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.18);
  --shadow: 0 28px 80px rgba(10, 20, 80, 0.22);
}

* {
  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;
}

a {
  text-decoration: none;
}

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

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

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 255px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.brand:hover {
  color: #ffffff;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 0 28px rgba(0, 185, 255, 0.42);
}

.brand-mark svg {
  width: 28px;
  height: 28px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex: 1;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  font-weight: 650;
  white-space: nowrap;
}

.nav-links a:hover {
  color: #ffffff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-button,
.primary-button,
.secondary-button,
.mobile-call-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 0;
  min-height: 50px;
  padding: 13px 22px;
  font-size: 16px;
  font-weight: 850;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.phone-button,
.primary-button,
.mobile-call-button {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--secondary) 55%, var(--accent));
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.52), 0 18px 42px rgba(0, 50, 255, 0.32);
  animation: pulseGlow 2.4s ease-in-out infinite;
}

.phone-button:hover,
.primary-button:hover,
.mobile-call-button:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 0 0 12px rgba(255, 255, 255, 0), 0 20px 52px rgba(0, 185, 255, 0.46);
}

.secondary-button {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  outline: 1px solid rgba(255, 255, 255, 0.32);
}

.secondary-button:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.icon-phone {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 130px 0 74px;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(130deg, rgba(5, 8, 22, 0.92), rgba(20, 0, 80, 0.72)), url("../images/kitchen-premium.jpg") center / cover no-repeat;
}

.hero::before,
.hero::after,
.orb {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(6px);
  pointer-events: none;
}

.hero::before {
  width: 420px;
  height: 420px;
  top: 12%;
  left: -120px;
  background: radial-gradient(circle, rgba(74, 0, 255, 0.58), transparent 66%);
  animation: floatLight 8s ease-in-out infinite;
}

.hero::after {
  width: 520px;
  height: 520px;
  right: -160px;
  bottom: 8%;
  background: radial-gradient(circle, rgba(0, 185, 255, 0.45), transparent 68%);
  animation: floatLight 9s ease-in-out infinite reverse;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

.eyebrow,
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 34px;
  padding: 6px 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero h1 {
  margin: 22px 0 14px;
  color: #ffffff;
  font-size: clamp(39px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.07em;
  max-width: 940px;
}

.hero-lead {
  max-width: 790px;
  margin: 0 auto 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.stars {
  color: var(--accent);
  font-size: 26px;
  letter-spacing: 0.14em;
  text-shadow: 0 0 22px rgba(0, 185, 255, 0.48);
}

.hero-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin: 18px 0 24px;
  flex-wrap: wrap;
}

.hero-icons img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.hero-cta-text {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(880px, 100%);
  margin-top: 32px;
}

.trust-tile,
.glass-card {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
}

.trust-tile {
  padding: 18px;
  color: #ffffff;
  text-align: left;
}

.trust-tile strong {
  display: block;
  font-size: 20px;
}

.trust-tile span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.section {
  padding: 92px 0;
  position: relative;
}

.section-dark {
  background: radial-gradient(circle at top left, rgba(74, 0, 255, 0.34), transparent 32%), radial-gradient(circle at right, rgba(0, 185, 255, 0.2), transparent 32%), var(--navy);
  color: rgba(255, 255, 255, 0.86);
}

.section-alt {
  background: linear-gradient(180deg, #f5f8ff 0%, #ffffff 100%);
}

.section-header {
  display: grid;
  gap: 14px;
  max-width: 820px;
  margin-bottom: 42px;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  justify-items: center;
}

h2,
.h2 {
  margin: 0;
  color: var(--heading);
  font-size: clamp(31px, 4.4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

h3,
h4 {
  margin: 0 0 12px;
  color: var(--heading);
  font-size: 22px;
  line-height: 1.22;
  letter-spacing: -0.025em;
}

h3::after,
h4::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  margin-top: 10px;
  margin-bottom: 12px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

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

.accent-rule {
  width: 74px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.section-header.center .accent-rule {
  margin: 0 auto;
}

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

.lead {
  font-size: 18px;
  color: #3d4860;
}

.section-dark .lead,
.section-dark p {
  color: rgba(255, 255, 255, 0.82);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(250px, 3fr);
  gap: 34px;
  align-items: center;
}

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

.split.reverse .split-media {
  order: -1;
}

.content-panel {
  padding: 34px;
  background: #ffffff;
  border: 1px solid rgba(74, 0, 255, 0.12);
  box-shadow: var(--shadow);
}

.section-dark .content-panel {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
}

.split-media {
  position: relative;
}

.split-media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.problem-card,
.review-card,
.faq-item,
.payment-card,
.area-card {
  background: #ffffff;
  border: 1px solid rgba(74, 0, 255, 0.12);
  box-shadow: 0 18px 56px rgba(12, 20, 70, 0.08);
}

.service-card {
  padding: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 185, 255, 0.45);
  box-shadow: 0 26px 70px rgba(0, 50, 255, 0.15);
}

.service-icon,
.mini-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.service-icon svg,
.mini-icon svg {
  width: 36px;
  height: 36px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.bullet-list,
.number-list {
  margin: 0;
  padding-left: 20px;
}

.bullet-list li,
.number-list li {
  margin-bottom: 10px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.problem-card {
  padding: 16px 18px;
  font-weight: 750;
  color: #172033;
}

.choice-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.choice-card,
.process-step {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.choice-card p,
.process-step p {
  color: rgba(255, 255, 255, 0.78);
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  font-weight: 900;
}

.cta-strip {
  padding: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #140042, #0032ff 56%, #00b9ff);
  box-shadow: var(--shadow);
}

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

.reviews-shell {
  position: relative;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 420ms ease;
}

.review-slide {
  min-width: 33.3333%;
  padding: 0 9px;
}

.review-card {
  min-height: 248px;
  padding: 26px;
}

.review-card .stars {
  font-size: 16px;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.review-card strong {
  display: block;
  color: var(--heading);
  margin-top: 16px;
}

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

.carousel-controls button {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 0;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  font-size: 22px;
  cursor: pointer;
}

.area-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
}

.area-card,
.payment-card {
  padding: 28px;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.tag-cloud span {
  display: inline-flex;
  padding: 8px 12px;
  color: #111827;
  background: #eaf5ff;
  border: 1px solid rgba(0, 185, 255, 0.24);
  font-weight: 750;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.faq-item {
  padding: 24px;
}

.contact-card {
  padding: 42px;
  color: #ffffff;
  background: radial-gradient(circle at top right, rgba(0, 185, 255, 0.34), transparent 32%), linear-gradient(135deg, #050816, #16004e 58%, #0032ff);
  box-shadow: var(--shadow);
}

.contact-card h2,
.contact-card p,
.contact-card a {
  color: #ffffff;
}

.footer {
  padding: 46px 0 34px;
  color: rgba(255, 255, 255, 0.74);
  background: #050816;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.footer .brand {
  margin-bottom: 16px;
}

.footer h3 {
  color: #ffffff;
  font-size: 22px;
}

.footer a {
  color: #ffffff;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.disclaimer {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 14px;
  line-height: 1.6;
}

.mobile-call-button {
  position: fixed;
  left: max(12px, env(safe-area-inset-left));
  right: max(12px, env(safe-area-inset-right));
  bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 100;
  display: none;
  width: auto;
  min-height: 58px;
  white-space: nowrap;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.42), 0 18px 42px rgba(0, 50, 255, 0.32); }
  50% { box-shadow: 0 0 0 12px rgba(255, 255, 255, 0), 0 22px 56px rgba(0, 185, 255, 0.44); }
}

@keyframes floatLight {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(26px, -20px, 0) scale(1.08); }
}

@media (max-width: 1060px) {
  .nav-links {
    gap: 12px;
  }

  .nav-links a {
    font-size: 16px;
  }

  .phone-button {
    padding: 12px 16px;
  }

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

@media (max-width: 820px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    min-height: 96px;
    flex-wrap: wrap;
    gap: 8px 12px;
    padding: 10px 0;
  }

  .brand {
    min-width: 0;
    flex: 1 1 calc(100% - 64px);
    font-size: 24px;
  }

  .menu-toggle {
    display: block;
  }

  .header-actions {
    order: 2;
    flex: 1 1 auto;
  }

  .header-actions .phone-button {
    width: 100%;
    min-height: 44px;
  }

  .nav-links {
    position: fixed;
    top: 96px;
    left: 0;
    right: 0;
    display: none;
    padding: 18px 20px 24px;
    background: rgba(5, 8, 22, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links.is-open {
    display: flex;
  }

  .hero {
    min-height: 100svh;
    padding: 150px 0 58px;
  }

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

  h2,
  .h2 {
    font-size: clamp(26px, 9vw, 38px);
  }

  .hero-trust,
  .split,
  .split.reverse,
  .area-layout,
  .faq-grid,
  .footer-grid,
  .cta-strip {
    grid-template-columns: 1fr;
  }

  .split.reverse .split-media {
    order: 0;
  }

  .services-grid,
  .choice-grid,
  .process-grid,
  .problem-grid {
    grid-template-columns: 1fr;
  }

  .review-slide {
    min-width: 100%;
  }

  .section {
    padding: 66px 0;
  }

  .content-panel,
  .contact-card,
  .cta-strip {
    padding: 24px;
  }

  .mobile-call-button {
    display: inline-flex;
  }

  body {
    padding-bottom: 88px;
  }
}

@media (max-width: 440px) {
  .brand {
    font-size: 22px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .phone-button,
  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .hero-buttons {
    width: 100%;
  }

  .mobile-call-button {
    font-size: 16px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
