:root {
  --bg-main: #0B0F1A;
  --bg-card: #0f1628;
  --bg-card2: #111827;
  --yellow: #FFD600;
  --yellow-dim: rgba(255, 214, 0, 0.12);
  --white: #FFFFFF;
  --gray: #8899AA;
  --blue-soft: #3b82f6;
  --border: rgba(255,255,255,0.08);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg-main);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ─── NOISE TEXTURE OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: .4;
}

/* ─── NAVBAR ─── */
.navbar {
  background: rgba(11,15,26,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1050;
}

.navbar-brand {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 3px;
  color: var(--white) !important;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar-brand span { color: var(--yellow); }

.burger-btn {
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  padding: 4px 8px;
  cursor: pointer;
  transition: color .2s;
}
.burger-btn:hover { color: var(--yellow); }

/* Desktop: burger left, logo center */
@media (min-width: 768px) {
  .navbar .container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
  .nav-burger-wrap { justify-self: start; }
  .nav-logo-wrap { justify-self: center; }
  .nav-right { justify-self: end; }
}

/* Mobile: logo left, burger right */
@media (max-width: 767.98px) {
  .navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav-burger-wrap { order: 2; }
  .nav-logo-wrap { order: 1; }
  .nav-right { display: none; }
}

/* ─── OFFCANVAS ─── */
.offcanvas {
  background: #080c15 !important;
  border-left: 1px solid var(--border) !important;
  width: 300px !important;
  max-width: 85vw !important;
}
.offcanvas-header {
  border-bottom: 1px solid var(--border);
  padding: 18px 24px;
}
.offcanvas-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 3px;
  color: var(--white);
}
.offcanvas-title span { color: var(--yellow); }
.btn-close-custom {
  background: none;
  border: none;
  color: var(--gray);
  font-size: 1.3rem;
  cursor: pointer;
  transition: color .2s;
}
.btn-close-custom:hover { color: var(--yellow); }

.offcanvas-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

.nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-menu li { border-bottom: 1px solid var(--border); }
.nav-menu li:last-child { border-bottom: none; }

.nav-menu a {
  display: block;
  padding: 14px 0;
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color .2s, padding-left .2s;
}
.nav-menu a:hover { color: var(--yellow); padding-left: 6px; }

/* Dropdown in offcanvas */
.nav-menu .dropdown-toggle-custom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.nav-menu .dropdown-toggle-custom i {
  font-size: .8rem;
  transition: transform .3s;
  color: var(--gray);
}
.nav-menu .dropdown-toggle-custom.open i { transform: rotate(180deg); }

.nav-submenu {
  list-style: none;
  padding: 0 0 8px 16px;
  display: none;
}
.nav-submenu.open { display: block; }
.nav-submenu li { border: none; }
.nav-submenu a {
  padding: 8px 0;
  font-size: .9rem;
  color: var(--gray);
}
.nav-submenu a:hover { color: var(--yellow); padding-left: 6px; }

.social-icons {
  display: flex;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.social-icons a {
  color: var(--gray);
  font-size: 1.3rem;
  transition: color .2s, transform .2s;
}
.social-icons a:hover { color: var(--yellow); transform: translateY(-2px); }

/* ─── HERO ─── */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 16px 100px;
  position: relative;
  overflow: hidden;
}

/* Radial glow behind hero */
.hero::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255,214,0,0.06) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow-dim);
  border: 1px solid rgba(255,214,0,0.25);
  color: var(--yellow);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  letter-spacing: 2px;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--yellow);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--gray);
  max-width: 580px;
  margin: 0 auto 40px;
  font-weight: 300;
}

.btn-primary-cta {
  background: var(--yellow);
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 38px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background .2s, transform .2s, box-shadow .2s;
  letter-spacing: .5px;
}
.btn-primary-cta:hover {
  background: #ffe033;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,214,0,0.25);
}

.btn-secondary-cta {
  background: transparent;
  color: var(--white);
  font-weight: 500;
  font-size: 1rem;
  padding: 13px 30px;
  border-radius: 8px;
  border: 1px solid var(--border);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color .2s, color .2s;
}
.btn-secondary-cta:hover { border-color: var(--yellow); color: var(--yellow); }

