* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #222;
  background-color: #f9f9f9;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 24px;
  font-weight: 700;
}

.logo span {
  color: #f57c00;
}

.nav {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

.nav a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.nav a:hover {
  color: #f57c00;
}

.header {
  position: sticky;
  top: 0;
  width: 100%;
  background: #212121;
  color: #fff;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo {
  font-size: 26px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  letter-spacing: 1px;
}

.logo span {
  color: #f57c00;
}

.nav {
  display: flex;
  gap: 25px;
  transition: all 0.3s ease;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: #f57c00;
  transition: width 0.3s;
}

.nav a:hover::after {
  width: 100%;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 70px;
    right: -100%;
    background: #212121;
    flex-direction: column;
    width: 220px;
    padding: 20px;
    gap: 15px;
    border-left: 3px solid #f57c00;
    transition: right 0.4s ease;
  }

  .nav.active {
    right: 0;
  }

  .burger {
    display: flex;
  }

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

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

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

.hero-epic {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 6vw, 96px) 0 20px;
  color: #fff;
  background: linear-gradient(180deg, rgba(33,33,33,0.85) 0%, rgba(33,33,33,0.6) 60%);
}

.hero-epic__bg.animate {
  transform: scale(1.08);
}

.hero-epic__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
}

.hero-epic__left { max-width: 720px; }

.eyebrow {
  display: inline-block;
  font-weight: 600;
  letter-spacing: .08em;
  color: #ffd8a8;
  margin-bottom: 12px;
  font-size: 13px;
}

.hero-title {
  font-size: clamp(28px, 4.8vw, 56px);
  line-height: 1.02;
  margin: 6px 0 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.hero-title__accent {
  display: block;
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 600;
  color: #ffd8a8;
  margin-top: 8px;
}

.hero-sub {
  max-width: 56ch;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.9);
  font-size: 16px;
}

.hero-ctas { display: flex; gap: 14px; margin-bottom: 22px; flex-wrap: wrap; }

.btn--primary {
  background: linear-gradient(90deg,#f57c00,#ff9800);
  color: #111;
  padding: 14px 20px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(245,124,0,0.18);
  transition: transform .18s ease, box-shadow .18s ease;
}

.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 18px 30px rgba(245,124,0,0.22); }

.btn--ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.hero-trust {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  list-style: none;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  font-size: 14px;
}

.hero-epic__visual {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,0.45);
  transform-origin: center;
}

.hero-epic__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
  transition: transform .9s ease;
}

.hero-epic__visual:hover img { transform: scale(1.07); }

.visual-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  backdrop-filter: blur(4px);
}

