:root {
  --green-900: #17251b;
  --green-800: #243628;
  --green-700: #31513a;
  --green-100: #e9f1e6;
  --sand-50: #fbf7ee;
  --sand-100: #f2ead8;
  --sand-200: #e4d4b5;
  --brown: #7a5434;
  --graphite: #232323;
  --orange: #f09a32;
  --orange-dark: #c96d12;
  --white: #ffffff;
  --muted: #687064;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(23, 37, 27, 0.16);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--sand-50);
  color: var(--green-900);
  line-height: 1.55;
}

img { max-width: 100%; }

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

button, input, select, textarea {
  font: inherit;
}

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

.section {
  padding: 92px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 14px max(16px, calc((100vw - 1160px) / 2));
  background: rgba(251, 247, 238, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(36, 54, 40, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.brand img {
  width: 38px;
  height: 38px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  font-size: 15px;
  color: rgba(23, 37, 27, 0.76);
}

.nav a:hover {
  color: var(--green-800);
}

.header-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--green-800);
  color: var(--white);
  font-weight: 700;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-900);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-top: 120px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 15% 20%, rgba(240, 154, 50, 0.22), transparent 28%),
    linear-gradient(120deg, rgba(23, 37, 27, 0.92), rgba(36, 54, 40, 0.72)),
    url("assets/hero-pattern.svg");
  background-size: cover;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(251, 247, 238, 0.22));
}

.hero-photo {
  position: absolute;
  border-radius: 32px;
  background: linear-gradient(135deg, #d7c09d, #4d6b48);
  box-shadow: var(--shadow);
  opacity: 0.74;
}

.photo-1 {
  width: 320px;
  height: 210px;
  right: 7%;
  top: 14%;
  transform: rotate(4deg);
}

.photo-2 {
  width: 260px;
  height: 330px;
  right: 20%;
  bottom: 9%;
  transform: rotate(-6deg);
  background: linear-gradient(135deg, #f0d9a5, #314a32);
}

.photo-3 {
  width: 240px;
  height: 180px;
  right: 3%;
  bottom: 22%;
  transform: rotate(8deg);
  background: linear-gradient(135deg, #a8b996, #6e472c);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 40px;
  align-items: end;
}

.hero-content {
  max-width: 790px;
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--orange);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}

h1, h2, h3 {
  line-height: 1.06;
  letter-spacing: -0.045em;
  margin: 0;
}

h1 {
  font-size: clamp(48px, 7vw, 88px);
  max-width: 850px;
}

h2 {
  font-size: clamp(34px, 4vw, 56px);
}

h3 {
  font-size: 24px;
}

.lead {
  max-width: 760px;
  margin: 24px 0 0;
  font-size: clamp(18px, 2vw, 22px);
  color: rgba(255,255,255,0.84);
}

.hero-actions,
.center-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 15px 22px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 850;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--orange);
  color: var(--green-900);
  box-shadow: 0 16px 38px rgba(240, 154, 50, 0.28);
}

.button.primary:hover {
  background: #ffae45;
}

