





*, *::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;
  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);
  transition: background .3s, box-shadow .3s, padding .3s;
}
.header.scrolled {
  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;
  letter-spacing: .01em;
}
.header-nav a:hover,
.header-nav a.active { color: #fff }
.header-nav a.active { color: var(--neon) }
@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 {
  background: var(--dark);
  padding: 120px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 60%, rgba(61,107,229,.06) 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 > .container { position: relative; z-index: 2 }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  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 svg { width: 14px; height: 14px; opacity: .4 }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.12;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.page-hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,.5);
  max-width: 560px;
}

/* ===== NEON DIVIDER ===== */
.neon-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
  opacity: .25;
}

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

/* ===== CONTACT LAYOUT ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 860px) {
  .contact-layout { grid-template-columns: 1fr; gap: 40px }
}

/* ===== CONTACT INFO ===== */
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-info-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 28px;
}
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact-row:first-of-type { padding-top: 0 }
.contact-row:last-of-type { border-bottom: none; padding-bottom: 0 }
.contact-icon {
  width: 44px; height: 44px;
  background: var(--neon-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg {
  width: 20px; height: 20px;
  color: var(--neon);
}
.contact-row-content {
  flex: 1;
  min-width: 0;
}
.contact-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: 4px;
}
.contact-value {
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
}
.contact-value a {
  color: var(--ink);
  transition: color .2s;
}
.contact-value a:hover { color: var(--neon) }

/* Placeholder address */
.contact-placeholder {
  border: 1.5px dashed var(--ph-border);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  background: rgba(61,107,229,.03);
  font-size: 15px;
  color: var(--muted);
  font-style: italic;
}

/* Messenger links */
.messenger-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.messenger-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 60px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  transition: all .25s;
}
.messenger-link.tg {
  background: rgba(0,136,204,.08);
  color: #0088cc;
  border: 1px solid rgba(0,136,204,.15);
}
.messenger-link.tg:hover {
  background: rgba(0,136,204,.14);
  border-color: rgba(0,136,204,.3);
}
.messenger-link.vb {
  background: rgba(121,75,196,.08);
  color: #794bc4;
  border: 1px solid rgba(121,75,196,.15);
}
.messenger-link.vb:hover {
  background: rgba(121,75,196,.14);
  border-color: rgba(121,75,196,.3);
}
.messenger-link svg { width: 18px; height: 18px }

/* Schedule table */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
}
.schedule-table tr td {
  padding: 6px 0;
  font-size: 15px;
  vertical-align: top;
}
.schedule-table tr td:first-child {
  color: var(--ink);
  font-weight: 500;
  padding-right: 16px;
  white-space: nowrap;
}
.schedule-table tr td:last-child {
  color: var(--body);
}
.schedule-table tr:not(:last-child) td {
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
}
.schedule-table tr:not(:first-child) td {
  padding-top: 8px;
}
.schedule-closed {
  color: var(--muted);
  font-style: italic;
}

/* ===== CONTACT FORM ===== */
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}
.form-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-subtitle {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.6;
}
.form-group {
  margin-bottom: 18px;
}
.form-label {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: .01em;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--stone);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--muted);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--neon);
  box-shadow: 0 0 0 3px rgba(61,107,229,.1);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237c8498' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
  cursor: pointer;
}
.form-textarea {
  resize: vertical;
  min-height: 100px;
}
.form-submit {
  width: 100%;
  padding: 16px 28px;
  background: var(--neon);
  color: #fff;
  border: none;
  border-radius: 60px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s;
  margin-top: 6px;
}
.form-submit:hover {
  background: var(--neon-hover);
  box-shadow: var(--neon-glow);
  transform: translateY(-1px);
}
.form-privacy {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}
.form-privacy a {
  color: var(--neon);
  text-decoration: underline;
  text-decoration-color: rgba(61,107,229,.3);
}
.form-privacy a:hover { text-decoration-color: var(--neon) }

/* ===== MAP SECTION ===== */
.map-section {
  padding: 0;
}
.map-placeholder {
  position: relative;
  width: 100%;
  min-height: 440px;
  background: linear-gradient(135deg, #1a2a44 0%, #0e1a2e 50%, #142240 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
}
.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(61,107,229,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61,107,229,.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-pin {
  position: relative;
  z-index: 1;
  width: 64px; height: 64px;
  background: var(--neon);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(61,107,229,.4);
}
.map-pin svg {
  width: 28px; height: 28px;
  color: #fff;
  transform: rotate(45deg);
}
.map-label {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,.4);
  letter-spacing: .05em;
}
.map-btn-wrapper {
  position: relative;
  z-index: 1;
}
.btn-map-route {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--neon);
  color: #fff;
  padding: 14px 32px;
  border-radius: 60px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all .25s;
}
.btn-map-route:hover {
  background: var(--neon-hover);
  box-shadow: var(--neon-glow);
  transform: translateY(-1px);
}

/* ===== DIRECTIONS ===== */
.directions-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 860px) {
  .directions-layout { grid-template-columns: 1fr; gap: 28px }
}
.directions-photo {
  position: relative;
  aspect-ratio: 16/10;
  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;
}
.directions-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(61,107,229,.06), transparent 70%);
}
.directions-photo-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;
}
.directions-photo-label strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--neon);
  margin-bottom: 6px;
  opacity: .7;
}
.directions-text h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
}
.directions-text p {
  font-size: 16px;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: 12px;
}
.directions-hint {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--neon-dim);
  border-left: 3px solid var(--neon);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 15px;
  color: var(--body);
  margin-top: 16px;
}
.directions-hint svg {
  width: 20px; height: 20px;
  color: var(--neon);
  flex-shrink: 0;
}

/* ===== QUICK CONTACT CARDS ===== */
.quick-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
  margin: 0 auto;
  gap: 16px;
}
@media (max-width: 700px) { .quick-cards { grid-template-columns: 1fr } }
.quick-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: box-shadow .25s, transform .25s, border-color .25s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.quick-card:focus-visible {
  outline: 3px solid var(--neon);
  outline-offset: 4px;
}
.quick-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--neon);
}
.quick-card-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quick-card-icon.phone-icon {
  background: rgba(61,107,229,.1);
}
.quick-card-icon.tg-icon {
  background: rgba(0,136,204,.1);
}
.quick-card-icon.vb-icon {
  background: rgba(121,75,196,.1);
}
.quick-card-icon svg { width: 24px; height: 24px }
.quick-card h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
}
.quick-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}
.quick-card .quick-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  border-radius: 60px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  transition: all .25s;
  margin-top: auto;
}
.quick-btn.phone-btn {
  background: var(--neon);
  color: #fff;
}
.quick-btn.phone-btn:hover {
  background: var(--neon-hover);
  box-shadow: var(--neon-glow);
}
.quick-btn.tg-btn {
  background: rgba(0,136,204,.1);
  color: #0088cc;
  border: 1px solid rgba(0,136,204,.2);
}
.quick-btn.tg-btn:hover {
  background: rgba(0,136,204,.18);
  border-color: rgba(0,136,204,.35);
}
.quick-btn.vb-btn {
  background: rgba(121,75,196,.1);
  color: #794bc4;
  border: 1px solid rgba(121,75,196,.2);
}
.quick-btn.vb-btn:hover {
  background: rgba(121,75,196,.18);
  border-color: rgba(121,75,196,.35);
}

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

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