.hero-wave { display: block; width: 100%; height: 60px; position: relative; z-index: 3; fill: #f9f9f9; margin-top: 6px; }

@media (max-width: 1100px) {
  .hero-epic__inner { grid-template-columns: 1fr 420px; }
}
@media (max-width: 880px) {
  .hero-epic__inner { grid-template-columns: 1fr; gap: 18px; padding-bottom: 6px; }
  .hero-epic__visual { order: -1; height: 320px; }
  .hero-title { font-size: clamp(28px, 6.6vw, 44px); }
}

.hero-epic + * { margin-top: -6px; }

.build-services {
  background: #0e0e0e;
  color: #fff;
  padding: 80px 20px;
  font-family: "Poppins", sans-serif;
  position: relative;
  overflow: hidden;
}

.build-services__container {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

.build-services__title {
  font-size: 2.4rem;
  margin-bottom: 10px;
  color: #FFD700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.build-services__subtitle {
  color: #bcbcbc;
  font-size: 1.05rem;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.build-services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  align-items: stretch;
}

.build-services__card {
  background: #191919;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  transition: all 0.5s ease;
  transform: translateY(40px);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.build-services__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(255, 215, 0, 0.25);
}

.build-services__image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.build-services__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.build-services__card:hover img {
  transform: scale(1.08);
}

.build-services__card-title {
  font-size: 1.2rem;
  color: #FFD700;
  margin: 20px 0 8px;
  padding: 0 18px;
  text-align: left;
}

.build-services__card-text {
  color: #d0d0d0;
  font-size: 0.9rem;
  line-height: 1.5;
  padding: 0 18px 25px;
  text-align: left;
  flex-grow: 1;
}

.build-services__card.show {
  transform: translateY(0);
  opacity: 1;
  transition: all 0.9s ease;
}

@media (max-width: 1100px) {
  .build-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .build-services__title {
    font-size: 2rem;
  }

  .build-services__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .build-services__image {
    height: 200px;
  }

  .build-services__card-title {
    font-size: 1.1rem;
    padding: 0 15px;
  }

  .build-services__card-text {
    padding: 0 15px 25px;
  }
}

.build-about {
  position: relative;
  background: #0e0e0e;
  color: #fff;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

.build-about__wrapper {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  gap: 50px;
  padding: 40px 0;
}

.build-about__image {
  position: relative;
  overflow: hidden;
  height: 550px;
  border-radius: 20px;
}

.build-about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.1);
  filter: brightness(70%);
  transition: transform 1.5s ease;
}

.build-about:hover .build-about__image img {
  transform: scale(1.15);
}

.build-about__content {
  background: linear-gradient(135deg, #191919, #101010);
  padding: 60px 50px;
  border-radius: 20px; 
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translateX(60px);
  opacity: 0;
  transition: all 1s ease;
}

.build-about__content.show {
  transform: translateX(0);
  opacity: 1;
}

.build-about__title {
  font-size: 2.6rem;
  color: #FFD700;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.build-about__text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 25px;
}

.build-about__btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 30px;
  border: 2px solid #FFD700;
  color: #FFD700;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.4s ease;
  align-self: flex-start;
}

.build-about__btn:hover {
  background: #FFD700;
  color: #0e0e0e;
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .build-about__wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .build-about__image {
    height: 350px;
  }

  .build-about__content {
    padding: 50px 25px;
    transform: translateY(30px);
  }

  .build-about__title {
    font-size: 2rem;
  }

  .build-about__btn {
    padding: 12px 26px;
  }
}

.projects-section {
  background: #0e0e0e;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 100px 20px;
}

.projects-section__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.projects-section__title {
  font-size: 2.8rem;
  color: #FFD700;
  margin-bottom: 15px;
}

.projects-section__subtitle {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 60px;
}

.projects-section__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.projects-section__card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.projects-section__card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.projects-section__card:hover img {
  transform: scale(1.05);
  filter: brightness(75%);
}

.projects-section__info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(0deg, rgba(0,0,0,0.85), transparent);
  color: #FFD700;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: translateY(20px);
}

.projects-section__card:hover .projects-section__info {
  opacity: 1;
  transform: translateY(0);
}