.button.ghost {
  border: 1px solid rgba(255,255,255,0.42);
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.button.ghost.dark {
  border-color: rgba(36, 54, 40, 0.18);
  color: var(--green-900);
  background: rgba(255,255,255,0.72);
}

.button.full {
  width: 100%;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-facts span {
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.86);
  font-weight: 700;
}

.hero-card {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(251, 247, 238, 0.92);
  box-shadow: var(--shadow);
}

.hero-card p {
  margin: 0 0 12px;
  color: var(--muted);
}

.hero-card h2 {
  font-size: 28px;
  margin-bottom: 22px;
}

.hero-card a {
  color: var(--orange-dark);
  font-weight: 850;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 40px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading.with-action {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  max-width: none;
}

.three-cards,
.pricing-grid,
.roadmap-grid,
.fit-grid {
  display: grid;
  gap: 22px;
}

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

.card,
.option-card,
.roadmap-grid article,
.fit-grid article,
.activity-grid article,
.project-columns article,
.lead-form,
.map-card,
.app-card {
  border: 1px solid rgba(36, 54, 40, 0.09);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 40px rgba(23, 37, 27, 0.07);
}

.card {
  padding: 30px;
}

.card .icon {
  font-size: 38px;
}

.card h3 {
  margin: 18px 0 12px;
}

.card p,
.option-card p,
.activity-grid p,
.roadmap-grid p,
.fit-grid p,
.project-columns p {
  color: var(--muted);
}

.card.accent {
  background: var(--green-800);
  color: var(--white);
}

.card.accent p {
  color: rgba(255,255,255,0.75);
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 52px;
  align-items: center;
}

.split p {
  color: var(--muted);
  font-size: 18px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature-grid div {
  min-height: 116px;
  display: flex;
  align-items: end;
  padding: 18px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(23,37,27,0.05), rgba(23,37,27,0.18)),
    var(--sand-100);
  font-weight: 850;
}


.tag,
.option-label {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-800);
  font-weight: 850;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.option-card {
  padding: 28px;
  position: relative;
}

.option-card.recommended {
  background: var(--green-800);
  color: var(--white);
  transform: translateY(-12px);
}

.option-card.recommended p,
.option-card.recommended li {
  color: rgba(255,255,255,0.74);
}

.option-number {
  font-size: 42px;
  font-weight: 900;
  color: rgba(49, 81, 58, 0.26);
  margin: 0 0 18px;
}

.option-card.recommended .option-number {
  color: rgba(255,255,255,0.18);
}

.option-card ul,
.roadmap-grid ul,
.fit-grid ul,
.project-columns ul,
.app-card ul {
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.option-card li,
.roadmap-grid li,
.fit-grid li,
.project-columns li,
.app-card li {
  display: flex;
  gap: 10px;
  margin: 10px 0;
  color: var(--muted);
}

.option-card li::before,
.roadmap-grid li::before,
.fit-grid li::before,
.project-columns li::before,
.app-card li::before {
  content: "✓";
  color: var(--orange-dark);
  font-weight: 900;
}

.existing {
  background: var(--sand-100);
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.activity-grid article {
  padding: 24px;
}

.activity-grid span {
  font-size: 34px;
}

.activity-grid h3 {
  margin-top: 14px;
  margin-bottom: 10px;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.person-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 40px rgba(23, 37, 27, 0.08);
  border: 1px solid rgba(36, 54, 40, 0.08);
}

.person-photo {
  min-height: 210px;
  background:
    linear-gradient(135deg, rgba(23,37,27,0.12), rgba(240,154,50,0.26)),
    var(--sand-200);
  display: grid;
  place-items: center;
  font-size: 48px;
}

.person-photo img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.person-content {
  padding: 22px;
}

.person-content h3 {
  margin-bottom: 6px;
}

.person-role {
  color: var(--orange-dark);
  font-weight: 850;
  margin: 0 0 12px;
}

.quote {
  margin-top: 16px;
  padding-left: 14px;
  border-left: 3px solid var(--orange);
  color: var(--green-800);
  font-weight: 700;
}

.project-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.project-columns article {
  padding: 26px;
}

.roadmap {
  background: var(--green-900);
  color: var(--white);
}

.roadmap .section-heading p:not(.eyebrow) {
  color: rgba(255,255,255,0.68);
}

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

.roadmap-grid article {
  padding: 28px;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
  box-shadow: none;
}

.roadmap-grid li {
  color: rgba(255,255,255,0.75);
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(23, 37, 27, 0.08);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: var(--white);
}

th, td {
  text-align: left;
  padding: 18px;
  border-bottom: 1px solid rgba(36, 54, 40, 0.08);
}

th {
  background: var(--green-800);
  color: var(--white);
}

tr td:last-child {
  font-weight: 800;
  color: var(--green-800);
}

.note,
.form-note {
  color: var(--muted);
  font-size: 14px;
}

.app {
  background: var(--sand-100);
}

.app-card {
  padding: 24px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  align-items: center;
}

.phone-mock {
  width: 240px;
  min-height: 430px;
  margin: 0 auto;
  padding: 24px 18px;
  border-radius: 38px;
  background: var(--green-900);
  box-shadow: var(--shadow);
}

.phone-top {
  width: 62px;
  height: 7px;
  margin: 0 auto 28px;
  border-radius: 999px;
  background: rgba(255,255,255,0.35);
}

.app-line {
  height: 13px;
  margin: 12px 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.2);
}

.app-line.active {
  width: 78%;
  background: var(--orange);
}

.app-line.short {
  width: 52%;
}

.app-tile {
  padding: 14px;
  margin: 12px 0;
  border-radius: 16px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-weight: 750;
}

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

.fit-grid article {
  padding: 30px;
}

.fit-good {
  background: var(--green-800) !important;
  color: var(--white);
}

.fit-good li {
  color: rgba(255,255,255,0.75);
}

.fit-bad {
  background: #fff7ef !important;
}

.steps {
  background: var(--green-800);
  color: var(--white);
}

.steps .split {
  align-items: start;
}

.steps p {
  color: rgba(255,255,255,0.76);
}

.steps-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.steps-list div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
}

.steps-list span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--green-900);
  font-weight: 900;
}

