@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Source+Sans+3:wght@400;500;600;700&display=swap");

:root {
  --bg: #07110d;
  --bg-soft: #0e1a15;
  --panel: rgba(255, 255, 255, 0.08);
  --surface: #f5fcf8;
  --surface-strong: #ffffff;
  --text: #0c1b15;
  --text-soft: #56665f;
  --line: rgba(255, 255, 255, 0.14);
  --line-soft: #d6e3dd;
  --accent: #00cc7e;
  --accent-deep: #007c49;
  --accent-soft: #dfffee;
  --accent-glow: rgba(0, 204, 126, 0.2);
  --shadow: 0 30px 80px rgba(1, 12, 9, 0.28);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(0, 204, 126, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(0, 124, 73, 0.2), transparent 24%),
    linear-gradient(180deg, #07110d 0%, #0b1712 28%, #f5fcf8 28.1%, #f5fcf8 100%);
  color: var(--text);
  font-family: "Source Sans 3", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 70%);
}

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

a {
  color: inherit;
}

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

.site-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding-bottom: 96px;
}

.site-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 0 10px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.96rem;
}

.site-topline p,
.site-topline a {
  margin: 0;
}

.site-topline a {
  text-decoration: none;
  font-weight: 700;
  color: var(--accent);
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 20px 26px;
  border: 1px solid rgba(0, 124, 73, 0.14);
  border-radius: 999px;
  background: #ffffff;
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  max-width: 260px;
  text-decoration: none;
}

.brand img {
  width: 100%;
  max-width: 240px;
  height: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-proof {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.header-proof span,
.hero-proof,
.trust-item,
.hero-badge,
.card,
.quote-card,
.step,
.faq-item,
.form-panel {
  backdrop-filter: blur(12px);
}

.header-proof span {
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 124, 73, 0.12);
  background: #f2fbf6;
  color: #184a33;
  font-size: 0.88rem;
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, #02b66d 100%);
  color: #042012;
  text-decoration: none;
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 430px);
  gap: 34px;
  padding: 54px 0 28px;
  align-items: start;
}

.hero-copy {
  color: white;
  padding: 18px 0 0;
}

.section-kicker,
.form-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-kicker::before,
.form-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
}

.hero-copy .section-kicker::before {
  background: rgba(255, 255, 255, 0.28);
}

.section:not(.hero) .section-kicker::before,
.split-copy .section-kicker::before,
.final-cta .section-kicker::before,
.form-panel .form-kicker::before {
  background: rgba(0, 124, 73, 0.24);
}

.hero h1,
.section h2,
.form-panel h2,
.final-cta h2,
.form-success h3 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 13ch;
  font-size: clamp(3.1rem, 6.8vw, 5.9rem);
}

.hero-lead {
  max-width: 56ch;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.18rem;
  line-height: 1.55;
}

.hero-contrast {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.hero-contrast > div {
  padding: 18px 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.05);
}

.hero-contrast p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.55;
}

.contrast-label {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0, 204, 126, 0.16);
  color: #b7ffd8;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #02b56d 100%);
  color: #042012;
  box-shadow: 0 14px 40px var(--accent-glow);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: white;
}

.final-cta .button-secondary,
.section:not(.hero) .button-secondary {
  border-color: rgba(0, 124, 73, 0.18);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
}

.hero .button-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: white;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.hero-badge {
  padding: 18px 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.05);
}

.hero-badge strong {
  display: block;
  margin-bottom: 7px;
  font-size: 1rem;
  font-weight: 800;
}

.hero-badge span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.hero-proof {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.05);
}

.proof-stars {
  color: #7df2b9;
  font-size: 0;
  letter-spacing: 0.1em;
}

.proof-stars::before {
  content: "★★★★★";
  font-size: 1.1rem;
}

.hero-proof p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.form-panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(0, 124, 73, 0.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(0, 204, 126, 0.16), transparent 30%),
    var(--surface-strong);
  box-shadow: var(--shadow);
}

.form-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0, 204, 126, 0.05), transparent 24%),
    linear-gradient(180deg, transparent, rgba(0, 124, 73, 0.03));
  pointer-events: none;
}

.form-panel > * {
  position: relative;
  z-index: 1;
}

.form-panel-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text);
}

