:root {
  --green-950: #06291f;
  --green-900: #07372b;
  --green-800: #005344;
  --green-700: #086759;
  --teal-600: #10979a;
  --teal-500: #18a6a6;
  --gold-500: #ffd256;
  --gold-600: #e5b53c;
  --cream-50: #fbf8ed;
  --cream-100: #f5efd9;
  --white: #ffffff;
  --ink: #163129;
  --muted: #60736c;
  --line: rgba(6, 41, 31, 0.12);
  --shadow: 0 22px 70px rgba(6, 41, 31, 0.16);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Roboto, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--cream-50);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

.narrow {
  max-width: 860px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 50;
  padding: 10px 16px;
  background: var(--gold-500);
  color: var(--green-950);
  border-radius: 10px;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 248, 237, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  min-width: 176px;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--green-800);
  font-weight: 700;
  font-size: 14px;
}

.top-nav a {
  position: relative;
  padding: 8px 0;
}

.top-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--gold-500);
  transition: width .2s ease;
}

.top-nav a:hover::after,
.top-nav a:focus-visible::after {
  width: 100%;
}

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

.header-phone {
  color: var(--green-900);
  font-weight: 800;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  text-align: center;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--green-950);
  box-shadow: 0 14px 34px rgba(229, 181, 60, 0.28);
}

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

.btn-small {
  min-height: 44px;
  padding: 10px 18px;
  background: var(--green-800);
  color: var(--white);
  font-size: 14px;
}

.btn-wide {
  width: 100%;
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 20%, rgba(24, 166, 166, .36), transparent 34%),
    radial-gradient(circle at 18% 82%, rgba(255, 210, 86, .16), transparent 34%),
    linear-gradient(135deg, var(--green-950), var(--green-800));
}

.section-light {
  background: var(--cream-50);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 78px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  gap: 54px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold-500);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 900;
}

.section-light .section-kicker,
.problem-solution .section-kicker,
.benefits .section-kicker,
.proof .section-kicker,
.risk-reversal .section-kicker {
  color: var(--teal-600);
}

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

h1 {
  margin-bottom: 24px;
  max-width: 850px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: .95;
  letter-spacing: -.055em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.04;
  letter-spacing: -.04em;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.18;
  letter-spacing: -.02em;
}

.hero-subtitle {
  max-width: 760px;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(18px, 2.2vw, 22px);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 36px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 780px;
}

.trust-row div {
  padding: 18px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-md);
}

.trust-row strong {
  display: block;
  color: var(--gold-500);
  font-size: 28px;
  line-height: 1;
}

.trust-row span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
}

.hero-card {
  position: relative;
  padding: 34px;
  background: rgba(251, 248, 237, .98);
  color: var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 210, 86, .55);
  border-radius: 22px;
  pointer-events: none;
}

.card-badge {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 8px 12px;
  color: var(--green-950);
  background: var(--gold-500);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.hero-card h2 {
  font-size: 30px;
}

.hero-card p {
  color: var(--muted);
}

.hero-pattern {
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 210, 86, .28);
  border-radius: 50%;
  box-shadow:
    0 0 0 36px rgba(24, 166, 166, .08),
    0 0 0 78px rgba(24, 166, 166, .06),
    0 0 0 124px rgba(255, 210, 86, .04);
}

.intro {
  padding: 72px 0 52px;
  text-align: center;
}

.lead {
  color: var(--muted);
  font-size: 20px;
}

.problem-solution {
  padding: 42px 0 80px;
  background: linear-gradient(180deg, var(--cream-50), #fffaf0);
}

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

.panel {
  min-height: 100%;
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(6, 41, 31, .08);
}

.panel-problem {
  border-top: 7px solid var(--gold-500);
}

.panel-solution {
  border-top: 7px solid var(--teal-500);
}

.services,
.audience,
.objections {
  padding: 86px 0;
}

.section-head {
  max-width: 820px;
  margin-bottom: 38px;
}

.section-head p:last-child {
  color: var(--muted);
  font-size: 18px;
}

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

.service-card,
.review-card,
.benefit-item,
details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 34px rgba(6, 41, 31, .07);
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -38px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 18px solid rgba(24, 166, 166, .08);
}

.card-number {
  display: inline-flex;
  margin-bottom: 22px;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  color: var(--green-950);
  background: var(--gold-500);
  border-radius: 50%;
  font-weight: 900;
}

.service-card p,
.benefit-item p,
.review-card p,
details p {
  color: var(--muted);
}

.benefits {
  padding: 90px 0;
  background:
    linear-gradient(135deg, rgba(6, 41, 31, .98), rgba(0, 83, 68, .95)),
    var(--green-900);
  color: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 48px;
  align-items: start;
}

