: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;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(19, 79, 92, 0.55);
  outline-offset: 3px;
}

.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: 18px;
}

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

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

.nav-link:hover {
  color: var(--primary-strong);
  background: rgba(63, 98, 27, 0.06);
}

.nav-link.active {
  color: var(--primary-strong);
  background: rgba(63, 98, 27, 0.12);
}

.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;
}

.guide-hero .eyebrow {
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(63, 98, 27, 0.18);
  background: rgba(249, 246, 240, 0.86);
  color: var(--primary-strong);
  box-shadow: 0 10px 24px rgba(18, 34, 24, 0.08);
}

.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);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.module-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-floating);
  border-color: rgba(63, 98, 27, 0.2);
}

.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;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.audience-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-floating);
  border-color: rgba(63, 98, 27, 0.2);
}

.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;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.how-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-floating);
  border-color: rgba(63, 98, 27, 0.2);
}

.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 .guide-actions {
  width: min(720px, 100%);
  margin: 18px auto 0;
  justify-content: center;
  align-items: stretch;
}

.cta-card .guide-actions .btn {
  flex: 1 1 280px;
  min-height: 62px;
}

.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;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-floating);
  border-color: rgba(63, 98, 27, 0.2);
}

.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;
}

.resource-strip {
  padding: 28px 0 20px;
}

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

.resource-strip-card {
  background: linear-gradient(180deg, #fff 0%, #fbfaf6 100%);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 28px;
  display: grid;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.resource-strip-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-floating);
  border-color: rgba(63, 98, 27, 0.24);
}

.resource-strip-card h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
}

.resource-strip-card p {
  margin: 0;
  color: #4b5563;
}

.resource-strip-badge {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  border-radius: 999px;
  background: rgba(63, 98, 27, 0.09);
  color: var(--primary-strong);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 12px;
}

.resource-strip-link {
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
}

.resource-strip-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.guide-hero {
  position: relative;
  padding: 96px 0 84px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.guide-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(249, 246, 240, 0.94) 0%, rgba(249, 246, 240, 0.88) 48%, rgba(249, 246, 240, 0.72) 100%);
}

.guide-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.85fr);
  gap: 32px;
  align-items: center;
}