/* ─── SECTION HEADER ─── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--gray);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 560px;
}

/* ─── PRICING SECTION ─── */
.pricing-section {
  padding: 100px 0;
  position: relative;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--border);
  transition: background .3s;
}
.price-card:hover {
  border-color: rgba(255,214,0,0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.price-card:hover::before { background: var(--yellow); }
.price-card.featured {
  border-color: rgba(255,214,0,0.35);
}
.price-card.featured::before { background: var(--yellow); }

.price-badge {
  display: inline-block;
  background: var(--yellow-dim);
  border: 1px solid rgba(255,214,0,0.3);
  color: var(--yellow);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.price-card h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--yellow);
  letter-spacing: 1px;
  line-height: 1;
  margin: 20px 0;
}
.price-amount small {
  font-size: 1.1rem;
  color: var(--gray);
  font-family: var(--font-body);
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  flex-grow: 1;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: .95rem;
  color: #ccd6e0;
  border-bottom: 1px solid var(--border);
}
.price-features li:last-child { border-bottom: none; }
.price-features li i {
  color: var(--yellow);
  font-size: .9rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.pricing-note {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--yellow);
  border-radius: 12px;
  padding: 28px 32px;
  margin-top: 48px;
}
.pricing-note h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--yellow);
}
.pricing-note p { color: var(--gray); font-size: .95rem; margin: 0; }

/* ─── ADVANTAGES ─── */
.advantages-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-main) 0%, #0a0d16 50%, var(--bg-main) 100%);
}

.adv-card {
  padding: 32px 28px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  height: 100%;
  transition: border-color .3s, background .3s;
}
.adv-card:hover {
  border-color: rgba(255,214,0,0.2);
  background: #131929;
}
.adv-icon {
  width: 52px;
  height: 52px;
  background: var(--yellow-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--yellow);
  margin-bottom: 18px;
}
.adv-card h5 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.adv-card p { color: var(--gray); font-size: .9rem; margin: 0; }

/* ─── HOW IT WORKS ─── */
.how-section {
  padding: 100px 0;
}

.steps-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 60px;
}

/* 3 шага в ряд — 2 строки из 6 */
.step-item {
  flex: 0 0 33.333%;
  max-width: 33.333%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 16px 100px;
}

/* Линия вправо между шагами, кроме последнего в строке */
.step-item:not(:nth-child(3n))::after {
  content: '';
  position: absolute;
  top: 26px;
  left: calc(50% + 26px);
  right: calc(-50% + 26px);
  height: 2px;
  background: linear-gradient(90deg, rgba(255,214,0,0.55), rgba(255,214,0,0.1));
	z-index: 100;
}

#work-authorization .step-item:nth-child(5)::after {
  content: none !important;
}


/* Убираем нижний отступ у последней строки (3 последних шага) */
.step-item:nth-last-child(-n+3) {
  padding-bottom: 0;
}

@media (max-width: 767.98px) {
  .hero h1 {
  font-size: clamp(2.2rem, 8vw, 7rem);
}
.step-text p{
  width: 90%;
}
  .step-item {
    flex: 0 0 100%;
    max-width: 100%;
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 20px;
    padding: 0 0 28px 0;
    border-left: 2px solid rgba(255,214,0,0.25);
    margin-left: 26px;
    padding-left: 28px;
    height: 100px;
  }
  .step-item:last-child { border-left: none; padding-bottom: 0; }
  .step-item::after { display: none !important; }
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg-main);
  border: 2px solid var(--yellow);
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
  position: relative;
}
@media (max-width: 767.98px) {
  .step-num {
    margin-bottom: 0;
    margin-left: -52px;
    background: var(--bg-main);
  }
}

.step-text h5 {
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.step-text p { color: var(--gray); font-size: .85rem; margin: 0; }

/* ─── FAQ ─── */
.faq-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-main), #090c14 50%, var(--bg-main));
}

