/* =========================================
   ROOT & RESET
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple: #663792;
  --purple-dark: #4a2870;
  --purple-light: #8b52bf;
  --yellow: #FFCD35;
  --yellow-dark: #e6b800;
  --text: #0C070E;
  --text-muted: #6b6477;
  --bg: #fff;
  --bg-soft: #f7f4fb;
  --bg-dark: #1a0d2e;
  --border: rgba(102, 55, 146, 0.15);
  --shadow: 0 8px 32px rgba(102, 55, 146, 0.12);
  --shadow-lg: 0 20px 60px rgba(102, 55, 146, 0.2);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Jost', sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.6;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-16px); }
}
@keyframes pulsePurple {
  0%, 100% { box-shadow: 0 0 0 0 rgba(102,55,146,0.4); }
  50%       { box-shadow: 0 0 0 14px rgba(102,55,146,0); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(8px); opacity: 0.5; }
}
@keyframes particleMove {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateY(-120vh) translateX(40px) scale(0); opacity: 0; }
}

.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease calc(var(--d, 0s)), transform 0.6s ease calc(var(--d, 0s));
}
.animate-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-float {
  animation: float 4s ease-in-out infinite;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::before { opacity: 1; }
.btn--primary {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 4px 16px rgba(102,55,146,0.35);
}
.btn--primary:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(102,55,146,0.4);
}
.btn--outline {
  background: transparent;
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  transform: translateY(-2px);
}
.btn--yellow {
  background: var(--yellow);
  color: var(--text);
  box-shadow: 0 4px 16px rgba(255,205,53,0.4);
}
.btn--yellow:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,205,53,0.5);
}
.btn--lg { padding: 16px 32px; font-size: 16px; }

/* =========================================
   TOP BAR
   ========================================= */
.topbar {
  background: var(--purple);
  color: #fff;
  font-size: 13px;
  padding: 8px 0;
  position: relative;
  z-index: 100;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.topbar__left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.topbar__icon { font-size: 14px; }
.topbar__sep { opacity: 0.4; }
.topbar__right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.topbar__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  transition: var(--transition);
}
.topbar__social--tg { background: rgba(255,255,255,0.15); }
.topbar__social--tg:hover { background: #2AABEE; }
.topbar__social--vb { background: rgba(255,255,255,0.15); }
.topbar__social--vb:hover { background: #7360F2; }
.topbar__phone {
  font-weight: 700;
  font-size: 14px;
  transition: opacity 0.2s;
}
.topbar__phone:hover { opacity: 0.8; }

/* =========================================
   HEADER
   ========================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.header.scrolled {
  box-shadow: var(--shadow);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.5px;
  white-space: nowrap;
  flex-shrink: 0;
}
.logo__ne {
  color: var(--purple);
  background: var(--purple);
  color: #fff;
  padding: 2px 7px;
  border-radius: 6px 0 0 6px;
}
.logo__reality {
  color: var(--purple);
  padding: 2px 7px;
  border: 2px solid var(--purple);
  border-left: none;
  border-radius: 0 6px 6px 0;
}
.logo--light .logo__ne {
  background: #fff;
  color: var(--purple);
}
.logo--light .logo__reality {
  color: #fff;
  border-color: #fff;
}

.nav { margin-left: auto; }
.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__item { position: relative; }
.nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  transition: var(--transition);
}
.nav__link:hover {
  color: var(--purple);
  background: var(--bg-soft);
}
.nav__arrow { font-size: 10px; }
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  min-width: 200px;
  padding: 6px;
  z-index: 200;
  animation: fadeUp 0.2s ease;
}
.nav__item--dropdown:hover .dropdown { display: block; }
.dropdown__link {
  display: block;
  padding: 9px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}
.dropdown__link:hover {
  background: var(--bg-soft);
  color: var(--purple);
}
.header__cta { flex-shrink: 0; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.burger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =========================================
   MOBILE NAV
   ========================================= */
.mobile-nav {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg-dark);
  z-index: 98;
  padding: 100px 30px 40px;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav__list { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav__link {
  display: block;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
}
.mobile-nav__link:hover { color: var(--yellow); }
.mobile-nav__link--phone {
  color: var(--yellow);
  font-size: 20px;
  font-weight: 800;
  margin-top: 20px;
  border: none;
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 90vh;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #2b1155 50%, #663792 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,205,53,0.3);
  animation: particleMove linear infinite;
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero__glow--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(102,55,146,0.5) 0%, transparent 70%);
  top: -200px; right: -100px;
}
.hero__glow--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,205,53,0.2) 0%, transparent 70%);
  bottom: -100px; left: 100px;
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 20px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,205,53,0.15);
  border: 1px solid rgba(255,205,53,0.4);
  color: var(--yellow);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero__title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero__accent {
  color: var(--yellow);
  position: relative;
}
.hero__accent::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
}
.hero__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 30px;
  line-height: 1.7;
}
.hero__ratings {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.rating-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Console Visual */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__console-wrap {
  position: relative;
}
.hero__console {
  width: 280px;
  height: 180px;
  background: linear-gradient(145deg, #1a1a2e, #2d1b69);
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}
.hero__console::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(255,205,53,0.05), transparent 30%);
  animation: float 4s linear infinite;
}
.console-screen {
  width: 180px;
  height: 110px;
  background: linear-gradient(135deg, #0f0f23, #1a1a3e);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,0.1);
  box-shadow: 0 0 30px rgba(102,55,146,0.5), inset 0 0 30px rgba(102,55,146,0.1);
}
.console-screen__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.console-screen__ps {
  font-size: 42px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--purple-light), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -2px;
}

