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

:root {
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-light: #3b82f6;
  --yellow: #f59e0b;
  --yellow-light: #fbbf24;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --white: #ffffff;
  --font: 'Manrope', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- NAV ---- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  transition: all 0.3s;
}
nav.scrolled {
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--yellow); }
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-phone {
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  opacity: 0.9;
}
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.burger span { display: block; width: 22px; height: 2px; background: white; border-radius: 2px; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  display: block;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(37,99,235,0.18) 0%, transparent 60%);
  z-index: 1;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(3,10,35,0.75) 0%,
    rgba(5,15,50,0.60) 45%,
    rgba(3,8,30,0.80) 100%
  );
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  font-family: var(--font);
  box-shadow: 0 4px 16px rgba(37,99,235,0.4);
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,99,235,0.5); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.25s;
  backdrop-filter: blur(8px);
  font-family: var(--font);
}
.btn-secondary:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.5); }
.hero-badges {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.13);
  color: rgba(255,255,255,0.95);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255,255,255,0.28);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  letter-spacing: 0.01em;
}
.hero-badge svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--yellow-light); }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}
.hero-scroll svg { color: rgba(255,255,255,0.5); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---- SECTIONS COMMON ---- */
section { padding: 80px 24px; }
.container { max-width: 1100px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.section-sub {
  color: var(--gray-500);
  font-size: 1rem;
}

/* ---- BENEFITS ---- */
.benefits { background: var(--white); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.benefit-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 16px;
  padding: 28px 22px;
  transition: all 0.3s;
}
.benefit-card:hover {
  border-color: var(--blue-light);
  box-shadow: 0 8px 32px rgba(37,99,235,0.08);
  transform: translateY(-4px);
}
.benefit-icon {
  width: 48px; height: 48px;
  background: rgba(37,99,235,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--blue);
}
.benefit-icon svg { width: 24px; height: 24px; }
.benefit-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
  line-height: 1.3;
}
.benefit-text {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ---- PRICES ---- */
.prices { background: var(--gray-50); }
.prices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
.price-fuel-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 6px;
}
.price-fuel-desc {
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-bottom: 20px;
  line-height: 1.5;
}
.price-value {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
.price-unit {
  font-size: 0.82rem;
  color: var(--gray-500);
  font-weight: 500;
}
.price-note {
  font-size: 0.75rem;
  color: var(--gray-400);
  border-top: 1px solid var(--gray-100);
  padding-top: 14px;
  line-height: 1.5;
}
.prices-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.prices-footer-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--gray-500);
  font-weight: 500;
}
.prices-footer-item svg { width: 14px; height: 14px; color: var(--blue); }

/* ---- PRICES ANIMATIONS ---- */
.price-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 16px;
  padding: 36px 24px 28px;
  position: relative;
  transition: all 0.3s;
  overflow: visible;
}
.price-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.55) 50%, transparent 100%);
  background-size: 200% 100%;
  background-position: -200% 0;
  pointer-events: none;
  z-index: 1;
}
.price-card:hover::before {
  animation: shimmer 0.7s ease forwards;
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.price-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transform: translateY(-6px);
}
.price-card.featured {
  border-color: var(--blue);
  box-shadow: 0 4px 24px rgba(37,99,235,0.12);
}
.price-card.featured:hover {
  box-shadow: 0 16px 48px rgba(37,99,235,0.22);
}



/* Badge dot pulse */
.price-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--yellow);
  color: var(--gray-900);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px 4px 8px;
  border-radius: 50px;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: #ef4444;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 1.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(239,68,68,0.5); }
  50% { opacity: 0.8; transform: scale(1.2); box-shadow: 0 0 0 4px rgba(239,68,68,0); }
}

/* Count up number animation */
.price-num {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -0.04em;
  transition: transform 0.2s;
}
.price-card:hover .price-num {
  transform: scale(1.08);
  color: var(--blue-dark);
}

/* Progress bar */
.price-bar {
  height: 4px;
  background: var(--gray-100);
  border-radius: 4px;
  margin: 14px 0;
  overflow: hidden;
}
.price-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--blue-light), var(--blue));
  border-radius: 4px;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.price-card.animated .price-bar-fill {
  width: var(--bar-pct);
}
.price-card.featured .price-bar-fill {
  background: linear-gradient(90deg, var(--yellow-light), var(--yellow));
}


/* ---- LOCATION ---- */
.location { background: var(--white); }
.location-map {
  width: 100%;
  height: 340px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 28px;
  border: 1.5px solid var(--gray-200);
  background: var(--gray-100);
  position: relative;
}
.location-map iframe {
  width: 100%; height: 100%;
  border: none;
  display: block;
}
.location-info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.location-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.location-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.location-item-icon {
  width: 36px; height: 36px;
  background: rgba(37,99,235,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.location-item-icon svg { width: 18px; height: 18px; }
.location-item-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 2px;
}
.location-item-text {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.5;
}
.btn-route {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  font-family: var(--font);
  white-space: nowrap;
  align-self: flex-start;
  margin-top: 4px;
  box-shadow: 0 4px 14px rgba(37,99,235,0.3);
}
.btn-route:hover { background: var(--blue-dark); transform: translateY(-2px); }
.btn-route svg { width: 16px; height: 16px; }

/* ---- CONTACTS ---- */
.contacts { background: var(--gray-50); }
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 700px;
  margin: 0 auto 48px;
}
.contact-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s;
}
.contact-card:hover {
  border-color: var(--blue-light);
  box-shadow: 0 4px 20px rgba(37,99,235,0.08);
}
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(37,99,235,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 14px;
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.contact-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
  text-decoration: none;
  display: block;
}
a.contact-value:hover { color: var(--blue); }
.contact-hint {
  font-size: 0.78rem;
  color: var(--gray-400);
  line-height: 1.5;
}
.messengers-block {
  text-align: center;
}
.messengers-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 6px;
}
.messengers-sub {
  font-size: 0.82rem;
  color: var(--gray-400);
  margin-bottom: 20px;
}
.messenger-links {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.messenger-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
  border: 1.5px solid var(--gray-200);
  color: var(--gray-600);
  background: var(--white);
}
.messenger-btn:hover { border-color: var(--blue); color: var(--blue); }
.messenger-btn svg { width: 18px; height: 18px; }

/* ---- FOOTER ---- */
footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.6);
  padding: 56px 24px 32px;
}
.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}
.footer-brand-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.footer-brand-name span { color: var(--yellow); }
.footer-brand-desc {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.footer-brand-tagline {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  font-style: italic;
}
.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}
.footer-contact-item svg { width: 14px; height: 14px; color: var(--blue-light); flex-shrink: 0; }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom-right {
  display: flex;
  gap: 20px;
}

/* ---- REVEAL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  nav { padding: 14px 24px; }
  .nav-links { display: none; }
  .burger { display: flex; }
}
@media (max-width: 640px) {
  section { padding: 60px 20px; }
  .prices-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .contacts-grid { grid-template-columns: 1fr; max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .location-info { flex-direction: column; }
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--gray-900);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--yellow); }
.mobile-close { position: absolute; top: 20px; right: 24px; background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }