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

:root {
  --blue: #005BA4;
  --blue2: #0073CF;
  --gold: #F5A623;
  --light: #EDF4FB;
  --white: #FFFFFF;
  --dark: #1A2A3A;
  --gray: #5A6A7A;
  --radius: 16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: var(--blue2); border-radius: 5px; }

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 91, 164, .94);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.18);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  gap: 16px;
  flex-wrap: wrap;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-icon {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
}

.logo-text h1 {
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: .3px;
}

.logo-text p {
  color: rgba(255,255,255,.72);
  font-size: 11px;
  margin-top: 2px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

nav a {
  color: rgba(255,255,255,.9);
  text-decoration: none;
  font-size: 13px;
  padding: 7px 13px;
  border-radius: 8px;
  transition: background .2s, color .2s, transform .2s;
}

nav a:hover {
  background: rgba(255,255,255,.14);
  color: #fff;
  transform: translateY(-1px);
}

.btn-ticket,
.btn-ticket-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--dark);
  font-weight: 800;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
  white-space: nowrap;
}

.btn-ticket {
  font-size: 14px;
  padding: 11px 22px;
  border-radius: 999px;
}

.btn-ticket-lg {
  font-size: 16px;
  padding: 14px 30px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(245,166,35,.28);
}

.btn-ticket:hover,
.btn-ticket-lg:hover {
  background: #ffc14d;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(245,166,35,.35);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  margin: 5px 0;
  transition: .3s;
}

.nav-mobile { display: none; }
.nav-mobile.open { display: block; }
.nav-mobile ul {
  list-style: none;
  flex-direction: column;
  padding: 8px 24px 16px;
  background: rgba(0,0,0,.12);
}

.nav-mobile a {
  color: white;
  text-decoration: none;
  display: block;
  padding: 8px 0;
}

.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #004a8f 0%, #0073CF 60%, #00a0e3 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  opacity: .14;
  transform: scale(1.03);
}

.hero-circles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-circles span {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  animation: float 8s ease-in-out infinite;
}

.hero-circles span:nth-child(1) { width:360px; height:360px; top:-80px; right:-60px; animation-delay:0s; }
.hero-circles span:nth-child(2) { width:220px; height:220px; bottom:30px; right:20%; animation-delay:2s; }
.hero-circles span:nth-child(3) { width:140px; height:140px; top:40%; left:5%; animation-delay:4s; }

@keyframes float {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 24px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.26);
  color: #fff;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  backdrop-filter: blur(4px);
}

.hero-text h2 {
  color: #fff;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 18px;
}

.hero-text h2 span { color: var(--gold); }

.hero-text p {
  color: rgba(255,255,255,.88);
  font-size: 16px;
  line-height: 1.78;
  margin-bottom: 32px;
  max-width: 620px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255,255,255,.56);
  color: #fff;
  text-decoration: none;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: background .2s, border-color .2s, transform .2s;
}

.btn-outline:hover {
  background: rgba(255,255,255,.14);
  border-color: #fff;
  transform: translateY(-2px);
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  padding: 24px 18px;
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0,0,0,.12);
}

.stat-card .num {
  font-size: 32px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.stat-card .lbl {
  color: rgba(255,255,255,.84);
  font-size: 12px;
  margin-top: 8px;
  line-height: 1.45;
}

.ticket-banner {
  background: linear-gradient(90deg, #005BA4, #0073CF);
  padding: 40px 24px;
}

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

.ticket-inner h3 {
  color: #fff;
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 800;
}

.ticket-inner p {
  color: rgba(255,255,255,.78);
  font-size: 14px;
  margin-top: 8px;
}

section { padding: 78px 24px; }

.section-header { text-align: center; margin-bottom: 50px; }

.section-header .tag,
.about-tag,
.app-download-text .tag {
  display: inline-block;
  background: var(--light);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--dark);
}

.section-header p {
  color: var(--gray);
  font-size: 15px;
  margin-top: 12px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.services { background: var(--light); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0,91,164,.12);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.service-card h3 { font-size: 17px; font-weight: 800; color: var(--dark); }

.service-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.65;
  flex: 1;
}

.service-link,
.news-more {
  color: var(--blue2);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.service-link:hover,
.news-more:hover { text-decoration: underline; }

.about-inner,
.contacts-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,91,164,.16);
}