.form-panel-head p {
  margin: 12px 0 0;
  color: var(--text-soft);
  font-size: 1.04rem;
  line-height: 1.5;
}

.lead-form {
  margin-top: 24px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: block;
  margin-bottom: 14px;
}

.field span {
  display: block;
  margin: 0 0 8px;
  color: var(--text);
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: #fbfffc;
  color: var(--text);
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(0, 124, 73, 0.45);
  box-shadow: 0 0 0 4px rgba(0, 204, 126, 0.14);
}

.field textarea {
  resize: vertical;
  min-height: 118px;
}

.field small,
.form-alert {
  display: block;
  margin-top: 8px;
  color: #a52e2e;
  font-weight: 700;
}

.button-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-disclaimer,
.site-footer p {
  margin: 16px 0 0;
  color: var(--text-soft);
  line-height: 1.45;
  font-size: 0.94rem;
}

.form-success {
  padding: 26px 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ecfff7, #f8fffb);
  border: 1px solid rgba(0, 124, 73, 0.15);
}

.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 0;
  font-weight: 900;
}

.success-icon::before {
  content: "✓";
  font-size: 1.4rem;
}

.form-success h3 {
  font-size: 2rem;
  color: var(--text);
}

.form-success p {
  margin: 10px 0 0;
  color: var(--text-soft);
  line-height: 1.55;
}

.form-success a {
  color: var(--accent-deep);
  font-weight: 800;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.trust-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
  margin-bottom: 34px;
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(10, 28, 21, 0.94), rgba(14, 35, 27, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.16);
}

.trust-item {
  padding: 18px 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.trust-item strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Outfit", sans-serif;
  font-size: 1.03rem;
  line-height: 1.15;
  color: #ffffff;
}

.trust-item span {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.45;
}

.section {
  padding: 96px 0 0;
}

.section.section-dark {
  padding-top: 28px;
}

.story-strip-section {
  position: relative;
  z-index: 2;
  margin-top: 10px;
  padding: 40px 28px 32px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(250, 255, 252, 0.98) 0%, rgba(242, 253, 248, 0.96) 100%);
  box-shadow: 0 22px 54px rgba(12, 27, 21, 0.08);
}

.section-copy {
  margin-bottom: 26px;
}

.section-copy.narrow {
  max-width: 760px;
}

.reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 14px 32px rgba(12, 27, 21, 0.06);
}

.google-wordmark {
  display: inline-flex;
  align-items: center;
  font-family: "Outfit", sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.g-blue {
  color: #4285f4;
}

.g-red {
  color: #db4437;
}

.g-yellow {
  color: #f4b400;
}

.g-green {
  color: #0f9d58;
}

.reviews-badge-sep {
  width: 1px;
  height: 18px;
  background: var(--line-soft);
}

.reviews-badge-text {
  color: var(--text);
  font-weight: 700;
}

.section h2,
.final-cta h2 {
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  color: var(--text);
}

.section-copy p:not(.section-kicker),
.final-cta p {
  margin: 16px 0 0;
  max-width: 60ch;
  color: var(--text-soft);
  font-size: 1.12rem;
  line-height: 1.62;
}

.cards {
  display: grid;
  gap: 18px;
}

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

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

.card,
.quote-card,
.step,
.faq-item,
.final-cta-inner {
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(12, 27, 21, 0.07);
}

.card,
.quote-card,
.step {
  padding: 28px;
  border-radius: 26px;
}

.card h3,
.quote-card footer,
.step h3 {
  font-family: "Outfit", sans-serif;
}

.card h3,
.step h3 {
  margin: 0 0 10px;
  font-size: 1.44rem;
  color: var(--text);
}

.card p,
.step p,
.quote-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
  font-size: 1.03rem;
}

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

.story-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.story-card,
.bullet-point {
  padding: 26px;
  border-radius: 26px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 50px rgba(12, 27, 21, 0.07);
}

.story-card h3,
.bullet-point strong {
  font-family: "Outfit", sans-serif;
}

.story-card h3 {
  margin: 12px 0 10px;
  font-size: 1.38rem;
  color: var(--text);
}

.story-card p,
.bullet-point span {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
}

.story-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #ebfaf2;
  color: var(--accent-deep);
  font-family: "Outfit", sans-serif;
  font-weight: 900;
}

