:root {
  --ink: #0b1610;
  --ink-soft: #1b2b22;
  --field: #138a3d;
  --field-dark: #0c642d;
  --field-light: #e9f7ee;
  --white: #ffffff;
  --paper: #f7faf8;
  --line: #dce8df;
  --muted: #5d6d63;
  --shadow: 0 18px 42px rgba(11, 22, 16, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: inset 0 -5px 0 rgba(19, 138, 61, 0.65);
}

.brand-name,
.brand-handle {
  display: block;
}

.brand-name {
  font-size: 17px;
  font-weight: 900;
  line-height: 1.1;
}

.brand-handle {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--field-dark);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.nav-cta {
  padding: 10px 15px;
  background: var(--field);
  color: var(--white);
}

.btn {
  min-height: 48px;
  padding: 12px 18px;
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--field);
  color: var(--white);
  box-shadow: 0 12px 22px rgba(19, 138, 61, 0.22);
}

.btn-primary:hover,
.nav-cta:hover {
  background: var(--field-dark);
}

.btn-secondary {
  background: var(--white);
  color: var(--ink);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--ink);
}

.btn-full {
  width: 100%;
}

.hero {
  color: var(--white);
  background:
    linear-gradient(rgba(11, 22, 16, 0.82), rgba(11, 22, 16, 0.86)),
    linear-gradient(135deg, #0b1610 0%, #0d2d1a 56%, #135e30 100%);
}

.hero-inner {
  width: min(1120px, calc(100% - 32px));
  min-height: 680px;
  margin: 0 auto;
  padding: 72px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: center;
  gap: 48px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--field);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow,
.final-cta .eyebrow {
  color: #63d986;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
}

.tagline {
  margin: 22px 0 10px;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
}

.hero-text {
  max-width: 670px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
}

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

.proof-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.proof-points li {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  padding: 8px 11px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
}

.hero-panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.panel-label,
.pill {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 5px 10px;
  background: var(--field-light);
  color: var(--field-dark);
  font-size: 12px;
  font-weight: 900;
}

.hero-panel h2 {
  margin: 14px 0 12px;
  color: var(--white);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
}

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

.mini-prices {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.mini-prices div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.mini-prices span {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.mini-prices strong {
  white-space: nowrap;
}

s {
  color: #8d9a91;
}

.section,
.final-cta,
.footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 82px 0;
}

.section-band {
  width: 100%;
  max-width: none;
  background: var(--paper);
  padding-left: max(16px, calc((100vw - 1120px) / 2));
  padding-right: max(16px, calc((100vw - 1120px) / 2));
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading h2,
.audience-section h2,
.trust-section h2,
.final-cta h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p,
.audience-section p,
.trust-section p,
.faq-list p,
.price-card p,
.card p,
.card li,
.steps p {
  color: var(--muted);
}

.card-grid {
  display: grid;
  gap: 18px;
}

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

.card,
.price-card,
.steps li,
.trust-section article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(11, 22, 16, 0.05);
}

.card,
.price-card,
.trust-section article {
  padding: 26px;
}

.card-featured {
  border-color: rgba(19, 138, 61, 0.35);
  box-shadow: 0 16px 36px rgba(19, 138, 61, 0.12);
}

.card h3,
.price-card h3,
.steps h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.2;
}

.card ul {
  padding-left: 20px;
  margin: 18px 0 0;
}

.small-note {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 700;
}

.price-card {
  display: flex;
  flex-direction: column;
}

.price-card p:not(.price) {
  flex: 1;
}

.price-card-dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.price-card-dark p:not(.price) {
  color: rgba(255, 255, 255, 0.75);
}

.price {
  margin: 18px 0 14px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
}

.price span {
  color: var(--field);
  font-size: 54px;
  line-height: 1;
}

.price-card-dark .price {
  color: var(--white);
}

.price-card-dark .price span {
  color: #63d986;
}

.custom-price {
  color: var(--field-dark);
  font-size: 32px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  padding: 22px;
}

.steps span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--field);
  color: var(--white);
  font-weight: 900;
}

.audience-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 46px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.tag-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  padding: 10px 14px;
  font-weight: 900;
}

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

.trust-section article {
  background: var(--field-light);
}

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

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 18px 20px;
}

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

details p {
  margin: 12px 0 0;
}

.final-cta {
  margin-bottom: 58px;
  padding: 72px 24px;
  border-radius: 8px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(rgba(11, 22, 16, 0.9), rgba(11, 22, 16, 0.9)),
    linear-gradient(135deg, #0b1610, #135e30);
}

.final-cta p {
  max-width: 680px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.8);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.footer strong {
  display: block;
  color: var(--ink);
}

.footer p {
  margin: 4px 0 0;
  color: var(--muted);
}

.footer-email {
  color: var(--field-dark);
  font-weight: 800;
  text-decoration: none;
}

.footer-email:hover,
.footer-links a:hover {
  text-decoration: underline;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.footer-links a {
  color: var(--field-dark);
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 900px) {
  .nav {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .nav-links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero-inner,
  .three-column,
  .pricing-grid,
  .steps,
  .audience-section,
  .trust-section {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding: 58px 0;
  }
}

@media (max-width: 620px) {
  .nav {
    width: min(100% - 24px, 1120px);
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 15px;
  }

  .nav-cta {
    width: 100%;
  }

  .nav-links {
    gap: 16px;
    font-size: 13px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section,
  .final-cta,
  .footer {
    width: min(100% - 24px, 1120px);
  }

  .section {
    padding: 60px 0;
  }

  .section-band {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero-panel,
  .card,
  .price-card,
  .trust-section article {
    padding: 22px;
  }

  .mini-prices div,
  .footer {
    flex-direction: column;
  }

  .price span {
    display: block;
    margin-top: 4px;
    font-size: 48px;
  }
}
