


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

:root {
  --orange:   #FF6200;
  --orange-d: #d95200;
  --black:    #0a0a0a;
  --dark:     #111111;
  --mid:      #1a1a1a;
  --white:    #ffffff;
  --gray:     #888888;
  --light:    #f5f5f5;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Inter', sans-serif;

  --header-h: 72px;
  --radius:   6px;
  --transition: 0.28s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  color: var(--white);
  background: var(--black);
  line-height: 1.6;
}

img { display: block; max-width: 100%; object-fit: cover; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
input, textarea, button { font-family: inherit; }


.section-eyebrow {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 0.9rem;
}

.section-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
}

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-subtitle { margin: 0 auto; }


.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--orange {
  background: var(--orange);
  color: var(--white);
}
.btn--orange:hover {
  background: var(--orange-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,98,0,0.4);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--full { width: 100%; justify-content: center; }


.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  height: var(--header-h);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,98,0,0.18);
}

.header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.header__logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange);
}
.header__logo-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.06em;
  color: var(--white);
}
.header__logo-text em {
  font-style: normal;
  color: var(--orange);
}


.nav { margin-left: auto; }
.nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav__link:hover {
  color: var(--orange);
  background: rgba(255,98,0,0.08);
}


.header__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius);
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition);
}
.header__phone:hover {
  background: var(--orange);
  border-color: var(--orange);
}


.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  position: relative;
  z-index: 10000;
}
.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('banner.1.JPG') center center / cover no-repeat;
  padding-top: var(--header-h);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 4rem 2rem;
  text-align: center;
}

.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid rgba(255,98,0,0.4);
  padding: 0.3rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero__title span { color: var(--orange); }

.hero__desc {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.2rem 2rem;
  flex-wrap: wrap;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.4rem 2rem;
}
.hero__stat strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.hero__stat span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.2rem;
  white-space: nowrap;
}
.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}


.services {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('banner.2.JPG') center center / cover no-repeat fixed;
  padding: 7rem 0;
}

.services__bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 1;
}

.services__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}


.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,98,0,0.45);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.service-card__img-wrap {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.service-card__img-wrap img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card__img-wrap img { transform: scale(1.06); }

.service-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 100%);
}

.service-card__icon {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  width: 42px;
  height: 42px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card__icon svg { width: 20px; height: 20px; }

.service-card__body {
  padding: 1.3rem 1.4rem 1.5rem;
}
.service-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}
.service-card__body p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.service-card__link {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--orange);
  text-transform: uppercase;
  transition: letter-spacing var(--transition);
}
.service-card__link:hover { letter-spacing: 0.12em; }


.about {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('banner.3.JPG') center center / cover no-repeat fixed;
  padding: 7rem 0;
}

.about__bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.86);
  z-index: 1;
}

.about__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about__left .section-title { margin-bottom: 1.5rem; }

.about__text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about__features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.feature-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(255,98,0,0.12);
  border: 1px solid rgba(255,98,0,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.feature-item__icon svg { width: 18px; height: 18px; stroke: var(--orange); }
.feature-item div { display: flex; flex-direction: column; gap: 0.15rem; }
.feature-item strong { font-size: 0.95rem; font-weight: 600; color: var(--white); }
.feature-item span { font-size: 0.83rem; color: rgba(255,255,255,0.5); line-height: 1.5; }


.about__right { display: flex; align-items: center; justify-content: center; }

.about__card-wrap { position: relative; width: 100%; max-width: 440px; }

.about__img-card {
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid rgba(255,98,0,0.25);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.about__img-card img { width: 100%; height: 340px; }

.about__badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--orange);
  border-radius: 8px;
  padding: 1rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 24px rgba(255,98,0,0.4);
}
.about__badge--2 {
  bottom: auto;
  top: -1.5rem;
  left: auto;
  right: -1.5rem;
  background: var(--dark);
  border: 1px solid rgba(255,98,0,0.3);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.about__badge strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.about__badge span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.75);
  margin-top: 0.2rem;
  white-space: nowrap;
}


.gallery {
  position: relative;
  background: url('banner.4.JPG') center center / cover no-repeat fixed;
  padding: 6rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.gallery__bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.82);
  z-index: 1;
}
.gallery__inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 1rem;
}
.gallery__item {
  overflow: hidden;
  border-radius: 8px;
}
.gallery__item--big {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}
.gallery__item:hover img { transform: scale(1.05); }


.blog {
  position: relative;
  background: url('banner.5.JPG') center center / cover no-repeat fixed;
  padding: 6rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.blog__bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.84);
  z-index: 1;
}
.blog__inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.blog-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  transition: box-shadow var(--transition), transform var(--transition);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.blog-card__img { height: 210px; overflow: hidden; }
.blog-card__img img { width: 100%; height: 100%; transition: transform 0.5s ease; }
.blog-card:hover .blog-card__img img { transform: scale(1.05); }
.blog-card__body { padding: 1.4rem; }
.blog-card__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255,98,0,0.08);
  padding: 0.2rem 0.7rem;
  border-radius: 100px;
  margin-bottom: 0.7rem;
}
.blog-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.blog-card__body p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.blog-card__more {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--orange);
  text-transform: uppercase;
  transition: letter-spacing var(--transition);
}
.blog-card__more:hover { letter-spacing: 0.12em; }


