:root {
  --primary: #82c47b;
  --primary-strong: #3f621b;
  --accent: #c76854;
  --dark: #0f150e;
  --ink: #2b2d42;
  --muted: #6e6e6e;
  --bg: #faf5f2;
  --bg-soft: #f6f2ee;
  --light: #ffffff;
  --soft: #c9d8e0;
  --border-soft: rgba(15, 21, 14, 0.1);
  --border-strong: rgba(63, 98, 27, 0.26);
  --teal: #134f5c;
  --highlight: var(--primary);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --shadow-soft: 0 26px 60px rgba(15, 21, 14, 0.14);
  --shadow-card: 0 16px 36px rgba(15, 21, 14, 0.1);
  --shadow-floating: 0 20px 45px rgba(15, 21, 14, 0.18);
  --shadow: var(--shadow-card);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: #101418;
  background: linear-gradient(180deg, #fff 0%, #fbf7f2 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 16px;
}

.logo img {
  height: 32px;
}

.nav-toggle {
  display: none;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.2);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 0;
  margin: 0;
  padding: 0;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 10px;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: none;
  color: #000;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--primary-strong);
}

.nav-link.active {
  color: #000;
}

.nav-cta {
  font-size: 18px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: var(--shadow-card);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid transparent;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  gap: 8px;
}

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

.btn-primary {
  background: var(--primary-strong);
  color: #fff;
  border-color: var(--primary-strong);
  box-shadow: 0 12px 20px rgba(63, 98, 27, 0.2);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 12px 20px rgba(199, 104, 84, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--primary-strong);
  border-color: var(--primary-strong);
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(63, 98, 27, 0.08);
}

.btn-hero {
  text-transform: none;
  padding: 12px 32px;
  letter-spacing: 0.02em;
}

.btn-cta {
  font-weight: 700;
  padding: 20px 60px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn-submit {
  font-size: 14px;
  font-weight: 600;
  padding: 9px 50px;
  text-transform: uppercase;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: #fef0c7;
  color: #000;
  padding: 24px 0;
}

.cookie-banner.is-hidden {
  display: none;
}

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

.cookie-banner p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  flex: 1 1 320px;
}

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

.cookie-btn {
  border: 0;
  border-radius: 4px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 400;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
  cursor: pointer;
}

.cookie-btn-primary {
  background: #000;
  color: #fff;
}

.cookie-btn-secondary {
  background: #fff;
  color: #000;
}

.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: clamp(48px, 6vw, 96px) 0;
  min-height: clamp(520px, 80vh, 860px);
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(8, 12, 8, 0.74) 0%, rgba(8, 12, 8, 0.42) 45%, rgba(8, 12, 8, 0.24) 100%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 600px) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  min-height: clamp(520px, 80vh, 860px);
}

.hero-card {
  background: linear-gradient(145deg, rgba(15, 21, 14, 0.62), rgba(15, 21, 14, 0.42));
  padding: clamp(22px, 3vw, 34px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(3px);
  max-width: 620px;
  color: #fff;
}

.hero-media img {
  width: clamp(260px, 30vw, 390px);
  max-width: 100%;
  max-height: 700px;
  margin: 0 0 0 auto;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(8, 12, 8, 0.35);
  border: 0;
  background: transparent;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: 600;
  line-height: 1.2;
  color: #d6f6a2;
  margin-bottom: 10px;
  display: block;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: 0.5px;
  text-transform: none;
  margin: 0 0 14px;
}

.lead {
  font-size: clamp(17px, 1.9vw, 23px);
  font-weight: 500;
  line-height: 1.45;
  color: #122;
}

.hero-actions {
  margin-top: 26px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.92);
}

.hero .btn-outline {
  border-color: #fff;
  color: #fff;
}

.hero-note {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

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

.hero-trust li {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

section {
  padding: clamp(56px, 7vw, 96px) 0;
}

.section-head {
  text-align: center;
  margin-bottom: 36px;
}

.section-head h2 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 12px;
}

.section-head .lead {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 400;
  line-height: 1.5;
  color: #1f2933;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(63, 98, 27, 0.12);
  border: 1px solid var(--border-strong);
  color: var(--primary-strong);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.intro {
  background: linear-gradient(180deg, #fff 0%, #f9f4ef 100%);
  text-align: center;
}

.intro h2,
.how-it-works h2 {
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.4px;
  color: var(--ink);
  margin-bottom: 12px;
}

.intro .lead,
.how-it-works .lead {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 400;
  line-height: 1.5;
  color: #1f2933;
}

.signal-list {
  margin: 24px auto 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 900px;
  text-align: left;
}

.signal-list li {
  position: relative;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 14px 16px 14px 42px;
  font-weight: 500;
  box-shadow: var(--shadow-card);
}

.signal-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 21px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--teal));
}

