@font-face {
  font-family: 'Akrobat';
  src: url('./assets/fonts/Akrobat-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Akrobat';
  src: url('./assets/fonts/Akrobat-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-bg: #f5f5f5;
  --color-surface: #ffffff;
  --color-accent: #81bc24;
  --color-accent-dark: #87c41e;
  --color-text-main: #262626;
  --color-text-muted: #555555;
  --color-border-subtle: #e0e0e0;
  --shadow-soft: 0 20px 40px rgba(0, 0, 0, 0.06);
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Akrobat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
    sans-serif;
  color: var(--color-text-main);
  background: var(--color-bg);
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: linear-gradient(
      to bottom,
      rgba(245, 245, 245, 0.96),
      rgba(245, 245, 245, 0.9)
    );
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  max-width: 1120px;
  margin: 0 auto;
}

.header__logo {
  display: flex;
  align-items: center;
}

.header__logo-img {
  display: block;
  height: 52px;
  width: auto;
}

.header__contacts {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-left: auto;
}

.header__phone {
  color: var(--color-text-main);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.header__phone:hover {
  color: var(--color-accent-dark);
}

.header__callback-btn {
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 8px 18px;
  background: var(--color-surface);
  cursor: pointer;
  font-size: 13px;
}

.header__callback-btn:hover {
  border-color: var(--color-accent);
}

.main {
  flex: 1;
}

.hero {
  padding: 40px 24px 32px;
}

.hero__content {
  max-width: 1120px;
  margin: 0 auto;
  border-radius: 32px;
  padding: 40px 32px;
  background:
    radial-gradient(circle at top left, rgba(135, 196, 30, 0.08), transparent 60%),
    radial-gradient(circle at bottom right, rgba(129, 188, 36, 0.12), transparent 55%),
    var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-accent);
  margin: 0 0 12px;
}

.hero__title {
  font-family: 'Akrobat', system-ui, sans-serif;
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.1;
  margin: 0 0 16px;
}

.hero__subtitle {
  margin: 0 0 24px;
  font-size: 15px;
  color: var(--color-text-muted);
  max-width: 640px;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero__hint {
  margin: 0;
  font-size: 13px;
  color: var(--color-text-muted);
}

.btn {
  border: none;
  cursor: pointer;
  font: inherit;
}

.btn_primary {
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  color: #ffffff;
  padding: 12px 32px;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 14px 30px rgba(129, 188, 36, 0.35);
  align-self: flex-start;
}

.btn_primary:hover {
  filter: brightness(1.03);
}

.benefits {
  padding: 8px 24px 24px;
}

.benefits__grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.benefit {
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  padding: 18px 20px;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.benefit__title {
  margin: 0 0 8px;
  font-size: 16px;
}

.benefit__text {
  margin: 0;
  font-size: 14px;
  color: var(--color-text-muted);
}

.status {
  padding: 16px 24px 8px;
}

.status__title {
  max-width: 1120px;
  margin: 0 auto 8px;
  font-size: 18px;
}

.status__text {
  max-width: 1120px;
  margin: 0 auto;
  font-size: 14px;
  color: var(--color-text-muted);
}

.details {
  padding: 24px 24px 16px;
}

.details__title {
  max-width: 1120px;
  margin: 0 auto 12px;
  font-size: 18px;
}

.details__text {
  max-width: 1120px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.details__text p {
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--color-text-muted);
}

.details__text p:last-child {
  margin-bottom: 0;
}

.details__note {
  max-width: 1120px;
  margin: 10px auto 0;
  font-size: 13px;
  color: var(--color-text-muted);
}

.contacts {
  padding: 24px 24px 40px;
}

.contacts__info,
.contacts__form-wrapper {
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.03);
  padding: 20px 22px;
}

.contacts__title {
  margin: 0 0 8px;
  font-size: 18px;
}

.contacts__person {
  margin: 0 0 16px;
  font-size: 14px;
}

.contacts__role {
  color: var(--color-text-muted);
  font-size: 13px;
}

.contacts__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contacts__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contacts__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}

.contacts__value a {
  color: var(--color-text-main);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.contacts__value a:hover {
  color: var(--color-accent-dark);
}

.contacts__email-btn {
  border-radius: 999px;
  border: 1px dashed rgba(0, 0, 0, 0.25);
  padding: 6px 14px;
  background: transparent;
  font-size: 13px;
  cursor: pointer;
}

.contacts__email-btn:hover {
  border-style: solid;
  border-color: var(--color-accent);
}

.contacts__form-title {
  margin: 0 0 12px;
  font-size: 16px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form__label {
  font-size: 13px;
}

.form__input {
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border-subtle);
  padding: 9px 10px;
  font: inherit;
}

.form__input:focus {
  outline: 2px solid rgba(129, 188, 36, 0.35);
  border-color: var(--color-accent);
}

.form__input_textarea {
  resize: vertical;
  min-height: 80px;
}

.form__submit {
  margin-top: 4px;
}

.form__note {
  margin: 6px 0 0;
  font-size: 11px;
  color: var(--color-text-muted);
}

.contacts__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.footer {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 12px 24px 18px;
  background: #f3f3f3;
}

.footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--color-text-muted);
}

.footer__left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__logo {
  height: 26px;
  width: auto;
  display: block;
}

.footer__brand {
  font-weight: 600;
}

@media (min-width: 880px) {
  .hero__content {
    padding: 48px 56px;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .contacts__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 20px;
  }
}

@media (max-width: 720px) {
  .header {
    padding-inline: 16px;
  }

  .header__logo-img {
    height: 32px;
  }

  .footer__logo {
    height: 20px;
  }

  .hero {
    padding-inline: 16px;
  }

  .hero__content {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .benefits {
    padding-inline: 16px;
  }

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

  .details,
  .status,
  .contacts,
  .footer {
    padding-inline: 16px;
  }
}


