*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family: sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #101114;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

h1,
h2,
h3 {
  font-weight: 700;
  letter-spacing: 0.5px;
}

a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.section-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 20px 20px;
}



.title-section {
  font-size: 3rem;
  margin-bottom: 40px;
}

.text-white {
  color: #ffffff;
}

.text-center {
  text-align: center;
}

/* =========================================================
   HEADER
========================================================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #0b0b0b;
  border-bottom: 1px solid #101114;
  z-index: 1000;
}

.header__top-bar {
  background: #101114;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__inner--top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  font-size: 14px;
}

.header__inner--top a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: white;
  transition: color 0.3s ease;
}

.header__inner--top a:hover {
  color: #d64521;
}

/* ===== Адрес и ссылка на ТГК ===== */
.header__social-link {
  width: 25px;
  height: 25px;
  fill: currentColor;
  transition: fill 0.3s ease;
}

.header__social a {
  fill: #d64521;
}


/* ===== Навигация, бургер, логотип ===== */

.header_logo {
  max-width: 300px;
}

.nav {
  display: flex;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.nav a {
  color: #f5f5f5;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav a:hover {
  color: #d64521;
}

.nav-extra {
  display: none;
}

.nav .nav-extra__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: #d64521;
  text-decoration: none;
}

.nav-extra__item:hover {
  color: #d64521;
}

.nav-extra__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: #d64521;
}

.header__burger {
  display: block;
  color: #fff;
}

.header__burger {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
}


/* Появляется только в мобильном меню */
@media (max-width: 914px) {
   .header__inner--top {
    display: none;
  }

  .header__burger {
    display: block;
  }

  .nav {
    display: none;
    /* скрыто по умолчанию */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #0b0b0b;
    border-top: 1px solid #101114;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  }

  .nav.open {
    display: block;
    animation: dropdownFade 0.3s ease;
  }

  @keyframes dropdownFade {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 20px 0;
  }



  .nav {
    display: none;
  }

  .nav.open {
    display: block;
    animation: dropdownFade 0.3s ease;
  }


  .nav-extra {
    display: flex;
    flex-direction: column;
    gap: 10px;

    padding: 14px 20px;
    margin-top: 10px;

    /* Лёгкое, но не кричащее выделение */
    background: #0b0b0b;
    border: 1px solid #101114;
    

    /* Чтобы визуально отличалось от пунктов меню */
    opacity: 0.95;
  }
}



/* =========================================================
   HERO
========================================================= */


.hero {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 180px 20px 0 20px;
  box-sizing: border-box;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: clamp(32px, 4vw, 42px);
  margin: 0 0 12px;
}

.subtitle {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 32px;
}

.hero-desc {
  margin: 0 0 32px;
  font-size: 17px;
  line-height: 1.55;
  color: #333;
  width: 90%;
}


/* УТП в виде купона */

.cta-usp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  color: #101114;
  margin: 16px 0 32px;

  padding: 12px 20px;
  background: #fffdf8;
  border: 1px dashed #d64521;
  border-radius: 10px;
  position: relative;

  cursor: default;
  
  width: 100%;
}

.cta-usp::before {
  content: "Купон на скидку";
  position: absolute;
  top: -11px;
  left: 18px;
  padding: 2px 8px;

  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: #ffffff;
  color: #d64521;
  border-radius: 4px;
  border: 1px solid #ffd3c5;
}

.cta-usp p {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-usp svg {
  width: 20px;
  height: 20px;
  fill: #d64521;
  flex-shrink: 0;
}

.accent {
  font-weight: 700;
  color: #d64521;
}

.discount-text {
  line-height: 1.3;
}






.cta-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  padding: 16px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-btn.primary {
  background-color: #d64521;
  color: #fff;
  flex-grow: 1;
}

.cta-btn.primary:hover {
  background-color: #c13c1f;
}

.cta-btn.secondary {
  background-color: #fff;
  color: #101114;
  border: 1px solid #ccc;
  flex-grow: 1;
}

.cta-btn.secondary:hover {
  background-color: #fde7e2;
  color: #d64521;
  border: 1px solid #d64521;
}

.wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
}

.cta-btn_text {
  line-height: 1;
  position: relative;
  bottom: 1px;
}