.hero__badge-float {
  position: absolute;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  white-space: nowrap;
}
.hero__badge-float--1 {
  top: -20px; left: -30px;
  animation: float 3s ease-in-out infinite;
}
.hero__badge-float--2 {
  bottom: 0px; right: -40px;
  animation: float 3.5s ease-in-out 0.5s infinite;
}
.hero__badge-float--3 {
  bottom: -30px; left: 20px;
  animation: float 4s ease-in-out 1s infinite;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid rgba(255,255,255,0.5);
  border-bottom: 2px solid rgba(255,255,255,0.5);
  transform: rotate(45deg);
  animation: scrollBounce 1.5s ease-in-out infinite;
}

/* =========================================
   SECTIONS COMMON
   ========================================= */
section { padding: 80px 0; }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}

/* =========================================
   SERVICES
   ========================================= */
.services { background: var(--bg-soft); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--purple);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { opacity: 1; }
.service-card--featured {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: #fff;
  border-color: transparent;
}
.service-card--featured .service-card__desc { color: rgba(255,255,255,0.8); }
.service-card--featured .service-card__price { color: var(--yellow); }
.service-card--featured .service-card__price span { color: var(--yellow); }
.service-card--featured::before { background: var(--yellow); opacity: 1; }
.service-card--featured:hover {
  box-shadow: 0 24px 60px rgba(102,55,146,0.4);
}

.service-card__badge {
  position: absolute;
  top: 16px; right: 16px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.service-card__badge--new { background: var(--yellow); color: var(--text); }
.service-card__badge--hot { background: #ff4757; color: #fff; }

.service-card__icon { font-size: 40px; margin-bottom: 16px; }
.service-card__title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}
.service-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-card__price {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.service-card__price span {
  font-size: 26px;
  font-weight: 900;
  color: var(--purple);
}
.service-card__btn { width: 100%; justify-content: center; }

/* =========================================
   ADVANTAGES
   ========================================= */
.advantages { background: #fff; }
.advantages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.adv-card {
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
}
.adv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--purple);
  background: var(--bg-soft);
}
.adv-card__icon {
  font-size: 40px;
  margin-bottom: 14px;
  display: block;
}
.adv-card__title {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--purple);
}
.adv-card p { font-size: 14px; color: var(--text-muted); }

/* =========================================
   CONDITIONS
   ========================================= */
.conditions {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #2b1155 100%);
  color: #fff;
}
.conditions .section-title { color: #fff; }
.conditions__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.conditions__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0 36px;
}
.conditions__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
}
.conditions__check {
  width: 26px; height: 26px;
  background: var(--yellow);
  color: var(--text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}
.conditions__note {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  font-style: italic;
}

.conditions__pricing-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--yellow);
}
.pricing-table { display: flex; flex-direction: column; gap: 0; }
.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 15px;
}
.pricing-row:last-child { border-bottom: none; }
.pricing-val {
  font-weight: 800;
  font-size: 18px;
  color: var(--yellow);
}

/* =========================================
   OWNERS
   ========================================= */
