@font-face {
  font-family: "Montserrat";
  src: url(../fonts/Montserrat-VariableFont_wght.ttf);
  font-display: swap;
}
:root {
  --primary: var(--primary-color);
  --primary-light: var(--secondary-color);
  --accent: var(--accent-color);
  --text-dark: var(--heading-color);
  --text-light: var(--heading-secondary-color);
  --bg-light: var(--surface-muted-color);
  --white: var(--surface-color);
  --footer-bg: var(--footer-background-color);
  --border-color-soft: var(--border-color);
  --border-radius: 12px;
  --shadow:
    0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
  --shadow-hover: 0 20px 30px -10px rgba(0, 0, 0, 0.1);
  --transition: all 0.25s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--border-radius);
}

a {
  text-decoration: none;
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

.section-title {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 4px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  box-shadow: 0 8px 20px rgba(30, 60, 114, 0.2);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(30, 60, 114, 0.3);
}

.btn--block {
  width: 100%;
  justify-content: center;
}

.header {
  /* padding: 16px 0; */
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.9);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.4rem;
  font-family: "Montserrat", sans-serif;
  color: var(--primary);
}

.logo img {
  border-radius: 12px;
}

.header__notice {
  font-size: 0.85rem;
  color: var(--text-light);
  background: var(--bg-light);
  padding: 6px 12px;
  border-radius: 30px;
  margin-left: auto;
  margin-right: 24px;
  white-space: nowrap;
}