.hero-photo {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-photo img {
  width: 100%;
  max-width: 500px;
}

#hero {
  position: relative;
  z-index: 2;
}


@media (max-width: 810px) {

  .hero {
    flex-direction: column;
    padding: 80px 20px 0 20px;
  }

  #hero {
    padding-top: 80px;
  }

  .about {
    flex-direction: column-reverse;
    /* Разворачиваем порядок */
  }
}

#about,
#process,
#clients {
  background: #101114;
}



.about {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 80px 20px;
  box-sizing: border-box;
}

.about-photo {
  flex: 1;
  display: flex;
  gap: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.about-photo img {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1 / 1;
  /* квадрат */
  object-fit: cover;
  border-radius: 0;
  /* углы строгие */
  display: block;

  border: 1px solid #2a2a2a;
  /* Смещение тени ВВЕРХ и ВЛЕВО, без размытия */
  box-shadow: -10px -10px 0 #2a2a2a;
  /* холодный графитовый */

  /* Лёгкий контраст и баланс яркости */
  filter: contrast(1.1) brightness(1.05);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-text {
  flex: 1.2;
}


.about-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #fff;
  margin-bottom: 30px;
}


.location-note {
  font-style: italic;
  font-size: 0.9em;
}

.achievements {
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.achievements ul {
  margin: 0;
  padding: 0;
}

.achievements li {
  margin-bottom: 0.8rem;
  list-style-type: none;
  position: relative;
  padding-left: 1.8rem;
  color: #EAEAEA;
  line-height: 1.6;
}

.achievements li:before {
  content: "•";
  color: #d64521;
  font-weight: bold;
  position: absolute;
  left: 0.5rem;
  font-size: 1.2rem;
}

.achievements li:last-child {
  margin-bottom: 0;
}

.portfolio {
  margin: 0 auto;
  padding: 80px 20px;
  border-top: 1px solid #eee;
}



.portfolio-square {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 0;
  /* ключевой момент — без зазоров! */
  width: 100%;
  max-width: 1060px;
  /* квадрат 800x800 */
  aspect-ratio: 1 / 1;
  margin: 40px auto;
  overflow: hidden;
  border-radius: 12px;
}

.item {
  position: relative;
  overflow: hidden;
}

.caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.item:hover .caption {
  opacity: 1;
  transform: translateY(0);
}

.caption h4 {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 600;
}

.caption p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.2;
}


/* Базовые ячейки */
.item {
  position: relative;
  overflow: hidden;
}

.item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.item:hover img {
  transform: scale(1.05);
}

/* Разные размеры — как на твоей схеме */
.item.small {
  grid-column: span 1;
  grid-row: span 1;
}

.item.medium {
  grid-column: span 2;
  grid-row: span 1;
}

.item.tall {
  grid-column: span 1;
  grid-row: span 2;
}

.item.wide {
  grid-column: span 2;
  grid-row: span 2;
}

.item.large {
  grid-column: span 3;
  grid-row: span 2;
}

.item {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  transition: transform 0.4s ease;
}

.item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  transform: scale(1);
  transition: filter 0.5s ease, transform 0.5s ease;
}

/* 👁 Подсказка — иконка лупы */
.item::after {
  position: absolute;
  bottom: 12px;
  right: 14px;
  font-size: 1.2rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
}

/* ==== Hover (desktop) ==== */
@media (hover: hover) and (pointer: fine) {
  .item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
  }

  .item:hover::after {
    opacity: 1;
    transform: translateY(0);
  }

  .item:hover .caption {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==== Caption ==== */
.caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 14px 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.caption h4 {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 600;
}

.caption p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.3;
}

/* ==== Активное состояние (при клике или тапе) ==== */
.item.active img {
  filter: grayscale(0%);
  transform: scale(1.1);
}

.item.active::after {
  opacity: 1;
  transform: translateY(0);
  content: "✖";
  /* при увеличении — крестик для закрытия */
}

.item.active .caption {
  opacity: 1;
  transform: translateY(0);
}

