@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');
:root {
  --color-bg: #f7f9fb;
  --color-primary: #1a2236;
  --color-accent: #fbb040;
  --color-text: #222;
  --color-muted: #888;
  --color-border: #e0e0e0;
  --color-btn: #1a2236;
  --color-btn-hover: #fbb040;
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}
body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100vh;
  font-size: 16px;
}
.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}
.header {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
  min-height: 70px;
}
.logo {
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--color-primary);
  letter-spacing: 1px;
}
.nav ul {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.08rem;
  position: relative;
  transition: color var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--color-accent);
}
.lang-switcher {
  display: flex;
  gap: 0.5rem;
}
.lang-switcher button {
  background: none;
  border: 1px solid var(--color-border);
  color: var(--color-primary);
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: border var(--transition), color var(--transition);
}
.lang-switcher button.active, .lang-switcher button:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.section {
  padding: 4rem 0 3rem 0;
}
.hero-wix {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: none;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
  filter: brightness(0.7);
}
.hero__container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 60vh;
}
.hero__content {
  max-width: 600px;
  background: rgba(255,255,255,0.92);
  border-radius: 18px;
  padding: 2.5rem 2rem;
  box-shadow: 0 8px 32px rgba(26,34,54,0.10);
}
.hero__content h1 {
  font-size: 2.8rem;
  color: var(--color-primary);
  margin-bottom: 1.2rem;
  font-weight: 800;
}
.hero__content p {
  font-size: 1.25rem;
  margin-bottom: 2.2rem;
  color: var(--color-muted);
}
.btn {
  display: inline-block;
  padding: 0.7rem 2.2rem;
  border-radius: 6px;
  background: var(--color-btn);
  color: #fff;
  border: none;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--color-btn);
}
.btn-primary:hover {
  background: var(--color-btn-hover);
  color: #222;
}
.btn-secondary {
  background: #fff;
  color: var(--color-btn);
  border: 2px solid var(--color-btn);
}
.btn-secondary:hover {
  background: var(--color-btn);
  color: #fff;
}
.section-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 2.5rem;
  text-align: center;
}
.benefits-wix .benefits__list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
}
.benefit-wix {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(26,34,54,0.08);
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  max-width: 270px;
  text-align: center;
  flex: 1 1 220px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.benefit-wix:hover {
  box-shadow: 0 8px 32px rgba(26,34,54,0.13);
  transform: translateY(-6px) scale(1.03);
}
.benefit-icon {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 8px rgba(26,34,54,0.10);
}
.benefit-wix h3 {
  color: var(--color-primary);
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
  font-weight: 700;
}
.benefit-wix p {
  color: var(--color-muted);
  font-size: 1rem;
}
.services-wix .services__list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem;
  justify-content: center;
}
.service-wix {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(26,34,54,0.07);
  padding: 1.5rem 1.2rem;
  max-width: 250px;
  text-align: center;
  flex: 1 1 180px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-wix:hover {
  box-shadow: 0 6px 24px rgba(26,34,54,0.13);
  transform: translateY(-4px) scale(1.02);
}
.service-wix h3 {
  color: var(--color-primary);
  font-size: 1.08rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.service-wix p {
  color: var(--color-muted);
  font-size: 0.98rem;
}
.about-wix .about__container {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
}
.about__img-block {
  flex: 1 1 320px;
  min-width: 220px;
  text-align: center;
}
.about-img {
  max-width: 340px;
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(26,34,54,0.10);
  margin-bottom: 1.2rem;
}
.about__content-block {
  flex: 2 1 400px;
  min-width: 260px;
}
.about__details {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}
.about__item {
  flex: 1 1 180px;
  background: #f7f9fb;
  border-radius: 10px;
  padding: 1.1rem 1rem;
  box-shadow: 0 2px 8px rgba(26,34,54,0.04);
  margin-bottom: 0.7rem;
}
.about__item h3 {
  color: var(--color-accent);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  font-weight: 700;
}
.about__item p {
  color: var(--color-muted);
  font-size: 0.97rem;
}
.contact-wix .contact__container {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: stretch;
  justify-content: center;
}
.contact__info, .contact__map {
  flex: 1 1 400px;
  min-width: 320px;
  min-height: 340px;
  box-sizing: border-box;
}
.contact__info {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(26,34,54,0.07);
  padding: 2rem 1.5rem;
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact__map {
  display: flex;
  align-items: stretch;
}
.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border-radius: 10px;
  border: 1px solid var(--color-border);
  display: block;
}
.contact__form {
  background: #fff;
  border-radius: 14px;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 12px rgba(26,34,54,0.07);
  border: 1px solid var(--color-border);
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.form-group {
  width: 100%;
  margin-bottom: 1.2rem;
}
label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 600;
  text-align: left;
}
input, textarea {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  transition: border var(--transition);
  box-sizing: border-box;
}
input:focus, textarea:focus {
  border-color: var(--color-accent);
  outline: none;
}
.form-status {
  margin-top: 0.7rem;
  color: var(--color-accent);
  font-size: 0.98rem;
}
.footer-wix {
  background: #1a2236;
  color: #fff;
  border-top: none;
  padding: 2.2rem 0 1.2rem 0;
  margin-top: 2.5rem;
}
.footer__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer__left, .footer__right {
  font-size: 1.08rem;
  color: #fff;
}
.btn.btn-primary {
  width: 100%;
  margin: 0 auto;
  display: block;
  text-align: center;
}
.hero__content .btn {
  width: auto;
  min-width: 220px;
  margin: 2rem 0 0 0;
  display: inline-block;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.7rem 2.2rem;
  border-radius: 6px;
}
@media (max-width: 900px) {
  .hero__container, .benefits__list, .services__list, .about__container, .contact__container, .footer__container {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }
  .hero__content {
    max-width: 100%;
    padding: 2rem 1rem;
  }
  .about__img-block {
    margin-bottom: 1.5rem;
  }
  .contact__container {
    flex-direction: column;
    gap: 1.5rem;
  }
  .contact__info, .contact__map {
    min-height: 220px;
    max-width: 100%;
  }
  .contact__map iframe {
    min-height: 220px;
  }
}
@media (max-width: 600px) {
  .container {
    width: 99%;
    padding: 0 0.5rem;
  }
  .header__container {
    flex-direction: column;
    gap: 0.7rem;
    min-height: 50px;
  }
  .logo {
    font-size: 1.1rem;
  }
  .nav ul {
    gap: 1rem;
  }
  .section {
    padding: 2rem 0 1rem 0;
  }
  .hero__content h1 {
    font-size: 1.5rem;
  }
  .benefit-wix, .service-wix {
    max-width: 100%;
    padding: 1.2rem 0.7rem;
  }
  .about-img {
    max-width: 100%;
  }
} 