.nav__list {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav__list a {
  font-weight: 500;
  color: var(--text-dark);
  transition: color 0.2s;
}

.nav__list a:hover {
  color: var(--primary);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.hero {
  padding: 40px 0 60px;
  background: linear-gradient(145deg, #f0f4fa 0%, #ffffff 80%);
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero__title {
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  margin-bottom: 16px;
  background: linear-gradient(145deg, var(--primary), #0b1e33);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.hero__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
  margin-bottom: 24px;
}

.hero__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.hero__feature i {
  color: var(--accent);
  width: 24px;
}

.hero__price {
  margin-bottom: 28px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.hero__price-current {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
}

.hero__price-old {
  font-size: 1.2rem;
  color: #a0aec0;
  text-decoration: line-through;
}

.hero__image {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.hero-swiper {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1 / 1;
}

.hero-swiper .swiper-wrapper {
  height: 100%;
}

.hero-swiper .swiper-slide {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-swiper .swiper-slide img {
  border-radius: 30px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-swiper .swiper-pagination {
  bottom: 12px !important;
}

.order__checkout-title {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.order__checkout-text {
  margin-bottom: 24px;
  color: var(--text-light);
}

.features {
  padding: 60px 0;
  background: var(--white);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-light);
  padding: 28px 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.feature-card__icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.gallery {
  padding: 60px 0;
  background: var(--bg-light);
}

.gallery__slider {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.swiper-slide img {
  width: 100%;
  object-fit: cover;
  border-radius: 0;
}

.swiper-button-prev,
.swiper-button-next {
  color: var(--white) !important;
  background: rgba(0, 0, 0, 0.4);
  width: 48px !important;
  height: 48px !important;
  border-radius: 50%;
  backdrop-filter: blur(4px);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 1.5rem !important;
}

.swiper-pagination-bullet-active {
  background: var(--primary) !important;
}

.order {
  padding: 60px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f0f4fa 100%);
}

.order__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.order__highlights {
  list-style: none;
  margin: 24px 0;
}

.order__highlights li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.order__highlights i {
  color: var(--accent);
}

.order__price {
  margin: 24px 0;
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.order__price-current {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
}

.order__price-old {
  font-size: 1.3rem;
  color: #a0aec0;
  text-decoration: line-through;
}

.form {
  background: white;
  padding: 32px;
  border-radius: 24px;
  box-shadow: var(--shadow-hover);
}

.form__group {
  margin-bottom: 20px;
}

.form__group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-dark);
}

.form__group input,
.form__group select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border-color-soft);
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  transition: var(--transition);
  background: white;
}

.form__group input:focus,
.form__group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(30, 60, 114, 0.1);
}

.form__group--checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
}

.form__group--checkbox input {
  width: 20px;
  height: 20px;
  accent-color: var(--primary);
  padding: 0;
}

.form__group--checkbox label {
  margin-bottom: 0;
  font-weight: 400;
}

.faq {
  padding: 60px 0;
  background: var(--white);
}

.faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-light);
  border-radius: 16px;
  padding: 4px;
  transition: var(--transition);
  border: 1px solid transparent;
}

.faq-item.active {
  background: white;
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.faq-item__question {
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  border-radius: 16px;
  background: white;
}

.faq-item__question i {
  color: var(--primary);
  transition: transform 0.3s;
}

.faq-item.active .faq-item__question i {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 20px;
}

.faq-item.active .faq-item__answer {
  max-height: 150px;
  padding-bottom: 20px;
}

.contact-map {
  padding: 0 0 60px;
}

.contact-map__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  background: var(--bg-light);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  max-width: 1280px;
  margin: 0 auto;
}

.contact-map__info {
  padding: 40px 32px;
  background: linear-gradient(145deg, #1e3c72, #2a5298);
  color: white;
}

.contact-map__info .section-title {
  color: white;
  text-align: left;
  margin-bottom: 24px;
}

.contact-map__info .section-title::after {
  left: 0;
  transform: none;
  background: var(--accent);
}

.contact-details {
  font-style: normal;
  margin-bottom: 24px;
}

.contact-details p {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-details i {
  width: 24px;
  color: var(--accent);
}

.contact-note {
  font-size: 0.9rem;
  opacity: 0.9;
}

.contact-map__content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  background:
    radial-gradient(
      circle at top right,
      rgba(42, 82, 152, 0.08),
      transparent 35%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(240, 244, 250, 0.9));
}

.contact-map__intro h3 {
  font-size: clamp(1.7rem, 4vw, 2.2rem);
  margin-bottom: 12px;
  color: var(--text-dark);
}

.contact-map__intro p {
  max-width: 620px;
  color: var(--text-light);
}

.contact-map__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(30, 60, 114, 0.08);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-map__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(30, 60, 114, 0.08);
  border-radius: 20px;
  padding: 22px 20px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.contact-card i {
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 14px;
}

.contact-card h4 {
  margin-bottom: 8px;
  font-size: 1.05rem;
  color: var(--text-dark);
}

.contact-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.contact-map__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.contact-map__link {
  font-weight: 600;
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer {
  background: var(--footer-bg);
  color: #e2e8f0;
  padding: 48px 0 24px;
  margin-top: auto;
  font-size: 0.95rem;
}

.footer__container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer__logo a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.footer__legal a {
  color: #cbd5e0;
  transition: color 0.2s;
}

.footer__legal a:hover {
  color: white;
}

.footer__contacts p {
  margin-bottom: 6px;
  color: #cbd5e0;
}

.footer__disclaimer {
  font-size: 0.85rem;
  color: #a0aec0;
  border-top: 1px solid #2d3748;
  padding-top: 24px;
}

.footer__copyright {
  border-top: 1px solid #2d3748;
  padding-top: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #a0aec0;
}

@media (max-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero__container {
    gap: 20px;
  }
  .header__notice {
    display: none;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  .nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    padding: 24px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    transition: transform 0.3s;
    z-index: 99;
  }
  .nav.active {
    transform: translateY(0);
  }
  .nav__list {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .hamburger {
    display: flex;
  }
  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__image {
    max-width: 420px;
    margin: 0 auto;
  }
  .hero__features {
    justify-content: center;
  }
  .hero__feature {
    justify-content: center;
  }
  .hero__price {
    justify-content: center;
  }
  .order__container {
    grid-template-columns: 1fr;
  }
  .faq__grid {
    grid-template-columns: 1fr;
  }
  .contact-map__inner {
    grid-template-columns: 1fr;
  }
  .contact-map__content {
    padding: 28px 24px 32px;
  }
  .contact-map__cards {
    grid-template-columns: 1fr;
  }
  .footer__legal {
    gap: 20px;
  }
  .header__notice {
    display: none;
  }
}

@media (max-width: 480px) {
  .features__grid {
    grid-template-columns: 1fr;
  }
  .hero__features {
    grid-template-columns: 1fr;
  }
}
