/* ============================================
   CarBar — Modern Premium Auto Delivery Site
   ============================================ */

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

:root {
  --primary: #e63946;       /* красный акцент */
  --primary-glow: rgba(230, 57, 70, 0.4);
  --dark: #0a0a0f;          /* глубокий тёмный */
  --dark-card: #12121a;
  --dark-border: #1e1e2e;
  --text: #f0f0f5;
  --text-muted: #8888a0;
  --gold: #ffd700;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 80px;
}

html, body {
  scroll-behavior: smooth;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* === HEADER === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.08);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.header__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* === LOGO === */
.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
  transition: var(--transition);
}

.header__logo:hover {
  transform: scale(1.03);
}

.header__logo-img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 10px var(--primary-glow));
  transition: var(--transition);
}

.header__logo:hover .header__logo-img {
  filter: drop-shadow(0 0 20px var(--primary-glow));
}

.header__logo-titles {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
}

.header__logo-text {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.header__logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* === NAVIGATION === */
.header__nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  border-radius: 12px;
  transition: var(--transition);
  overflow: hidden;
  white-space: nowrap;
}

.header__nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), transparent);
  border-radius: 12px;
  opacity: 0;
  transition: var(--transition);
}

.header__nav-link:hover {
  color: var(--text);
}

.header__nav-link:hover::before {
  opacity: 1;
}

.nav-icon {
  font-size: 1rem;
  transition: var(--transition);
}

.header__nav-link:hover .nav-icon {
  transform: scale(1.2);
}

/* Animated underline */
.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.3s ease;
  box-shadow: 0 0 8px var(--primary-glow);
}

.header__nav-link:hover::after {
  width: 60%;
}

/* === ACTIONS (phone + CTA) === */
.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.header__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 12px;
  transition: var(--transition);
}

.header__phone:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.phone-icon {
  font-size: 1rem;
  animation: phone-ring 2s ease-in-out infinite;
}

@keyframes phone-ring {
  0%, 100% { transform: rotate(0); }
  10% { transform: rotate(15deg); }
  20% { transform: rotate(-15deg); }
  30% { transform: rotate(10deg); }
  40% { transform: rotate(0); }
}

/* CTA Button */
.header__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--primary);
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 14px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--primary-glow);
}

.header__cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 40%,
    rgba(255, 255, 255, 0.15) 50%,
    transparent 60%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.header__cta:hover::before {
  transform: translateX(100%);
}

.header__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--primary-glow);
}

.header__cta:active {
  transform: translateY(0);
}

.tg-icon {
  flex-shrink: 0;
}

/* === BURGER MENU === */
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.header__burger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.header__burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.header__burger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.header__burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* === MOBILE MENU === */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -110%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  visibility: hidden;
  background: var(--dark-card);
  z-index: 999;
  padding: 100px 30px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

.mobile-menu.open {
  right: 0;
  visibility: visible;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu__link {
  display: block;
  padding: 16px 20px;
  color: var(--text);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 14px;
  transition: var(--transition);
}

.mobile-menu__link:hover {
  background: rgba(230, 57, 70, 0.1);
  padding-left: 28px;
}

.mobile-menu__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu__phone {
  display: block;
  padding: 16px 20px;
  color: var(--text);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
  border-radius: 14px;
  border: 1px solid var(--dark-border);
  transition: var(--transition);
}

.mobile-menu__phone:hover {
  border-color: var(--primary);
}

.mobile-menu__cta {
  display: block;
  padding: 18px 20px;
  background: var(--primary);
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  border-radius: 14px;
  box-shadow: 0 4px 20px var(--primary-glow);
  transition: var(--transition);
}

.mobile-menu__cta:hover {
  transform: scale(1.02);
}

/* === OVERLAY === */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* === SECTIONS COMMON === */
.section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  overflow: visible;
}

.section__header {
  text-align: center;
  margin-bottom: 60px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section__tag {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(230, 57, 70, 0.12);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 30px;
  border: 1px solid rgba(230, 57, 70, 0.2);
  margin-bottom: 20px;
}

.section__title {
  font-family: 'Russo One', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.9);
}

.text-accent {
  color: var(--primary);
}

.section__desc {
  font-size: 1.05rem;
  color: #e0e0e8;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.9);
}

/* === HERO === */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 30px 60px;
  text-align: center;
}

.hero__container {
  max-width: 780px;
  animation: heroFadeIn 1.2s ease-out;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 32px 44px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

.hero__badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 215, 0, 0.08);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 30px;
  border: 1px solid rgba(255, 215, 0, 0.15);
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

.hero__title {
  font-family: 'Russo One', sans-serif;
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 0, 0, 0.6), 0 2px 4px rgba(0, 0, 0, 0.9);
}