.accordion-item {
  background: var(--bg-card) !important;
  border: 1px solid var(--border) !important;
  border-radius: 12px !important;
  margin-bottom: 10px !important;
  overflow: hidden;
}
.accordion-button {
  background: var(--bg-card) !important;
  color: var(--white) !important;
  font-size: 1rem;
  font-weight: 500;
  padding: 20px 24px !important;
  border: none !important;
  box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
  color: var(--yellow) !important;
}
.accordion-button::after {
  filter: invert(1) brightness(1.5) sepia(1) hue-rotate(0deg) saturate(3);
}
.accordion-button:not(.collapsed)::after {
  filter: invert(1) brightness(2) sepia(1) hue-rotate(5deg) saturate(5);
}
.accordion-body {
  background: var(--bg-card) !important;
  color: var(--gray) !important;
  padding: 0 24px 20px !important;
  font-size: .95rem;
}

/* ─── CONTACT FORM ─── */
.contact-section {
  padding: 100px 0;
}

.contact-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}
.contact-box::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,214,0,0.07), transparent 70%);
  pointer-events: none;
}

@media (max-width: 767.98px) {
  .hero {
  min-height: 85vh;
  padding: 40px 16px 50px;
}
  .contact-box { padding: 36px 24px; }
}

.form-control-dark {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid var(--border) !important;
  border-radius: 8px !important;
  color: var(--white) !important;
  padding: 14px 18px !important;
  font-size: .95rem;
  transition: border-color .2s, background .2s;
}
.form-control-dark::placeholder { color: #506070 !important; }
.form-control-dark:focus {
  border-color: rgba(255,214,0,0.4) !important;
  background: rgba(255,255,255,0.07) !important;
  box-shadow: 0 0 0 3px rgba(255,214,0,0.08) !important;
  outline: none !important;
}

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid var(--border);
  padding: 36px 0;
  color: var(--gray);
  font-size: .85rem;
}
footer a { color: var(--gray); text-decoration: none; transition: color .2s; }
footer a:hover { color: var(--yellow); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .7s ease both; }
.fade-up-1 { animation-delay: .1s; }
.fade-up-2 { animation-delay: .2s; }
.fade-up-3 { animation-delay: .35s; }
.fade-up-4 { animation-delay: .5s; }

/* reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

select option {
  background-color: #0F1628;
  color: #fff;
}


/* WHATSAP */
.whatsapp-button {
    position: fixed;
    right: 13px;
    bottom: 20px;
    transform: translate(-50%, -50%);
    background: #25D366; /* цвет кнопки */
    border-radius: 50%;
    width: 55px; /* ширина кнопки */
    height: 55px; /* высота кнопки */
    color: #fff;
    text-align: center;
    line-height: 53px; /* центровка иконки в кнопке */
    font-size: 35px; /* размер иконки */
    z-index: 9999;
}

.whatsapp-button a {
    color: #fff;
}

.whatsapp-button:before,
.whatsapp-button:after {
    content: " ";
    display: block;
    position: absolute;
    border: 50%;
    border: 1px solid #25D366; /* цвет анимированных волн от кнопки */
    left: -20px;
    right: -20px;
    top: -20px;
    bottom: -20px;
    border-radius: 50%;
    animation: animate 1.5s linear infinite;
    opacity: 0;
    backface-visibility: hidden;
}

.whatsapp-button:after {
    animation-delay: .5s;
}

@keyframes animate {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}


.nav-submenu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: max-height 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
}

.nav-submenu.open {
  max-height: 600px;
  opacity: 1;
  transform: translateY(0);
}


/* ─── TEAM SECTION ─── */
.team-section {
  padding: 100px 0;
}

.team-card {
  display: flex;
  align-items: center;
  gap: 64px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 56px;
  position: relative;
  overflow: hidden;
}

/* жёлтый акцент сверху */
.team-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), transparent);
}

/* фоновое свечение справа */
.team-card::after {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,214,0,0.05), transparent 70%);
  pointer-events: none;
}

/* ── Фото ── */
.team-photo-wrap {
  flex-shrink: 0;
  position: relative;
}

.team-photo {
  width: 280px;
  height: 340px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  position: relative;
  z-index: 1;
  filter: grayscale(15%);
  transition: filter .3s;
}

.team-photo{
    filter: grayscale(100%);
}


/* рамка-тень под фото */
.team-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 12px -12px -12px 12px;
  border: 2px solid rgba(255,214,0,0.2);
  border-radius: 16px;
  z-index: 0;
  transition: border-color .3s;
}
.team-card:hover .team-photo-wrap::after {
  border-color: rgba(255,214,0,0.5);
}