.contact {
  position: relative;
  background: url('banner.6.JPG') center center / cover no-repeat fixed;
  padding: 7rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.contact__bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.86);
  z-index: 1;
}
.contact__inner { position: relative; z-index: 2; }
.contact__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  width: 100%;
}
.contact__left .section-title { margin-bottom: 1rem; }
.contact__desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.contact__info { display: flex; flex-direction: column; gap: 1.2rem; }
.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact__info-item svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  stroke: var(--orange);
  margin-top: 3px;
}
.contact__info-item div { display: flex; flex-direction: column; gap: 0.15rem; }
.contact__info-item strong { font-size: 0.9rem; font-weight: 600; color: var(--white); }
.contact__info-item span { font-size: 0.85rem; color: rgba(255,255,255,0.5); }


.contact__map {
  margin-top: 1.8rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,98,0,0.25);
  position: relative;
}
.contact__map iframe {
  display: block;
  width: 100%;
  height: 260px;
  border: 0;
}
.contact__map-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem;
  background: rgba(255,98,0,0.12);
  border-top: 1px solid rgba(255,98,0,0.2);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
  transition: background var(--transition);
}
.contact__map-btn:hover { background: rgba(255,98,0,0.22); }

.contact__map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.3rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.04em;
  transition: opacity var(--transition);
}
.contact__map-link:hover { opacity: 0.75; }


.contact__social-btns {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.4rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(6px);
  transition: all var(--transition);
  cursor: pointer;
}
.social-btn:hover {
  transform: translateX(6px);
  border-color: rgba(255,255,255,0.2);
}

.social-btn--telegram     { border-left: 3px solid #29a8e8; }
.social-btn--telegram:hover { background: rgba(41,168,232,0.1); border-left-color: #29a8e8; }
.social-btn--telegram svg { color: #29a8e8; }

.social-btn--instagram     { border-left: 3px solid #e1306c; }
.social-btn--instagram:hover { background: rgba(225,48,108,0.1); border-left-color: #e1306c; }
.social-btn--instagram svg { color: #e1306c; }

.social-btn--tgchannel     { border-left: 3px solid #29a8e8; }
.social-btn--tgchannel:hover { background: rgba(41,168,232,0.1); border-left-color: #29a8e8; }
.social-btn--tgchannel svg { color: #29a8e8; }

.social-btn--location     { border-left: 3px solid var(--orange); }
.social-btn--location:hover { background: rgba(255,98,0,0.1); border-left-color: var(--orange); }
.social-btn--location svg { stroke: var(--orange); }

.social-btn__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.social-btn__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
}
.social-btn__desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}


.contact__map-wrap {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,98,0,0.2);
  background: rgba(255,255,255,0.04);
}
.contact__map-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid rgba(255,98,0,0.15);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}
.contact__map-header svg { stroke: var(--orange); }


.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 2rem 0;
}
.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.footer__logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange);
}
.footer__brand span {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.06em;
}
.footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer__links {
  display: flex;
  gap: 1.5rem;
}
.footer__links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--orange); }


@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .about__inner   { grid-template-columns: 1fr; gap: 3rem; }
  .about__right   { display: none; }
  .contact__inner { grid-template-columns: 1fr; gap: 3rem; }
  .blog__grid     { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid  {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
  }
  .gallery__item--big { grid-column: 1 / 3; grid-row: 1 / 2; }
}


@media (max-width: 768px) {
  :root { --header-h: 64px; }

  
  .header__inner { padding: 0 1.2rem; gap: 0; }
  .header__phone { display: none; }
  .burger { display: flex; }

  
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8,8,8,0.99);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(.4,0,.2,1);
    z-index: 9999;          
    pointer-events: none;   
  }
  .nav.open {
    transform: translateX(0);
    pointer-events: all;
  }
  .nav__list {
    flex-direction: column;
    gap: 0.3rem;
    text-align: center;
    width: 100%;
    padding: 0 2rem;
  }
  .nav__link {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    padding: 0.75rem 1.5rem;
    letter-spacing: 0.04em;
    color: var(--white);
    border-radius: 8px;
    transition: color var(--transition), background var(--transition);
  }
  .nav__link:hover, .nav__link:active {
    color: var(--orange);
    background: rgba(255,98,0,0.08);
  }

  
  .hero__content { padding: 2.5rem 1.2rem; }
  .hero__stats   { gap: 0; padding: 1rem; }
  .hero__stat    { padding: 0.4rem 1rem; }
  .hero__stat strong { font-size: 1.5rem; }
  .hero__scroll-hint { display: none; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  
  .services { padding: 5rem 0; }
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .service-card__img-wrap { height: 140px; }
  .service-card__body     { padding: 1rem; }
  .service-card__body h3  { font-size: 1rem; margin-bottom: 0.3rem; }
  .service-card__body p   { font-size: 0.8rem; line-height: 1.5; margin-bottom: 0.6rem; }
  .service-card__link     { font-size: 0.75rem; }
  .service-card__icon     { width: 34px; height: 34px; }
  .service-card__icon svg { width: 16px; height: 16px; }

  
  .about { padding: 5rem 0; }

  
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: unset;
    gap: 0.6rem;
  }
  .gallery__item        { height: 160px; }
  .gallery__item--big   { grid-column: 1 / 3; grid-row: auto; height: 200px; }

  
  .blog__grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .blog-card__img { height: 180px; }

  
  .contact { padding: 5rem 0; }
  .contact__map-wrap { margin-top: 1.5rem; }
  .contact__map iframe { height: 220px; }

  
  .footer__inner {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }

  
  .services__inner,
  .about__inner,
  .gallery__inner,
  .blog__inner,
  .contact__inner { padding: 0 1rem; }

  .section-header { margin-bottom: 2rem; }
}


