:root {
  --blue-900: #071b4d;
  --blue-800: #0b2b7a;
  --blue-700: #103a9b;
  --blue-500: #1e6bff;
  --blue-100: #eaf2ff;
  --text: #0b1437;
  --muted: #6b7280;
  --radius: 18px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background: #fff;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
}
.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
nav {
  display: flex;
  gap: 24px;
  font-size: 14px;
}

/* Hero */
.hero-wrap {


}
.hero {
   position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url(../image/img-1.webp);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}
.hero h1 {
  color: #fff;
  font-size: 44px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 16px;
}
.hero__text {
  text-align: center;
  p {
    margin: 0 auto;
  }
}
.hero p {
  color: #fff;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}
.btn-primary {
  display: flex;
  height: 56px;
  padding: 15px 50px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  background: linear-gradient(180deg, #39a3e5 0%, #0045cf 100%);
  color: #fff;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.btn-outline {
  display: flex;
  height: 56px;
  padding: 15px 50px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  border: 1px solid #fff;
  color: #fff;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  background-color: transparent;
}
.hero-img {
  border-radius: 20px;
  overflow: hidden;
}

h2 {
  font-size: 32px;
  margin: 0 0 24px;
}
.muted {
  color: #001244;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* About */
.about {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

/* Advantages */
#advantages {
  padding: 50px 0;
}
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.card {
  border: 1px solid #dbe7ff;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--blue-100);
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
}
.card h3 {
  font-size: 18px;
  margin: 0 0 8px;
}

/* FAQ */
#faq {
  padding: 50px 0;
}

.faq {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.faq-item {
  display: flex;
  flex-direction: column;
  max-width: 590px;
  padding: 20px 24px;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  border-radius: 12px;
  border: 2px solid rgba(57, 163, 229, 0.4);
  background: rgba(57, 163, 229, 0.07);
}
.faq-q {
  font-weight: 600;
  margin-bottom: 8px;
}

/* Gallery */
#gallery {
  padding-bottom: 50px;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery img {
  border-radius: 16px;
}

/* Contact */
.contact-wrap {
  background: linear-gradient(180deg, var(--blue-800), var(--blue-900));
  color: #fff;
  border-radius: 28px;
  padding: 60px 20px;
}
.contact {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}
form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
input {
  display: flex;
  padding: 16px;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.16px;
  opacity: 0.5;
}

.disclaimer {
  margin: 50px 0;
}
.disclaimer__wrapper {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

footer {
  padding: 30px 0;
}

.footer__wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;

  p {
    color: #001244;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
}

.footer__links {
  display: flex;
  gap: 20px;

  a {
    color: #001244;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .about {
    grid-template-columns: 1fr;
  }
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .faq {
    grid-template-columns: 1fr;
  }
}

.privacy__wrapper {
  border-radius: 30px;
  background: linear-gradient(0deg, #001244 0%, #00258a 100%);
  padding: 40px 30px;

  h2 {
    color: #fff;
    font-size: 44px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  p {
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
}