.steps-list p {
  margin: 0;
}

.lead-form {
  padding: 28px;
  color: var(--green-900);
}

.lead-form p {
  color: var(--muted);
}

.lead-form label {
  display: grid;
  gap: 7px;
  margin: 14px 0;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(36, 54, 40, 0.16);
  border-radius: 14px;
  padding: 13px 14px;
  background: var(--sand-50);
  color: var(--green-900);
  outline: none;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(240,154,50,0.16);
}

.checkbox {
  display: grid !important;
  grid-template-columns: 22px 1fr;
  align-items: start;
  font-weight: 500 !important;
  color: var(--muted);
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(36, 54, 40, 0.1);
  border-radius: 18px;
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--green-900);
  font-weight: 850;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.final {
  padding-top: 0;
}

.final-box {
  padding: clamp(32px, 6vw, 72px);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(23,37,27,0.90), rgba(36,54,40,0.78)),
    url("assets/hero-pattern.svg");
  color: var(--white);
}

.final-box p:not(.eyebrow) {
  max-width: 860px;
  color: rgba(255,255,255,0.78);
  font-size: 19px;
}

.footer {
  padding: 48px 0;
  background: var(--green-900);
  color: rgba(255,255,255,0.76);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.8fr;
  gap: 32px;
}

.footer a {
  display: block;
  margin: 8px 0;
}

.footer h3 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 14px;
}

.footer-brand {
  color: var(--white);
}

.modal {
  width: min(980px, calc(100% - 28px));
  border: 0;
  border-radius: 28px;
  padding: 0;
  box-shadow: 0 28px 100px rgba(0,0,0,0.35);
}

.modal::backdrop {
  background: rgba(23, 37, 27, 0.72);
}

.modal-inner {
  position: relative;
  padding: 34px;
  background: var(--sand-50);
}

.modal-inner.small {
  max-width: 600px;
}

.modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: var(--green-100);
  cursor: pointer;
  font-size: 26px;
}

.modal-people {
  margin-top: 24px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav {
    position: fixed;
    inset: 68px 16px auto 16px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 14px;
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 14px;
  }

  .menu-button {
    display: inline-grid;
    place-items: center;
  }

  .header-cta {
    display: none;
  }

  .hero-grid,
  .split,
  .app-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 110px 0 70px;
  }

  .hero-card {
    max-width: 520px;
  }

  .photo-1,
  .photo-2,
  .photo-3 {
    opacity: 0.22;
  }

  .three-cards,
  .pricing-grid,
  .activity-grid,
  .people-grid,
  .roadmap-grid,
  .fit-grid {
    grid-template-columns: 1fr 1fr;
  }

  .option-card.recommended {
    transform: none;
  }

  .section-heading.with-action {
    display: block;
  }

  .section-heading.with-action .button {
    margin-top: 18px;
  }

}

