html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

.site-shell {
  background:
    radial-gradient(circle at 15% 0%, rgba(89, 167, 255, 0.23), transparent 32rem),
    radial-gradient(circle at 90% 8%, rgba(11, 84, 166, 0.2), transparent 28rem),
    linear-gradient(180deg, #F8FBFF 0%, #FFFFFF 34%, #F4F8FF 100%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(11, 84, 166, 0.12);
  backdrop-filter: blur(18px);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #111827;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #59A7FF, #0B54A6);
  box-shadow: 0 14px 28px rgba(11, 84, 166, 0.28);
}

.logo-text {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

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

.desktop-nav a {
  font-size: 18px;
  font-weight: 700;
  color: #23314A;
  text-decoration: none;
}

.desktop-nav a:hover {
  color: var(--primary);
}

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

.hamburger {
  display: inline-flex !important;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(11, 84, 166, 0.18);
  border-radius: 16px;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  color: #0B54A6;
  box-shadow: 0 12px 24px rgba(11, 84, 166, 0.1);
}

.hamburger span,
.hamburger span::before,
.hamburger span::after {
  width: 22px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  display: block;
  position: relative;
}

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

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

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

.mobile-panel {
  display: none;
  position: fixed;
  inset: 78px 14px auto 14px;
  z-index: 49;
  padding: 18px;
  border-radius: 26px;
  background: rgba(6, 19, 37, 0.96);
  border: 1px solid rgba(89, 167, 255, 0.22);
  box-shadow: 0 24px 80px rgba(6, 19, 37, 0.36);
}

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

.mobile-panel a {
  display: block;
  padding: 13px 12px;
  border-radius: 14px;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
}

.mobile-panel a:hover {
  background: rgba(89, 167, 255, 0.13);
  color: #FFFFFF;
}

.btn-primary,
.btn-secondary,
.btn-dark,
.header-phone,
.sticky-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn-primary,
.header-phone {
  color: #FFFFFF;
  background: linear-gradient(135deg, #0B54A6, #1375D8 55%, #59A7FF);
  box-shadow: 0 18px 40px rgba(11, 84, 166, 0.28);
}

.btn-primary {
  min-height: 58px;
  padding: 0 24px;
  font-size: 18px;
}

.header-phone {
  min-height: 50px;
  padding: 0 18px;
  font-size: 18px;
}

.btn-secondary {
  min-height: 58px;
  padding: 0 24px;
  color: #0B54A6;
  background: #FFFFFF;
  border: 1px solid rgba(11, 84, 166, 0.18);
  box-shadow: 0 14px 30px rgba(11, 84, 166, 0.1);
  font-size: 18px;
}

.btn-dark {
  min-height: 54px;
  padding: 0 22px;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-dark:hover,
.header-phone:hover,
.sticky-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(11, 84, 166, 0.32);
}

.hero {
  padding: 34px 0 46px;
}

.hero-panel {
  display: grid;
  gap: 28px;
  align-items: stretch;
  padding: 20px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(11, 84, 166, 0.96), rgba(6, 19, 37, 0.98)),
    radial-gradient(circle at 20% 20%, rgba(89, 167, 255, 0.35), transparent 22rem);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(6, 19, 37, 0.24);
}

.hero-panel::before,
.hero-panel::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(89, 167, 255, 0.22);
  border-radius: 38px;
  transform: rotate(18deg);
  pointer-events: none;
}

.hero-panel::before {
  width: 240px;
  height: 240px;
  right: -90px;
  top: -80px;
}

.hero-panel::after {
  width: 180px;
  height: 180px;
  left: -80px;
  bottom: -100px;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 18px 4px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(89, 167, 255, 0.14);
  color: #EAF5FF;
  border: 1px solid rgba(89, 167, 255, 0.28);
  font-weight: 800;
  font-size: 16px;
}

h1 {
  color: #FFFFFF;
  font-size: clamp(35px, 10vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin: 0 0 14px;
  font-weight: 900;
}

.hero p {
  color: #EAF5FF;
  font-size: 18px;
  max-width: 650px;
}

.stars {
  color: var(--accent-warm);
  font-size: 24px;
  letter-spacing: 4px;
  margin: 12px 0;
}

.trust-icons {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  align-items: center;
  margin: 14px 0 18px;
}

.trust-icons img {
  width: auto;
  height: 48px;
  max-width: 31%;
  object-fit: contain;
  padding: 5px 8px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.hero-image-wrap {
  position: relative;
  z-index: 1;
  min-height: 320px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 28px 70px rgba(0, 0, 0, 0.28);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.hero-metric {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 14px;
  border-radius: 22px;
  color: #FFFFFF;
  background: rgba(6, 19, 37, 0.72);
  border: 1px solid rgba(89, 167, 255, 0.24);
  backdrop-filter: blur(16px);
}

.intro-card {
  margin-top: 30px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(11, 84, 166, 0.12);
  box-shadow: 0 18px 50px rgba(11, 84, 166, 0.09);
  font-size: 18px;
}

section {
  padding: 58px 0;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.section-title h2,
.section-title h3 {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(28px, 7vw, 44px);
  line-height: 1.08;
}

h3,
h4 {
  font-size: 20px;
  line-height: 1.18;
  font-weight: 900;
}

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

.sticker {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #E7F2FF, #FFFFFF);
  border: 1px solid rgba(11, 84, 166, 0.12);
  box-shadow: 0 14px 32px rgba(11, 84, 166, 0.12);
}

.sticker svg {
  width: 25px;
  height: 25px;
  color: #0B54A6;
}

.reviews-section {
  background: #061325;
  color: #F8FBFF;
  position: relative;
  overflow: hidden;
}

.reviews-section::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto auto;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(89, 167, 255, 0.2), transparent 70%);
}

.reviews-section h2,
.reviews-section h3,
.reviews-section strong {
  color: #FFFFFF;
}

.reviews-section p {
  color: #DCEBFF;
}

.carousel-shell {
  position: relative;
  z-index: 1;
  margin-top: 24px;
}

.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 2px 20px;
  scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  scroll-snap-align: start;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.055));
  border: 1px solid rgba(89, 167, 255, 0.22);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
}

