:root {
  --bg: #faf9f5;
  --surface: #f5f4ef;
  --surface-soft: #faf9f5;
  --ink: #3d3929;
  --subtext: #6e6d68;
  --line: #dad9d4;
  --line-strong: #b4b2a7;
  --brand: #c96442;
  --brand-dark: #a84f22;
  --brand-soft: #f5f4ef;
  --accent: #c96442;
  --accent-soft: #e9e6dc;
  --success: #1eb67c;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 1px 3px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 56px;
  padding: 8px 18px;
  color: var(--ink);
  background: rgba(245, 244, 239, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.site-header-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.site-header-brand img {
  width: 18px;
  height: 18px;
  border-radius: 5px;
}

.site-header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.site-header-nav a {
  color: var(--subtext);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
}

.site-header-link {
  opacity: 0.96;
}

.site-header-nav a:hover {
  color: var(--ink);
}

.site-header-call {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--brand);
  border: 1px solid var(--brand-dark);
  color: #fff !important;
  font-weight: 800 !important;
}

.consult-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 140;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(45, 30, 15, 0.28);
}

.consult-float:hover {
  filter: brightness(1.08);
}

.page {
  width: min(100%, 1060px);
  margin: 0 auto;
  padding: 34px 22px 72px;
}

.hero {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 34px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.logo {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(196, 97, 46, 0.28);
}

.logo svg {
  display: block;
  width: 100%;
  height: 100%;
}

.logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-kicker {
  margin: 0;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  margin: 1px 0 0;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.hero-lead {
  margin: 0;
  max-width: 780px;
  font-size: clamp(1.26rem, 2.5vw, 1.65rem);
  line-height: 1.34;
  letter-spacing: -0.012em;
  font-weight: 650;
}

.featured-snippet {
  margin: 12px 0 0;
  max-width: 860px;
  padding: 10px 12px;
  border-left: 3px solid #c96442;
  border-radius: 8px;
  background: #f5f4ef;
  color: #3d3929;
  font-size: 0.98rem;
  font-weight: 650;
}

.featured-snippet a {
  color: #c96442;
  font-weight: 800;
}

.hero-copy {
  margin: 12px 0 0;
  max-width: 860px;
  color: var(--subtext);
  font-size: 1.02rem;
}

.hero-marketplace {
  margin: 8px 0 0;
  max-width: 860px;
  color: #535146;
  font-size: 0.96rem;
  font-weight: 700;
}

.hero-marketplace a {
  margin-left: 4px;
  color: #c96442;
  font-weight: 800;
}

.hero-copy strong {
  color: var(--ink);
}

.hero-copy code {
  border-radius: 8px;
  padding: 2px 8px;
  border: 1px solid #dad9d4;
  background: #faf9f5;
  color: #535146;
  font-size: 0.9em;
}

blockquote {
  margin: 16px 0 0;
  border-left: 3px solid #b4b2a7;
  padding: 4px 0 4px 14px;
}

blockquote p {
  margin: 0;
  color: #3d3929;
}

blockquote footer {
  margin-top: 4px;
  color: #6e6d68;
  font-size: 0.92rem;
}

.hero-actions {
  margin-top: 14px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.18s ease;
}

.primary-btn {
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  box-shadow: 0 10px 18px rgba(196, 97, 46, 0.24);
}

.primary-btn:hover {
  filter: brightness(1.05);
}

.secondary-btn {
  border: 1px solid #dad9d4;
  background: #fff;
  color: #535146;
}

.secondary-btn:hover {
  background: #faf9f5;
}

.section-block {
  margin-top: 24px;
  border: 1px solid #dad9d4;
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: 26px 26px 28px;
  box-shadow: none;
}

.section-block h2 {
  margin: 0 0 12px;
  color: #3d3929;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.section-block p {
  margin: 0;
  color: var(--subtext);
  font-size: 1.02rem;
}

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

.social-proof {
  background:
    linear-gradient(180deg, rgba(196, 97, 46, 0.05) 0%, rgba(196, 97, 46, 0.03) 100%),
    var(--surface);
}

.social-intro {
  color: #6e6d68;
}

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

.proof-stat-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.operator-quotes {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.operator-quote-card {
  border: 1px solid #dad9d4;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  padding: 16px;
}

.operator-quote-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f5f4ef;
  color: #535146;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.operator-quote-text {
  margin: 12px 0 0;
  color: #3d3929;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.55;
}

.operator-quote-meta {
  margin: 10px 0 0;
  color: #6e6d68;
  font-size: 0.84rem;
  line-height: 1.45;
}

.proof-stat-card {
  border: 1px solid #dad9d4;
  border-radius: 14px;
  background: #fff;
  padding: 16px;
}

.proof-stat-num {
  display: block;
  color: #3d3929;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1;
}

.proof-stat-label {
  display: block;
  margin-top: 8px;
  color: #6e6d68;
  font-size: 0.88rem;
  line-height: 1.45;
}

.proof-image {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #dad9d4;
  background: #fff;
}

.proof-image img {
  display: block;
  width: 100%;
  height: auto;
}

.proof-caption {
  margin: 0;
  border-top: 1px solid #dad9d4;
  background: #fff;
  padding: 10px 12px;
  color: #6e6d68;
  font-size: 0.86rem;
  line-height: 1.45;
}

.founder-proof {
  margin-top: 12px;
  border: 1px solid #dad9d4;
  border-radius: 12px;
  background: #fff;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.founder-proof img {
  width: 68px;
  height: 68px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid #dad9d4;
  box-shadow: 0 8px 14px rgba(45, 30, 15, 0.16);
}

.founder-proof h3 {
  margin: 0;
  color: #3d3929;
  font-size: 1.08rem;
}

.founder-proof p {
  margin-top: 4px;
  color: #6e6d68;
  font-size: 0.96rem;
}

.social-proof-links {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-proof-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid #dad9d4;
  background: #fff;
  color: #535146;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.social-proof-links a:hover {
  background: #faf9f5;
}

.proof-note {
  margin-top: 14px;
  border: 1px solid #dad9d4;
  border-radius: 12px;
  background: #fff;
  padding: 12px 14px;
  color: #6e6d68;
  font-size: 0.9rem;
  line-height: 1.5;
}

.section-call-btn {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid #b4b2a7;
  background: #ffffff;
  color: #535146;
  font-size: 0.92rem;
  font-weight: 700;
}

.section-call-btn:hover {
  background: #faf9f5;
}

.blog-highlight p {
  margin-bottom: 10px;
}

.blog-cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid #b4b2a7;
  background: #fff;
  color: #535146;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.blog-cta:hover {
  background: #faf9f5;
}

.blog-cta-call {
  color: #ffffff;
  border-color: #3d3929;
  background: #3d3929;
}

.blog-cta-call:hover {
  background: #3d3929;
}

.comparison-list {
  margin: 12px 0 0;
  padding-left: 18px;
}

.comparison-list li {
  margin: 6px 0;
  color: #3d3929;
}

.comparison-list a {
  color: #535146;
  font-weight: 700;
}

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

.audience-grid article {
  border: 1px solid #dad9d4;
  border-radius: 12px;
  background: #faf9f5;
  padding: 14px;
}

.audience-grid h3 {
  margin: 0;
  color: #3d3929;
  font-size: 1.14rem;
  letter-spacing: -0.01em;
}

.audience-grid p {
  margin-top: 6px;
  color: #6e6d68;
  font-size: 0.98rem;
}

.audience-card-link {
  display: block;
  border: 1px solid #dad9d4;
  border-radius: 12px;
  background: #faf9f5;
  padding: 14px;
  text-decoration: none;
  transition: all 0.18s ease;
}

.audience-card-link:hover {
  border-color: #b4b2a7;
  background: #f5f4ef;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(45, 30, 15, 0.08);
}

.audience-card-link h3 {
  margin: 0;
  color: #3d3929;
  font-size: 1.14rem;
  letter-spacing: -0.01em;
}

.audience-card-link p {
  margin-top: 6px;
  color: #6e6d68;
  font-size: 0.98rem;
}

.agent-clarity {
  background: linear-gradient(180deg, rgba(196, 97, 46, 0.04) 0%, rgba(255, 255, 255, 1) 100%);
}

.agent-timeline {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.agent-timeline li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px;
  align-items: start;
}

.agent-timeline li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  border-radius: 8px;
  background: #f5f4ef;
  color: #535146;
  font-size: 0.84rem;
  font-weight: 800;
}