.guide-hero-copy h1 {
  margin: 10px 0 16px;
  font-size: clamp(40px, 6vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.guide-hero-copy p {
  max-width: 720px;
}

.guide-meta {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.guide-meta li {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(63, 98, 27, 0.12);
  border-radius: 999px;
  padding: 9px 14px;
  color: #274354;
  font-size: 14px;
  font-weight: 600;
}

.guide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.guide-hero-panel,
.guide-side-card,
.guide-download-card,
.guide-note-card,
.guide-compare-card,
.guide-rule-card,
.guide-step,
.guide-pain-card,
.guide-template-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}

.guide-hero-panel {
  padding: 24px;
  display: grid;
  gap: 14px;
}

.guide-panel-kicker,
.guide-card-kicker {
  color: var(--primary-strong);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.guide-panel-list,
.guide-preview-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
  color: #1f2933;
}

.guide-panel-note,
.guide-note-card p,
.guide-template-card p,
.guide-compare-card p,
.guide-rule-card p,
.guide-pain-card p,
.guide-step p {
  margin: 0;
  color: #4b5563;
}

.guide-section {
  padding: 84px 0;
}

.guide-section--alt {
  background: #f6f4ee;
}

.guide-section--deep {
  background: linear-gradient(180deg, #ecf2e7 0%, #f7f5ef 100%);
}

.guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.guide-pain-grid,
.guide-step-grid,
.guide-rule-grid,
.guide-compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.guide-pain-card,
.guide-step,
.guide-rule-card,
.guide-compare-card {
  padding: 24px;
  display: grid;
  gap: 10px;
}

.guide-pain-card h3,
.guide-step h3,
.guide-rule-card h3,
.guide-compare-card h3,
.guide-download-card h2,
.guide-note-card h2,
.guide-side-card h3,
.guide-template-card h3 {
  margin: 0;
}

.guide-side-card {
  overflow: hidden;
}

.guide-side-card img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.guide-side-card-body {
  padding: 24px;
  display: grid;
  gap: 12px;
}

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

.guide-download-card,
.guide-note-card {
  padding: 28px;
  display: grid;
  gap: 16px;
}

.guide-preview {
  background: #f8faf5;
  border: 1px solid rgba(63, 98, 27, 0.14);
  border-radius: 20px;
  padding: 20px;
  display: grid;
  gap: 14px;
}

.guide-preview-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.guide-preview-head strong {
  font-size: 18px;
}

.guide-preview-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(19, 79, 92, 0.08);
  color: var(--teal);
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-preview-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.guide-preview-table th,
.guide-preview-table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.guide-preview-table th {
  color: #274354;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-preview-table tr:last-child td {
  border-bottom: 0;
}

.guide-compare-card--highlight {
  background: linear-gradient(180deg, rgba(130, 196, 123, 0.15) 0%, rgba(255, 255, 255, 0.96) 100%);
  border-color: rgba(63, 98, 27, 0.18);
}

.guide-template-card {
  padding: 24px;
  display: grid;
  gap: 12px;
}

.guide-quote {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: #274354;
}

.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: linear-gradient(180deg, #fff 0%, #fcfaf7 100%);
  padding: 28px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
  text-align: center;
  display: grid;
  gap: 10px;
  align-content: start;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.team-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-floating);
  border-color: rgba(63, 98, 27, 0.2);
}

.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;
  max-width: 540px;
}

.contact-card--transparent h1 {
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.1;
}

.contact-card--transparent p {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.6;
}

.contact-card--transparent p:last-of-type {
  margin-bottom: 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;
}

.blog-page {
  background: linear-gradient(180deg, #fff 0%, #f7f2ec 100%);
}

.blog-hero,
.blog-toolbar,
.blog-grid-section,
.blog-article,
.blog-related {
  position: relative;
}

.blog-hero {
  padding: clamp(56px, 7vw, 96px) 0 clamp(32px, 4vw, 56px);
}

.blog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.blog-hero-copy h1 {
  font-size: clamp(36px, 5.2vw, 68px);
  line-height: 1.08;
  margin: 0 0 14px;
  color: var(--ink);
}

.blog-post-hero-copy h1 {
  font-size: clamp(34px, 3.9vw, 50px);
  line-height: 1.08;
  margin: 0 0 16px;
  color: var(--ink);
  max-width: 100%;
}

.blog-hero-copy .lead,
.blog-post-hero-copy .lead {
  margin: 0;
  color: #1f2933;
}

.blog-actions,
.blog-card-meta,
.blog-tag-list,
.blog-toolbar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.blog-actions {
  margin-top: 24px;
}

.blog-hero-note {
  margin: 8px 0 0;
  color: rgba(31, 41, 51, 0.72);
  font-size: 15px;
}

.blog-featured,
.blog-card,
.blog-author-card,
.blog-video-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 28px;
  box-shadow: var(--shadow-card);
}

.blog-featured {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.88fr);
  gap: 0;
  overflow: hidden;
}

.blog-featured-copy {
  padding: clamp(24px, 3vw, 34px);
  display: grid;
  align-content: start;
  gap: 12px;
}

.blog-featured-copy h2,
.blog-card-title,
.blog-video-card h2,
.blog-author-copy h2 {
  margin: 0;
  color: var(--ink);
  line-height: 1.18;
}

.blog-featured-copy h2 {
  font-size: clamp(24px, 2.8vw, 34px);
}

.blog-featured-copy p,
.blog-card-excerpt,
.blog-toolbar-copy p,
.blog-author-copy p,
.blog-related .lead {
  margin: 0;
  color: #1f2933;
}

.blog-featured-media {
  margin: 0;
  min-height: 100%;
}

.blog-featured-media img,
.blog-card-media img,
.blog-post-hero-media img,
.blog-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-featured-media img {
  min-height: 320px;
}

.blog-toolbar {
  padding: 12px 0 24px;
}

.blog-toolbar-inner {
  justify-content: space-between;
  align-items: flex-end;
  padding: 18px 0 0;
  border-top: 1px solid rgba(15, 21, 14, 0.08);
}

.blog-toolbar-copy {
  max-width: 520px;
}

.blog-meta-inline,
.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: rgba(31, 41, 51, 0.72);
  font-size: 14px;
}

.blog-meta-inline span,
.blog-card-meta span {
  display: inline-flex;
  align-items: center;
}

.blog-meta-inline span + span::before,
.blog-card-meta span + span::before {
  content: "·";
  margin-right: 10px;
  color: rgba(31, 41, 51, 0.38);
}