/* ==== MOBILE адаптация ==== */
@media (hover: none) and (pointer: coarse) {
  .caption {
    position: static;
    opacity: 0;
    transform: translateY(10px);
    color: #1A1A1A;
    background: linear-gradient(to bottom, #fff 0%, #f8f8f8 100%);
    padding: 12px 10px 16px;
    border-radius: 0 0 10px 10px;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .item.active .caption {
    opacity: 1;
    transform: translateY(0);
  }

  .item img {
    transition: all 0.4s ease;
  }
}

@media (max-width: 480px) {
  .portfolio-square {
    display: none;
  }
}



/* ======== КАК ПРОХОДИТ ПРОЦЕСС ======== */

.process {
  margin: 0 auto;
  padding: 100px 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #f8f8f8;
}



.process-steps {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 260px;
  background-color: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 25px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

/* SVG иконки */
.icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  background: #f8f8f8;
  border-radius: 50%;
  box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.15), 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.icon svg {
  width: 32px;
  height: 32px;
  color: #1a1a1a;
}

/* Заголовок и описание */
.step h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #f0f0f0;
  font-weight: 600;
}

.step p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
}

/* CTA кнопка */
.cta-process {
  margin-top: 70px;
  background-color: #1a1a1a;
  border: 1px solid #fff;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-process:hover {
  background-color: #c83814;
  border: 1px solid #c83814;
}

.cta-process a {
  color: inherit;
  text-decoration: none;
}

/* === АДАПТИВ === */
@media (max-width: 900px) {
  .process-steps {
    flex-direction: column;
    gap: 25px;
  }
}

.pricing {
  color: #1a1a1a;
  padding: 100px 20px;
}



.pricing-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

/* --- Таблица --- */

.pricing-table-block {
  width: 100%;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.pricing-table th {
  background-color: #111;
  color: #fff;
  padding: 14px 18px;
  font-weight: 600;
  text-align: left;
  font-size: 1rem;
}

.pricing-table td {
  padding: 16px 18px;
  border-bottom: 1px solid #eee;
  vertical-align: top;
}

.pricing-table td strong {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #111;
}

.pricing-table .desc {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
}

.pricing-note {
  margin-top: 20px;
  font-size: 0.95rem;
  color: #555;
}

/* --- Что входит --- */
.pricing-includes {
  flex: 1;
  min-width: 280px;
}

.pricing-includes h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 25px;
  text-align: center;
}

.includes-cards {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

/* --- Карточка --- */
.include-card {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 30px 22px;
  flex: 1 1 200px;
  max-width: 320px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

/* --- Иконка --- */
.include-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #111;
  color: #fff;
  transition: background 0.3s ease;
}

.include-icon svg {
  width: 32px;
  height: 32px;
}

/* --- Текст --- */
.include-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 10px;
}

.include-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* --- Адаптив --- */
@media (max-width: 900px) {
  .pricing-wrapper {
    flex-direction: column;
    gap: 50px;
  }

  .pricing-table {
    font-size: 0.95rem;
  }

  .includes-cards {
    flex-direction: column;
    align-items: center;
  }

  .include-card {
    max-width: 90%;
  }
}

.info {
  padding: 80px 20px;
  box-sizing: border-box;
  text-align: center;
  color: #EAEAEA;
}



/* --- Tabs --- */
.tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.tab {
  background: #1B1B1B;
  border: 1px solid #d64521;
  color: #EAEAEA;
  padding: 15px 25px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1rem;
}

.tab:hover,
.tab.active {
  background: #d64521;
  color: #fff;
}

/* --- Контент вкладок --- */
.tab-content {
  display: none;
  background: #1B1B1B;
  color: #EAEAEA;
  padding: 24px 20px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  max-width: 760px;
  margin: 0 auto 30px auto;
  border: 1px solid #222;
}

.tab-content.active {
  display: block;
}

/* --- FAQ --- */
.faq {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}

.faq h3 {
  margin-bottom: 16px;
  font-size: 1.3rem;
}

.faq-item {
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  background: #1A1A1A;
  border: 1px solid #222;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: transparent;
  border: none;
  font-size: 1rem;
  color: #ffffff;
  cursor: pointer;
  text-align: left;
  transition: background 0.3s;
}

.faq-q:hover {
  background: rgba(214, 69, 33, 0.1);
}

.faq-q .chev {
  color: #d64521;
  transition: transform 0.3s ease;
}

.faq-q[aria-expanded="true"] .chev {
  transform: rotate(180deg);
}