.review-card p {
  margin: 0;
}

.review-stars {
  color: var(--accent-warm);
  letter-spacing: 2px;
  font-size: 18px;
}

.carousel-controls {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.carousel-btn {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(89, 167, 255, 0.28);
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.11);
  font-size: 22px;
  font-weight: 900;
}

.split-card {
  display: grid;
  gap: 22px;
  align-items: stretch;
  padding: 18px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(11, 84, 166, 0.12);
  box-shadow: 0 20px 60px rgba(11, 84, 166, 0.09);
}

.split-card.dark {
  background: linear-gradient(135deg, #071A33, #061325);
  border-color: rgba(89, 167, 255, 0.22);
  color: #EAF5FF;
}

.split-card.dark h2,
.split-card.dark h3,
.split-card.dark strong {
  color: #FFFFFF;
}

.split-card.dark p,
.split-card.dark li {
  color: #DCEBFF;
}

.split-text {
  padding: 8px;
}

.split-image {
  min-height: 260px;
  border-radius: 24px;
  overflow: hidden;
  background: #DCEBFF;
}

.split-image img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.issue-list,
.service-list,
.simple-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.issue-list li,
.service-list li,
.simple-list li {
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(11, 84, 166, 0.055);
  border: 1px solid rgba(11, 84, 166, 0.1);
}

.split-card.dark .issue-list li,
.split-card.dark .service-list li,
.split-card.dark .simple-list li {
  background: rgba(89, 167, 255, 0.105);
  border-color: rgba(89, 167, 255, 0.18);
}

.services-grid,
.benefit-grid,
.area-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

.service-card,
.benefit-card,
.area-card,
.faq-card,
.payment-card {
  padding: 22px;
  border-radius: 26px;
  background: #FFFFFF;
  border: 1px solid rgba(11, 84, 166, 0.12);
  box-shadow: 0 18px 46px rgba(11, 84, 166, 0.08);
}

.service-card h3,
.benefit-card h3,
.area-card h3,
.faq-card h3 {
  margin-top: 12px;
}

.icon-bubble {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #0B54A6;
  background: linear-gradient(135deg, #EAF5FF, #FFFFFF);
  border: 1px solid rgba(11, 84, 166, 0.12);
}

.icon-bubble svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.9;
}

.cta-band {
  padding: 28px;
  border-radius: 32px;
  color: #FFFFFF;
  background:
    radial-gradient(circle at 10% 20%, rgba(89, 167, 255, 0.32), transparent 16rem),
    linear-gradient(135deg, #0B54A6, #061325);
  box-shadow: 0 24px 70px rgba(11, 84, 166, 0.2);
}

.cta-band h2,
.cta-band h3,
.cta-band p,
.cta-band strong {
  color: #FFFFFF;
}

.process-steps {
  display: grid;
  gap: 14px;
  counter-reset: steps;
}

.process-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: 24px;
  background: #FFFFFF;
  border: 1px solid rgba(11, 84, 166, 0.12);
}

.process-step::before {
  counter-increment: steps;
  content: counter(steps);
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #FFFFFF;
  background: linear-gradient(135deg, #0B54A6, #59A7FF);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 20px;
}

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

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: #EAF5FF;
  color: #063B78;
  border: 1px solid rgba(11, 84, 166, 0.12);
  font-weight: 800;
}

.site-footer {
  padding: 42px 0 100px;
  background: #061325;
  color: #DCEBFF;
}

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

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

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

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

.sticky-call {
  display: none !important;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  width: 100%;
  min-height: 64px;
  border-radius: 22px 22px 0 0;
  background: linear-gradient(135deg, #0B54A6, #59A7FF);
  color: #FFFFFF;
  font-size: 16px;
  box-shadow: 0 -12px 40px rgba(11, 84, 166, 0.38);
  transform: translateY(110%);
  opacity: 0;
}

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

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .reviews-track {
    grid-auto-columns: calc((100% - 18px) / 2);
  }

  .services-grid,
  .benefit-grid,
  .area-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex !important;
    align-items: center;
    gap: 18px;
  }

  .desktop-phone {
    display: inline-flex !important;
  }

  .hamburger,
  .mobile-panel,
  .sticky-call,
  .sticky-call.visible {
    display: none !important;
  }

  .hero-panel {
    grid-template-columns: 1fr 1fr;
    padding: 28px;
  }

  .hero-content {
    padding: 30px 10px 30px 18px;
  }

  .hero-image-wrap,
  .hero-image-wrap img {
    min-height: 560px;
  }

  .split-card {
    grid-template-columns: minmax(0, 65%) minmax(0, 35%);
    padding: 24px;
  }

  .split-card.image-left {
    grid-template-columns: minmax(0, 35%) minmax(0, 65%);
  }

  .split-card.image-left .split-image {
    order: -1;
  }

  .reviews-track {
    grid-auto-columns: calc((100% - 36px) / 3);
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 1fr;
  }

  .site-footer {
    padding-bottom: 42px;
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .benefit-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: clamp(35px, 13vw, 45px);
  }

  h2 {
    font-size: clamp(28px, 9vw, 31px);
  }

  .logo-text {
    max-width: 210px;
    font-size: 24px;
  }

  .mobile-menu-phone {
    margin-top: 10px;
    text-align: center;
    background: linear-gradient(135deg, #0B54A6, #59A7FF);
    white-space: nowrap;
  }
}