@media (max-width: 680px) {
  .section {
    padding: 64px 0;
  }

  .container {
    width: min(100% - 22px, 1160px);
  }

  .site-header {
    padding-left: 12px;
    padding-right: 12px;
  }

  .brand span {
    font-size: 17px;
  }

  .hero-actions,
  .center-cta {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-card {
    display: none;
  }

  .three-cards,
  .pricing-grid,
  .activity-grid,
  .people-grid,
  .roadmap-grid,
  .fit-grid,
  .feature-grid,
  .project-columns,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid div {
    min-height: 82px;
  }


  .app-card {
    padding: 18px;
  }

  .phone-mock {
    width: 100%;
    max-width: 260px;
  }

  .modal-inner {
    padding: 26px 16px;
  }
}

.hero-subline {
  max-width: 760px;
  margin: 16px 0 0;
  font-size: 17px;
  color: rgba(255,255,255,0.78);
}

.membership {
  background: var(--sand-100);
}

.membership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.membership-card {
  padding: 30px;
  border: 1px solid rgba(36, 54, 40, 0.09);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 40px rgba(23, 37, 27, 0.07);
}

.membership-card.main {
  background: var(--green-800);
  color: var(--white);
}

.membership-card ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.membership-card li {
  display: flex;
  gap: 10px;
  margin: 10px 0;
  color: var(--muted);
}

.membership-card.main li {
  color: rgba(255,255,255,0.76);
}

.membership-card li::before {
  content: "✓";
  color: var(--orange-dark);
  font-weight: 900;
}

.membership-card.main li::before {
  color: var(--orange);
}

.light-box {
  background: var(--white);
  color: var(--green-900);
  box-shadow: 0 12px 40px rgba(23, 37, 27, 0.08);
  border: 1px solid rgba(36, 54, 40, 0.08);
}

.light-box p:not(.eyebrow) {
  color: var(--muted);
}

@media (max-width: 980px) {
  .membership-grid {
    grid-template-columns: 1fr;
  }
}


/* Рабочая форма */
.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.form-status {
  min-height: 1.4em;
  margin: 10px 0 0;
  font-size: 0.95rem;
}
.form-status.error {
  color: #9b2c2c;
}
.lead-form button[disabled] {
  opacity: 0.7;
  cursor: wait;
}

/* Обновлённая форма заявки */
.lead-form {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fbf7ee 100%);
  border: 1px solid rgba(36, 54, 40, 0.1);
}

.lead-form::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(240, 154, 50, 0.12);
  pointer-events: none;
}

.form-heading,
.form-mini-points,
.form-grid,
.consent-checkbox,
.submit-button,
.lead-form .form-status,
.lead-form .form-note {
  position: relative;
  z-index: 1;
}

.form-heading h3 {
  margin: 12px 0 8px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.form-heading p {
  margin: 0;
}

.form-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-800);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.form-mini-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 6px;
}

.form-mini-points span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(36, 54, 40, 0.06);
  color: var(--green-800);
  font-size: 12px;
  font-weight: 800;
}

.form-mini-points span::before {
  content: "✓";
  color: var(--orange-dark);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 12px;
}

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

.lead-form label > span:first-child {
  display: inline-block;
}

.lead-form label b {
  color: var(--orange-dark);
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  min-height: 50px;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.lead-form textarea {
  min-height: 112px;
  resize: vertical;
}

.lead-form input:hover,
.lead-form select:hover,
.lead-form textarea:hover {
  border-color: rgba(36, 54, 40, 0.3);
}

.consent-checkbox {
  margin-top: 16px !important;
  padding: 14px;
  border-radius: 16px;
  background: rgba(36, 54, 40, 0.05);
  font-size: 13px;
}

.submit-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  margin-top: 16px;
  font-size: 16px;
  box-shadow: 0 14px 30px rgba(240, 154, 50, 0.24);
}

.submit-button span:last-child {
  font-size: 22px;
  transition: transform .2s ease;
}

.submit-button:hover span:last-child {
  transform: translateX(4px);
}

.lead-form .form-note {
  margin-bottom: 0;
  text-align: center;
}

.form-status.success {
  color: var(--green-700);
  font-weight: 800;
}

@media (max-width: 620px) {
  .lead-form {
    padding: 22px 18px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-grid .full-row {
    grid-column: auto;
  }
  .form-mini-points {
    gap: 6px;
  }
}
