:root {
  --primary: #06162d;
  --primary-2: #0b2447;
  --primary-3: #123a6c;
  --accent: #2b67ab;
  --accent-2: #58a0ff;
  --heading: #111827;
  --text: #243044;
  --muted: #5d6b80;
  --surface: #ffffff;
  --surface-alt: #f4f8fd;
  --line: rgba(43, 103, 171, .18);
  --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 {
  font-family: var(--font-body);
  color: var(--text);
  background: #fff;
  font-size: 16px;
  line-height: 1.65;
}

body.mobile-menu-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--heading);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(39px, 8vw, 56px);
  font-weight: 900;
}

h2 {
  font-size: clamp(31px, 7vw, 44px);
  font-weight: 850;
}

h3,
h4 {
  font-size: clamp(22px, 5vw, 25px);
  font-weight: 800;
}

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

strong {
  color: inherit;
  font-weight: 800;
}

.site-shell {
  overflow: hidden;
}

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

.topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background: linear-gradient(180deg, rgba(6, 22, 45, .88), rgba(6, 22, 45, .28));
  backdrop-filter: blur(16px);
}

.nav-row {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -.04em;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #0f4f95);
  border: 1px solid rgba(255, 255, 255, .22);
  box-shadow: 0 14px 34px rgba(43, 103, 171, .34);
  flex: none;
}

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

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

.desktop-nav a {
  color: rgba(255, 255, 255, .86);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s ease;
}

.desktop-nav a:hover {
  color: #fff;
}

.phone-btn,
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  color: #fff;
  background: var(--accent);
  border: 1px solid rgba(255, 255, 255, .22);
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 18px 44px rgba(43, 103, 171, .35);
  position: relative;
  overflow: visible;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.phone-btn:hover,
.cta-btn:hover {
  transform: translateY(-2px);
  background: #1f5d9f;
  color: #fff;
  box-shadow: 0 24px 56px rgba(43, 103, 171, .46);
}

.cta-btn::after,
.phone-btn::after,
.sticky-call::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(255, 255, 255, .46);
  opacity: 0;
  animation: pulseGlow 2.4s ease-in-out infinite;
  pointer-events: none;
}

.header-phone {
  display: none;
}

.mobile-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hamburger {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .24);
  color: #fff;
  background: rgba(255, 255, 255, .08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hamburger span,
.hamburger span::before,
.hamburger span::after {
  width: 21px;
  height: 2px;
  background: currentColor;
  display: block;
  position: relative;
  transition: transform .2s ease, opacity .2s ease;
}

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

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

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

.hamburger.active span {
  transform: rotate(45deg);
}

.hamburger.active span::before {
  transform: translateY(7px) rotate(90deg);
}

.hamburger.active span::after {
  opacity: 0;
}

.mobile-phone-row {
  width: 100%;
  padding: 0 0 14px;
  display: flex;
}

.mobile-phone-row .phone-btn {
  width: 100%;
  min-height: 44px;
  color: #fff;
  font-size: 16px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  padding: 122px 24px 28px;
  background: rgba(6, 22, 45, .98);
  transform: translateX(100%);
  transition: transform .28s ease;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu a {
  display: block;
  padding: 16px 0;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  text-decoration: none;
  font-weight: 800;
}

.hero {
  min-height: 780px;
  position: relative;
  color: #fff;
  background: linear-gradient(rgba(4, 15, 31, .72), rgba(4, 15, 31, .83)), url("../images/hero-kitchen.jpg") center / cover no-repeat;
  display: grid;
  align-items: center;
  padding: 170px 0 80px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 28%, rgba(43, 103, 171, .55), transparent 34%), radial-gradient(circle at 86% 68%, rgba(88, 160, 255, .18), transparent 31%);
}

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

.hero h1,
.hero p {
  color: #fff;
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: rgba(43, 103, 171, .24);
  border: 1px solid rgba(88, 160, 255, .34);
  padding: 8px 13px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.section-kicker {
  color: #0f3f7a;
  background: rgba(43, 103, 171, .09);
  border-color: rgba(43, 103, 171, .16);
}

.stars {
  color: var(--accent-2);
  font-size: 30px;
  letter-spacing: .16em;
  margin: 22px 0 12px;
  text-shadow: 0 0 22px rgba(88, 160, 255, .42);
}

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

.hero-icons img {
  width: auto;
  height: 48px;
  max-width: 150px;
  object-fit: contain;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 255, 255, .48);
  padding: 6px 10px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .28);
}

.hero-lead {
  max-width: 820px;
  margin: 20px auto 28px;
  font-size: 18px;
  color: rgba(255, 255, 255, .9);
}

.hero-cta-note {
  margin: 0 auto 16px;
  color: #fff;
  font-weight: 900;
}

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