.projects-section__info h3 {
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.projects-section__info p {
  font-size: 0.95rem;
  color: #ddd;
}

@media (max-width: 1024px) {
  .projects-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .projects-section__grid {
    grid-template-columns: 1fr;
  }

  .projects-section__card img {
    height: 200px;
  }
}

.faq-section {
  background: #1c1c1c;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 100px 20px;
}

.faq-section__container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.faq-section__title {
  font-size: 2.5rem;
  color: #FFD700;
  margin-bottom: 15px;
}

.faq-section__subtitle {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 50px;
}

.faq-section__items {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: left;
}

.faq-item {
  background: #0e0e0e;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

.faq-item__question {
  width: 100%;
  padding: 18px 20px;
  background: transparent;
  border: none;
  color: #FFD700;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-item__question:hover {
  background: rgba(255, 215, 0, 0.05);
}

.faq-item__icon {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

@media (max-width: 768px) {
  .faq-section__title {
    font-size: 2rem;
  }
  .faq-item__question {
    font-size: 1rem;
  }
}

.contact-section {
  background: #0e0e0e;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 100px 20px;
}

.contact-section__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.contact-section__title {
  font-size: 2.8rem;
  color: #FFD700;
  margin-bottom: 15px;
}

.contact-section__subtitle {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 60px;
}

.contact-section__columns {
  display: flex;
  gap: 50px;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}

.contact-section__info {
  flex: 1;
  min-width: 300px;
  padding: 30px;
  border-radius: 20px;
  background: linear-gradient(135deg, #1c1c1c, #292929);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.15);
  font-size: 1rem;
  line-height: 1.8;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-section__info:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.25);
}

.contact-section__info p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.contact-section__info a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-section__info a:hover {
  color: #fff;
}

.contact-icon {
  font-size: 1.3rem;
}

.contact-section__form {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-section__form input,
.contact-section__form textarea {
  padding: 15px 20px;
  border-radius: 12px;
  border: none;
  background: #1c1c1c;
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: background 0.3s ease;
}

.contact-section__form input:focus,
.contact-section__form textarea:focus {
  background: #292929;
}

.contact-section__form button {
  padding: 15px 20px;
  background: #FFD700;
  color: #0e0e0e;
  font-weight: bold;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact-section__form button:hover {
  background: #e6c200;
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .contact-section__columns {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .contact-section__columns {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .contact-section__info {
    text-align: center;
  }
}

.footer {
  background: #0e0e0e;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 40px 20px 20px;
}

.footer__top {
  text-align: center;
  margin-bottom: 40px;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #FFD700;
  font-size: 1.4rem;
  font-weight: bold;
  gap: 10px;
}

.footer__logo img {
  width: 50px;
  height: 50px;
}

.footer__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 30px;
  gap: 40px;
}

.footer__section h4 {
  font-size: 1.2rem;
  color: #FFD700;
  margin-bottom: 15px;
}

.footer__section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__section ul li {
  margin-bottom: 10px;
}

.footer__section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__section a:hover {
  color: #FFD700;
}

.footer__contacts p {
  margin-bottom: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer__social-icons {
  display: flex;
  gap: 15px;
      justify-content: space-evenly;
}

.footer__social-icons a img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

.footer__social-icons a:hover img {
  transform: scale(1.2);
}

.footer__bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 0.9rem;
  color: #777;
}

/* Адаптив */
@media (max-width: 768px) {
  .footer__container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .footer__social-icons {
    justify-content: center;
  }

  .footer__logo {
    justify-content: center;
  }
}

.policy {
  background: #0e0e0e;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 100px 20px;
}

.policy__container {
  max-width: 1000px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1a1a1a, #212121);
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.15);
}

.policy__title {
  color: #FFD700;
  font-size: 2.4rem;
  margin-bottom: 10px;
  text-align: center;
}

.policy__updated {
  color: #aaa;
  font-size: 0.95rem;
  text-align: center;
  margin-bottom: 40px;
}

.policy__section {
  margin-bottom: 40px;
}

.policy__section h2 {
  color: #FFD700;
  font-size: 1.5rem;
  margin-bottom: 15px;
  border-left: 4px solid #FFD700;
  padding-left: 10px;
}

.policy__section p,
.policy__section li {
  color: #ddd;
  font-size: 1.05rem;
  line-height: 1.8;
}

.policy__section ul {
  padding-left: 25px;
  list-style-type: disc;
}

.policy__section a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.policy__section a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .policy__container {
    padding: 40px 25px;
  }

  .policy__title {
    font-size: 2rem;
  }

  .policy__section h2 {
    font-size: 1.3rem;
  }

  .policy__section p,
  .policy__section li {
    font-size: 1rem;
  }
}

.contact-location {
  padding: 80px 20px;
  background: #f9f9f9;
}

.location-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.location-info {
  flex: 1 1 400px;
}

.location-info h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #222;
}

.location-info p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.route-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #b88a44;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.route-btn:hover {
  background: #967134;
}

.location-map {
  flex: 1 1 500px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
}

.location-map img {
  width: 85%;
  height: auto;
  display: block;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.location-map img:hover {
  transform: scale(1.03);
}

.trusted-section {
  background: linear-gradient(135deg, #faf7f2, #ffffff);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.trusted-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.trusted-section h2 {
  font-size: 2.3rem;
  color: #222;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.trusted-subtitle {
  color: #555;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 60px auto;
  line-height: 1.7;
}

.trusted-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  justify-content: center;
  align-items: stretch;
}

.trusted-card {
  background: #fff;
  border-radius: 18px;
  padding: 40px 30px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.trusted-card::before {
  content: "";
  position: absolute;
  top: -80%;
  left: -80%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at top left, rgba(184,138,68,0.15), transparent 70%);
  transform: rotate(25deg);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.trusted-card:hover::before {
  opacity: 1;
}

.trusted-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}

.trusted-quote {
  font-style: italic;
  color: #333;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
}

.trusted-quote::before,
.trusted-quote::after {
  content: '“';
  font-size: 3rem;
  color: #b88a44;
  position: absolute;
  opacity: 0.2;
}

.trusted-quote::before {
  top: -20px;
  left: -10px;
}

.trusted-quote::after {
  content: '”';
  bottom: -30px;
  right: -10px;
}

.trusted-author {
  display: block;
  color: #b88a44;
  font-weight: 600;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .trusted-section h2 {
    font-size: 2rem;
  }

  .trusted-card {
    padding: 30px 20px;
  }

  .trusted-quote {
    font-size: 1rem;
  }
}

.why-us {
  background: linear-gradient(135deg, #f8f4ee, #fdfdfd);
  padding: 100px 20px;
  text-align: center;
}

.why-us h2 {
  font-size: 2.2rem;
  color: #222;
  margin-bottom: 50px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.why-item {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  padding: 40px 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.why-item h3 {
  color: #b88a44;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.why-item p {
  color: #555;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .location-wrapper {
    flex-direction: column;
  }
  .location-info,
  .location-map {
    flex: 1 1 100%;
  }
  .partners-logos img {
    width: 110px;
  }
}

@media (max-width: 600px) {
  .why-item {
    padding: 30px 20px;
  }
  .contact-partners h2,
  .why-us h2,
  .location-info h2 {
    font-size: 1.8rem;
  }
}

.projects-hero {
  background: url('images/progects/progect6.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 140px 20px;
  position: relative;
}

.projects-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.projects-hero-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.projects-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}

.projects-hero p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #e0e0e0;
}

.projects-gallery {
  padding: 100px 20px;
  background: #fff;
  text-align: center;
}

.projects-gallery h2 {
  font-size: 2.2rem;
  color: #222;
  margin-bottom: 50px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.overlay h3 {
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
}

.project-process {
  background: linear-gradient(135deg, #faf7f2, #ffffff);
  padding: 100px 20px;
  text-align: center;
}

.project-process h2 {
  font-size: 2.2rem;
  margin-bottom: 60px;
  color: #222;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.step {
  background: #fff;
  border-radius: 14px;
  padding: 40px 25px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.12);
}

.step-number {
  font-size: 2rem;
  font-weight: 700;
  color: #b88a44;
  position: absolute;
  top: 20px;
  right: 25px;
  opacity: 0.15;
}

.step h3 {
  color: #b88a44;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.step p {
  color: #555;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .projects-hero h1 {
    font-size: 2.2rem;
  }
  .projects-hero p {
    font-size: 1rem;
  }
}

.services-hero {
  background: url('images/progects/progect6.jpg') center/cover no-repeat;
  padding: 140px 20px;
  text-align: center;
  position: relative;
  color: #fff;
}

.services-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.services-hero-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.services-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}

.services-hero p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #e0e0e0;
  margin-bottom: 30px;
}

.services-hero .cta-btn {
  display: inline-block;
  padding: 14px 30px;
  background: #b88a44;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

.services-hero .cta-btn:hover {
  background: #967134;
  transform: translateY(-3px);
}

.services-list {
  padding: 100px 20px;
  background: #fff;
  text-align: center;
}

.services-list h2 {
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: #222;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-item {
  background: #faf7f2;
  padding: 35px 25px;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.service-item h3 {
  color: #b88a44;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.service-item p {
  color: #555;
  line-height: 1.6;
}

/* === ПРОЦЕС === */
.services-process {
  background: linear-gradient(135deg, #f9f5ef, #ffffff);
  padding: 100px 20px;
  text-align: center;
}

.services-process h2 {
  font-size: 2.2rem;
  margin-bottom: 60px;
  color: #222;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.step {
  background: #fff;
  border-radius: 14px;
  padding: 40px 25px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}

.step-number {
  font-size: 2rem;
  font-weight: 700;
  color: #b88a44;
  position: absolute;
  top: 20px;
  right: 25px;
  opacity: 0.15;
}

.step h3 {
  color: #b88a44;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.step p {
  color: #555;
  line-height: 1.6;
}

.services-cta {
  background: #b88a44;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  position: relative;
}

.services-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.services-cta p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.services-cta .cta-btn {
  background: #fff;
  color: #b88a44;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

.services-cta .cta-btn:hover {
  background: #f1e6d0;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .services-hero h1 { font-size: 2.2rem; }
  .services-hero p { font-size: 1rem; }
  .services-list h2, .services-process h2, .services-cta h2 { font-size: 1.8rem; }
  .service-item, .step { padding: 30px 20px; }
}

.about-hero {
  background: url('images/progects/progect6.jpg') center/cover no-repeat;
  padding: 140px 20px;
  text-align: center;
  position: relative;
  color: #fff;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.about-hero-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}

.about-hero p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #e0e0e0;
  margin-bottom: 30px;
}

.about-hero .cta-btn {
  display: inline-block;
  padding: 14px 30px;
  background: #b88a44;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

.about-hero .cta-btn:hover {
  background: #967134;
  transform: translateY(-3px);
}

.about-history {
  background: #fff;
  padding: 100px 20px;
  text-align: center;
}

.history-container {
  max-width: 900px;
  margin: 0 auto;
}

.about-history-premium {
  background: linear-gradient(135deg, #faf7f2, #ffffff);
  padding: 120px 20px;
  text-align: center;
  position: relative;
}

.history-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.about-history-premium h2 {
  font-size: 2.4rem;
  color: #222;
  margin-bottom: 60px;
  letter-spacing: 1px;
}

.history-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.history-item {
  background: #fff;
  flex: 1 1 220px;
  padding: 35px 25px;
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.08);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.history-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.12);
}

.history-year {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #b88a44;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.history-item p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #555;
}

@media (max-width: 768px) {
  .history-content {
    flex-direction: column;
    gap: 25px;
  }
  .about-history-premium h2 { font-size: 2rem; }
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.team-member {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.team-member:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.team-member img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

.team-member h3 {
  font-size: 1.2rem;
  color: #b88a44;
  margin-bottom: 8px;
}

.team-member p {
  color: #555;
  font-size: 0.95rem;
}

.about-values {
  background: #fff;
  padding: 100px 20px;
  text-align: center;
}

.about-values h2 {
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: #222;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.value-item {
  background: #faf7f2;
  padding: 30px 25px;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.12);
}

.value-item h3 {
  color: #b88a44;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.value-item p {
  color: #555;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .about-hero h1 { font-size: 2.2rem; }
  .about-hero p { font-size: 1rem; }
  .about-history h2, .about-team h2, .about-values h2 { font-size: 1.8rem; }
  .history-container p, .team-member p, .value-item p { font-size: 0.95rem; }
  .team-member, .value-item { padding: 25px 15px; }
}

.cookies-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #222;
  color: #fff;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  z-index: 9999;
  max-width: 480px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.cookies-banner.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.cookies-content p {
  font-size: 0.95rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.cookies-content a {
  color: #b88a44;
  text-decoration: underline;
}

.cookies-btn {
  background: #b88a44;
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.cookies-btn:hover {
  background: #967134;
}