.agent-timeline li p {
  margin: 0;
  color: #6e6d68;
}

.security-section p + p {
  margin-top: 8px;
}

.security-note {
  margin-top: 12px;
  border: 1px solid #dad9d4;
  border-radius: 12px;
  background: #faf9f5;
  padding: 12px;
}

.security-note h3 {
  margin: 0;
  color: #3d3929;
  font-size: 1.1rem;
}

.security-note p {
  margin-top: 4px;
  color: #6e6d68;
}

.offering-section {
  background: var(--surface);
}

.offering-section h2 {
  text-transform: none;
  letter-spacing: -0.01em;
  font-size: clamp(1.32rem, 2vw, 1.58rem);
  margin-bottom: 6px;
}

.plans-intro {
  margin-bottom: 12px !important;
  color: #6e6d68 !important;
}

.pricing-stack {
  margin-top: 10px;
  display: grid;
  gap: 10px;
}

.pricing-card {
  border: 1px solid #dad9d4;
  border-radius: 12px;
  background: #ffffff;
  color: #3d3929;
  overflow: hidden;
}

.pricing-card-head {
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.pricing-card h3 {
  margin: 0;
  color: #3d3929;
  font-size: clamp(1.25rem, 2.1vw, 1.58rem);
  letter-spacing: -0.02em;
}

.pricing-card h3 .pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  border-radius: 999px;
  border: 1px solid rgba(16, 185, 129, 0.35);
  background: rgba(16, 185, 129, 0.12);
  color: #0a7554;
  padding: 2px 10px;
  font-size: 0.45em;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.pricing-card-head p {
  margin: 8px 0 0;
  color: #6e6d68;
  font-size: 1rem;
}

.pricing-card-price {
  margin: 0 !important;
  color: #3d3929 !important;
  white-space: nowrap;
  font-size: clamp(1.95rem, 3vw, 2.35rem) !important;
  line-height: 1;
  font-weight: 800;
}

.pricing-card-price span {
  margin-left: 4px;
  color: #6e6d68;
  font-size: 0.36em;
  font-weight: 700;
}

.pricing-card details {
  border-top: 1px solid #dad9d4;
}

.pricing-card summary {
  list-style: none;
  cursor: pointer;
  padding: 11px 20px;
  color: #535146;
  font-size: 0.92rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #faf9f5;
}

.pricing-card summary::after {
  content: "+";
  font-size: 1.2rem;
  color: #6e6d68;
  line-height: 1;
}

.pricing-card summary::-webkit-details-marker {
  display: none;
}

.pricing-card details[open] summary {
  background: #faf9f5;
}

.pricing-card details[open] summary::after {
  content: "-";
}

.pricing-card ul {
  margin: 0;
  padding: 8px 20px 15px 36px;
}

.pricing-card li {
  margin: 4px 0;
  color: #6e6d68;
  font-size: 0.94rem;
}

.plan-call-btn {
  margin: 0 16px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 999px;
  border: 1px solid #b4b2a7;
  background: #faf9f5;
  color: #535146;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 800;
  padding: 0 12px;
}

.plan-call-btn:hover {
  background: #f5f4ef;
}

.packages-intro {
  color: #6e6d68 !important;
  margin-bottom: 14px !important;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.package-card {
  border: 1px solid #dad9d4;
  border-radius: 14px;
  background: #fff;
  padding: 16px;
}

.package-card h3 {
  margin: 0;
  color: #3d3929;
  font-size: 1.18rem;
}

.package-price {
  margin: 8px 0 0 !important;
  color: #3d3929 !important;
  font-size: 1.74rem !important;
  line-height: 1;
  font-weight: 800;
}

.package-price span {
  font-size: 0.42em;
  font-weight: 700;
  color: #6e6d68;
}

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

.package-card li {
  color: #6e6d68;
  margin: 3px 0;
  font-size: 0.95rem;
}

.expand-block {
  margin-top: 12px;
  border: 1px solid #dad9d4;
  border-radius: 12px;
  background: #fff;
  padding: 0;
  overflow: hidden;
}

.expand-block summary {
  list-style: none;
  cursor: pointer;
  padding: 12px 14px;
  color: #3d3929;
  font-size: 0.98rem;
  font-weight: 700;
}

.expand-block summary::-webkit-details-marker {
  display: none;
}

.expand-block[open] summary {
  border-bottom: 1px solid #dad9d4;
  background: #faf9f5;
}

.expand-block .offering-list {
  padding: 12px 18px 14px 34px;
}

.good-to-know-panel {
  margin-top: 12px;
  border: 1px solid #dad9d4;
  border-radius: 12px;
  background: #fff;
  padding: 12px 14px 12px;
}

.good-to-know-panel h3 {
  margin: 0 0 8px;
  color: #3d3929;
  font-size: 0.98rem;
  font-weight: 700;
}

.good-to-know-panel .offering-list {
  margin: 0;
}

.table-wrap {
  margin-top: 0;
  border: 0;
  border-radius: 0;
  overflow-x: auto;
  background: #fff;
}

.offering-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.additional-costs-table {
  min-width: 560px;
}

.compact-table-wrap {
  padding: 8px 12px 12px;
}

.offering-table th,
.offering-table td {
  border: 0;
  border-bottom: 1px solid #dad9d4;
  padding: 9px 10px;
  vertical-align: top;
  text-align: left;
  color: #3d3929;
  font-size: 0.92rem;
  line-height: 1.45;
}

.offering-table thead th {
  background: transparent;
  color: #3d3929;
  font-size: 0.95rem;
  font-weight: 800;
  border-bottom: 1px solid #dad9d4;
}

.offering-table thead th:first-child {
  width: 22%;
}

.offering-table tbody th {
  background: transparent;
  color: #3d3929;
  font-weight: 800;
  white-space: nowrap;
}

.offering-subhead {
  margin: 22px 0 8px;
  color: #c96442;
  font-size: clamp(1.12rem, 1.9vw, 1.3rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.offering-list {
  margin: 0;
  padding-left: 22px;
}

.offering-list li {
  margin: 4px 0;
  color: #6e6d68;
  font-size: 1.01rem;
  line-height: 1.43;
}

.offering-paragraph-gap {
  margin-top: 8px !important;
}

.cost-list {
  margin-top: 14px;
  border: 1px solid #dad9d4;
  border-radius: 12px;
  padding: 12px 14px;
  background: #fff;
}

.cost-list h3 {
  margin: 0;
  color: #3d3929;
  font-size: 1rem;
}

.cost-list ul {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
}

.cost-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-top: 1px solid #dad9d4;
}

.cost-list li:first-child {
  border-top: 0;
}

.cost-list li span {
  color: #6e6d68;
}

.cost-list li strong {
  color: #3d3929;
  white-space: nowrap;
}

.why-note {
  margin-top: 14px;
  border: 1px solid #dad9d4;
  border-radius: 12px;
  background: #fff;
  padding: 14px;
}

.why-note h3 {
  margin: 0 0 6px;
  color: #3d3929;
  font-size: 1rem;
}

.why-note p {
  color: #6e6d68 !important;
  font-size: 0.95rem !important;
}

.pricing-section {
  background: var(--surface);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.pricing-section h2 {
  color: #3d3929;
}

.pricing-intro {
  margin-bottom: 16px;
  color: var(--subtext);
}

.pricing-panel {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}

.pricing-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 22px 24px;
  border-radius: 16px;
  border: 1px solid #dad9d4;
  background: #fff;
}

.pricing-row-link {
  text-decoration: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.pricing-row-link:hover {
  border-color: #b4b2a7;
  box-shadow: 0 10px 22px rgba(45, 30, 15, 0.08);
  transform: translateY(-1px);
}

.pricing-row-link:focus-visible {
  outline: 2px solid #c96442;
  outline-offset: 2px;
}

.pricing-row h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.24rem, 2.2vw, 1.62rem);
  font-weight: 800;
}

.pricing-row h3 .pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  border-radius: 999px;
  border: 1px solid rgba(16, 185, 129, 0.35);
  background: rgba(16, 185, 129, 0.12);
  color: #0a7554;
  padding: 2px 10px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  vertical-align: middle;
}

.pricing-row p {
  margin: 6px 0 0;
  color: var(--subtext);
  font-size: clamp(1.04rem, 1.45vw, 1.16rem);
}

.pricing-row-value {
  margin: 0;
  color: #3d3929;
  font-size: clamp(3.1rem, 5.9vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 800;
  white-space: nowrap;
}

.pricing-row-value span {
  margin-left: 5px;
  color: #6e6d68;
  font-size: 0.46em;
  font-weight: 600;
  letter-spacing: 0;
}

.pricing-pay-note {
  margin-top: 10px;
  color: #6e6d68;
  font-size: 0.9rem;
}

.pricing-cta {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  border-radius: 12px;
  border: 1px solid #f2f2f5;
  background: #f2f2f4;
  color: #11141c;
  font-size: clamp(1.06rem, 1.9vw, 1.24rem);
  font-weight: 800;
  text-decoration: none;
}

.pricing-cta-top {
  margin-top: 10px;
  margin-bottom: 12px;
}

.pricing-cta:hover {
  filter: brightness(0.98);
}

.after-purchase {
  margin-top: 12px;
  border: 1px solid #dad9d4;
  border-radius: 12px;
  background: #ffffff;
  padding: 12px 14px;
}

.after-purchase h3 {
  margin: 0 0 8px;
  color: #3d3929;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.after-purchase h3 span {
  display: inline-block;
  margin-right: 4px;
  padding: 2px 6px;
  border-radius: 4px;
  background: #ffcf8a;
  color: #3d3929;
}

.after-purchase ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.after-purchase li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px;
  align-items: start;
}

.after-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  border-radius: 8px;
  background: #faf9f5;
  color: #535146;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.after-purchase li p {
  margin: 0;
  color: #6e6d68 !important;
  font-size: 0.93rem !important;
  line-height: 1.5;
}

