@font-face {
  font-family: 'BPG Studio Caps';
  src: url('assets/fonts/bpg_le_studio_02_caps.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

:root {
  --bg-color: #121212;
  --main-text: #ffffff;
  --small-text: #b3b0b0;
  --gold: #b08a33;
  --gold-hover: #c69a39;
  --header-btn-border: #b08a33;
  --max-width: 1349px;
}

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

html, body {
  width: 100%;
  min-height: 100%;
}

body {
  background: var(--bg-color);
  color: var(--main-text);
  font-family: 'BPG Studio Caps', sans-serif;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 738px;
  background: var(--bg-color);
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 54px;
}

.site-header {
  position: relative;
  z-index: 20;
  padding-top: 28px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrap {
  flex: 0 0 auto;
}

.logo {
  width: 62px;
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  margin-left: 30px;
  margin-right: auto;
  padding-left: 70px;
}

.main-nav a {
  font-size: 18px;
  line-height: 1;
  color: var(--main-text);
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.main-nav a:hover {
  opacity: 0.78;
}

.header-btn {
  min-width: 149px;
  height: 50px;
  border: 1px solid var(--header-btn-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--main-text);
  font-size: 17px;
  line-height: 1;
  background: transparent;
  transition: all 0.2s ease;
}

.header-btn:hover {
  border-color: var(--gold-hover);
  color: var(--main-text);
}

.hero-inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 640px;
  padding-top: 84px;
}

.hero-content {
  position: relative;
  z-index: 12;
  width: 100%;
  max-width: 670px;
}

.hero-content h1 {
  font-size: 44px;
  line-height: 1.05;
  font-weight: normal;
  color: var(--main-text);
  letter-spacing: 0;
  margin-bottom: 34px;
}

.hero-content p {
  font-size: 14px;
  line-height: 1.35;
  color: var(--small-text);
  max-width: 540px;
}

.hero-content p + p {
  margin-top: 26px;
}

.hero-btn {
  margin-top: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 269px;
  height: 58px;
  border: 1px solid var(--gold);
  color: var(--main-text);
  font-size: 17px;
  line-height: 1;
  background: transparent;
  transition: all 0.2s ease;
}

.hero-btn:hover {
  border-color: var(--gold-hover);
}

.hero-visual {
  position: absolute;
  right: -25px;
  top: 16px;
  width: 835px;
  height: 640px;
  z-index: 5;
}

.overlay-shape {
  position: absolute;
  left: -49px;
  top: -146px;
  z-index: 1;
}

.overlay-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.car-image {
  position: absolute;
  right: 0;
  bottom: 10px;
  width: 785px;
  max-width: none;
  height: auto;
  z-index: 3;
}

.about-section {
  background: var(--bg-color);
  padding: 58px 0 70px;
  overflow: hidden;
}

.about-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 64px;
}

.about-media {
  position: relative;
  width: 100%;
  max-width: 585px;
  flex: 0 0 585px;
}

.about-main-image {
  width: 100%;
  height: auto;
  display: block;
}

.about-badge {
  position: absolute;
  top: -60px;
  right: 85px;
  width: 119px;
  min-height: 119px;
  background: #f28c00;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 8px;
}

.about-badge strong {
  display: block;
  font-size: 31px;
  line-height: 1;
  font-weight: normal;
  margin-bottom: 6px;
}

.about-badge span {
  display: block;
  font-size: 10px;
  line-height: 1.15;
  color: #ffffff;
}

.about-content {
  width: 100%;
  max-width: 610px;
  padding-top: 18px;
}

.about-content h2 {
  font-size: 30px;
  line-height: 1.08;
  font-weight: normal;
  color: var(--main-text);
  margin-bottom: 52px;
}

.about-title-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
  vertical-align: middle;
}

.about-title-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.about-content p {
  max-width: 570px;
  font-size: 12px;
  line-height: 1.26;
  color: var(--small-text);
  margin-bottom: 68px;
}

.about-features {
  display: flex;
  align-items: flex-start;
  gap: 120px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.feature-icon {
  width: 55px;
  height: 55px;
  min-width: 55px;
  border-radius: 50%;
  background: #f77f00;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.feature-text h3,
.feature-text span {
  display: block;
  color: var(--main-text);
  font-weight: normal;
  line-height: 1.08;
}

.feature-text h3 {
  font-size: 14px;
  margin-bottom: 3px;
}

.feature-text span {
  font-size: 18px;
}

.routes-section {
  padding: 70px 0 80px;
  background: var(--bg-color);
}

.routes-head {
  text-align: center;
  margin-bottom: 74px;
}

.routes-label {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  color: #f77f00;
  margin-bottom: 22px;
}

.routes-head h2 {
  font-size: 30px;
  line-height: 1.08;
  font-weight: normal;
  color: var(--main-text);
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.route-card {
  background: #1e1f22;
  overflow: hidden;
}

.route-card-top {
  padding: 22px 18px 28px;
  min-height: 128px;
}

.route-card-top h3 {
  font-size: 28px;
  line-height: 1.05;
  font-weight: normal;
  color: var(--main-text);
  margin-bottom: 10px;
}

.route-card-top p {
  font-size: 18px;
  line-height: 1.15;
  color: var(--small-text);
}

.route-card-image-wrap {
  position: relative;
  overflow: hidden;
}

.route-card-image {
  width: 100%;
  height: 294px;
  object-fit: cover;
  display: block;
}

.route-card-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 14px);
  min-width: 185px;
  height: 58px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 31, 34, 0.72);
  color: var(--main-text);
  font-size: 17px;
  line-height: 1;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
  z-index: 2;
}

.route-card-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: 0.25s ease;
}

