@font-face {
  font-family: "ForgeSans";
  src: local("Arial");
  font-display: swap;
}

:root {
  --font-heading: "ForgeSans", Arial, sans-serif;
  --font-body: "ForgeSans", Arial, sans-serif;
  --primary: #2F2D5E;
  --primary-dark: #201F45;
  --secondary: #6D6AAF;
  --accent: #F9D80F;
  --heading: #111827;
  --text: #303346;
  --muted: #5E6378;
  --soft: #F7F7FC;
  --dark: #15142F;
  --line: rgba(47, 45, 94, .16);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: #FFFFFF;
  font-size: 16px;
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

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

a {
  color: inherit;
}

.site-shell {
  overflow: hidden;
}

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

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

.accent-rule {
  width: 76px;
  height: 4px;
  background: var(--accent);
  margin: 18px 0 0;
  box-shadow: 0 0 18px rgba(249, 216, 15, .55);
}

.accent-rule.center {
  margin-left: auto;
  margin-right: auto;
}

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(47, 45, 94, .12);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #111827;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -.04em;
  white-space: nowrap;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--primary), var(--secondary));
  border: 1px solid rgba(255, 255, 255, .38);
  box-shadow: 0 12px 30px rgba(47, 45, 94, .25);
}

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

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

.hamburger {
  width: 46px;
  height: 46px;
  display: grid !important;
  place-items: center;
  border: 1px solid rgba(47, 45, 94, .22);
  color: var(--primary);
  background: #FFFFFF;
}

.hamburger span,
.hamburger span::before,
.hamburger span::after {
  width: 22px;
  height: 2px;
  background: currentColor;
  display: block;
  content: "";
  transition: .25s ease;
}

.hamburger span::before {
  transform: translateY(-7px);
}

.hamburger span::after {
  transform: translateY(5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 78px 0 auto 0;
  z-index: 49;
  background: #FFFFFF;
  border-bottom: 1px solid rgba(47, 45, 94, .14);
  box-shadow: 0 24px 42px rgba(21, 20, 47, .18);
  padding: 20px 16px 24px;
}

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

.mobile-menu a {
  display: block;
  padding: 14px 8px;
  color: #111827;
  text-decoration: none;
  font-weight: 800;
  border-bottom: 1px solid rgba(47, 45, 94, .1);
}

.phone-button,
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  background: var(--accent);
  color: #111827 !important;
  text-decoration: none;
  font-weight: 900;
  white-space: nowrap;
  border: 1px solid rgba(17, 24, 39, .18);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, .55), 0 16px 32px rgba(249, 216, 15, .22);
  animation: ctaGlow 2.6s ease-in-out infinite;
}

.phone-button.dark {
  background: var(--primary);
  color: #FFFFFF !important;
  border-color: rgba(255, 255, 255, .16);
}

.cta-button:hover,
.phone-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 10px rgba(255, 255, 255, .22), 0 22px 38px rgba(47, 45, 94, .22);
}

.hero {
  min-height: 760px;
  padding: 126px 0 64px;
  color: #FFFFFF;
  position: relative;
  background: linear-gradient(90deg, rgba(21, 20, 47, .94) 0%, rgba(47, 45, 94, .82) 45%, rgba(47, 45, 94, .24) 100%), url('../images/hero-technician.jpg') center/cover no-repeat;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(249, 216, 15, .7), transparent);
  opacity: .5;
}

.hero::before {
  right: 18%;
}

.hero::after {
  right: 28%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
  align-items: center;
}

.hero h1,
.hero h2,
.hero h3 {
  color: #FFFFFF;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .11);
  backdrop-filter: blur(14px);
  color: #FFFFFF;
  font-weight: 800;
  letter-spacing: .02em;
}

.stars {
  color: var(--accent);
  font-size: 24px;
  letter-spacing: .12em;
  margin: 18px 0 12px;
  text-shadow: 0 0 18px rgba(249, 216, 15, .4);
}

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

.trust-icons img {
  width: auto;
  height: 48px;
  max-width: 124px;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, .32);
  background: rgba(255, 255, 255, .12);
  padding: 6px 10px;
}

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

.hero-cta-note {
  color: #FFFFFF;
  font-weight: 900;
  margin: 28px 0 12px;
}

.benefit-panel {
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .25);
  backdrop-filter: blur(22px);
  padding: 24px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .24);
}

.benefit-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.benefit-item:last-child {
  border-bottom: 0;
}

.benefit-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #111827;
  background: var(--accent);
}

.benefit-item strong {
  display: block;
  color: #FFFFFF;
  font-size: 17px;
}

.benefit-item span {
  display: block;
  color: #F3F4F6;
  font-size: 15px;
  line-height: 1.5;
}

.intro-card {
  margin-top: -40px;
  position: relative;
  z-index: 2;
  background: #FFFFFF;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(47, 45, 94, .14);
  padding: 28px;
}

.split-block {
  display: grid;
  gap: 28px;
  align-items: center;
  margin-top: 34px;
}

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

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

.split-image img,
.visual-card img {
  width: 100%;
  display: block;
  border: 1px solid rgba(47, 45, 94, .14);
  box-shadow: 0 24px 45px rgba(47, 45, 94, .14);
}