.owners { background: var(--bg-soft); }
.owners__inner {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.owners__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.owners__inner .section-title { color: #fff; margin: 12px 0; }
.owners__icon { font-size: 56px; display: block; margin-bottom: 8px; position: relative; }
.owners__desc {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
  position: relative;
}

/* =========================================
   REVIEWS
   ========================================= */
.reviews { background: #fff; }
.reviews__track-wrap {
  overflow: hidden;
  border-radius: var(--radius);
}
.reviews__track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.review-card {
  min-width: calc(33.333% - 16px);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  flex-shrink: 0;
}
.review-card__stars {
  color: var(--yellow);
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 14px;
  text-shadow: 0 1px 4px rgba(255,205,53,0.4);
}
.review-card__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 16px;
  font-style: italic;
}
.review-card__author {
  font-weight: 800;
  color: var(--purple);
  font-size: 14px;
}
.reviews__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.reviews__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
}
.reviews__dot.active {
  background: var(--purple);
  width: 24px;
  border-radius: 4px;
}

/* =========================================
   SEO TEXT
   ========================================= */
.seo-text { background: var(--bg-soft); }
.seo-text__title {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 24px;
  color: var(--purple);
}
.seo-text__content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 20px;
  max-width: 760px;
}
.seo-text__tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.seo-tab {
  padding: 10px 22px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition);
}
.seo-tab:hover { border-color: var(--purple); color: var(--purple); }
.seo-tab--active {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
}
.seo-tab-content { display: none; }
.seo-tab-content--active { display: block; }

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding: 64px 20px 48px;
}
.footer__tagline {
  font-size: 14px;
  line-height: 1.7;
  margin: 16px 0 20px;
  color: rgba(255,255,255,0.5);
}
.footer__socials { display: flex; gap: 12px; flex-wrap: wrap; }
.footer__social {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
}
.footer__social:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}
.footer__nav-title {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.footer__nav-list { display: flex; flex-direction: column; gap: 10px; }
.footer__nav-list a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer__nav-list a:hover { color: var(--yellow); }
.footer__contacts { display: flex; flex-direction: column; gap: 10px; }
.footer__contacts p { font-size: 14px; }
.footer__phone {
  font-size: 20px;
  font-weight: 800;
  color: var(--yellow);
  margin-top: 6px;
  transition: opacity 0.2s;
}
.footer__phone:hover { opacity: 0.8; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 28px 20px;
}
.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}
.footer__bottom-inner p { font-size: 13px; }
.footer__docs {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 6px;
}
.footer__docs a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer__docs a:hover { color: var(--yellow); }
.footer__version {
  color: rgba(255,255,255,0.25);
  font-size: 12px;
  margin-top: 8px;
}

/* =========================================
   FLOAT CTA
   ========================================= */
.float-cta {
  position: fixed;
  bottom: 32px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 300;
}
.float-cta__btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  transition: var(--transition);
  animation: pulsePurple 2s ease-in-out infinite;
}
.float-cta__btn--phone {
  background: var(--yellow);
  animation-delay: 0s;
}
.float-cta__btn--tg {
  background: #2AABEE;
  color: #fff;
  font-size: 18px;
  animation-delay: 1s;
}
.float-cta__btn:hover {
  transform: scale(1.15);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* =========================================
   MOBILE STICKY
   ========================================= */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 10px 16px;
  gap: 10px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}
.mobile-sticky__btn {
  flex: 1;
  text-align: center;
  padding: 13px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  background: var(--purple);
  color: #fff;
  transition: var(--transition);
}
.mobile-sticky__btn--tg { background: #2AABEE; }
.mobile-sticky__btn:hover { opacity: 0.9; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .advantages__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }

  /* Topbar */
  .topbar__left { display: none; }

  /* Header */
  .nav { display: none; }
  .header__cta { display: none; }
  .burger { display: flex; }
  .header__inner { gap: 12px; }

  /* Hero */
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 20px 80px;
    gap: 40px;
  }
  .hero__visual { order: -1; }
  .hero__console { width: 220px; height: 140px; }
  .console-screen { width: 140px; height: 85px; }
  .hero__ratings { justify-content: center; }
  .hero__actions { justify-content: center; }
  .hero__badge-float { font-size: 11px; padding: 8px 12px; }
  .hero__badge-float--1 { top: -10px; left: -10px; }
  .hero__badge-float--2 { bottom: 0; right: -15px; }
  .hero__badge-float--3 { bottom: -20px; left: 10px; }

  /* Services */
  .services__grid { grid-template-columns: 1fr; }
  .advantages__grid { grid-template-columns: 1fr; }

  /* Conditions */
  .conditions__inner { grid-template-columns: 1fr; gap: 40px; }

  /* Reviews */
  .review-card { min-width: calc(100% - 0px); }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 20px 32px;
  }

  /* Float / Sticky */
  .float-cta { display: none; }
  .mobile-sticky { display: flex; }

  /* Owners */
  .owners__inner { padding: 40px 24px; }
}

@media (max-width: 480px) {
  .hero__title { letter-spacing: -0.5px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .btn--lg { padding: 14px 24px; font-size: 15px; }
  .service-card { padding: 24px 20px; }
}