.route-card:hover .route-card-btn {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.route-card:hover .route-card-image-wrap::after {
  background: rgba(0, 0, 0, 0.28);
}

.gallery-section {
  background: var(--bg-color);
  padding: 54px 0 70px;
}

.gallery-container {
  max-width: 1610px;
  padding: 0 20px;
}

.gallery-head {
  text-align: center;
  margin-bottom: 34px;
}

.gallery-label {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  color: #f77f00;
  margin-bottom: 18px;
}

.gallery-head h2 {
  font-size: 30px;
  line-height: 1.05;
  font-weight: normal;
  color: var(--main-text);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 403px 301px 277px 218px 338px;
  grid-template-rows: 160px 150px 210px;
  gap: 4px;
  justify-content: center;
}

.gallery-item {
  overflow: hidden;
  background: #111;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.item-1 {
  grid-column: 1;
  grid-row: 1 / 4;
}

.item-2 {
  grid-column: 2;
  grid-row: 1 / 2;
}

.item-4 {
  grid-column: 3;
  grid-row: 1 / 2;
}

.item-5 {
  grid-column: 4;
  grid-row: 1 / 2;
}

.item-7 {
  grid-column: 5;
  grid-row: 1 / 3;
}

.item-3 {
  grid-column: 2;
  grid-row: 2 / 4;
}

.item-6 {
  grid-column: 3 / 5;
  grid-row: 2 / 4;
}

.item-8 {
  grid-column: 5;
  grid-row: 3;
}

.faq-section {
  background: var(--bg-color);
  padding: 58px 0 110px;
}

.faq-head {
  text-align: center;
  margin-bottom: 52px;
}

.faq-label {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  color: #f77f00;
  margin-bottom: 18px;
}

.faq-head h2 {
  font-size: 30px;
  line-height: 1.08;
  font-weight: normal;
  color: var(--main-text);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  cursor: pointer;
  color: var(--main-text);
  font-family: inherit;
}

.faq-question span:first-child {
  font-size: 17px;
  line-height: 1.2;
  color: var(--main-text);
}

.faq-icon {
  flex: 0 0 auto;
  font-size: 34px;
  line-height: 1;
  color: var(--main-text);
  transition: transform 0.2s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease, padding-bottom 0.28s ease;
  padding-bottom: 0;
}

.faq-answer p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--small-text);
  max-width: 92%;
  padding-right: 24px;
}