.about-img-wrap img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 24px;
  transition: transform .5s;
}

.about-img-wrap:hover img { transform: scale(1.04); }

.about-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--white);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,.14);
}

.about-img-badge .num {
  font-size: 22px;
  font-weight: 800;
  color: var(--blue);
}

.about-img-badge .sub {
  font-size: 11px;
  color: var(--gray);
  line-height: 1.4;
}

.about-text h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  margin-bottom: 18px;
}

.about-text p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 16px;
}

.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.about-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--dark);
  line-height: 1.6;
}

.about-list li::before {
  content: '✔';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.app-download-section {
  padding: 78px 24px;
  background: linear-gradient(180deg, #ffffff 0%, #edf4fb 100%);
}

.app-download-box {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(135deg, #005BA4 0%, #0073CF 60%, #00a0e3 100%);
  border-radius: 28px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0, 91, 164, 0.18);
  position: relative;
  overflow: hidden;
}

.app-download-box::before,
.app-download-box::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}

.app-download-box::before {
  width: 260px;
  height: 260px;
  top: -80px;
  right: -60px;
}

.app-download-box::after {
  width: 180px;
  height: 180px;
  bottom: -60px;
  left: -40px;
}

.app-download-text {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.app-download-text .tag {
  background: rgba(255,255,255,.16);
  color: #fff;
}

.app-download-text h2 {
  color: #fff;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  margin-bottom: 16px;
}

.app-download-text p {
  color: rgba(255,255,255,.9);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 22px;
}

.app-download-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.app-meta-item {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  padding: 10px 14px;
  font-size: 14px;
}

.install-steps {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.install-step {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
}

.install-step span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.18);
  font-weight: 800;
}

.news { background: var(--light); }

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.news-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0,91,164,.12);
}

.news-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.news-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-tag {
  display: inline-block;
  background: var(--light);
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.news-date {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 8px;
}

.news-body h3 {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 8px;
}

.news-body p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.65;
  flex: 1;
}

.contacts-info h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.c-icon {
  width: 46px;
  height: 46px;
  background: var(--light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.c-info .lbl {
  font-size: 12px;
  color: var(--gray);
}

.c-info .val {
  font-size: 15px;
  font-weight: 700;
  margin-top: 2px;
}

.contact-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.map-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  background: var(--light);
  height: 380px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .84;
}

.map-pin {
  position: absolute;
  font-size: 40px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.3));
  animation: bouncePin 1.5s ease infinite;
}

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

footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 52px 24px 24px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.8;
  margin-top: 14px;
}

.footer-logo { gap: 12px; }

footer h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 16px;
}

footer ul { list-style: none; }
footer li { margin-bottom: 10px; }

footer a {
  color: rgba(255,255,255,.68);
  text-decoration: none;
  font-size: 13px;
  transition: color .2s;
}

footer a:hover { color: #fff; }

.footer-bottom {
  max-width: 1200px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
}

.footer-socials { display: flex; gap: 10px; }

.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  transition: background .2s;
}

.social-btn:hover { background: var(--blue2); }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.ticker-wrap {
  background: var(--blue2);
  overflow: hidden;
  padding: 8px 0;
}

.ticker-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.ticker-track span {
  color: rgba(255,255,255,.94);
  font-size: 13px;
}

.ticker-track b { color: var(--gold); }

.contact-btn {
  font-size: 15px;
  padding: 12px 28px;
}

@media (max-width: 900px) {
  .hero-content,
  .about-inner,
  .contacts-inner {
    grid-template-columns: 1fr;
  }

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

  .hero-text p {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .header-top nav,
  .header-top .btn-ticket {
    display: none;
  }

  .hamburger { display: block; }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 56px 20px;
    gap: 24px;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .app-download-box {
    padding: 28px 22px;
    border-radius: 20px;
  }

  .app-download-text p {
    font-size: 14px;
  }

  .app-meta-item,
  .install-step {
    width: 100%;
  }

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

  .ticket-inner,
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (min-width: 641px) {
  .nav-mobile { display: none !important; }
}
