





*, *::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;
  transition: background .3s, box-shadow .3s, padding .3s;
}
.header.scrolled {
  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);
  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;
}
.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: 28px;
}
.header-nav a {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.header-nav a:hover { color: #fff }
.header-nav a.active { color: #fff }
@media (max-width: 860px) { .header-nav { display: none } }
.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.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 } }

.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) }

/* ===== PAGE HERO ===== */
.page-hero {
  position: relative;
  background: var(--dark);
  overflow: hidden;
  padding: 140px 0 64px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(61,107,229,.08) 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-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 860px) {
  .page-hero-content { grid-template-columns: 1fr; gap: 32px }
  .page-hero { padding: 120px 0 48px }
}
.breadcrumb {
  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 { margin: 0 8px; opacity: .5 }
.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: 18px;
  letter-spacing: -.02em;
}
.page-hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,.5);
  max-width: 500px;
}
.page-hero-img {
  aspect-ratio: 16/10;
  border-radius: 16px;
  max-height: 360px;
}
@media (max-width: 860px) {
  .page-hero-img { aspect-ratio: 16/9; max-height: 240px }
}

/* Photo placeholder */
.ph-img {
  position: relative;
  background: var(--ph-bg);
  border: 1.5px dashed var(--ph-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  overflow: hidden;
}
.ph-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(61,107,229,.06), transparent 70%);
}
.ph-img-label {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: rgba(91,106,255,.6);
  line-height: 1.5;
}
.ph-img-label strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--neon);
  margin-bottom: 6px;
  opacity: .7;
}

/* ===== SECTIONS ===== */
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;
}

/* ===== TIMELINE ===== */
.timeline {
  position: relative;
  padding-left: 36px;
  margin-top: 12px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--line);
}
section.dark .timeline::before { background: rgba(255,255,255,.1) }

.timeline-item {
  position: relative;
  padding-bottom: 36px;
}
.timeline-item:last-child { padding-bottom: 0 }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 6px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--neon-dim);
  border: 2px solid var(--neon);
  z-index: 1;
}
.timeline-year {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--neon);
  margin-bottom: 6px;
  letter-spacing: .02em;
}
.timeline-item h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
section.dark .timeline-item h3 { color: #fff }
.timeline-item p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}
section.dark .timeline-item p { color: rgba(255,255,255,.5) }

.history-summary {
  margin-top: 40px;
  font-size: 16px;
  color: var(--body);
  line-height: 1.7;
  padding: 20px 24px;
  background: var(--neon-dim);
  border-left: 3px solid var(--neon);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
section.dark .history-summary { color: rgba(255,255,255,.6) }

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

.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: box-shadow .25s, transform .25s;
}
.value-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.value-icon {
  width: 48px; height: 48px;
  background: var(--neon-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.value-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

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

.equip-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s, transform .25s;
}
.equip-card:hover {
  border-color: rgba(255,255,255,.14);
  transform: translateY(-2px);
}
.equip-img {
  aspect-ratio: 16/10;
}
.equip-body {
  padding: 22px 24px;
}
.equip-body h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}
.equip-body p {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
}
.equip-price {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--cyan);
  background: rgba(91,164,217,.08);
  padding: 4px 12px;
  border-radius: 60px;
}

/* ===== STATS ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  text-align: center;
}
@media (max-width: 860px) {
  .stats-row { grid-template-columns: repeat(3, 1fr) }
}
@media (max-width: 560px) {
  .stats-row { grid-template-columns: repeat(2, 1fr) }
}
.stat-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 16px;
  transition: box-shadow .25s, transform .25s;
}
.stat-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--neon);
  line-height: 1.1;
  margin-bottom: 8px;
}
.stat-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 860px) { .gallery-grid { grid-template-columns: repeat(2, 1fr) } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr } }
.gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
}

/* ===== LICENSE ===== */
.license-block {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}
@media (max-width: 700px) {
  .license-block { flex-direction: column; text-align: center }
}
.license-icon {
  width: 72px; height: 72px;
  background: var(--neon-dim);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  flex-shrink: 0;
}
.license-text h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.license-text p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}
.license-number {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--neon);
  background: var(--neon-dim);
  padding: 6px 14px;
  border-radius: 60px;
  letter-spacing: .02em;
}

/* ===== CTA SECTION ===== */
.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 }
}