.guarantee-panel {
  margin-top: 12px;
  border: 1px solid #dad9d4;
  border-radius: 12px;
  background: #fff;
  padding: 12px;
}

.guarantee-panel h3 {
  margin: 0;
  color: #3d3929;
  font-size: 1.04rem;
}

.guarantee-panel p {
  margin-top: 4px;
  color: #6e6d68 !important;
  font-size: 0.95rem !important;
}

.contact-card {
  margin-top: 12px;
  border: 1px solid #dad9d4;
  border-radius: 12px;
  background: #fff;
  padding: 15px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-decoration: none;
}

.contact-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.profile-pic {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(196, 97, 46, 0.35);
  box-shadow: 0 6px 12px rgba(168, 79, 34, 0.18);
}

.contact-card strong {
  display: block;
  font-size: 1rem;
}

.contact-card p {
  margin: 0;
  color: #6e6d68;
  font-size: 0.95rem;
}

.contact-card > span {
  color: #3d3929;
  font-weight: 700;
  font-size: 0.94rem;
}

.contact-card-dark {
  border-color: #535146;
  background: linear-gradient(180deg, #3d3929 0%, #3d3929 100%);
}

.contact-card-dark strong {
  color: #f7f3ed;
}

.contact-card-dark p {
  color: #b4b2a7;
}

.contact-card-dark > span {
  color: #f7f3ed;
}

.contact-card-dark .profile-pic {
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.community-link-inline {
  margin-top: 11px;
  display: inline-block;
  color: #c96442;
  font-size: 0.95rem;
  text-underline-offset: 2px;
}

.community-link-inline:hover {
  color: #535146;
}

.fine-print {
  margin-top: 12px;
  color: #b4b2a7;
  font-size: 0.94rem;
}

.process-section {
  background:
    radial-gradient(220px 120px at 0% 0%, rgba(30, 182, 124, 0.08) 0%, transparent 80%),
    var(--surface);
}

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

.steps-grid article {
  border: 1px solid #dad9d4;
  border-radius: 12px;
  padding: 14px;
  background: #faf9f5;
}

.steps-grid span {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  margin-bottom: 6px;
  background: #f5f4ef;
  color: #c96442;
  font-size: 0.83rem;
  font-weight: 800;
}

.steps-grid strong {
  display: block;
  font-size: 1.08rem;
}

.steps-grid p {
  margin-top: 2px;
  color: #6e6d68;
  font-size: 0.95rem;
}

.faq ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.faq li {
  border: 1px solid #dad9d4;
  border-radius: 12px;
  padding: 12px 14px;
  background: #fff;
}

.faq h3 {
  margin: 0;
  padding-left: 17px;
  position: relative;
  color: #3d3929;
  font-size: 1rem;
}

.faq h3::before {
  content: ">";
  position: absolute;
  left: 0;
  top: 0;
  color: #6e6d68;
  font-weight: 700;
}

.faq li p {
  margin-top: 7px;
  color: #6e6d68;
  padding-left: 17px;
}

.global-site-footer {
  margin-top: 28px;
  border: 1px solid #dad9d4;
  border-radius: 16px;
  background: #fff;
  padding: 18px 18px 16px;
}

.global-footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.global-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #3d3929;
  font-size: 1rem;
  font-weight: 800;
}

.global-footer-brand img {
  width: 22px;
  height: 22px;
  border-radius: 6px;
}

.global-footer-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border-radius: 999px;
  padding: 0 12px;
  background: #3d3929;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

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

.global-footer-grid h3 {
  margin: 0 0 7px;
  color: #3d3929;
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.global-footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.global-footer-grid li {
  margin-top: 6px;
}

.global-footer-grid a {
  color: #6e6d68;
  font-size: 0.92rem;
  text-decoration: none;
}

.global-footer-grid a:hover {
  color: #535146;
}

.lead-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(45, 30, 15, 0.48);
}

.lead-popup-overlay.is-open {
  display: flex;
}

.lead-popup-card {
  position: relative;
  width: min(100%, 520px);
  border: 1px solid #b4b2a7;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 22px 48px rgba(45, 30, 15, 0.24);
  padding: 22px;
}

.lead-popup-close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: #f5f4ef;
  color: #535146;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.lead-popup-kicker {
  margin: 0;
  color: #c96442;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lead-popup-card h2 {
  margin: 6px 0 0;
  color: #3d3929;
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.lead-popup-card p {
  margin: 10px 0 0;
  color: #6e6d68;
  font-size: 0.99rem;
}

.lead-popup-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lead-popup-primary,
.lead-popup-secondary {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 800;
}

.lead-popup-primary {
  background: #3d3929;
  color: #fff;
}

.lead-popup-secondary {
  border: 1px solid #b4b2a7;
  color: #535146;
  background: #fff;
}

.lead-popup-primary:hover {
  filter: brightness(1.08);
}

.lead-popup-secondary:hover {
  background: #faf9f5;
}

@media (max-width: 980px) {
  .proof-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .operator-quotes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .page {
    padding: 28px 14px 62px;
  }

  .hero {
    padding: 22px;
  }

  .section-block {
    margin-top: 18px;
    padding: 20px;
  }

  .pricing-row {
    flex-direction: column;
    gap: 10px;
    padding: 18px;
  }

  .pricing-row-value {
    font-size: 2.8rem;
  }

  .contact-card {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .agent-timeline li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .agent-timeline li span {
    width: max-content;
    padding: 0 10px;
  }

  .after-purchase li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .after-tag {
    width: max-content;
    padding: 0 10px;
  }

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

  .offering-table {
    min-width: 640px;
  }

  .additional-costs-table {
    min-width: 480px;
  }

  .cost-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .pricing-card-head {
    padding: 16px;
    flex-direction: column;
    gap: 10px;
  }

  .site-header {
    align-items: flex-start;
    padding: 8px 12px;
  }

  .site-header-nav {
    justify-content: flex-end;
    gap: 8px;
  }

  .global-footer-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 460px) {
  .site-header {
    min-height: 50px;
    gap: 8px;
  }

  .site-header-brand {
    font-size: 0.85rem;
  }

  .site-header-brand img {
    width: 16px;
    height: 16px;
  }

  .site-header-nav a {
    font-size: 0.8rem;
  }

  h1 {
    font-size: 1.72rem;
  }

  .hero-lead {
    font-size: 1.13rem;
  }

  .hero-actions {
    width: 100%;
  }

  .primary-btn,
  .secondary-btn,
  .pricing-cta,
  .section-call-btn,
  .blog-cta {
    width: 100%;
  }

  .section-block h2 {
    font-size: 0.8rem;
  }

  .consult-float {
    right: 10px;
    left: 10px;
    bottom: 10px;
  }

  .lead-popup-card {
    padding: 20px 16px 18px;
  }

  .lead-popup-actions {
    flex-direction: column;
  }

  .lead-popup-primary,
  .lead-popup-secondary {
    width: 100%;
  }

  .cta-community-actions {
    flex-direction: column;
  }
}

/* CTA blocks for homepage */
.cta-community {
  margin: 20px 0;
  border: 2px solid #a8dfc8;
  border-radius: 14px;
  background: linear-gradient(135deg, #edf8f2 0%, #f6fdf9 100%);
  padding: 18px 20px;
}
.cta-badge {
  margin: 0 0 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.cta-badge-green { color: #0a7554; }
.cta-text {
  margin: 0 0 12px;
  color: #3d3929;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.5;
}
.cta-community-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 999px;
  padding: 0 20px;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.18s ease;
}
.cta-btn-green {
  color: #fff;
  background: linear-gradient(135deg, #0a7554 0%, #065f43 100%);
  box-shadow: 0 4px 12px rgba(10, 117, 84, 0.2);
}
.cta-btn-green:hover {
  box-shadow: 0 6px 18px rgba(10, 117, 84, 0.3);
  transform: translateY(-1px);
}
.cta-btn-green-outline {
  color: #0a7554;
  background: #fff;
  border: 2px solid #a8dfc8;
}
.cta-btn-green-outline:hover {
  background: #edf8f2;
  border-color: #0a7554;
  transform: translateY(-1px);
}
.cta-bottom {
  margin: 20px 0;
  border: 1px solid #dad9d4;
  border-radius: 16px;
  background: #faf9f5;
  padding: 22px;
}
.cta-bottom-title {
  margin: 0 0 14px;
  font-size: 1.1rem;
  font-weight: 800;
  color: #3d3929;
}
.cta-bottom-grid {
  display: grid;
  gap: 10px;
}
.cta-bottom-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border: 1px solid #dad9d4;
  border-radius: 12px;
  background: #fff;
  padding: 16px 18px;
  text-decoration: none;
  transition: all 0.18s ease;
}
.cta-bottom-card:hover {
  border-color: #b4b2a7;
  box-shadow: 0 4px 16px rgba(196, 97, 46, 0.08);
  transform: translateY(-1px);
}
.cta-bottom-label {
  font-size: 0.9rem;
  font-weight: 800;
}
.cta-label-amber { color: #7f4c00; }
.cta-label-blue { color: #c96442; }
.cta-label-green { color: #0c5d44; }
.cta-bottom-desc {
  font-size: 0.86rem;
  color: #6e6d68;
  line-height: 1.45;
}

/* Stats bar */
.stats-bar {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  text-align: center;
}

.stat-item {
  border: 1px solid #dad9d4;
  border-radius: 12px;
  background: #fff;
  padding: 14px 10px;
  text-decoration: none;
  transition: all 0.18s ease;
}

.stat-item:hover {
  border-color: #b4b2a7;
  background: #faf9f5;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(45, 30, 15, 0.08);
}

.stat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #3d3929;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.stat-label {
  display: block;
  margin-top: 2px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #6e6d68;
  letter-spacing: 0.02em;
}

/* Atlas featured strip */
.atlas-strip {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 2px solid #b4b2a7;
  border-radius: 14px;
  background: linear-gradient(135deg, #faf9f5 0%, #f5f4ef 100%);
  padding: 16px 20px;
}

.atlas-strip-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: #c96442;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.atlas-strip-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.atlas-strip-body strong {
  color: #3d3929;
  font-size: 1.04rem;
}

.atlas-strip-body > span {
  color: #6e6d68;
  font-size: 0.9rem;
  line-height: 1.45;
}

.atlas-strip-link {
  color: #a84f22;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.atlas-strip-link:hover {
  color: #535146;
}

/* Homepage authority strip */
.hp-authority {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid #dad9d4;
  border-radius: 14px;
  background: #fff;
  padding: 16px 20px;
}

.hp-authority-photo {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid #dad9d4;
  box-shadow: 0 4px 10px rgba(45, 30, 15, 0.12);
  flex-shrink: 0;
}

.hp-authority-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hp-authority-body strong {
  color: #3d3929;
  font-size: 1.02rem;
}

.hp-authority-body span {
  color: #6e6d68;
  font-size: 0.88rem;
  line-height: 1.45;
}

.hp-authority-body a {
  color: #a84f22;
  font-weight: 700;
}

.hp-authority-body a:hover {
  color: #535146;
}

/* Homepage proof line */
.hp-proof-line {
  margin: 14px 0 0 !important;
  text-align: center;
  color: #6e6d68 !important;
  font-size: 0.88rem !important;
  font-weight: 600;
  line-height: 1.5;
}

/* Homepage video grid */
.hp-video-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.hp-video-card {
  border: 1px solid #dad9d4;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  text-decoration: none;
  transition: all 0.2s ease;
}

.hp-video-card:hover {
  border-color: #b4b2a7;
  box-shadow: 0 8px 18px rgba(45, 30, 15, 0.1);
  transform: translateY(-2px);
}

.hp-video-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.hp-video-card span {
  display: block;
  padding: 10px 12px;
  color: #3d3929;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.35;
}

@media (max-width: 980px) {
  .hp-video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .hp-authority {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
  }

}

@media (max-width: 460px) {
  .hp-video-grid {
    grid-template-columns: 1fr;
  }
}

/* Homepage "why buy" strip */
.hp-whybuy {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: 3px solid var(--brand);
  border-radius: 8px;
  background: #f5f4ef;
  padding: 14px 16px;
}

.hp-whybuy strong {
  color: #3d3929;
  font-size: 0.98rem;
}

.hp-whybuy span {
  color: #6e6d68;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Homepage latest articles */
.hp-latest-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.hp-latest-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border: 1px solid #dad9d4;
  border-radius: 12px;
  background: #fff;
  padding: 14px;
  text-decoration: none;
  transition: all 0.18s ease;
}

.hp-latest-card:hover {
  border-color: #b4b2a7;
  background: #faf9f5;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(45, 30, 15, 0.08);
}

.hp-latest-card strong {
  color: #3d3929;
  font-size: 0.92rem;
  line-height: 1.3;
}

.hp-latest-card span {
  color: #6e6d68;
  font-size: 0.82rem;
}

@media (max-width: 980px) {
  .hp-latest-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 460px) {
  .hp-latest-grid {
    grid-template-columns: 1fr;
  }

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

  .operator-quotes {
    grid-template-columns: 1fr;
  }
}

/* Homepage persona cards */
.hp-persona-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.hp-persona-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.hp-persona-card {
  border: 1px solid #dad9d4;
  border-radius: 16px;
  background: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.hp-persona-card-featured {
  border-color: #c8b26b;
  background: #fff;
}

.hp-persona-card:hover {
  border-color: #b4b2a7;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.hp-persona-role {
  display: inline-block;
  width: max-content;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 999px;
  padding: 4px 10px;
  border: 1px solid #dad9d4;
  background: #f5f4ef;
  color: #535146;
  margin-bottom: 8px;
}

.hp-persona-badges .hp-persona-role {
  margin-bottom: 0;
}

.hp-persona-flag {
  display: inline-block;
  width: max-content;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 3px 8px;
  border: 1px solid #d8c089;
  background: #fff3cf;
  color: #8b5d00;
}

.hp-persona-card h3 {
  margin: 0 0 3px;
  font-size: 1.08rem;
  color: #3d3929;
}

.hp-persona-card > p {
  margin: 0;
  color: #6e6d68;
  font-size: 0.82rem;
  line-height: 1.35;
}

.hp-persona-fit {
  margin-top: 7px !important;
  color: #535146 !important;
  font-weight: 600;
  flex: 1;
}

.hp-persona-price {
  margin: 12px 0 0 !important;
  font-size: 1.45rem !important;
  font-weight: 800;
  color: #3d3929 !important;
  line-height: 1;
}

.hp-persona-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #e9e6dc;
  align-items: center;
  justify-content: flex-end;
}

.hp-buy,
.hp-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 8px 16px;
  min-height: 36px;
  font-weight: 700;
  font-size: 0.82rem;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: all 0.18s;
}

.hp-buy {
  flex: 0 0 auto;
  background: #c96442;
  color: #fff;
  border: 0;
  border-radius: 8px;
}

.hp-buy:hover {
  background: #a84f22;
  transform: translateY(-1px);
}

.hp-detail {
  flex: 0 0 auto;
  border: none;
  background: transparent;
  color: #535146;
  font-weight: 600;
}

.hp-detail:hover {
  color: #3d3929;
}

/* Homepage bundle strip */
.hp-bundle {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 2px solid #0a7554;
  border-radius: 14px;
  background: linear-gradient(135deg, #f0faf4 0%, #e8f5ef 100%);
  padding: 18px 22px;
  text-decoration: none;
  transition: all 0.18s ease;
}

.hp-bundle:hover {
  border-color: #065f43;
  box-shadow: 0 8px 20px rgba(10, 117, 84, 0.12);
  transform: translateY(-1px);
}

.hp-bundle-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hp-bundle-body strong {
  color: #0a4f3a;
  font-size: 1.1rem;
}

.hp-bundle-body s {
  color: #6e6d68;
}

.hp-bundle-body > span {
  color: #2d4a3a;
  font-size: 0.9rem;
}

.hp-bundle-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border-radius: 10px;
  padding: 0 18px;
  background: #0a7554;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  white-space: nowrap;
}

.hp-guarantee-bar {
  margin-top: 14px;
  border: 1px solid #dad9d4;
  border-radius: 14px;
  background: #faf9f5;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hp-guarantee-bar strong {
  color: #3d3929;
  font-size: 0.96rem;
}

.hp-guarantee-bar span {
  color: #6e6d68;
  font-size: 0.88rem;
  line-height: 1.45;
}

.resource-kicker {
  margin: 18px 0 0;
  color: #c96442;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Homepage free skills */
.hp-free-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.hp-free-card {
  border: 1px solid #dad9d4;
  border-radius: 12px;
  background: #fff;
  padding: 14px;
  text-decoration: none;
  transition: all 0.18s ease;
}

.hp-free-card:hover {
  border-color: #0a7554;
  background: #f6fdf9;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(10, 117, 84, 0.08);
}

.hp-free-card h3 {
  margin: 0 0 6px;
  font-size: 0.98rem;
  color: #3d3929;
}

.hp-free-pill {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 7px;
  border-radius: 999px;
  border: 1px solid #a8dfc8;
  background: #edf8f2;
  font-size: 0.68rem;
  font-weight: 800;
  color: #0a7554;
  vertical-align: middle;
}

.hp-free-card p {
  margin: 0;
  color: #6e6d68;
  font-size: 0.84rem;
  line-height: 1.4;
}

@media (max-width: 980px) {
  .hp-persona-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hp-free-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .hp-bundle {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 16px;
  }
}

@media (max-width: 460px) {
  .hp-persona-grid {
    grid-template-columns: 1fr;
  }

  .hp-free-grid {
    grid-template-columns: 1fr;
  }

  .hp-persona-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 92px);
  }

  .hp-detail {
    flex-basis: auto;
  }

  .hp-bundle-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Category browse grid */
.category-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  border: 1px solid #dad9d4;
  border-radius: 14px;
  background: #faf9f5;
  padding: 18px 12px;
  text-decoration: none;
  transition: all 0.18s ease;
}

.category-card:hover {
  border-color: #b4b2a7;
  background: #f5f4ef;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(45, 30, 15, 0.08);
}

.category-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.category-card strong {
  color: #3d3929;
  font-size: 1rem;
}

.category-card span:last-child {
  color: #6e6d68;
  font-size: 0.86rem;
  line-height: 1.35;
}

.cta-community-actions-single {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 980px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .atlas-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
  }

}

@media (max-width: 460px) {
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .stat-num {
    font-size: 1.5rem;
  }

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

/* Testimonial screenshots */
.hp-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 14px;
}
.hp-testimonial-img {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hp-testimonial-img:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
@media (max-width: 640px) {
  .hp-testimonial-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Marketplace v2 Card Design ===== */
.mp-hero-v2 {
  text-align: center;
  padding: 48px 20px 32px;
}
.mp-hero-v2 h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 12px;
}
.mp-hero-v2 .mp-subtitle {
  margin: 0 auto 28px;
  max-width: 600px;
  color: var(--subtext);
  font-size: 1.05rem;
  line-height: 1.5;
}
.mp-hero-search {
  max-width: 640px;
  margin: 0 auto 32px;
  position: relative;
}
.mp-hero-search input {
  width: 100%;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 18px 0 48px;
  font-size: 1rem;
  background: #fff;
  color: var(--ink);
  outline: none;
}
.mp-hero-search input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(201, 100, 66, 0.12);
}
.mp-hero-search svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--subtext);
}
.mp-stats-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 0 20px;
}
.mp-stat {
  text-align: center;
}
.mp-stat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.02em;
}
.mp-stat-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--subtext);
  margin-top: 2px;
}

