:root {
  --bg: #ffffff;
  --text: #111111;
  --muted: #4a4a4a;
  --line: rgba(17, 17, 17, 0.12);
  --brand: #93e48d;
  --blue: #00a8ea;
  --surface: #ffffff;
  --surface-alt: #f7f7f5;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --container: 1180px;
  --mobile-nav-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  font-size: 16px;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 70px;
}

.site-logo img {
  width: 140px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 700;
}

.site-nav a {
  font-size: 15px;
}

.site-phone {
  font-weight: 800;
  white-space: nowrap;
}

.hero {
  background:
    linear-gradient(90deg, rgba(0, 168, 234, 0.88), rgba(147, 228, 141, 0.82)),
    url("/assets/img/tild3562-6435-4461-a530-383365333062/2560x1440_px_Colorfu.jpg") center/cover no-repeat;
  padding: 82px 0 48px;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: 42px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  margin-top: 18px;
  max-width: 760px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
  text-transform: uppercase;
}

.hero__lead {
  margin-top: 18px;
  max-width: 680px;
  font-size: 18px;
}

.hero__actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.btn--primary {
  background: var(--brand);
  color: #091009;
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(0, 0, 0, 0.08);
  color: #111;
}

.hero__visual {
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.36);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero__visual img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.section {
  padding: 58px 0;
}

.section--alt {
  background: var(--surface-alt);
}

.section__head {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.section__head h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
  text-transform: uppercase;
}

.section__head p {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
}

.grid-2,
.grid-3,
.decor-grid,
.faq-grid {
  display: grid;
  gap: 22px;
}

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

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

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

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 26px;
}

.card h3 {
  font-size: 22px;
  line-height: 1.2;
}

.card p,
.card li {
  color: var(--muted);
  font-size: 16px;
}

.card p,
.card ul {
  margin-top: 12px;
}

.card ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
}

.decor-card {
  padding: 0;
  overflow: hidden;
}

.decor-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.decor-card__body {
  padding: 22px;
}

.decor-card__link {
  display: inline-flex;
  margin-top: 14px;
  color: #087bb0;
  font-weight: 800;
}

.link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.link-list a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 800;
}

.cta-section {
  padding: 60px 0;
  background: #111;
  color: #fff;
}

.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: 28px;
  align-items: start;
  background: #fff;
  color: #111;
}

.cta-card h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
}

.cta-card p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 17px;
}

.cta-form {
  display: grid;
  gap: 12px;
}

.cta-form input,
.cta-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  min-height: 52px;
  padding: 0 16px;
  font-size: 16px;
}

.cta-form textarea {
  min-height: 110px;
  padding-top: 14px;
  resize: vertical;
}

.cta-form__note {
  color: var(--muted);
  font-size: 14px;
}

.mobile-bottom-nav {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--line);
  padding: 8px 10px max(8px, env(safe-area-inset-bottom));
}

.mobile-bottom-nav__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}

.mobile-bottom-nav a {
  display: grid;
  justify-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
}

.mobile-bottom-nav img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

@media screen and (max-width: 959px) {
  .site-nav {
    display: none;
  }

  .hero__grid,
  .grid-2,
  .grid-3,
  .decor-grid,
  .faq-grid,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .hero__visual img {
    height: 300px;
  }
}

@media screen and (max-width: 639px) {
  body {
    padding-bottom: var(--mobile-nav-height);
    font-size: 16px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-header__inner {
    min-height: 58px;
  }

  .site-logo img {
    width: 104px;
  }

  .site-phone {
    font-size: 13px;
  }

  .hero {
    padding: 44px 0 34px;
  }

  h1 {
    font-size: 30px;
    line-height: 1.08;
  }

  .hero__lead,
  .section__head p,
  .cta-card p {
    font-size: 16px;
    line-height: 1.55;
  }

  .hero__visual img {
    height: 238px;
  }

  .section {
    padding: 42px 0;
  }

  .card {
    padding: 22px;
  }

  .decor-card {
    padding: 0;
  }

  .btn {
    width: 100%;
    min-height: 50px;
    font-size: 16px;
    text-align: center;
  }

  .mobile-bottom-nav {
    display: block;
  }
}