.pain-focus {
  background: var(--bg-soft);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 28px);
}

.pain-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
  padding: 24px;
  display: grid;
  gap: 10px;
  overflow: hidden;
}

.pain-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
}

.pain-card h3 {
  margin: 0;
  font-size: 24px;
  color: var(--ink);
}

.pain-card p {
  margin: 0;
  color: #1f2933;
}

.pain-link {
  margin-top: 8px;
  color: var(--primary-strong);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.product-focus {
  background: #fff;
}

.product-focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 28px);
}

.product-focus-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
  padding: 24px;
  display: grid;
  gap: 12px;
  overflow: hidden;
}

.product-focus-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--primary));
}

.product-focus-card h3 {
  margin: 0;
  font-size: 24px;
  color: var(--ink);
}

.product-focus-card p {
  margin: 0;
  color: #1f2933;
}

.product-proof {
  color: #374151;
  font-style: italic;
}

.features {
  background: #fff;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 28px);
}

.feature-card {
  background: linear-gradient(180deg, #fff 0%, #fcfaf7 100%);
  padding: 30px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
  text-align: center;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.feature-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  margin: 0 auto 10px;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(15, 21, 14, 0.15);
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  color: var(--ink);
}

.visual-proof {
  background: #fff;
  border-top: 1px solid rgba(15, 21, 14, 0.06);
  border-bottom: 1px solid rgba(15, 21, 14, 0.06);
}

.visual-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 50px);
  align-items: start;
}

.visual-proof-copy h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 12px;
}

.visual-proof-copy .lead {
  margin: 0 0 16px;
}

.visual-proof-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.visual-proof-list li {
  position: relative;
  padding-left: 26px;
  color: #1f2933;
  font-weight: 500;
}

.visual-proof-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal), var(--primary));
}

.visual-proof-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.visual-proof-media img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.visual-proof-media img:last-child {
  grid-column: 1 / -1;
  min-height: 220px;
  object-fit: contain;
  background: #f3f6fa;
  border: 1px solid rgba(15, 21, 14, 0.08);
  padding: 8px;
}

.modules {
  background: linear-gradient(180deg, #fbf7f3 0%, #f3ede7 100%);
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.module-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
}

.module-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
}

.module-card p {
  margin: 0;
  color: #1f2933;
}

.audience {
  background: #fff;
}