.story-card-accent {
  background: linear-gradient(180deg, #f2fdf8 0%, #ffffff 100%);
  border-color: rgba(0, 124, 73, 0.16);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 24px;
  align-items: start;
}

.split-copy h2 {
  margin-top: 0;
}

.split-copy p {
  max-width: 58ch;
}

.split-copy p,
.story-card p,
.story-card h3,
.bullet-point span,
.bullet-point strong {
  position: relative;
  z-index: 1;
}

.split-copy p {
  margin: 16px 0 0;
  color: var(--text-soft);
  font-size: 1.12rem;
  line-height: 1.62;
}

.bullet-stack {
  display: grid;
  gap: 16px;
}

.bullet-point strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.18rem;
  color: var(--text);
}

.step {
  position: relative;
  overflow: hidden;
}

.step::after {
  content: "";
  position: absolute;
  inset: auto -20% -32% auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 204, 126, 0.16), transparent 68%);
  pointer-events: none;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent) 0%, #02b26b 100%);
  color: #042012;
  font-family: "Outfit", sans-serif;
  font-weight: 900;
}

.section-contrast {
  position: relative;
}

.section-contrast::before {
  content: "";
  position: absolute;
  inset: 42px -48px -24px;
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(0, 124, 73, 0.06), rgba(0, 124, 73, 0));
  z-index: -1;
}

.quote-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f7fffb 100%);
}

.quote-card p {
  font-size: 1.08rem;
  color: var(--text);
}

.quote-card footer {
  margin-top: 16px;
  color: var(--accent-deep);
  font-weight: 700;
  font-size: 0.98rem;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 22px;
  overflow: hidden;
}

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  font-family: "Outfit", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
}

.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 1.3rem;
  font-weight: 800;
  flex-shrink: 0;
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.22s ease;
}

.faq-item.open .faq-panel {
  max-height: 220px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-panel p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--text-soft);
  line-height: 1.6;
}

.final-cta {
  padding-bottom: 0;
}

.final-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 34px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(0, 204, 126, 0.15), transparent 28%),
    linear-gradient(180deg, #fafffc 0%, #f2fdf8 100%);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 40px 0 12px;
}

.mobile-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  display: none;
  gap: 10px;
  padding: 10px;
  border-radius: 22px;
  background: rgba(7, 17, 13, 0.92);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  z-index: 50;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.mobile-cta a {
  flex: 1;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 800;
}

.mobile-cta a:first-child {
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.mobile-cta a:last-child {
  background: linear-gradient(135deg, var(--accent) 0%, #02b66d 100%);
  color: #042012;
}

.mobile-cta.is-hidden {
  opacity: 0;
  transform: translateY(18px);
  visibility: hidden;
  pointer-events: none;
}

.proof-stars::before {
  content: "\2605\2605\2605\2605\2605" !important;
}

.success-icon::before {
  content: "\2713" !important;
}

@media (max-width: 1100px) {
  .hero,
  .cards-three,
  .cards-four,
  .steps,
  .trust-strip,
  .story-strip,
  .split-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero h1 {
    max-width: 12ch;
  }

  .final-cta-inner,
  .site-footer,
  .header-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-proof {
    order: 2;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(calc(100% - 24px), var(--max-width));
    padding-bottom: 112px;
  }

  .site-topline,
  .site-header,
  .field-row,
  .cards-three,
  .cards-four,
  .steps,
  .trust-strip,
  .story-strip,
  .hero-contrast,
  .split-section {
    grid-template-columns: 1fr;
  }

  .site-topline,
  .site-header {
    border-radius: 20px;
  }

  .site-topline {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 2px 12px;
    font-size: 0.84rem;
  }

  .site-header {
    justify-content: center;
    padding: 14px 18px;
  }

  .brand {
    max-width: 190px;
  }

  .header-actions {
    display: none;
  }

  .header-call {
    width: 100%;
  }

  .hero {
    padding-top: 30px;
  }

  .hero-copy {
    padding-top: 6px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.6rem, 12vw, 4.3rem);
  }

  .hero-proof {
    border-radius: 24px;
  }

  .form-panel,
  .card,
  .quote-card,
  .step,
  .faq-item,
  .final-cta-inner {
    border-radius: 22px;
  }

  .button,
  .button-submit {
    width: 100%;
  }

  .mobile-cta {
    display: flex;
  }
}
