
/* ===== TOKENS ===== */





*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0 }

body {
  background: var(--stone);
  color: var(--body);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block }
a { color: inherit; text-decoration: none }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(11,22,40,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
  transition: padding .3s;
}
.header.scrolled { padding: 10px 0 }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  width: 36px; height: 36px;
  background: var(--neon);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.header-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  color: rgba(255,255,255,.6);
  padding: 8px 14px;
  border-radius: 60px;
  transition: color .2s, background .2s;
}
.header-nav a:hover { color: #fff }
.header-nav a.active {
  color: #fff;
  background: rgba(61,107,229,.15);
}
@media (max-width: 860px) { .header-nav { display: none } }

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-phone {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: rgba(255,255,255,.8);
  letter-spacing: .01em;
}
.header-phone:hover { color: #fff }
@media (max-width: 600px) { .header-phone { display: none } }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all .25s;
  text-decoration: none;
}
.btn-neon {
  background: var(--neon);
  color: #fff;
  padding: 12px 28px;
  border-radius: 60px;
}
.btn-neon:hover {
  background: var(--neon-hover);
  box-shadow: var(--neon-glow);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.2);
  padding: 11px 26px;
  border-radius: 60px;
}
.btn-outline:hover {
  border-color: var(--neon);
  color: var(--neon);
}
.btn-lg { padding: 16px 36px; font-size: 16px }
.btn-dark {
  background: var(--dark);
  color: #fff;
  padding: 12px 28px;
  border-radius: 60px;
  border: 1px solid rgba(255,255,255,.1);
}
.btn-dark:hover { border-color: var(--neon) }
.btn-white {
  background: #fff;
  color: var(--dark);
  padding: 12px 28px;
  border-radius: 60px;
}
.btn-white:hover { box-shadow: var(--shadow-lg); transform: translateY(-1px) }
.btn-google {
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--line);
  padding: 11px 26px;
  border-radius: 60px;
  gap: 8px;
}
.btn-google:hover {
  border-color: var(--neon);
  box-shadow: var(--shadow);
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: var(--dark);
  padding: 120px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 80%, rgba(61,107,229,.06) 0%, transparent 70%);
}
.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(61,107,229,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61,107,229,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero > .container { position: relative; z-index: 1 }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.35);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,.5); transition: color .2s }
.breadcrumb a:hover { color: var(--neon) }
.breadcrumb span { color: rgba(255,255,255,.2) }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 46px);
  font-weight: 800;
  line-height: 1.14;
  color: #fff;
  text-wrap: balance;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.page-hero-sub {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,.5);
  max-width: 520px;
}

/* ===== SECTION COMMON ===== */
section { padding: 80px 0 }
@media (max-width: 600px) { section { padding: 56px 0 } }
section.dark {
  background: var(--dark);
  color: rgba(255,255,255,.75);
}
section.dark h2, section.dark h3, section.dark strong { color: #fff }

.section-eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 12px;
}
h2.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  line-height: 1.18;
  color: var(--ink);
  text-wrap: balance;
  margin-bottom: 16px;
  letter-spacing: -.015em;
}
section.dark h2.section-title { color: #fff }
.section-desc {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}
section.dark .section-desc { color: rgba(255,255,255,.45) }

/* ===== NEON DIVIDER ===== */
.neon-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
  opacity: .25;
}

/* ===== GOOGLE RATING BAR ===== */
.rating-bar {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
  margin-bottom: 32px;
}
.rating-bar-g {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.rating-bar-g svg { width: 40px; height: 40px }
.rating-score {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}
.rating-meta { flex: 1; min-width: 180px }
.rating-stars {
  color: var(--amber);
  font-size: 22px;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 2px;
}
.rating-count {
  font-size: 14px;
  color: var(--muted);
  font-family: var(--font-display);
  font-weight: 500;
}
.rating-bar .btn { margin-left: auto; flex-shrink: 0 }
@media (max-width: 600px) {
  .rating-bar { padding: 20px; gap: 16px }
  .rating-score { font-size: 36px }
  .rating-bar .btn { margin-left: 0; width: 100% }
}

/* ===== FILTER PILLS ===== */
.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.filter-pill {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 60px;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  transition: all .2s;
}
.filter-pill:hover {
  border-color: var(--neon);
  color: var(--neon);
}
.filter-pill.active {
  background: var(--neon);
  border-color: var(--neon);
  color: #fff;
}

/* ===== REVIEW CARDS ===== */
.reviews-masonry {
  columns: 2;
  column-gap: 16px;
}
@media (max-width: 700px) { .reviews-masonry { columns: 1 } }

.g-review {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
  break-inside: avoid;
  position: relative;
  transition: box-shadow .25s, transform .25s;
}
.g-review:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.g-review-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .02em;
}
.g-review-badge svg { width: 16px; height: 16px }