.faq-a {
  padding: 0 16px 16px 16px;
  color: #E0E0E0;
  line-height: 1.6;
}

.faq-a[hidden] {
  display: none;
}

/* --- Адаптив --- */
@media (max-width: 480px) {
  .tabs {
    gap: 8px;
  }

  .tab {
    padding: 8px 14px;
    font-size: 0.9rem;
  }

  .faq-q {
    padding: 12px 14px;
    font-size: 0.95rem;
  }
}

.contacts {
  background: #fff;
  color: #111;
  padding: 80px 20px;
  text-align: center;
  border-top: 1px solid #eee;
  box-sizing: border-box;
}



.contact-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #111;
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background-color: #d64521;
}

.contact-btn svg {
  fill: currentColor;
}

.contact-note {
  font-size: 1rem;
  color: #333;
  margin-bottom: 24px;
}

/* CTA */
.cta-contact {
  background-color: #111;
  color: #fff;
  border: none;
  padding: 16px 40px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-contact:hover {
  background-color: #d64521;
}

/* --- Адаптив --- */
@media (max-width: 480px) {
  .contacts {
    padding: 60px 15px;
  }

  .contact-links {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .contact-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 12px 0;
  }

  .cta-contact {
    width: 100%;
    max-width: 280px;
  }
}

.mobile-gallery {
  display: none;
}

@media (max-width: 810px) {
  .desktop-gallery {
    display: none;
  }

  .mobile-gallery {
    display: block;
  }
}

/* стили под Ink Black */
.carousel {
  background: #111;
  border-radius: 12px;
  overflow: hidden;
}

.carousel-item img {
  object-fit: cover;
  filter: grayscale(100%);
  transition: all 0.5s ease;
}

.carousel-item.active img,
.carousel-item img:hover {
  filter: grayscale(0%);
  transform: scale(1.03);
}

.carousel-caption {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 0 0 12px 12px;
}

.carousel-caption h5 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 6px;
  font-weight: 600;
}

.carousel-caption p {
  color: #ccc;
  font-size: 0.9rem;
}

/* кнопки навигации */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1) brightness(1.5);
  width: 2rem;
  height: 2rem;
}





/* ГАЛЕРЕЯ */
.gallery {
  display: flex;
  flex-wrap: wrap;
}

.gallery img {
  width: 33.3333%;
  aspect-ratio: 1 / 1;
  /* квадрат */
  object-fit: cover;
  cursor: pointer;
  margin: 0;
  padding: 0;
}

/* Адаптивность — на мобильных 3 фото остаются 3 */
@media (max-width: 600px) {
  .gallery img {
    width: 33.3333%;
  }
}

/* МОДАЛКА */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
  z-index: 9999;
}

.modal.open {
  opacity: 1;
  pointer-events: auto;
}


.modal-img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
  user-select: none;
  -webkit-user-drag: none;
}


/* Кнопки стрелок */
.modal-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  font-size: 2.5rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.2s;
  z-index: 10001;
}

.modal-btn:hover {
  background: rgba(255, 255, 255, 0.4);
}

.modal-btn.left {
  left: 20px;
}

.modal-btn.right {
  right: 20px;
}


/* Кнопка закрытия */
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  cursor: pointer;
  z-index: 10002;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.8);
}


.hero-label {
  font-size: 14px;
  color: #555555;
  margin-bottom: 8px;
}

.hero-title {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 700;
  margin: 0 0 16px;
}

.hero-subtitle {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 12px;
}

.hero-list {
  margin: 12px 0 20px;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.6;
}

.hero-note {
  font-size: 13px;
  color: #555555;
  max-width: 300px;
}

.dark {
  background: #111111;
}


.portfolio-header {
  margin-bottom: 20px;
  text-align: center;
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 20px 0 30px;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: 999px;
  background: #181818;
  color: #f5f5f5;
  border: 1px solid #2a2a2a;
  cursor: pointer;
  font-size: 15px;
  transition: 0.2s ease;
}

.filter-btn:hover {
  background: #222;
  border-color: #d64521;
}

.filter-btn.active {
  background: #d64521;
  border-color: #d64521;
}

body.no-scroll {
  overflow: hidden;
  height: 100vh;
}