.hero__accent {
  color: var(--primary);
  text-shadow: 0 0 40px var(--primary-glow), 0 0 20px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.9);
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: #e8e8f0;
  font-weight: 500;
  letter-spacing: 4px;
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 0, 0, 0.6), 0 2px 4px rgba(0, 0, 0, 0.9);
}

.hero__desc {
  font-size: 1.05rem;
  color: #e0e0e8;
  line-height: 1.7;
  max-width: 100%;
  margin: 0 auto 36px;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 0, 0, 0.6), 0 2px 4px rgba(0, 0, 0, 0.9);
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 14px;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}

.hero__btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 30px var(--primary-glow);
}

.hero__btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px var(--primary-glow);
}

.hero__btn--outline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--dark-border);
}

.hero__btn--outline:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.04);
}

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hero__stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
}

.hero__stat-label {
  font-size: 0.8rem;
  color: #d8d8e4;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--dark-border);
}

.hero__hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  color: rgba(0, 200, 255, 0.5);
  letter-spacing: 0.5px;
  animation: hintPulse 3s ease-in-out infinite;
  white-space: nowrap;
}

@keyframes hintPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

/* === DELIVERY STEPS === */
.delivery {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(10,10,15,0.85) 0%, rgba(18,18,26,0.88) 50%, rgba(10,10,15,0.85) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 700px;
  margin: 0 auto 0 200px;
  overflow: visible;
}

/* Vertical line */
.steps::before {
  content: '';
  position: absolute;
  left: 33px;
  top: 62px;
  bottom: 90px;
  width: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.step {
  display: flex;
  gap: 24px;
  padding: 28px 0 28px 80px;
  position: relative;
  transition: var(--transition);
}

.step__anim {
  position: absolute;
  left: -80px;
  top: 52px;
  width: 60px;
  height: 68px;
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 15px rgba(230, 57, 70, 0.4));
}

.step__anim--car {
  animation: carDrive 2s ease-in-out infinite;
}

.step__anim--money {
  animation: moneyPulse 1.5s ease-in-out infinite;
}

.step__anim--ship {
  animation: shipFloat 3s ease-in-out infinite;
}

.step__anim--doc {
  animation: docFlip 2s ease-in-out infinite;
}

.step__anim--check {
  animation: checkPop 1.5s ease-in-out infinite;
}

.step__anim--key {
  animation: keySwing 1.5s ease-in-out infinite;
}

@keyframes carDrive {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-50%) translateX(10px); }
}

@keyframes moneyPulse {
  0%, 100% { transform: translateY(-50%) scale(1); }
  50% { transform: translateY(-50%) scale(1.15); }
}

@keyframes shipFloat {
  0%, 100% { transform: translateY(-50%) rotate(-3deg); }
  50% { transform: translateY(-55%) rotate(3deg); }
}

@keyframes docFlip {
  0%, 100% { transform: translateY(-50%) rotateY(0deg); }
  50% { transform: translateY(-50%) rotateY(15deg); }
}

@keyframes checkPop {
  0%, 100% { transform: translateY(-50%) scale(1); }
  25% { transform: translateY(-50%) scale(1.2); }
  50% { transform: translateY(-50%) scale(1); }
}

@keyframes keySwing {
  0%, 100% { transform: translateY(-50%) rotate(-10deg); }
  50% { transform: translateY(-50%) rotate(10deg); }
}

.step::before {
  content: attr(data-step);
  position: absolute;
  left: 0;
  top: 28px;
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-card);
  border: 2px solid var(--primary);
  border-radius: 50%;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  z-index: 2;
  transition: var(--transition);
}

.step:hover::before {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0 20px var(--primary-glow);
}

.step__icon {
  display: none;
}

.step__content {
  flex: 1;
  padding-top: 4px;
}