.g-review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.g-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.g-reviewer-info h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}
.g-reviewer-date {
  font-size: 13px;
  color: var(--muted);
  margin-top: 1px;
}
.g-review-stars {
  color: var(--amber);
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.g-review-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--body);
}
.g-review-tag {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--neon);
  background: var(--neon-dim);
  padding: 4px 12px;
  border-radius: 60px;
}

/* Avatar colors */
.g-avatar-1 { background: #4285f4 }
.g-avatar-2 { background: #34a853 }
.g-avatar-3 { background: #ea4335 }
.g-avatar-4 { background: #7c3aed }
.g-avatar-5 { background: #0891b2 }
.g-avatar-6 { background: #c2410c }
.g-avatar-7 { background: #1d4ed8 }
.g-avatar-8 { background: #059669 }

/* ===== VIDEO SECTION ===== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 860px) { .video-grid { grid-template-columns: 1fr 1fr } }
@media (max-width: 560px) { .video-grid { grid-template-columns: 1fr } }

.video-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.video-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.video-thumb {
  aspect-ratio: 16/9;
  background: var(--ph-bg);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}
.video-play {
  width: 64px; height: 64px;
  background: rgba(255,255,255,.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  transition: transform .25s;
}
.video-card:hover .video-play { transform: scale(1.08) }
.video-play::after {
  content: '';
  display: block;
  width: 0; height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent var(--dark);
  margin-left: 3px;
}
.video-label {
  padding: 14px 18px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}
.video-label small {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  margin-top: 2px;
}

/* ===== STATS ===== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 700px) { .stats-bar { grid-template-columns: repeat(2, 1fr) } }

.stat-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: border-color .25s;
}
.stat-card:hover { border-color: rgba(255,255,255,.14) }
.stat-value {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-value.amber { color: var(--amber) }
.stat-value.neon { color: var(--neon) }
.stat-label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.45);
}

/* ===== CTA ===== */
.cta-section {
  background: var(--dark);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(61,107,229,.06), transparent 70%);
}
.cta-section > * { position: relative; z-index: 1 }
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #fff;
  text-wrap: balance;
  margin-bottom: 12px;
  letter-spacing: -.015em;
}
.cta-section p {
  font-size: 17px;
  color: rgba(255,255,255,.45);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}
.cta-contacts {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  font-family: var(--font-display);
  font-size: 14px;
  color: rgba(255,255,255,.35);
}
.cta-contacts a { color: rgba(255,255,255,.6); transition: color .2s }
.cta-contacts a:hover { color: var(--neon) }

/* ===== FOOTER ===== */
.footer {
  background: #070e1a;
  padding: 48px 0 32px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr } }

.footer-about .logo { margin-bottom: 14px; font-size: 18px }
.footer-about p {
  font-size: 14px;
  color: rgba(255,255,255,.35);
  line-height: 1.6;
  max-width: 300px;
}
.footer h5 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.3);
  margin-bottom: 16px;
}
.footer ul { list-style: none }
.footer ul li { margin-bottom: 10px }
.footer ul a {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  transition: color .15s;
}
.footer ul a:hover { color: var(--neon) }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.05);
  font-size: 13px;
  color: rgba(255,255,255,.25);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== MOBILE STICKY BAR ===== */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99;
  background: rgba(11,22,40,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 16px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.mobile-bar-inner { display: flex; gap: 10px }
.mobile-bar .btn { flex: 1; text-align: center; font-size: 14px; padding: 12px 16px }
@media (max-width: 760px) {
  .mobile-bar { display: block }
  body { padding-bottom: 72px }
}

/* ===== MOBILE MENU ===== */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px; height: 36px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
@media (max-width: 860px) {
  .menu-toggle { display: flex }
}
