:root {
  --bg: #eef5f0;
  --bg-soft: #f7fbf7;
  --surface: #ffffff;
  --surface-soft: #f1f6f3;
  --text: #0d2f24;
  --muted: #45635a;
  --line: #cde0d8;
  --accent: #2f6855;
  --accent-strong: #204638;
  --accent-soft: #6ab58a;
  --shadow: 0 22px 55px rgba(22, 66, 52, 0.15);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: 'Manrope', 'Arial', sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 260px at 10% -80px, #d5ebdf 0%, transparent 60%),
    linear-gradient(180deg, #f4faf7 0%, var(--bg) 45%, var(--bg-soft) 100%);
  min-height: 100vh;
  line-height: 1.45;
}

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

.container {
  width: min(1140px, calc(100% - 2.4rem));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(14, 52, 43, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.topbar-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 700;
  color: #dfffe8;
  text-decoration: none;
  font-size: 0.98rem;
}

.brand__logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.35);
}

.brand__text {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.top-nav {
  margin-left: auto;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.top-nav a,
.phone {
  color: #e7f8ec;
  text-decoration: none;
  font-size: 0.95rem;
}

.top-nav a {
  opacity: 0.9;
}

.top-nav a:hover,
.phone:hover {
  opacity: 1;
}

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

.section-shell {
  padding: 3.4rem 0;
}

.hero {
  padding-top: 2.8rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1.6rem;
  align-items: stretch;
}

.hero-copy {
  background: linear-gradient(145deg, rgba(20, 54, 43, 0.9), rgba(30, 80, 62, 0.86));
  color: #f3fff6;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  color: var(--accent-soft);
  margin: 0 0 0.7rem;
  font-weight: 700;
}

.hero-copy h1 {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
}

.hero-description {
  margin: 1rem 0 1.4rem;
  color: #e6f4ec;
  max-width: 54ch;
}

.hero-points {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 0.72rem;
}

.hero-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.62rem;
  color: #e2f3e7;
}

.hero-points li::before {
  content: '✔';
  color: #9ff3bf;
  font-weight: 700;
  flex: 0 0 auto;
  transform: translateY(1px);
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.lead-card {
  background: var(--surface);
  border-radius: 24px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.lead-card__header {
  margin: 0 0 1rem;
  padding: 0.9rem 1rem;
  background: var(--surface-soft);
  border-radius: 14px;
  border: 1px solid #d7ebe4;
  color: #285344;
  font-weight: 700;
}

.lead-form {
  display: grid;
  gap: 0.75rem;
}

.field {
  display: grid;
  gap: 0.42rem;
}

.field__label {
  font-size: 0.86rem;
  font-weight: 700;
  color: #29483d;
}

.field__input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #cde1d8;
  background: #fff;
  color: #19362b;
  min-height: 43px;
  padding: 0.68rem 0.8rem;
  font-size: 0.96rem;
  font-family: inherit;
}

.field__input:focus {
  outline: 2px solid #6ab58a;
  outline-offset: 1px;
}

.field__input::placeholder {
  color: #7f998f;
}

.chips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.chip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 10px;
  border: 1px solid #d4e8df;
  min-height: 40px;
  padding: 0.35rem 0.55rem;
  background: #f8fcfa;
  color: #264439;
  font-size: 0.82rem;
}

.chip input {
  width: 16px;
  height: 16px;
  accent-color: #245f46;
}

.input-field-alt,
.field__input.alt {
  margin-top: 0.45rem;
}

.captcha {
  margin-top: 0.45rem;
  max-width: 120px;
}

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

.cf7-acceptance {
  margin-top: 0.5rem;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 0.55rem;
  align-items: start;
  color: #2a4a3e;
  font-size: 0.84rem;
}

.lead-form__actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  min-height: 44px;
  border-radius: 12px;
  padding: 0.64rem 1.1rem;
  border: 1px solid transparent;
  text-align: center;
  cursor: pointer;
}

.btn--light {
  background: linear-gradient(120deg, #2f6855, #2a775e);
  color: #ecfff0;
  border-color: #2f6855;
}

.btn--light:hover {
  opacity: 0.94;
}

.btn--ghost {
  background: transparent;
  color: #d9f0de;
  border-color: rgba(217, 240, 222, 0.44);
}

.hidden-fields-container,
.wpcf7-response-output {
  margin: 0;
}

.wpcf7-response-output {
  min-height: 1.5rem;
  color: #e25757;
  font-size: 0.86rem;
  padding-top: 0.35rem;
}

.section-head {
  margin-bottom: 1.2rem;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  font-family: 'Montserrat', sans-serif;
}

.section-head p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  max-width: 70ch;
}

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

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1.1rem;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1.04rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.muted {
  background: rgba(255, 255, 255, 0.72);
  border-block: 1px solid #dbe8e3;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  background: var(--surface);
  border: 1px solid #d5e8df;
  border-radius: 13px;
  padding: 0.78rem 0.95rem;
}

.steps li span {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ecfff1;
  font-weight: 700;
  background: var(--accent);
}

.steps p {
  margin: 0.25rem 0 0;
  color: var(--muted);
}

.faq details {
  background: var(--surface);
  border: 1px solid #d6e6de;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-bottom: 0.65rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.faq p {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.faq details[open] {
  box-shadow: 0 0 0 1px #cae1d7 inset;
}

.site-footer {
  border-top: 1px solid #d4e6dd;
  margin-top: 1rem;
  padding: 1.4rem 0 1.6rem;
  color: #2b4d40;
}

.footer-grid {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  color: #234437;
}

.footer-grid a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sticky-call {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  background: linear-gradient(120deg, #2f6855, #2a775e);
  color: #ecfff0;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.75rem 1.05rem;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(23, 64, 48, 0.32);
  display: none;
}

.policy-card {
  padding: 1.6rem;
  background: #fff;
  border: 1px solid #d5e8df;
  border-radius: 20px;
}

.policy-card h1 {
  margin-top: 0;
}

.policy-card p {
  color: var(--muted);
  line-height: 1.6;
}

.wpcf7-acceptance {
  line-height: 1.35;
}

.wpcf7-acceptance a {
  color: #2f5f4f;
  text-decoration: underline;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: rise 0.75s both;
}

.fade-delay {
  animation-delay: 120ms;
}

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

  .top-nav {
    display: none;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .lead-card {
    padding: 1rem;
  }

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

  .hero-copy {
    padding: 1.6rem;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1140px, calc(100% - 1.2rem));
  }

  .topbar-inner {
    min-height: 68px;
  }

  .brand__text {
    max-width: 14ch;
  }

  .hero {
    padding-top: 1.8rem;
  }

  .sticky-call {
    display: inline-flex;
  }

  .topbar .phone {
    display: none;
  }
}