.faq-item.active .faq-answer {
  max-height: 220px;
  padding-bottom: 18px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.site-footer {
  background: #1e1f22;
  padding: 70px 0 20px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
}

.footer-left {
  max-width: 320px;
}

.footer-logo {
  width: 110px;
  margin-bottom: 40px;
}

.footer-contact span {
  display: block;
  font-size: 14px;
  color: var(--small-text);
  margin-bottom: 18px;
}

.footer-contact a {
  display: block;
  font-size: 26px;
  color: var(--main-text);
  margin-bottom: 12px;
}

.footer-right h2 {
  font-size: 44px;
  line-height: 1.05;
  font-weight: normal;
  color: var(--main-text);
  margin-bottom: 18px;
}

.footer-right p {
  font-size: 16px;
  color: var(--small-text);
  margin-bottom: 30px;
  max-width: 740px;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 52px;
  border: 1px solid var(--gold);
  color: var(--main-text);
  font-size: 16px;
  margin-bottom: 40px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
}

.footer-bottom span {
  font-size: 14px;
  color: var(--small-text);
}

.footer-socials {
  display: flex;
  gap: 18px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
}

.footer-socials img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.footer-socials a:hover {
  border-color: var(--gold);
}

.burger-btn {
  display: none;
  width: 46px;
  height: 46px;
  background: transparent;
  border: 1px solid var(--gold);
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  transition: 0.25s ease;
}

.burger-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger-btn.active span:nth-child(2) {
  opacity: 0;
}

.burger-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .container {
    padding: 0 22px;
  }

  .site-header {
    padding-top: 20px;
  }

  .header-inner {
    position: relative;
    min-height: 54px;
  }

  .main-nav,
  .header-btn {
    display: none;
  }

  .burger-btn {
    display: inline-flex;
    margin-left: auto;
  }

  .logo {
    width: 54px;
  }

  .mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #1e1f22;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    z-index: 50;
  }

  .mobile-menu.active {
    display: block;
    max-height: 500px;
    padding-top: 18px;
    padding-bottom: 22px;
  }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .mobile-nav a {
    font-size: 16px;
    line-height: 1.2;
    color: #fff;
  }

  .mobile-menu-btn {
    margin-top: 8px;
    width: 100%;
    height: 50px;
    border: 1px solid var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
  }

  .hero {
    min-height: 560px;
  }

  .hero-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    min-height: 470px;
    padding-top: 38px;
  }

  .hero-content {
    max-width: 48%;
    padding-top: 8px;
    z-index: 3;
  }

  .hero-content h1 {
    font-size: 24px;
    line-height: 1.05;
    margin-bottom: 16px;
  }

  .hero-content p {
    font-size: 10px;
    line-height: 1.4;
    max-width: 100%;
  }

  .hero-content p + p {
    margin-top: 12px;
  }

  .hero-btn {
    min-width: 160px;
    height: 42px;
    margin-top: 22px;
    font-size: 13px;
  }

  .hero-visual {
    position: absolute;
    right: -80px;
    top: 36px;
    width: 58%;
    height: 350px;
  }

  .overlay-shape {
    left: 10px;
    top: -20px;
    width: 100%;
    height: 100%;
  }

  .car-image {
    width: 520px;
    right: -35px;
    bottom: 15px;
  }

  .about-section {
    padding: 46px 0 52px;
  }

  .about-inner {
    flex-direction: column;
    gap: 26px;
  }

  .about-media {
    max-width: 100%;
    flex: none;
    order: 1;
  }

  .about-content {
    max-width: 100%;
    padding-top: 0;
    order: 2;
  }

  .about-main-image {
    width: 100%;
  }

  .about-badge {
    top: 14px;
    right: 14px;
    width: 92px;
    min-height: 92px;
  }

  .about-badge strong {
    font-size: 24px;
  }

  .about-badge span {
    font-size: 8px;
  }

  .about-content h2 {
    font-size: 22px;
    line-height: 1.15;
    margin-bottom: 18px;
  }

  .about-title-icon img {
    width: 18px;
    height: 18px;
  }

  .about-content p {
    max-width: 100%;
    font-size: 11px;
    line-height: 1.5;
    margin-bottom: 26px;
  }

  .about-features {
    flex-direction: column;
    gap: 18px;
  }

  .feature-item {
    gap: 14px;
  }

  .feature-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
  }

  .feature-icon img {
    width: 22px;
    height: 22px;
  }

  .feature-text h3 {
    font-size: 13px;
  }

  .feature-text span {
    font-size: 15px;
  }

  .routes-section {
    padding: 50px 0 56px;
  }

  .routes-head {
    margin-bottom: 28px;
  }

  .routes-label {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .routes-head h2 {
    font-size: 24px;
  }

  .routes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .route-card-top {
    min-height: auto;
    padding: 16px 12px 18px;
  }

  .route-card-top h3 {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .route-card-top p {
    font-size: 13px;
  }

  .route-card-image {
    height: 180px;
  }

  .route-card-btn {
    min-width: 120px;
    height: 40px;
    font-size: 12px;
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
    background: rgba(30, 31, 34, 0.82);
  }

  .route-card-image-wrap::after {
    background: rgba(0, 0, 0, 0.18);
  }

  .gallery-section {
    padding: 50px 0 56px;
  }

  .gallery-container {
    padding: 0 22px;
  }

  .gallery-head {
    margin-bottom: 24px;
  }

  .gallery-label {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .gallery-head h2 {
    font-size: 24px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 180px 120px 160px 160px 120px 160px;
    gap: 6px;
    transform: none;
    margin-bottom: 0;
  }

  .item-1 {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .item-2 {
    grid-column: 2;
    grid-row: 1;
  }

  .item-4 {
    grid-column: 2;
    grid-row: 2 / 4;
  }

  .item-5 {
    grid-column: 1;
    grid-row: 3;
  }

  .item-7 {
    grid-column: 1 / 3;
    grid-row: 4;
  }

  .item-3 {
    grid-column: 1;
    grid-row: 5;
  }

  .item-6 {
    grid-column: 2;
    grid-row: 5;
  }

  .item-8 {
    grid-column: 1 / 3;
    grid-row: 6;
  }

  .gallery-item {
    height: 100%;
  }

  .faq-section {
    padding: 50px 0 56px;
  }

  .faq-head {
    margin-bottom: 28px;
  }

  .faq-label {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .faq-head h2 {
    font-size: 24px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .faq-question {
    padding: 18px 0;
  }

  .faq-question span:first-child {
    font-size: 15px;
  }

  .faq-icon {
    font-size: 26px;
  }

  .faq-answer p {
    font-size: 11px;
    line-height: 1.5;
    max-width: 100%;
    padding-right: 0;
  }

  .site-footer {
    padding: 44px 0 22px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 28px;
  }

  .footer-right {
    order: 2;
    width: 100%;
  }

  .footer-left {
    order: 1;
    max-width: 100%;
  }

  .footer-right h2 {
    font-size: 24px;
    line-height: 1.1;
    margin-bottom: 14px;
  }

  .footer-right p {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 18px;
    max-width: 100%;
  }

  .footer-btn {
    width: 150px;
    height: 44px;
    font-size: 13px;
    margin-bottom: 0;
  }

  .footer-logo {
    width: 70px;
    margin-bottom: 18px;
  }

  .footer-contact span {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .footer-contact a {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .footer-bottom {
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 18px;
    margin-top: 8px;
  }

  .footer-bottom span {
    font-size: 12px;
  }

  .footer-socials {
    gap: 12px;
  }

  .footer-socials a {
    width: 34px;
    height: 34px;
  }

  .footer-socials img {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }

  .site-header {
    padding-top: 16px;
  }

  .header-inner {
    min-height: 48px;
  }

  .logo {
    width: 46px;
  }

  .burger-btn {
    width: 42px;
    height: 42px;
  }

  .mobile-menu {
    padding-left: 16px;
    padding-right: 16px;
  }

  .mobile-menu.active {
    padding-top: 16px;
    padding-bottom: 18px;
  }

  .mobile-nav {
    gap: 12px;
  }

  .mobile-nav a {
    font-size: 15px;
  }

  .mobile-menu-btn {
    height: 46px;
    font-size: 15px;
  }

  .hero {
    min-height: 470px;
  }

  .hero-inner {
    min-height: 370px;
    padding-top: 40px;
    gap: 6px;
  }

  .hero-content {
    max-width: 52%;
    padding-top: 0;
  }

  .hero-content h1 {
    font-size: 18px;
    line-height: 1.08;
    margin-bottom: 12px;
  }

  .hero-content p {
    font-size: 9px;
    line-height: 1.45;
  }

  .hero-content p + p {
    margin-top: 9px;
  }

  .hero-btn {
    min-width: 130px;
    height: 36px;
    margin-top: 16px;
    font-size: 11px;
  }

  .hero-visual {
    right: -92px;
    top: 44px;
    width: 58%;
    height: 250px;
  }

  .overlay-shape {
    left: -135px;
    top: -16px;
  }

  .car-image {
    width: 390px;
    right: -40px;
    bottom: -45px;
  }

  .about-section {
    padding: 0px 0 44px;
  }

  .about-inner {
    gap: 22px;
  }

  .about-badge {
    top: 12px;
    right: 12px;
    width: 80px;
    min-height: 80px;
    padding: 8px 5px;
  }

  .about-badge strong {
    font-size: 20px;
    margin-bottom: 3px;
  }

  .about-badge span {
    font-size: 7px;
    line-height: 1.15;
  }

  .about-content h2 {
    font-size: 18px;
    line-height: 1.18;
    margin-bottom: 14px;
  }

  .about-content p {
    font-size: 10px;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .about-features {
    gap: 14px;
  }

  .feature-item {
    gap: 12px;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .feature-icon img {
    width: 18px;
    height: 18px;
  }

  .feature-text h3 {
    font-size: 11px;
  }

  .feature-text span {
    font-size: 13px;
  }

  .routes-section {
    padding: 42px 0 46px;
  }

  .routes-head {
    margin-bottom: 22px;
  }

  .routes-label {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .routes-head h2 {
    font-size: 20px;
  }

  .routes-grid {
    gap: 10px;
  }

  .route-card-top {
    padding: 13px 10px 14px;
  }

  .route-card-top h3 {
    font-size: 15px;
    margin-bottom: 5px;
  }

  .route-card-top p {
    font-size: 11px;
  }

  .route-card-image {
    height: 135px;
  }

  .route-card-btn {
    min-width: 96px;
    height: 34px;
    font-size: 10px;
  }

  .gallery-section {
    padding: 42px 0 46px;
  }

  .gallery-container {
    padding: 0 16px;
  }

  .gallery-head {
    margin-bottom: 20px;
  }

  .gallery-label {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .gallery-head h2 {
    font-size: 20px;
  }

  .gallery-grid {
    grid-template-rows: 150px 95px 125px 125px 95px 130px;
    gap: 5px;
  }

  .faq-section {
    padding: 42px 0 46px;
  }

  .faq-head {
    margin-bottom: 22px;
  }

  .faq-label {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .faq-head h2 {
    font-size: 20px;
  }

  .faq-question {
    padding: 15px 0;
    gap: 12px;
  }

  .faq-question span:first-child {
    font-size: 13px;
    line-height: 1.35;
  }

  .faq-icon {
    font-size: 22px;
  }

  .faq-answer p {
    font-size: 10px;
    line-height: 1.55;
  }

  .faq-item.active .faq-answer {
    max-height: 260px;
    padding-bottom: 14px;
  }

  .site-footer {
    padding: 21px 0 21px;
  }

  .footer-inner {
    gap: 22px;
  }

  .footer-right h2 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .footer-right p {
    font-size: 11px;
    margin-bottom: 16px;
  }

  .footer-btn {
    width: 136px;
    height: 40px;
    font-size: 12px;
  }

  .footer-logo {
    width: 60px;
    margin-bottom: 14px;
  }

  .footer-contact span {
    font-size: 11px;
    margin-bottom: 10px;
  }

  .footer-contact a {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .footer-bottom {
    gap: 12px;
    padding-top: 14px;
  }

  .footer-bottom span {
    font-size: 11px;
  }

  .footer-socials {
    gap: 10px;
  }

  .footer-socials a {
    width: 30px;
    height: 30px;
  }

  .footer-socials img {
    width: 14px;
    height: 14px;
  }
}