/* ── Контент ── */
.team-content {
  flex: 1;
  min-width: 0;
}

.team-desc {
  color: var(--gray);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  margin: 20px 0 32px;
  max-width: 480px;
}

/* Цифры-факты */
.team-facts {
  display: flex;
  gap: 32px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.team-fact {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fact-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--yellow);
  letter-spacing: 1px;
  line-height: 1;
}

.fact-label {
  font-size: .78rem;
  color: var(--gray);
  font-weight: 400;
  letter-spacing: .5px;
}

/* Теги */
.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.team-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--yellow-dim);
  border: 1px solid rgba(255,214,0,0.2);
  color: #ccd6e0;
  font-size: .82rem;
  padding: 5px 14px;
  border-radius: 100px;
}
.team-tag i { color: var(--yellow); font-size: .75rem; }

/* Кнопки контактов */
.team-contacts {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.team-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--white);
  font-size: .9rem;
  font-weight: 500;
  padding: 11px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: border-color .2s, color .2s, background .2s;
}
.team-contact-btn:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  background: var(--yellow-dim);
}
.team-contact-btn i { font-size: 1rem; }

/* ── Адаптив ── */
@media (max-width: 991.98px) {
  .team-card {
    gap: 40px;
    padding: 40px;
  }
  .team-photo {
    width: 220px;
    height: 270px;
  }
}

@media (max-width: 767.98px) {
  .team-card {
    flex-direction: column;
    padding: 32px 24px;
    gap: 32px;
  }
  .team-photo {
    width: 100%;
    height: 480px;
  }
  .team-photo-wrap {
    width: 100%;
  }
  .team-photo-wrap::after { display: none; }
  .team-facts {
    gap: 20px;
  }
}


/* ─── STANDORT SECTION ─── */
.standort-section {
  padding: 100px 0;
}

.standort-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.standort-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.standort-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--border);
  transition: background .3s;
}
.standort-card:hover {
  border-color: rgba(255,214,0,0.3);
  transform: translateY(-4px);
}
.standort-card:hover::before {
  background: var(--yellow);
}

.standort-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.standort-icon {
  width: 48px;
  height: 48px;
  background: var(--yellow-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--yellow);
  flex-shrink: 0;
}

.standort-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 1px;
  margin: 0;
  color: var(--white);
}

.standort-block {
  margin-bottom: 20px;
}
.standort-block:last-child { margin-bottom: 0; }

.standort-block-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 10px;
}

.standort-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.standort-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: .95rem;
  color: #ccd6e0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.standort-list li:last-child { border-bottom: none; }
.standort-list li i {
  color: var(--yellow);
  font-size: .85rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.standort-note {
  color: var(--gray);
  font-size: .85rem;
}

/* ── Адаптив ── */
@media (max-width: 767.98px) {
  .standort-grid {
    grid-template-columns: 1fr;
  }
  .standort-card {
    padding: 28px 20px;
  }
}


/* ── ABOUT SECTION ── */
.about-section {
  background: #0B0F1A;
  padding: 100px 0;
  overflow: hidden;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.about-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #FFD600;
  margin-bottom: 18px;
}
.about-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: #FFD600;
}

.about-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: 1;
  color: #fff;
  margin-bottom: 64px;
  max-width: 600px;
}
.about-heading span {
  color: #FFD600;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Текст */
.about-text p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 24px;
}
.about-text p:last-of-type {
  margin-bottom: 0;
}

.about-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid rgba(255, 214, 0, 0.15);
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: #FFD600;
  line-height: 1;
}
.stat-num sup {
  font-size: 24px;
  vertical-align: super;
}
.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

/* Видео */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 340px; /* фиксированная ширина под вертикалку */
  gap: 60px;
  align-items: center;
}

.about-video-wrap::before {
  top: -12px;
  right: -12px;
}

.about-video-wrap video {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 8px;
  display: block;
  background: #12172a;
  aspect-ratio: 9 / 16; /* вертикальный формат */
  object-fit: cover;
}

/* Адаптив */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-video-wrap {
    order: -1;
  }
}


