:root {
  --bg: #0b132b;
  --bg-soft: rgba(255, 255, 255, 0.04);
  --card: rgba(255, 255, 255, 0.06);
  --stroke: rgba(255, 255, 255, 0.12);
  --primary: #5fe0a1;
  --accent: #ffd166;
  --text: #f6f7fb;
  --muted: #cdd3e0;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 18px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Manrope', 'Segoe UI', Arial, sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(95, 224, 161, 0.12), transparent 35%), radial-gradient(circle at 80% 0%, rgba(255, 209, 102, 0.12), transparent 32%), var(--bg);
  color: var(--text);
  line-height: 1.6;
  scroll-behavior: smooth;
  min-height: 100vh;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.2rem;
}

.top-bar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(11, 19, 43, 0.85);
  border-bottom: 1px solid var(--stroke);
}

.top-bar__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem;
  gap: 0.8rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand__mark {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  /* background: linear-gradient(135deg, var(--primary), var(--accent)); */
  color: #0b132b;
  font-weight: 700;
}

.brand__text {
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  color: var(--muted);
}

.top-bar__actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.link-phone {
  font-weight: 700;
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--primary), #53d18f);
  color: #0b132b;
  font-weight: 700;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(95, 224, 161, 0.35);
}

.btn--ghost {
  background: transparent;
  border: 1px solid var(--stroke);
  color: var(--text);
  box-shadow: none;
}

.btn--full {
  width: 100%;
}

.hero {
  padding: 2rem 0 1.5rem;
}

.hero__grid {
  display: grid;
  gap: 1.2rem;
}

.hero__text h1 {
  font-size: 1.8rem;
  margin: 0.4rem 0;
  line-height: 1.2;
}

.subtitle {
  color: var(--muted);
  margin: 0.2rem 0 1rem;
}

.eyebrow {
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--accent);
  margin: 0;
}

.hero__cta {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin: 1rem 0 0.5rem;
}

.hero__bullets {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0;
  color: var(--muted);
}

.hero__bullets li {
  padding-left: 1.2rem;
  position: relative;
}

.hero__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.note {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero__card {
  padding: 1.2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--stroke);
  color: var(--accent);
  font-weight: 700;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  color: var(--muted);
}

.form__field input {
  width: 100%;
  padding: 0.85rem 0.9rem;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 1rem;
}

.form__field input:focus-visible {
  outline: 2px solid var(--primary);
}

.form__policy {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

.form__status {
  min-height: 1.2em;
  color: var(--accent);
  margin: 0;
  font-weight: 600;
}

.section {
  padding: 2.5rem 0;
}

.section__header {
  text-align: left;
  margin-bottom: 1.4rem;
}

.section__header h2 {
  margin: 0 0 0.4rem;
  font-size: 1.4rem;
}

.section__header p {
  margin: 0;
  color: var(--muted);
}

.bento {
  display: grid;
  gap: 1rem;
}

.split {
  display: grid;
  gap: 1rem;
}

.card {
  padding: 1.2rem;
}

.glass {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.benefits {
  display: grid;
  gap: 1rem;
}

.benefit {
  padding: 1rem;
  display: grid;
  gap: 0.4rem;
}

.icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--stroke);
  font-size: 1.2rem;
}

.review {
  display: grid;
  gap: 0.6rem;
}

.review__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--stroke);
  font-weight: 700;
  color: var(--accent);
}

.steps {
  display: grid;
  gap: 1rem;
}

.step {
  position: relative;
  padding: 1rem 1rem 1rem 3.2rem;
}

.step__number {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #0b132b;
  font-weight: 800;
}

.cta-repeat {
  padding: 1.2rem;
}

.cta-repeat__box {
  display: grid;
  gap: 1rem;
  align-items: center;
  padding: 1.4rem;
}

.cta-repeat__actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.contacts {
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
}

.map-placeholder {
  min-height: 200px;
  border: 1px dashed var(--stroke);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: var(--muted);
  background: var(--bg-soft);
}

.placeholder-img {
  height: 120px;
  border-radius: var(--radius);
  border: 1px dashed var(--stroke);
  display: grid;
  place-items: center;
  color: var(--muted);
  background: var(--bg-soft);
}

.footer {
  border-top: 1px solid var(--stroke);
  padding: 1.2rem 0;
  background: rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
}

.footer__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
}

.footer__links {
  display: flex;
  gap: 1rem;
}

.bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 12px;
  z-index: 20;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.6rem;
  padding: 0.6rem 0.9rem calc(env(safe-area-inset-bottom, 0) + 0.6rem);
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(11, 19, 43, 0.7);
  backdrop-filter: blur(18px);
  border: 1px solid var(--stroke);
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.fab {
  display: grid;
  place-items: center;
  padding: 0.6rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  color: var(--text);
  text-align: center;
  gap: 0.1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.fab:hover,
.fab:focus-visible {
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: 0 10px 24px rgba(95, 224, 161, 0.25);
}

.fab__label {
  font-weight: 800;
  font-size: 0.9rem;
}

.fab__number {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.2;
}

@media (min-width: 640px) {
  .hero__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__text h1 {
    font-size: 2rem;
  }

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

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

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

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

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

@media (min-width: 960px) {
  .hero {
    padding: 3rem 0 2.4rem;
  }

  .hero__text h1 {
    font-size: 2.4rem;
  }

  .section {
    padding: 3rem 0;
  }

  .cta-repeat__box {
    grid-template-columns: 1.2fr 0.8fr;
    padding: 1.8rem;
  }
 
}

@media (max-width: 600px) {
   .top-bar__actions {
    display: none;
  }
  .fab__number {
    display: none;
  }
}
