@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Roboto:wght@500;700&display=swap");

:root {
  --blue: #0e4bd9;
  --blue-dark: #0a2c73;
  --blue-soft: #e7efff;
  --white: #ffffff;
  --orange: #ff7a00;
  --text: #0b1b3a;
  --muted: #5a6b8a;
  --shadow: 0 20px 50px rgba(14, 75, 217, 0.18);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f7faff 0%, #ffffff 55%, #eef3ff 100%);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.section {
  padding: 88px 8vw;
}

.section-head {
  max-width: 720px;
  margin-bottom: 40px;
}

.section-head h2 {
  font-family: "Roboto", sans-serif;
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.section-head p {
  color: var(--muted);
  margin-top: 12px;
}

.hero {
  padding: 36px 8vw 76px;
  background: linear-gradient(120deg, #0e4bd9 0%, #0a2c73 100%);
  color: var(--white);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
}

.logo {
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
}

.nav-cta {
  background: var(--orange);
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
}

.hero-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero-copy h1 {
  font-family: "Roboto", sans-serif;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  margin: 14px 0 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.subhead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 28px 0 24px;
  flex-wrap: wrap;
}

.btn {
  background: var(--orange);
  color: #fff;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: var(--shadow);
  display: inline-block;
}

.phone {
  font-size: 1.1rem;
  font-weight: 700;
}

.hero-points {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.hero-points span {
  background: rgba(255, 255, 255, 0.12);
  padding: 6px 12px;
  border-radius: 999px;
}

.hero-card {
  background: var(--white);
  color: var(--text);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
}

.hero-card h3 {
  font-family: "Roboto", sans-serif;
  margin-bottom: 6px;
}

.hero-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--orange);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.quick-form {
  display: grid;
  gap: 10px;
  margin: 18px 0 20px;
}

.quick-form input {
  padding: 12px 14px;
  border: 1px solid #d7e4ff;
  border-radius: 10px;
}

.quick-form button {
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 12px 14px;
  border-radius: 10px;
  font-weight: 600;
}

.hero-stat {
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.hero-stat strong {
  font-size: 1.6rem;
}

.card-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: var(--white);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
  border: 1px solid #e2ebff;
}

.icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
  margin-top: 8px;
}

.gallery-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.gallery-item {
  min-height: 150px;
  border-radius: 16px;
  background: linear-gradient(135deg, #dce7ff, #ffffff);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid #e2ebff;
  text-shadow: 0 2px 12px rgba(10, 44, 115, 0.3);
}

.g2,
.g5,
.g8 {
  background-image: url("./assets/photo-2.svg");
}

.g3,
.g6 {
  background-image: url("./assets/photo-3.svg");
}

.g1,
.g4,
.g7 {
  background-image: url("./assets/photo-1.svg");
}

.why-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.why-card {
  background: var(--white);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #e2ebff;
  box-shadow: var(--shadow);
}

.why-card h3 {
  font-family: "Roboto", sans-serif;
  margin-bottom: 8px;
}

.why-card p {
  color: var(--muted);
}

.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.review-card {
  background: var(--white);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #e2ebff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-snap-align: start;
}

.review-card > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.review-card p {
  margin: 0;
}

.review-card span {
  display: block;
}

.review-photo {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0e4bd9, #ff7a00);
}

.stars {
  color: var(--orange);
  letter-spacing: 0.12em;
}

.contacts-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.contact-card {
  background: var(--white);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #e2ebff;
  box-shadow: var(--shadow);
}

.contact-card h3 {
  font-family: "Roboto", sans-serif;
  margin-bottom: 6px;
}

.contact-card p {
  color: var(--muted);
  margin-bottom: 14px;
}

.map-embed iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 16px;
}

.request-form {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.request-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.request-form input,
.request-form textarea {
  border: 1px solid #d7e4ff;
  border-radius: 12px;
  padding: 12px 14px;
  font-family: inherit;
}

.request-form .full {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  padding: 32px 8vw 40px;
  color: var(--muted);
}

.floating-chat {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 50;
}

.chat-btn {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #0b1b3a;
  box-shadow: var(--shadow);
}

.chat-btn.whatsapp {
  background: #25d366;
}

.chat-btn.telegram {
  background: #29b6f6;
}

@media (max-width: 1024px) {
  .section {
    padding: 84px 7vw;
  }

  .hero {
    padding: 32px 7vw 72px;
  }

  .hero-grid {
    gap: 32px;
  }

  .card-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .gallery-item {
    min-height: 140px;
  }
}

@media (max-width: 860px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .reviews-track {
    grid-auto-columns: minmax(220px, 1fr);
  }
}

@media (max-width: 600px) {
  .section {
    padding: 72px 6vw;
  }

  .hero {
    padding: 28px 6vw 64px;
  }

  .logo {
    font-size: 1.2rem;
  }

  .nav-links {
    gap: 12px;
    font-size: 0.85rem;
  }

  .hero-card {
    padding: 20px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews-track {
    grid-auto-columns: minmax(200px, 1fr);
  }

  .footer {
    flex-direction: column;
    gap: 10px;
  }

  .floating-chat {
    right: 14px;
    bottom: 14px;
  }
}