/* ── DIGITAL SECTION ── */
.dig-section { background: #0B0F1A; padding: 100px 0; overflow: hidden; }
.dig-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.dig-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 500; letter-spacing: .15em;
  text-transform: uppercase; color: #FFD600; margin-bottom: 18px;
}
.dig-label::before { content: ''; display: block; width: 28px; height: 2px; background: #FFD600; }

.dig-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1; color: #fff; margin-bottom: 20px; max-width: 720px;
}
.dig-heading span { color: #FFD600; }

.dig-subhead {
  font-size: 16px; line-height: 1.7;
  color: rgba(255,255,255,.6); max-width: 680px; margin-bottom: 64px;
}

/* Cards */
.dig-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 56px; }

.dig-card {
  background: #111827; border: 1px solid rgba(255,255,255,.07);
  border-radius: 8px; padding: 32px 28px;
  position: relative; overflow: hidden; transition: border-color .25s;
}
.dig-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: #FFD600; transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.dig-card:hover { border-color: rgba(255,214,0,.2); }
.dig-card:hover::before { transform: scaleX(1); }

.dig-card-icon {
  width: 44px; height: 44px; border-radius: 6px;
  background: rgba(255,214,0,.1); display: flex;
  align-items: center; justify-content: center; margin-bottom: 20px;
}
.dig-card-icon svg { width: 22px; height: 22px; }

.dig-card h3 { font-size: 16px; font-weight: 500; color: #fff; margin-bottom: 20px; line-height: 1.3; }

.dig-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.dig-list li { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.5; padding-left: 18px; position: relative; }
.dig-list li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 5px; height: 5px; border-radius: 50%; background: #FFD600; opacity: .6;
}

/* Pricing */
.dig-pricing {
  background: #111827; border: 1px solid rgba(255,255,255,.07);
  border-radius: 8px; padding: 44px 40px; margin-bottom: 48px;
}
.dig-pricing-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.dig-price-item { padding: 0 28px; border-right: 1px solid rgba(255,255,255,.07); }
.dig-price-item:first-child { padding-left: 0; }
.dig-price-item:last-child { border-right: none; }

.dig-price-title {
  font-size: 11px; color: rgba(255,255,255,.45);
  letter-spacing: .05em; text-transform: uppercase; margin-bottom: 8px;
}
.dig-price-amount { font-family: 'Bebas Neue', sans-serif; font-size: 40px; color: #FFD600; line-height: 1; margin-bottom: 6px; }
.dig-price-amount span { font-size: 20px; opacity: .7; }
.dig-price-desc { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.5; }
.dig-price-note { font-size: 12px; color: rgba(255,214,0,.5); margin-top: 6px; font-style: italic; }

/* Goal */
.dig-goal {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
  background: rgba(255,214,0,.03); border: 1px solid rgba(255,214,0,.12);
  border-radius: 8px; padding: 40px 44px; margin-bottom: 48px;
}
.dig-goal-text p { font-size: 15px; line-height: 1.75; color: rgba(255,255,255,.65); margin-bottom: 12px; }
.dig-goal-text p:last-child { margin-bottom: 0; }
.dig-goal-kws { display: flex; flex-wrap: wrap; gap: 10px; }
.dig-kw {
  display: inline-block; background: rgba(255,214,0,.08);
  border: 1px solid rgba(255,214,0,.18); border-radius: 4px;
  padding: 6px 14px; font-size: 12px; color: #FFD600;
  letter-spacing: .04em; font-weight: 500;
}

/* CTA */
.dig-cta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.dig-cta-label { font-size: 15px; color: rgba(255,255,255,.5); }

.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: #FFD600; color: #0B0F1A; font-weight: 500; font-size: 15px;
  padding: 14px 28px; border-radius: 6px; text-decoration: none; transition: opacity .2s;
}
.btn-wa:hover { opacity: .88; }

.btn-tg {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  color: #fff; font-weight: 500; font-size: 15px;
  padding: 14px 28px; border-radius: 6px; text-decoration: none; transition: border-color .2s;
}
.btn-tg:hover { border-color: rgba(255,255,255,.3); }

/* Adaptive */
@media (max-width: 900px) {
  .dig-grid { grid-template-columns: 1fr; }
  .dig-pricing-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .dig-price-item { border-right: none; padding-left: 0; padding-right: 0; }
  .dig-goal { grid-template-columns: 1fr; }
}