.group-activation {
  background: linear-gradient(180deg, #f6f2ee 0%, #efe9e2 100%);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.audience-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.audience-card .audience-icon {
  width: 64px !important;
  height: 64px !important;
  min-width: 64px;
  border-radius: 16px;
  object-fit: contain !important;
  background: linear-gradient(145deg, #fff 0%, #edf5e6 100%);
  border: 1px solid rgba(63, 98, 27, 0.2);
  align-self: flex-start;
  margin: 0 0 2px;
  box-shadow: 0 8px 20px rgba(15, 21, 14, 0.12);
}

.audience-card h3 {
  margin-top: 0;
  font-size: 22px;
  color: var(--ink);
}

.audience .audience-card {
  overflow: hidden;
  padding: 16px;
}

.audience .audience-card h3,
.audience .audience-card p {
  margin-left: 4px;
  margin-right: 4px;
}

.audience-photo {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(15, 21, 14, 0.18);
  margin-bottom: 8px;
}

.how-it-works {
  background: linear-gradient(180deg, #f4efe8 0%, #fbf7f2 100%);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(18px, 3vw, 28px);
  margin-top: 36px;
}

.how-card {
  background: linear-gradient(180deg, #fff 0%, #fdfaf7 100%);
  padding: 28px 22px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
  text-align: left;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.how-card .how-icon {
  width: 68px !important;
  height: 68px !important;
  min-width: 68px;
  border-radius: 16px;
  object-fit: contain !important;
  background: linear-gradient(145deg, #fff, #f2f7ec);
  border: 1px solid rgba(63, 98, 27, 0.2);
  align-self: flex-start;
  margin: 0 0 4px;
  box-shadow: 0 8px 20px rgba(15, 21, 14, 0.12);
}

.how-card h3 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  color: #000;
  margin: 0;
}

.how-card p,
.how-card li {
  font-size: 16px;
  line-height: 1.5;
  color: #1f2933;
}

.how-card ul {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.cta-band {
  background: linear-gradient(135deg, #dbe9f0 0%, #cedecf 100%);
}

.cta-band--image {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cta-band--image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 12, 10, 0.46) 0%, rgba(7, 12, 10, 0.5) 100%);
}

.cta-card {
  width: min(702px, 92vw);
  min-height: 422px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, #fbf7f2 100%);
  padding: 48px 56px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 18px;
  align-content: center;
}

.cta-band--image .cta-card {
  position: relative;
  width: min(980px, 92vw);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(5px);
}

.cta-card h2 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--primary-strong);
  margin: 0;
}

.free {
  background: #fff;
}

.free-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
}

.free h2 {
  font-size: clamp(26px, 3.4vw, 44px);
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
}

.free-card {
  background: var(--teal);
  color: #fff;
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.faq {
  background: var(--teal);
}

.faq h2 {
  font-size: clamp(24px, 3.4vw, 40px);
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}

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

.faq-list details {
  background: #fff;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(19, 79, 92, 0.35);
}

.faq-list summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  font-weight: 700;
}

.faq-list details[open] summary::after {
  content: "–";
}

.download {
  background-size: cover;
  background-position: center;
}

.download h2 {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  margin: 0 0 10px;
}

.download .lead {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 400;
  line-height: 1.5;
  color: #000;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  padding: 32px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.download-media img {
  max-width: 260px;
  margin: 0 auto;
}

.channel-note {
  margin-top: 14px;
  color: #334155;
  font-size: 14px;
}

.pricing {
  background: linear-gradient(180deg, #fff 0%, #f9f5ef 100%);
}

.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 8px auto 12px;
  padding: 6px;
  border-radius: 999px;
  background: #eef3e8;
  border: 1px solid rgba(63, 98, 27, 0.2);
}

.billing-toggle-btn {
  border: 0;
  background: transparent;
  color: #1f2933;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.billing-toggle-btn.is-active {
  background: #fff;
  color: var(--primary-strong);
  box-shadow: 0 8px 18px rgba(15, 21, 14, 0.12);
}

.billing-save {
  font-size: 12px;
  color: #166534;
  background: #dcfce7;
  border-radius: 999px;
  padding: 3px 8px;
  border: 1px solid #86efac;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  background: linear-gradient(180deg, #fff 0%, #fefcf9 100%);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 14px;
  align-content: start;
}

.pricing-card--featured {
  border-color: rgba(63, 98, 27, 0.4);
  box-shadow: 0 18px 40px rgba(63, 98, 27, 0.18);
}

.pricing-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(63, 98, 27, 0.12);
  color: var(--primary-strong);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  width: fit-content;
}

.pricing-tier {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}

.pricing-price {
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
}

.pricing-value {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

.pricing-period {
  font-size: 16px;
  font-weight: 500;
  color: #4b5563;
}

.pricing-tag {
  margin: 0;
  color: #4b5563;
  line-height: 1.35;
}

.pricing-price[data-pricing-price] {
  display: grid;
  gap: 4px;
  align-content: start;
  padding: 14px 16px;
  min-height: 110px;
  border-radius: 16px;
  border: 1px solid #dce8c8;
  background: linear-gradient(180deg, #f7fbef 0%, #eff6e3 100%);
}

.pricing-card--featured .pricing-price[data-pricing-price] {
  border-color: rgba(63, 98, 27, 0.35);
  background: linear-gradient(180deg, #f3fae7 0%, #e7f3d7 100%);
}

.pricing-price[data-pricing-price] .pricing-value {
  font-size: clamp(2.1rem, 4vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: #182213;
}

.pricing-price[data-pricing-price] .pricing-period {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  color: #2f4f1d;
  min-height: 1.25em;
}

.pricing-equivalent {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: #4b5563;
  min-height: 1.35em;
}

.pricing-card .pricing-tag {
  min-height: 64px;
}

.pricing-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: #1f2933;
}

.pricing-list [data-addon-rate] {
  min-height: 52px;
}

.pricing-note {
  margin-top: 24px;
  text-align: center;
  color: #4b5563;
}

.page-hero {
  padding: 90px 0 80px;
  min-height: 520px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
}

.page-hero .container {
  position: relative;
  color: #000;
}

.page-hero h1 {
  font-size: 42px;
  font-weight: 500;
  line-height: 54.6px;
  color: #000;
}

.page-hero p {
  color: #000;
}

.page-hero .legal-subhead {
  font-size: 18px;
  line-height: 23.4px;
  font-weight: 400;
  color: #000;
  max-width: 1080px;
}

.page-hero--uppercase h1 {
  text-transform: uppercase;
}

.page-hero--bold h1 {
  font-weight: 600;
}

.page-hero--center .container {
  text-align: center;
}

.page-content {
  background: #f7f3ef;
}

.legal-page-content {
  background: #fff;
}

.page-content--center {
  text-align: center;
}

.page-content ul {
  padding-left: 18px;
  color: #1f2933;
}

.page-content li {
  margin-bottom: 8px;
}

.page-content--center h2 {
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 12px;
}

.page-content--center > .container > p {
  max-width: 820px;
  margin: 0 auto 12px;
}

.content-block {
  margin-bottom: 32px;
}

.legal-actions {
  margin-top: 12px;
}

.legal-pdf-btn {
  border-radius: 100px;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 400;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.team-card {
  background: #fff;
  padding: 28px 24px;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(15, 21, 14, 0.08);
  border: 1px solid #e2e2e2;
  text-align: center;
}

.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
}

.team-link {
  display: inline-flex;
  margin-top: 8px;
  justify-content: center;
}

.team-link img {
  width: 24px;
  height: 24px;
}

.memories {
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
}

.memories .memories-card {
  background: rgba(15, 21, 14, 0.7);
  padding: 28px 44px;
  border-radius: 8px;
  display: inline-block;
}

.contact-section {
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
  padding: 110px 0;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: start;
}

.contact-card,
.contact-form-card {
  background: #fff;
  color: #000;
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: none;
  border: 1px solid #e5e7eb;
}

.contact-card--transparent {
  background: transparent;
  color: #fff;
  padding: 0;
  box-shadow: none;
  border: 0;
}

.contact-form-card {
  box-shadow: var(--shadow-floating);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  font-weight: 600;
}

.contact-form label input[type="checkbox"] {
  margin-right: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(17, 24, 39, 0.18);
  background: #fff;
}

.contact-form .btn-submit {
  width: 100%;
}

.contact-form p {
  font-size: 12px;
  text-align: center;
}

.ghl-form-shell {
  display: grid;
  gap: 12px;
}

.ghl-form-frame {
  width: 100%;
  border: 0;
  border-radius: 8px;
  background: #fff;
}

.ghl-form-error {
  margin: 0;
  font-size: 13px;
  color: #7f1d1d;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 10px 12px;
}

.ghl-form-legal {
  margin: 0;
  font-size: 13px;
  color: #334155;
  text-align: center;
}

.ghl-form-legal a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.is-hidden {
  display: none;
}

.js-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.js-reveal [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  background: var(--dark);
  color: #fff;
  padding: 48px 0 24px;
}

.footer-logo {
  height: 32px;
  margin-bottom: 12px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.footer-socials img {
  width: 24px;
  height: 24px;
}

.footer-bottom {
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 16px;
  text-align: center;
  font-size: 0.9rem;
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn,
  .nav-link {
    transition: none;
  }

  .btn:hover {
    transform: none;
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    text-align: center;
  }

  .hero-actions {
    display: flex;
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .visual-proof-grid {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    margin: 24px auto 0;
  }

  .pain-grid,
  .product-focus-grid,
  .feature-grid,
  .how-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .download-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .download-media img {
    margin: 0 auto;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 64px;
    right: 4vw;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    padding: 16px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    display: none;
    gap: 16px;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 12px;
  }

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

  .hero-media img {
    width: min(320px, 80vw);
    margin: 0 auto;
  }

  .hero-card {
    text-align: left;
  }

  .signal-list {
    grid-template-columns: 1fr;
  }

  .billing-toggle {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .feature-grid,
  .pain-grid,
  .product-focus-grid,
  .how-grid,
  .free-grid,
  .download-grid,
  .visual-proof-media {
    grid-template-columns: 1fr;
  }

  .visual-proof-media img:last-child {
    grid-column: auto;
  }

  .audience-photo {
    height: 180px;
  }

  .legal-pdf-btn {
    width: 100%;
    justify-content: center;
  }

  .feature-card,
  .how-card {
    min-height: auto;
  }

  .cta-card {
    min-height: auto;
    padding: 40px 24px;
  }

  .cookie-banner-inner {
    align-items: flex-start;
  }
}