.mp-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 16px;
  padding: 0 4px;
}
.mp-section-head h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 800;
}
.mp-section-head p {
  margin: 4px 0 0;
  color: var(--subtext);
  font-size: 0.88rem;
}
.mp-section-head a {
  color: var(--brand);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
}

.mp-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.mp-card-v2 {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: all 0.2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.mp-card-v2:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.mp-card-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.mp-card-avatar {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--brand);
  flex-shrink: 0;
}
.mp-card-avatar img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
}
.mp-card-info {
  flex: 1;
  min-width: 0;
}
.mp-card-info h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.25;
}
.mp-card-type {
  display: block;
  color: var(--subtext);
  font-size: 0.8rem;
  margin-top: 2px;
}
.mp-card-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
  white-space: nowrap;
  margin-left: auto;
  padding-left: 8px;
}
.mp-card-price-free {
  color: var(--brand);
}

.mp-card-desc {
  margin: 0 0 auto;
  color: var(--subtext);
  font-size: 0.86rem;
  line-height: 1.5;
  padding-bottom: 12px;
}

.mp-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.mp-tag {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--subtext);
  background: var(--surface);
}
.mp-tag-green {
  border-color: #a8dfc8;
  background: #edf8f2;
  color: #0a7554;
}

.mp-card-bottom {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.mp-card-author {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 0;
  font-size: 0.82rem;
  color: var(--subtext);
  font-weight: 600;
}
.mp-card-author img {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  object-fit: cover;
}
.mp-card-view {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--subtext);
  text-decoration: none;
}
.mp-card-view:hover {
  color: var(--ink);
}
.mp-card-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  border: 0;
  transition: all 0.15s;
}
.mp-card-buy:hover {
  background: var(--brand-dark);
}