.soft-section {
  background: linear-gradient(180deg, #F7F7FC 0%, #FFFFFF 100%);
}

.dark-section {
  background: radial-gradient(circle at 20% 0%, rgba(109, 106, 175, .45), transparent 36%), var(--dark);
  color: #F7F7FC;
}

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

.dark-section p,
.dark-section li {
  color: #E7E7F4;
}

.cards-grid {
  display: grid;
  gap: 18px;
}

.service-card,
.reason-card,
.faq-item,
.review-card {
  background: #FFFFFF;
  color: #303346;
  border: 1px solid rgba(47, 45, 94, .14);
  box-shadow: 0 18px 38px rgba(47, 45, 94, .08);
}

.service-card {
  padding: 22px;
  transition: .25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 216, 15, .8);
}

.service-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 16px;
  background: #F7F7FC;
  border: 1px solid rgba(47, 45, 94, .12);
  display: grid;
  place-items: center;
}

.service-icon svg {
  width: 36px;
  height: 36px;
}

.reason-table {
  width: 100%;
  border-collapse: collapse;
  background: #FFFFFF;
  color: #303346;
  border: 1px solid rgba(47, 45, 94, .14);
  box-shadow: 0 24px 55px rgba(47, 45, 94, .12);
}

.reason-table th,
.reason-table td {
  padding: 18px;
  border-bottom: 1px solid rgba(47, 45, 94, .12);
  text-align: left;
  vertical-align: top;
}

.reason-table th {
  background: var(--primary);
  color: #FFFFFF;
  font-weight: 900;
}

.review-shell {
  position: relative;
}

.review-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 6px 0 18px;
}

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

.review-card {
  flex: 0 0 86%;
  scroll-snap-align: start;
  padding: 24px;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card .stars {
  font-size: 17px;
  margin: 0 0 14px;
  color: #B99F00;
}

.review-author {
  color: #111827;
  font-weight: 900;
  margin-top: 18px;
}

.slider-controls {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 10px;
}

.slider-controls button {
  width: 46px;
  height: 46px;
  background: var(--primary);
  color: #FFFFFF;
  border: 0;
  font-weight: 900;
}

.cta-band {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #FFFFFF;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 30px 70px rgba(47, 45, 94, .22);
}

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

.cta-band p {
  color: #F7F7FC;
}

.models-line {
  font-size: 16px;
  color: #303346;
  background: #FFFFFF;
  border-left: 5px solid var(--accent);
  padding: 18px;
  box-shadow: 0 14px 34px rgba(47, 45, 94, .08);
}

.faq-item {
  padding: 22px;
}

.faq-item h3 {
  margin-bottom: 8px;
}

.footer {
  background: #0F0E24;
  color: #EDEDF7;
  padding: 54px 0 34px;
  font-size: 14px;
}

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

.footer h3,
.footer h4 {
  color: #FFFFFF;
}

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

.footer .brand {
  color: #FFFFFF;
}

.footer a {
  text-decoration: none;
}

.disclaimer {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: #D7D7E8 !important;
}

.mobile-sticky-call {
  display: flex !important;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 10px calc(12px + env(safe-area-inset-bottom));
  background: var(--primary-dark);
  color: #FFFFFF !important;
  text-decoration: none;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 -14px 30px rgba(0, 0, 0, .24);
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition: transform .28s ease, opacity .28s ease;
}

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

.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

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

@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, .5), 0 16px 32px rgba(249, 216, 15, .22); }
  50% { box-shadow: 0 0 0 12px rgba(255, 255, 255, .14), 0 20px 42px rgba(249, 216, 15, .3); }
}

@media (min-width: 640px) {
  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .desktop-nav a {
    color: #111827;
    text-decoration: none;
    font-weight: 800;
    font-size: 16px;
  }

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

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

  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .65fr);
  }

  .split-block {
    grid-template-columns: minmax(0, 65fr) minmax(280px, 35fr);
  }

  .split-block.reverse {
    grid-template-columns: minmax(280px, 35fr) minmax(0, 65fr);
  }

  .split-block.reverse .split-image {
    order: -1;
  }

  .cards-grid.three,
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cards-grid.four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .review-card {
    flex-basis: calc((100% - 36px) / 3);
  }
}

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

  h2 {
    font-size: 31px;
  }

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

  .header-inner {
    height: 72px;
  }

  .brand {
    font-size: 24px;
    max-width: calc(100vw - 96px);
  }

  .brand-text {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero {
    min-height: 760px;
    padding-top: 108px;
  }

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

  .benefit-panel {
    padding: 18px;
  }

  .intro-card,
  .cta-band {
    padding: 22px;
  }

  .reason-table,
  .reason-table tbody,
  .reason-table tr,
  .reason-table td,
  .reason-table th {
    display: block;
    width: 100%;
  }

  .reason-table thead {
    display: none;
  }

  .reason-table td:first-child {
    background: var(--primary);
    color: #FFFFFF;
    font-weight: 900;
  }

  body {
    padding-bottom: 66px;
  }
}

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