@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/manrope-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/manrope-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Unbounded';
  font-style: normal;
  font-weight: 600 900;
  font-display: swap;
  src: url('../fonts/unbounded-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Unbounded';
  font-style: normal;
  font-weight: 600 900;
  font-display: swap;
  src: url('../fonts/unbounded-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

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

:root {
  --orange:       #FF6B00;
  --orange-light: #FF8C3A;
  --dark:         #0D0D0D;
  --dark-2:       #27221D;
  --dark-3:       #1E1E1E;
  --dark-4:       #252525;
  --beige:        #FAF6F0;
  --beige-2:      #F2EBE0;
  --beige-3:      #EAE0D3;
  --text:         #1A1A1A;
  --muted:        #7A7065;
  --border-dark:  rgba(255,255,255,0.07);
  --border-light: rgba(0,0,0,0.08);
  --nav-h:        68px;
  --r:            14px;
  --max-w:        1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background: var(--beige);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.hero__title,
.hero__stat-num,
.s__title {
  font-family: 'Unbounded', 'Manrope', sans-serif;
}
body.is-locked { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }

/* ─── NAV ─────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: var(--nav-h);
  background: var(--dark-2);
  border-bottom: 1px solid var(--border-dark);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__logo img { height: 44px; width: auto; }
.nav__apple {
  height: 34px;
  width: auto;
  margin: 0 -8px 0 6px;
  filter: drop-shadow(0 4px 8px rgba(120, 200, 60, .3));
  transform-origin: 50% 100%;
  animation: apple-wobble 3.6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes apple-wobble {
  0%, 100% { transform: rotate(-7deg); }
  50%      { transform: rotate(7deg); }
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.nav__links a {
  color: rgba(255,255,255,.65);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color .2s, background .2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav__links a:hover { color: #fff; background: var(--orange); }

.nav__cta {
  margin-left: 16px;
  background: var(--orange);
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  padding: 9px 20px !important;
  border-radius: 100px !important;
  transition: background .2s, transform .2s !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__cta:hover { background: var(--orange-light) !important; transform: translateY(-1px); color: #fff !important; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  background: none;
  border: none;
  border-radius: 8px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s, opacity .3s, width .3s;
  transform-origin: left center;
}
.nav__burger.is-open span:nth-child(1) { transform: rotate(38deg) scaleX(.9); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; width: 0; }
.nav__burger.is-open span:nth-child(3) { transform: rotate(-38deg) scaleX(.9); }

/* ─── MOBILE DRAWER ───────────────────────────────── */
.drawer {
  position: fixed;
  inset: var(--nav-h) 0 auto 0;
  z-index: 199;
  background: rgba(13,13,13,.98);
  backdrop-filter: blur(20px);
  padding: 16px 24px 28px;
  border-bottom: 1px solid var(--border-dark);
  display: none;
  flex-direction: column;
  gap: 0;
}
.drawer.is-open { display: flex; }
.drawer a {
  color: rgba(255,255,255,.75);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-dark);
  transition: color .2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.drawer a:last-child { border-bottom: none; color: var(--orange); font-weight: 700; padding-top: 18px; }
.drawer a:hover { color: #fff; }
.dr-apple {
  width: 26px;
  height: auto;
  filter: drop-shadow(0 2px 6px rgba(120, 200, 60, .3));
  animation: apple-wobble 3.6s ease-in-out infinite;
  pointer-events: none;
  flex-shrink: 0;
}

/* ─── HERO ────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  background: linear-gradient(135deg, var(--beige) 0%, #F5E5CC 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero__glow-a {
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,0,.13) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.hero__glow-b {
  position: absolute;
  bottom: -60px; left: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,107,0,.08) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px 120px;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,0,.1);
  border: 1px solid rgba(255,107,0,.3);
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}
.hero__badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: dot-pulse 2s infinite;
}
@keyframes dot-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .4; transform: scale(1.5); }
}

.hero__title {
  font-size: clamp(2.6rem, 6.5vw, 5.8rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -.03em;
  color: var(--dark);
  margin-bottom: 22px;
}
.hero__title em {
  font-style: normal;
  color: var(--orange);
}

.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: #6B5E52;
  line-height: 1.65;
  max-width: 500px;
  margin-bottom: 52px;
}

.hero__stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 52px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(0,0,0,.1);
}
.hero__stat-num {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -.03em;
}
.hero__stat-label {
  margin-top: 4px;
  font-size: 12px;
  color: #9E8E80;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero__actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 100px;
  transition: background .2s, transform .2s, color .2s, border-color .2s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn--orange { background: var(--orange); color: #fff; }
.btn--orange:hover { background: var(--orange-light); transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: #4A3E35;
  border: 1px solid rgba(0,0,0,.2);
}
.btn--ghost:hover { color: var(--dark); border-color: rgba(0,0,0,.45); }
.btn svg { flex-shrink: 0; transition: transform .2s; }
.btn:hover svg { transform: translateX(3px); }

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(0,0,0,.28);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  animation: hero-scroll 2.2s ease-in-out infinite;
}
@keyframes hero-scroll {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(7px); }
}

/* ─── SECTIONS ────────────────────────────────────── */
.s { padding: 96px 24px; }
.s--dark  { background: var(--dark-2); }
.s--light { background: var(--beige-2); }
.s--beige { background: var(--beige); }
.s--services { background: linear-gradient(135deg, var(--beige) 0%, #F5E5CC 100%); }

.s__inner { max-width: var(--max-w); margin: 0 auto; }

.s__tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.s__title {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.025em;
  color: var(--text);
  margin-bottom: 14px;
}
.s--dark .s__title { color: #fff; }

.s__lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 56px;
}
.s__lead--wide-gap { margin-bottom: 40px; }
.s--dark .s__lead { color: rgba(255,255,255,.45); }

/* ─── FEATURES (ABOUT) ────────────────────────────── */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.f-card {
  background: var(--dark-4);
  border: 1px solid var(--border-dark);
  border-radius: var(--r);
  padding: 30px 24px 28px;
  transition: border-color .3s, transform .35s;
}
.f-card:hover { border-color: rgba(255,107,0,.35); transform: translateY(-5px); }
.f-card__icon {
  width: 46px; height: 46px;
  background: rgba(255,107,0,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}
.f-card__title { font-size: 17px; font-weight: 700; color: #fff; line-height: 1.3; margin-bottom: 12px; }
.f-card__text  { font-size: 15px; color: rgba(255,255,255,.78); line-height: 1.6; }

/* ─── SERVICES ────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.s-card:nth-child(1),
.s-card:nth-child(2),
.s-card:nth-child(3) { grid-column: span 2; }
.s-card:nth-child(4) { grid-column: 2 / span 2; }
.s-card:nth-child(5) { grid-column: 4 / span 2; }

.s-card {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.s-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.s-card:hover .s-card__img { transform: scale(1.06); }

.s-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.88) 25%, rgba(0,0,0,.15) 100%);
  display: flex;
  align-items: flex-end;
  padding: 22px 20px;
  transition: background .35s;
}
.s-card:hover .s-card__overlay {
  background: linear-gradient(to top, rgba(200,65,0,.88) 20%, rgba(0,0,0,.35) 100%);
}
.s-card__title { font-size: 15px; font-weight: 700; color: #fff; line-height: 1.3; }

.s-card__hint {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
  border-radius: 100px;
  padding: 5px 11px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .25s, transform .25s;
}
.s-card:hover .s-card__hint { opacity: 1; transform: translateY(0); }

/* ─── LIGHTBOX ────────────────────────────────────── */
.lb {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(10,10,10,.93);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.lb.is-open { opacity: 1; pointer-events: auto; }

.lb__close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: background .2s;
  z-index: 10;
}
.lb__close:hover { background: rgba(255,255,255,.2); }

.lb__title {
  position: absolute;
  top: 24px; left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  white-space: nowrap;
  max-width: calc(100vw - 120px);
  overflow: hidden;
  text-overflow: ellipsis;
}

.lb__stage {
  position: relative;
  width: 100%;
  max-width: 900px;
  padding: 0 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb__img {
  max-width: 100%;
  max-height: 70vh;
  border-radius: 10px;
  object-fit: contain;
  display: block;
  user-select: none;
}

.lb__btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(255,255,255,.12);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  flex-shrink: 0;
}
.lb__btn:hover { background: rgba(255,107,0,.6); }
.lb__btn--prev { left: 8px; }
.lb__btn--next { right: 8px; }
.lb__btn.is-hidden { visibility: hidden; }

.lb__dots {
  display: flex;
  gap: 7px;
  margin-top: 20px;
}
.lb__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  cursor: pointer;
  transition: background .2s, transform .2s;
  border: none;
}
.lb__dot.is-active { background: var(--orange); transform: scale(1.3); }

.lb__counter {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255,255,255,.35);
  letter-spacing: .06em;
}

/* ─── PARTNERS ────────────────────────────────────── */
.marquee-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 8px;
}
.marquee-wrap::before,
.marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrap::before { left: 0;  background: linear-gradient(to right, var(--beige-2), transparent); }
.marquee-wrap::after  { right: 0; background: linear-gradient(to left,  var(--beige-2), transparent); }

.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.p-logo {
  cursor: pointer;
  flex-shrink: 0;
  width: 136px; height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--beige);

  filter: grayscale(1);
  opacity: .65;
  transition: filter .3s, opacity .3s, transform .3s;
}
.p-logo:hover { filter: grayscale(0); opacity: 1; transform: translateY(-2px); }
.p-logo img { max-width: 100%; max-height: 100%; object-fit: contain; margin: 0 auto; }

/* ─── CONTACT ─────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 36px;
  align-items: start;
}

.contact-map {
  border-radius: var(--r);
  overflow: hidden;
  height: 440px;
  border: none;
  width: 100%;
  display: block;
}

.contact-cards { display: flex; flex-direction: column; gap: 0; }

.c-logo { margin-bottom: 32px; }
.c-logo img { height: 54px; width: auto; }

.c-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--border-dark);
}
.c-item:last-child { border-bottom: none; }

.c-item__label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.c-item__value { font-size: 18px; font-weight: 700; color: #fff; line-height: 1.3; }
.c-item__value a { color: inherit; transition: color .2s; }
.c-item__value a:hover { color: var(--orange); }
.c-item__value--sm { font-size: 15px; font-weight: 500; color: rgba(255,255,255,.55); }

/* ─── FOOTER ──────────────────────────────────────── */
.footer {
  background: var(--dark);
  padding: 22px 24px;
  border-top: 1px solid var(--border-dark);
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__copy { font-size: 12px; color: rgba(255,255,255,.3); }

/* ─── BACK TO TOP ─────────────────────────────────── */
.top-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 150;
  width: 44px; height: 44px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: none;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  box-shadow: 0 4px 20px rgba(255,107,0,.4);
}
.top-btn.is-visible { opacity: 1; pointer-events: auto; }
.top-btn:hover { transform: translateY(-3px); }

/* ─── FADE-IN ─────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.is-visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
  .features { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .s-card:nth-child(1),
  .s-card:nth-child(2),
  .s-card:nth-child(3),
  .s-card:nth-child(4),
  .s-card:nth-child(5) { grid-column: span 1; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .s { padding: 64px 20px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map  { height: 280px; }
  .hero__stats  { gap: 28px; }
  .hero__inner  { padding: 60px 20px 100px; }
}

@media (max-width: 560px) {
  .features { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .s-card:nth-child(n) { grid-column: span 1; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}
