:root {
  --bg-dark: #0A0A0A;;
  --bg-blue: #142b44;
  --bg-blue-2: #1b3552;
  --accent: #4da3ff;
  --text-main: #ffffff;
  --text-muted: #b6c2d1;
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Lato", sans-serif;
  background: var(--bg-dark);
  color: var(--text-main);
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */


.logo {
  display: flex;
  align-items: center;
  gap: 10px;

  p {
    color: #3b96ff;
    font-weight: 700;
    font-size: 20px;
  }
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  height: fit-content;
  padding: 15px;
}

nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
}

/* Hero */
.hero {
  background: linear-gradient(180deg, #162e4a, #0b0f14);
  padding: 80px 0;
  position: relative;
  min-height: 90vh;
  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: 2rem 0;
  overflow: hidden;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-size: 44px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero p {
  color: #fff;
  max-width: 720px;
  line-height: 1.6;
}

.hero-buttons {
  margin-top: 28px;
  display: flex;
  gap: 16px;
}

.btn {
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
}

.btn-outline {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

/* Gallery */
#gallery {
  background: #0a0a0a;
  padding: 60px 0;
}

.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 40px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1010px;
  margin: 0 auto;
}

.gallery img {
  max-width: 240px;
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.gallery-bottom {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 40px;
}

/* About */
.about {
  background: var(--bg-blue);
  padding: 50px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.about p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Advantages */
.advantages {
  background: #0a0a0a;
  padding: 60px 0;

  h3 {
    color: #3b96ff;
  }
}

.text {
  color: #a3a3a3;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 900px;
  margin: 0 auto;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.adv {
  text-align: center;
}

.adv-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--accent);
  display: grid;
  place-items: center;
  color: #000;
  font-weight: 900;
}

.adv h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 10px;
}

.adv p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* FAQ */
.faq {
  background: #0a0a0a;
  padding-top: 10px;
  padding-bottom: 60px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #1b1b1b;
  padding: 18px 0;
}

.faq-q {
  font-weight: 700;
  color: var(--accent);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-a {
  margin-top: 10px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Contact */
.contact {
  background: var(--bg-blue-2);
  padding: 60px 0;

  p {
    color: #a3a3a3;
  }

  .muted {
    color: #3b96ff;
    font-size: 22px;
    font-style: normal;
    font-weight: 800;
  }
}

.contact-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.contact__content {
  max-width: 730px;
}

form {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

input,
textarea {
  padding: 14px 16px;
  border-radius: 10px;
  border: none;
  font-family: inherit;
}

textarea {
  resize: none;
  height: 120px;
}

.disclaimer {
  background: #3b96ff;
  padding: 50px 0;
}
.disclaimer__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #0A0A0A;

  p {
    margin: 0;
  }

  h3 {
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    margin: 0;
  }
}

/* Footer */
footer {
  background: #000;
  padding: 40px 0 20px;
  font-size: 12px;
  color: #8b8b8b;
  text-align: center;
}

.footer__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.privacy {
  padding-bottom: 60px;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