.step__title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.step__text {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* === TRUST === */
.trust {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.trust__card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 20px;
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.trust__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: var(--transition);
}

.trust__card:hover {
  border-color: rgba(230, 57, 70, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.trust__card:hover::before {
  opacity: 1;
}

.trust__card-icon {
  font-size: 2.2rem;
  margin-bottom: 18px;
}

.trust__card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.trust__card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* === GEOGRAPHY === */
.geo {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(10,10,15,0.65) 0%, rgba(18,18,26,0.70) 50%, rgba(10,10,15,0.65) 100%);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.geo__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.geo__card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 18px;
  padding: 30px 20px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.geo__card:hover {
  border-color: rgba(230, 57, 70, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.geo__flag {
  font-size: 2.8rem;
  margin-bottom: 14px;
}

.geo__flag .flag-img {
  width: 56px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.btn-flag {
  width: 18px;
  height: auto;
  vertical-align: middle;
  margin-right: 4px;
  border-radius: 2px;
}

.card-flag {
  width: 18px;
  height: auto;
  vertical-align: middle;
  margin-right: 4px;
  border-radius: 2px;
}

.geo__name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.geo__info {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.geo__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 8px;
}

.geo__auctions {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.4;
}

.geo__time {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--dark-border);
}

/* === CTA SECTION === */
.cta-section {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.cta__box {
  background: linear-gradient(135deg, var(--dark-card) 0%, rgba(230, 57, 70, 0.08) 100%);
  border: 1px solid rgba(230, 57, 70, 0.15);
  border-radius: 28px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta__box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 20%, rgba(230, 57, 70, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.cta__title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: 1px;
  position: relative;
}

.cta__text {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.6;
  position: relative;
}

.cta__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  position: relative;
}

.cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 14px;
  text-decoration: none;
  transition: var(--transition);
}

.cta__btn--tg {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 30px var(--primary-glow);
}

.cta__btn--tg:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px var(--primary-glow);
}

.cta__btn--phone {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid var(--dark-border);
}

.cta__btn--phone:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

.cta__note {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  position: relative;
}

/* === FOOTER === */
.footer {
  position: relative;
  z-index: 1;
  padding: 30px 0;
  border-top: 1px solid var(--dark-border);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 3px;
}

.footer__tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 15px;
}

.footer__links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
}

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

.footer__copy {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
}

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: -200px;
  left: 0;
  right: 0;
  background: var(--dark-card);
  border-top: 1px solid var(--dark-border);
  padding: 20px 30px;
  z-index: 9999;
  transition: bottom 0.4s ease;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner.show {
  bottom: 0;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  flex: 1;
}

.cookie-content a {
  color: var(--primary);
  text-decoration: none;
}

.cookie-content a:hover {
  text-decoration: underline;
}

.cookie-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 12px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.cookie-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px var(--primary-glow);
}

@media (max-width: 600px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-btn {
    width: 100%;
  }
}

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .header__phone .phone-text {
    display: none;
  }
}

@media (max-width: 900px) {
  .header__nav,
  .header__actions {
    display: none;
  }

  .header__burger {
    display: flex;
  }

  .header__container {
    justify-content: center;
  }

  .header__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .header__burger {
    position: absolute;
    right: 20px;
  }
}

@media (max-width: 768px) {
  .trust__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .geo__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .steps {
    margin: 0 auto;
    padding-left: 0;
    max-width: 100%;
  }

  .steps::before {
    left: 26px;
  }

  .step {
    padding: 20px 15px 20px 70px;
  }

  .step::before {
    left: 0;
    width: 52px;
    height: 52px;
    font-size: 0.8rem;
  }

  .step__anim {
    display: none;
  }

  .step__content {
    max-width: 100%;
  }
  
  .step__title {
    font-size: 1.2rem;
  }
  
  .step__text {
    font-size: 0.95rem;
  }

  .step__icon {
    width: 52px;
    height: 52px;
  }

  .delivery, .trust, .geo, .cta-section {
    padding: 70px 0;
  }

  .section__header {
    margin-bottom: 40px;
  }

  .cta__box {
    padding: 40px 24px;
  }

  .hero__hint {
    font-size: 0.7rem;
    white-space: normal;
    text-align: center;
    padding: 0 20px;
  }
}

/* === TELEGRAM POPUP === */
.tg-popup {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: linear-gradient(165deg, rgba(20, 20, 30, 0.95), rgba(10, 10, 15, 0.98));
  border: 1px solid rgba(230, 57, 70, 0.2);
  border-radius: 16px;
  padding: 20px 24px;
  z-index: 1001;
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(230, 57, 70, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  transform: translateX(150%);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tg-popup.show {
  transform: translateX(0);
  opacity: 1;
}

.tg-popup__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  opacity: 0.5;
}

.tg-popup__close:hover {
  color: var(--primary);
  opacity: 1;
}

.tg-popup__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.tg-popup__logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px var(--primary-glow)) drop-shadow(0 0 40px rgba(230, 57, 70, 0.3));
}

.tg-popup__titles {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tg-popup__brand {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 3px;
  line-height: 1;
}

.tg-popup__subtitle {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.tg-popup__text {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.4;
  text-align: center;
}

.tg-popup__btn-wrap {
  text-align: center;
}

.tg-popup__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #229ED9, #1E8BC3);
  color: white;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 10px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(34, 158, 217, 0.4);
}

.tg-popup__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(34, 158, 217, 0.5);
  background: linear-gradient(135deg, #2AABEE, #229ED9);
}

.tg-popup__btn svg {
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .tg-popup {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 480px) {
  .header__logo-text {
    font-size: 1.4rem;
  }
  
  .header__logo-img {
    height: 40px;
  }

  .geo__grid {
    grid-template-columns: 1fr;
  }

  .hero__stats {
    gap: 20px;
  }

  .hero__stat-divider {
    display: none;
  }

  .hero__actions {
    flex-direction: column;
  }

  .cta__buttons {
    flex-direction: column;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
}