@media (max-width: 480px) {
  .hero__title { font-size: 2.2rem; }
  .hero__stat-divider { display: none; }
  .hero__stats { flex-direction: column; gap: 0.5rem; }

  
  .services__grid { gap: 0.75rem; }
  .service-card__img-wrap { height: 120px; }
  .service-card__body { padding: 0.85rem; }
  .service-card__body h3 { font-size: 0.92rem; }
  .service-card__body p  { display: none; } 

  
  .gallery__item      { height: 130px; }
  .gallery__item--big { height: 170px; }

  .about__badge, .about__badge--2 { display: none; }
  .contact__inner { gap: 2rem; }
}


.blog-card { cursor: pointer; }
.blog-card__img { position: relative; }
.blog-card__img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background var(--transition);
}
.blog-card:hover .blog-card__img-overlay {
  background: rgba(255,98,0,0.15);
}
.blog-card__more {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--orange);
  text-transform: uppercase;
  transition: letter-spacing var(--transition);
  padding: 0;
}
.blog-card__more:hover { letter-spacing: 0.14em; }


.modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal.active {
  pointer-events: all;
  opacity: 1;
}


.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}


.modal__box {
  position: relative;
  z-index: 2;
  background: #161616;
  border: 1px solid rgba(255,98,0,0.2);
  border-radius: 12px;
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(32px) scale(0.97);
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1), opacity 0.3s ease;
  opacity: 0;
  scrollbar-width: thin;
  scrollbar-color: var(--orange) transparent;
}
.modal.active .modal__box {
  transform: translateY(0) scale(1);
  opacity: 1;
}


.modal__close {
  position: sticky;
  top: 0;
  float: right;
  margin: 0.8rem 0.8rem 0 0;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background var(--transition), border-color var(--transition);
  flex-shrink: 0;
}
.modal__close:hover {
  background: var(--orange);
  border-color: var(--orange);
}
.modal__close svg {
  width: 16px;
  height: 16px;
  stroke: var(--white);
}


.modal__media {
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  margin-top: -44px; 
}
.modal__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.modal__content {
  padding: 2rem 2rem 2.5rem;
}
.modal__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin: 0.7rem 0 1.2rem;
}
.modal__content h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--orange);
  margin: 1.4rem 0 0.4rem;
  letter-spacing: 0.02em;
}
.modal__content p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.8;
  margin-bottom: 0.4rem;
}
.modal__content strong { color: var(--white); }

.modal__cta {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}


@media (max-width: 768px) {
  .modal { padding: 0; align-items: flex-end; }
  .modal__box {
    max-height: 92vh;
    border-radius: 16px 16px 0 0;
    border-bottom: none;
  }
  .modal__media { height: 200px; margin-top: -44px; }
  .modal__content { padding: 1.4rem 1.2rem 2rem; }
  .modal__content h2 { font-size: 1.3rem; }
  .modal__cta .btn { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════════════════
   VIDEO BO'LIMI
══════════════════════════════════════════════════ */
.videos {
  background: #f5f5f5;
  padding: 6rem 0;
  min-height: 60vh;
}
.videos__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}
.videos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.video-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
}

.video-card__wrap {
  position: relative;
  width: 100%;
  padding-top: 177.78%;
  background: #000;
  overflow: hidden;
}
.video-card__player {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
  z-index: 2;
}
.video-card__overlay:hover { background: rgba(0,0,0,0.5); }

.video-card__play {
  width: 64px;
  height: 64px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), box-shadow var(--transition);
  padding-left: 4px;
}
.video-card__overlay:hover .video-card__play {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(255,98,0,0.5);
}
.video-card__play svg { color: #fff; }

.video-card__info {
  padding: 1.1rem 1.3rem 1.3rem;
}
.video-card__info h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.3rem;
}
.video-card__info p {
  font-size: 0.83rem;
  color: var(--gray);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .videos { padding: 4rem 0; }
  .videos__inner { padding: 0 1rem; }
  .videos__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .video-card__play { width: 48px; height: 48px; }
  .video-card__info { padding: 0.8rem 1rem 1rem; }
  .video-card__info h3 { font-size: 0.95rem; }
}