.section-pad {
  padding: 76px 0;
}

.section-dark {
  color: #eaf2ff;
  background: linear-gradient(135deg, #06162d 0%, #0b2447 58%, #071b37 100%);
}

.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark p,
.section-dark li {
  color: #fff;
}

.section-dark .section-kicker {
  color: #fff;
  background: rgba(88, 160, 255, .18);
  border-color: rgba(88, 160, 255, .36);
}

.section-alt {
  background: linear-gradient(180deg, #f7fbff, #eef5fc);
}

.underbar::after {
  content: "";
  display: block;
  width: 78px;
  height: 4px;
  margin-top: 16px;
  background: var(--accent);
}

.underbar.center::after {
  margin-left: auto;
  margin-right: auto;
}

.split-row {
  display: grid;
  gap: 30px;
  align-items: center;
}

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

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

.split-media img,
.premium-img {
  width: 100%;
  display: block;
  border: 1px solid rgba(43, 103, 171, .18);
  box-shadow: 0 26px 70px rgba(6, 22, 45, .16);
}

.glass-card {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .24);
}

.review-shell {
  position: relative;
  margin-top: 34px;
}

.review-window {
  overflow: hidden;
}

.review-track {
  display: flex;
  transition: transform .4s ease;
}

.review-card {
  flex: 0 0 100%;
  padding: 0 10px;
}

.review-inner {
  min-height: 280px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 28px;
  box-shadow: 0 18px 46px rgba(6, 22, 45, .08);
}

.review-name {
  color: #111827;
  font-weight: 900;
  margin-bottom: 12px;
}

.review-stars {
  color: var(--accent);
  letter-spacing: .08em;
  font-weight: 900;
  margin-bottom: 14px;
}

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

.carousel-controls button {
  width: 48px;
  height: 48px;
  color: #fff;
  background: var(--primary);
  border: 0;
  font-weight: 900;
}

.service-list {
  display: grid;
  gap: 28px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 22px 64px rgba(6, 22, 45, .08);
  padding: 28px;
}

.service-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.icon-box {
  width: 58px;
  height: 58px;
  flex: none;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #0d4c8e);
  box-shadow: 0 14px 32px rgba(43, 103, 171, .24);
}

.icon-box svg {
  width: 32px;
  height: 32px;
}

.service-card ul,
.why-list,
.faq-list {
  margin: 18px 0 0;
  padding-left: 20px;
}

.service-card li,
.why-list li {
  margin-top: 12px;
}

.why-grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.why-item {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  padding: 22px;
}

.cta-band {
  background: linear-gradient(135deg, #0b2447, #06162d 72%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 34px;
  display: grid;
  gap: 22px;
  align-items: center;
  box-shadow: 0 32px 90px rgba(6, 22, 45, .22);
}

.cta-band h2,
.cta-band p {
  color: #fff;
}

.faq-grid {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.faq-item {
  border: 1px solid var(--line);
  background: #fff;
  padding: 24px;
  box-shadow: 0 16px 46px rgba(6, 22, 45, .06);
}

.service-area {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.service-area span {
  display: inline-flex;
  border: 1px solid rgba(43, 103, 171, .2);
  padding: 7px 12px;
  color: #123a6c;
  background: rgba(43, 103, 171, .07);
  font-weight: 800;
}

.footer {
  background: #040f1f;
  color: rgba(255, 255, 255, .74);
  padding: 54px 0 92px;
  font-size: 14px;
}

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

.footer h3,
.footer h4,
.footer .brand {
  color: #fff;
}

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

.footer a {
  color: #fff;
  text-decoration: none;
}

.disclaimer {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .62);
}

.sticky-call {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 12px 10px calc(12px + env(safe-area-inset-bottom));
  color: #fff;
  background: var(--accent);
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(110%);
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}

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

.fade-up {
  animation: fadeUp .7s ease both;
}

.float-soft {
  animation: floatSoft 7s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0; transform: scale(.98); }
  45% { opacity: .7; transform: scale(1.03); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes floatSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (min-width: 768px) {
  .header-phone,
  .desktop-nav {
    display: flex;
  }

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

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

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

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

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

  .service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-grid,
  .faq-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

@media (max-width: 767px) {
  .topbar {
    position: absolute;
  }

  .nav-row {
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 14px;
  }

  .brand {
    font-size: 24px;
  }

  .brand span:last-child {
    max-width: 220px;
    white-space: normal;
  }

  .hero {
    min-height: 740px;
    padding-top: 170px;
  }

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

  .section-pad {
    padding: 58px 0;
  }

  .cta-btn {
    width: 100%;
  }

  .service-card,
  .review-inner,
  .faq-item,
  .cta-band {
    padding: 22px;
  }

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