.blog-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-chip,
.blog-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 700;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.blog-chip {
  border: 1px solid rgba(15, 21, 14, 0.08);
  background: rgba(255, 255, 255, 0.82);
  color: var(--primary-strong);
  padding: 9px 14px;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.blog-chip span {
  background: rgba(15, 21, 14, 0.05);
  color: rgba(31, 41, 51, 0.72);
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 12px;
}

.blog-chip:hover,
.blog-chip.is-active {
  background: var(--primary-strong);
  color: #fff;
  border-color: var(--primary-strong);
}

.blog-chip.is-active span {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

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

.blog-card {
  overflow: hidden;
  display: grid;
}

.blog-card-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-card-media img {
  min-height: 100%;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-media img,
.blog-featured:hover .blog-featured-media img {
  transform: scale(1.02);
}

.blog-card-body {
  padding: 22px;
  display: grid;
  gap: 14px;
}

.blog-card-title {
  font-size: clamp(22px, 2.6vw, 28px);
}

.blog-card-title a,
.blog-featured-copy h2 a {
  color: inherit;
}

.blog-card-excerpt {
  line-height: 1.65;
}

.blog-tag-list {
  gap: 8px;
}

.blog-tag {
  background: transparent;
  color: rgba(19, 79, 92, 0.92);
  border: 1px solid rgba(19, 79, 92, 0.12);
  padding: 4px 9px;
  font-size: 11px;
  font-weight: 600;
}

.blog-card-link {
  color: var(--primary-strong);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.blog-card.is-hidden,
.blog-featured.is-hidden,
[data-blog-post].is-hidden {
  display: none;
}

.blog-post-hero {
  padding: clamp(28px, 4vw, 56px) 0 clamp(8px, 2vw, 24px);
}

.blog-post-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.blog-post-hero-copy {
  display: grid;
  gap: 12px;
  padding-top: clamp(4px, 1vw, 16px);
}

.blog-meta-inline--post {
  font-size: 15px;
}

.blog-post-hero-media {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
  aspect-ratio: 16 / 10;
  max-height: 520px;
}

.blog-article {
  padding: 0 0 clamp(36px, 5vw, 72px);
}

.blog-article-grid {
  display: grid;
  gap: clamp(28px, 4vw, 40px);
}

.blog-story {
  max-width: 100%;
  margin: 0;
  width: 100%;
}

.blog-prose {
  max-width: none;
  margin: 0;
  width: 100%;
  font-size: 18px;
  line-height: 1.9;
  color: #1f2933;
}

.blog-prose > * + * {
  margin-top: 1.2em;
}

.blog-prose > h1:first-child {
  display: none;
}

.blog-prose h2,
.blog-prose h3,
.blog-prose h4 {
  color: var(--ink);
  line-height: 1.25;
  margin-top: 1.8em;
}

.blog-prose h2 {
  clear: both;
  font-size: clamp(28px, 3.2vw, 40px);
}

.blog-prose h3 {
  font-size: clamp(22px, 2.4vw, 28px);
}

.blog-prose p,
.blog-prose ul,
.blog-prose ol,
.blog-prose blockquote,
.blog-prose pre,
.blog-prose figure {
  margin: 0;
}

.blog-prose ul,
.blog-prose ol {
  overflow: hidden;
  padding-left: 22px;
}

.blog-prose a {
  color: var(--primary-strong);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.blog-prose blockquote {
  padding: 18px 22px;
  border-left: 4px solid var(--primary-strong);
  background: rgba(63, 98, 27, 0.06);
  border-radius: 0 18px 18px 0;
}

.blog-prose hr {
  clear: both;
  height: 1px;
  margin: clamp(28px, 4vw, 48px) 0;
  border: 0;
  background: rgba(19, 79, 92, 0.14);
}

.blog-prose img {
  width: 100%;
  border-radius: 22px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(15, 21, 14, 0.08);
}

.blog-inline-media {
  width: 100%;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(15, 21, 14, 0.08);
  background: #fff;
}

.blog-inline-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

@media (min-width: 1025px) {
  .blog-inline-media--float {
    width: min(43vw, 520px);
    margin-top: 0.55em;
    margin-bottom: clamp(28px, 3.5vw, 44px);
  }

  .blog-inline-media--right {
    float: right;
    margin-left: clamp(36px, 5vw, 72px);
    margin-right: 0;
  }

  .blog-inline-media--left {
    float: left;
    margin-right: clamp(36px, 5vw, 72px);
    margin-left: 0;
  }
}

.blog-prose pre,
.blog-prose code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  background: #f3efe8;
  border-radius: 12px;
}

.blog-prose pre {
  padding: 18px 20px;
  overflow-x: auto;
}

.blog-prose code {
  padding: 0.15em 0.35em;
}

.blog-media-section {
  display: grid;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

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

.blog-gallery-item {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
  aspect-ratio: 4 / 3;
}

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

.blog-video-card {
  padding: 16px;
  display: grid;
  gap: 14px;
}

.blog-video-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #0f150e;
}

.blog-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.blog-video-card h2 {
  font-size: 20px;
}

.blog-author-card {
  max-width: 860px;
  margin: 8px auto 0;
  padding: 22px;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(246, 242, 238, 0.92));
}

.blog-author-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-author-role {
  font-weight: 600;
  color: var(--primary-strong);
}

.blog-cta-band {
  padding: clamp(36px, 5vw, 56px) 0 clamp(28px, 4vw, 44px);
}

.blog-cta-band .cta-card {
  min-height: auto;
  width: min(920px, 92vw);
  padding: clamp(30px, 4vw, 40px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(18px, 3vw, 28px);
  align-items: center;
  text-align: left;
}

.blog-cta-band .cta-card h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.08;
}

.blog-cta-band .cta-card p {
  max-width: 34ch;
  font-size: 18px;
}

.blog-cta-band .btn-cta {
  min-width: 240px;
  min-height: 56px;
  padding-inline: 28px;
  justify-self: end;
}

.blog-related {
  padding: clamp(20px, 3vw, 32px) 0 clamp(56px, 6vw, 96px);
}

.blog-related .section-head {
  max-width: 760px;
  margin: 0 auto 30px;
}

.blog-related .section-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
}

.blog-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
  justify-content: center;
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.blog-card--related {
  min-height: 100%;
}

.blog-card--related .blog-card-body {
  padding: 20px;
}

@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) {
  .resource-strip-grid,
  .guide-layout,
  .guide-hero-grid {
    grid-template-columns: 1fr;
  }

  .blog-hero-grid,
  .blog-featured,
  .blog-post-hero-grid,
  .blog-related-grid {
    grid-template-columns: 1fr;
  }

  .guide-pain-grid,
  .guide-step-grid,
  .guide-rule-grid,
  .guide-compare-grid {
    grid-template-columns: 1fr;
  }

  .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;
  }

  .blog-grid,
  .blog-gallery,
  .blog-video-grid {
    grid-template-columns: 1fr;
  }

  .blog-story {
    max-width: 760px;
    margin: 0 auto;
  }

  .blog-inline-media--float {
    float: none;
    margin: 28px 0 36px;
  }

  .blog-cta-band .cta-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .blog-cta-band .btn-cta {
    justify-self: center;
    width: 100%;
    max-width: 360px;
  }

  .blog-author-card {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .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) {
  .resource-strip-card,
  .guide-pain-card,
  .guide-step,
  .guide-rule-card,
  .guide-compare-card,
  .guide-download-card,
  .guide-note-card,
  .guide-hero-panel,
  .blog-card,
  .blog-featured {
    border-radius: 20px;
  }

  .guide-hero {
    padding: 82px 0 68px;
  }

  .guide-actions,
  .guide-preview-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .guide-meta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .guide-side-card img {
    height: 220px;
  }

  .guide-preview-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .blog-toolbar-inner {
    align-items: flex-start;
  }

  .blog-chip-row,
  .blog-actions {
    width: 100%;
  }

  .blog-meta-inline,
  .blog-card-meta {
    gap: 8px;
  }

  .blog-meta-inline span + span::before,
  .blog-card-meta span + span::before {
    margin-right: 8px;
  }

  .blog-card-body {
    padding: 18px;
  }

  .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;
  }

  .blog-featured-media img,
  .blog-card-media img {
    min-height: 220px;
  }

  .blog-post-hero-media {
    aspect-ratio: 16 / 10;
  }

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

  .cta-card .guide-actions {
    width: 100%;
  }

  .cta-card .guide-actions .btn {
    width: 100%;
    flex-basis: auto;
  }

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