.benefits-copy p:not(.section-kicker) {
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
}

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

.benefit-item {
  padding: 26px;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .12);
}

.benefit-item p {
  color: rgba(255, 255, 255, .74);
}

.check-list {
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 21px;
  height: 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--green-950);
  font-size: 13px;
  font-weight: 900;
}

.compact {
  color: var(--muted);
  margin-bottom: 24px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chips span {
  padding: 12px 17px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green-800);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(6, 41, 31, .05);
}

.proof {
  padding: 88px 0;
  background: linear-gradient(180deg, #fffaf0, var(--cream-50));
}

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

.review-card {
  padding: 30px;
}

.review-card p {
  font-size: 17px;
}

.review-card strong {
  display: block;
  color: var(--green-800);
}

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

details {
  padding: 24px 26px;
}

summary {
  cursor: pointer;
  color: var(--green-900);
  font-size: 18px;
  font-weight: 900;
}

summary::marker {
  color: var(--gold-600);
}

details p {
  margin: 14px 0 0;
}

.risk-reversal {
  padding: 40px 0 92px;
  background: var(--cream-50);
}

.risk-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 36px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at right, rgba(255, 210, 86, .28), transparent 32%),
    var(--white);
  border: 1px solid rgba(229, 181, 60, .45);
  box-shadow: var(--shadow);
}

.risk-box p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
}

.final-cta {
  padding: 94px 0;
}

.form-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 54px;
  align-items: start;
}

.form-copy p:not(.eyebrow),
.form-copy .check-list {
  color: rgba(255, 255, 255, .78);
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.contact-strip a {
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  color: var(--white);
  font-weight: 800;
}

.lead-form {
  padding: 32px;
  background: var(--cream-50);
  color: var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.lead-form label,
.lead-form legend {
  display: block;
  margin-bottom: 14px;
  color: var(--green-900);
  font-weight: 900;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 14px 15px;
  border: 1px solid rgba(6, 41, 31, .16);
  border-radius: 13px;
  background: var(--white);
  color: var(--ink);
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--teal-600);
  box-shadow: 0 0 0 4px rgba(16, 151, 154, .12);
}

.lead-form fieldset {
  margin: 0 0 16px;
  padding: 16px;
  border: 1px solid rgba(6, 41, 31, .13);
  border-radius: 14px;
}

.lead-form legend {
  margin-bottom: 8px;
  padding: 0 6px;
}

.checkbox {
  display: inline-flex !important;
  width: auto;
  align-items: center;
  gap: 8px;
  margin: 6px 14px 6px 0 !important;
  color: var(--muted) !important;
  font-weight: 800 !important;
}

.checkbox input {
  width: auto;
  margin: 0;
  accent-color: var(--teal-600);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.privacy-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.form-status {
  display: none;
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 800;
}

.form-status.is-success,
.form-status.is-error {
  display: block;
}

.form-status.is-success {
  color: #0d4d38;
  background: rgba(24, 166, 166, .12);
  border: 1px solid rgba(24, 166, 166, .24);
}

.form-status.is-error {
  color: #7a3316;
  background: rgba(255, 210, 86, .28);
  border: 1px solid rgba(229, 181, 60, .55);
}

.site-footer {
  padding: 28px 0;
  background: var(--green-950);
  color: rgba(255, 255, 255, .78);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.footer-inner strong,
.to-top {
  color: var(--gold-500);
}

.footer-inner p {
  margin: 4px 0;
}

.to-top {
  font-weight: 900;
}

@media (max-width: 1060px) {
  .top-nav {
    display: none;
  }

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

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

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

  .header-inner {
    min-height: 70px;
  }

  .logo {
    min-width: 148px;
  }

  .logo img {
    width: 148px;
  }

  .header-phone {
    display: none;
  }

  .hero {
    padding: 62px 0 56px;
  }

  .trust-row,
  .two-columns,
  .cards-grid,
  .benefit-list,
  .reviews-grid,
  .faq-grid,
  .risk-box {
    grid-template-columns: 1fr;
  }

  .risk-box {
    text-align: left;
  }

  .services,
  .audience,
  .objections,
  .proof,
  .benefits,
  .final-cta {
    padding: 64px 0;
  }

  .intro {
    padding: 56px 0 34px;
  }

  .problem-solution {
    padding-bottom: 60px;
  }

  .panel,
  .lead-form,
  .hero-card,
  .risk-box {
    padding: 24px;
    border-radius: 22px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 42px;
  }

  .btn {
    width: 100%;
    min-height: 50px;
  }

  .header-actions .btn {
    width: auto;
    padding-inline: 14px;
    font-size: 13px;
  }

  .hero-cta,
  .contact-strip {
    flex-direction: column;
  }

  .trust-row div {
    padding: 15px;
  }
}