/* How it works */
.mp-how {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 20px 0 40px;
}
.mp-how-step {
  text-align: left;
}
.mp-how-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--brand);
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 10px;
}
.mp-how-step h3 {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 800;
}
.mp-how-step p {
  margin: 0;
  color: var(--subtext);
  font-size: 0.86rem;
  line-height: 1.45;
}

/* Divider */
.mp-divider {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 32px 0;
}

@media (max-width: 768px) {
  .mp-grid-v2 { grid-template-columns: 1fr; }
  .mp-stats-row { gap: 24px; flex-wrap: wrap; }
  .mp-how { grid-template-columns: 1fr; gap: 16px; }
  .mp-section-head { flex-direction: column; gap: 4px; }
}

/* ===== Product Detail Pages (PDP) ===== */
.pdp { width: min(100%, 1100px); margin: 0 auto; padding: 30px 22px 72px; }
.pdp-back { display: inline-flex; align-items: center; gap: 6px; font-size: 0.88rem; font-weight: 600; color: var(--subtext); text-decoration: none; margin-bottom: 16px; }
.pdp-back:hover { color: var(--ink); }
.pdp-header { margin-bottom: 24px; }
.pdp-header h1 { margin: 6px 0 10px; font-size: clamp(1.8rem, 3.5vw, 2.4rem); line-height: 1.12; color: var(--ink); }
.pdp-lead { margin: 0 0 14px; font-size: 1.05rem; color: var(--subtext); line-height: 1.5; max-width: 700px; }
.pdp-meta { display: flex; gap: 8px; flex-wrap: wrap; }
.pdp-meta span { border: 1px solid var(--line); background: var(--surface); color: #535146; border-radius: 999px; font-size: 0.78rem; font-weight: 800; padding: 4px 9px; }

.pdp-grid { display: grid; grid-template-columns: 1fr 320px; gap: 28px; align-items: start; }

.pdp-main { border: 1px solid var(--line); border-radius: 16px; background: #fff; padding: 28px; overflow: hidden; }
.pdp-main h2 { margin: 24px 0 10px; font-size: 1.35rem; color: var(--ink); }
.pdp-main h2:first-child { margin-top: 0; }
.pdp-main h3 { margin: 16px 0 8px; font-size: 1.02rem; color: #535146; }
.pdp-main p { margin: 0 0 10px; color: var(--subtext); line-height: 1.7; }
.pdp-main ul, .pdp-main ol { margin: 8px 0 16px; padding-left: 22px; }
.pdp-main li { margin-bottom: 10px; color: var(--subtext); line-height: 1.6; }
.pdp-main strong { color: #535146; }
.pdp-main a { color: #535146; font-weight: 700; }
.pdp-main pre { max-width: 100%; overflow-x: auto; }
.pdp-main img { max-width: 100%; height: auto; }
.pdp-section { border-top: 1px solid #eeede8; padding-top: 20px; margin-top: 20px; }
.pdp-section:first-child { border-top: 0; padding-top: 0; margin-top: 0; }
.pdp-demo-kicker { margin: 0; color: #8d846e; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.pdp-demo-summary { margin-bottom: 0; }
.pdp-demo-shell { margin-top: 16px; border: 1px solid #d9d4c6; border-radius: 16px; overflow: hidden; background: #fffdfa; }
.pdp-demo-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 16px; border-bottom: 1px solid #e8e3d6; background: #f8f3ea; }
.pdp-demo-frame { font-size: 0.78rem; font-weight: 700; color: var(--ink); }
.pdp-demo-tag { border: 1px solid #d6ceba; border-radius: 999px; background: #fff; padding: 4px 9px; font-size: 0.66rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: #8d846e; }
.pdp-demo-output { margin: 0; padding: 18px 16px; background: #191712; color: #f7f4eb; font-size: 0.82rem; line-height: 1.75; white-space: pre-wrap; }

.pdp-sidebar { position: sticky; top: 80px; display: flex; flex-direction: column; gap: 16px; }
.pdp-card { border: 1px solid var(--line); border-radius: 16px; background: #fff; padding: 22px; }
.pdp-price { font-size: 1.8rem; font-weight: 800; color: var(--ink); margin: 0 0 4px; }
.pdp-price-label { font-size: 0.82rem; color: #a09d93; margin: 0 0 16px; }
.pdp-buy-btn { display: flex; align-items: center; justify-content: center; width: 100%; min-height: 48px; border: 0; border-radius: 10px; background: var(--brand); color: #fff; font-size: 1rem; font-weight: 800; cursor: pointer; transition: all 0.15s; }
.pdp-buy-btn:hover { filter: brightness(1.08); transform: translateY(-1px); }

.pdp-creator { display: flex; align-items: center; gap: 12px; }
.pdp-creator img { width: 44px; height: 44px; border-radius: 50%; }
.pdp-creator-name { font-weight: 800; color: var(--ink); font-size: 0.92rem; }
.pdp-creator-role { font-size: 0.8rem; color: #a09d93; }
.pdp-creator-link { display: inline-block; margin-top: 10px; font-size: 0.82rem; font-weight: 700; color: var(--brand); text-decoration: none; }
.pdp-creator-bio { margin: 10px 0 0; font-size: 0.82rem; color: var(--subtext); line-height: 1.5; }

.pdp-details { margin: 0; padding: 0; list-style: none; }
.pdp-details li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #f0efea; font-size: 0.85rem; }
.pdp-details li:last-child { border-bottom: 0; }
.pdp-details .pdp-dl { color: #a09d93; }
.pdp-details .pdp-dv { color: var(--ink); font-weight: 700; }

.pdp-works { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 8px; }
.pdp-works span { border: 1px solid var(--line); background: var(--surface); color: #535146; border-radius: 6px; font-size: 0.75rem; font-weight: 600; padding: 3px 8px; }

.pdp-card-heading { margin: 0 0 10px; font-size: 0.92rem; color: var(--ink); }

.pdp-review { border: 1px solid var(--line); border-radius: 12px; padding: 18px; margin-bottom: 12px; }
.pdp-review-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.pdp-review-stars { color: var(--brand); font-size: 0.9rem; }
.pdp-review-date { font-size: 0.75rem; color: #a09d93; }
.pdp-review-title { margin: 0 0 4px; font-weight: 800; color: var(--ink); font-size: 0.95rem; }
.pdp-review-body { margin: 0 0 8px; color: var(--subtext); font-size: 0.88rem; line-height: 1.6; }
.pdp-review-badge { font-size: 0.75rem; color: #a09d93; }

.pdp-faq-item + .pdp-faq-item { margin-top: 14px; }
.pdp-faq-item h3 { margin: 0 0 4px; font-size: 0.95rem; color: var(--ink); }
.pdp-faq-item p { margin: 0; font-size: 0.88rem; }

.pdp-compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pdp-compare-card { padding: 14px 16px; border-radius: 8px; background: var(--surface); border: 1px solid var(--line); }
.pdp-compare-label { margin: 0 0 4px; font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: #535146; }
.pdp-compare-value { margin: 0; font-size: 0.95rem; font-weight: 700; color: var(--ink); }

.pdp-testimonial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pdp-testimonial-grid img { width: 100%; border-radius: 8px; border: 1px solid #ddd; }

/* Related products */
.pdp-related { width: min(100%, 1100px); margin: 0 auto; padding: 0 22px 72px; }
.pdp-related h2 { margin: 0 0 16px; font-size: 1.35rem; color: var(--ink); }
.pdp-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pdp-related-card { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 16px; background: #fff; padding: 20px; text-decoration: none; transition: all 0.2s; box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
.pdp-related-card:hover { border-color: #b4b2a7; box-shadow: 0 4px 16px rgba(0,0,0,0.08); transform: translateY(-2px); }
.pdp-related-card h3 { margin: 0 0 6px; font-size: 1.02rem; color: var(--ink); line-height: 1.25; }
.pdp-related-card p { margin: 0 0 auto; color: var(--subtext); font-size: 0.86rem; line-height: 1.5; padding-bottom: 12px; }
.pdp-related-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--line); }
.pdp-related-type { font-size: 0.72rem; font-weight: 700; padding: 3px 8px; border-radius: 999px; border: 1px solid var(--line); background: var(--surface); color: #535146; }
.pdp-related-price { font-size: 1rem; font-weight: 800; color: var(--ink); }
.pdp-related-price-free { color: var(--brand); }

@media (max-width: 768px) {
  .pdp { padding: 20px 14px 56px; }
  .pdp-grid { grid-template-columns: 1fr; }
  .pdp-sidebar { position: static; }
  .pdp-main { padding: 18px; }
  .pdp-compare-grid { grid-template-columns: 1fr; }
  .pdp-testimonial-grid { grid-template-columns: 1fr; }
  .pdp-related { padding: 0 14px 56px; }
  .pdp-related-grid { grid-template-columns: 1fr; }
}
