@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Sora:wght@600;700;800&display=swap');

:root {
	--green-950: #071a0f;
	--green-925: #0a2415;
	--green-900: #0f3d24;
	--green-800: #16532f;
	--green-600: #1f8a4c;
	--green-500: #29a862;
	--gold: #cba14a;
	--gold-light: #e6c878;
	--cream: #f4f8f5;
	--ink: #111827;
	--muted: #5f6b63;
	--danger: #ef4444;
	--max: 1180px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--green-950);
	color: #fff;
	font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	line-height: 1.6;
	text-rendering: optimizeLegibility;
}

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

a {
	color: inherit;
}

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

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

.container.narrow {
	--max: 780px;
}

.container.medium {
	--max: 920px;
}

.skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 1000;
	transform: translateY(-150%);
	background: #fff;
	color: var(--ink);
	padding: 10px 14px;
	border-radius: 8px;
}

.skip-link:focus {
	transform: translateY(0);
}

.icon {
	width: 1.25em;
	height: 1.25em;
	flex: 0 0 auto;
}

.site-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 100;
	padding: 20px 0;
	transition: background-color .25s ease, box-shadow .25s ease, padding .25s ease;
}

.admin-bar .site-header {
	top: 32px;
}

.site-header.is-scrolled {
	padding: 12px 0;
	background: rgb(10 36 21 / 95%);
	backdrop-filter: blur(14px);
	box-shadow: 0 16px 40px rgb(0 0 0 / 18%);
}

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

.site-logo img,
.custom-logo,
.footer-logo img {
	width: auto;
	height: 48px;
	max-width: 180px;
	object-fit: contain;
}

.primary-menu,
.footer-menu {
	display: flex;
	align-items: center;
	gap: 22px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-menu a,
.footer-menu a {
	text-decoration: none;
	font-weight: 700;
	color: rgb(255 255 255 / 78%);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border: 0;
	text-decoration: none;
	border-radius: 12px;
	padding: 12px 22px;
	font-weight: 800;
	line-height: 1.15;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
	cursor: pointer;
}

.button:hover {
	transform: translateY(-2px);
}

.button-gold {
	color: var(--green-925);
	background: linear-gradient(90deg, var(--gold), var(--gold-light));
	box-shadow: 0 0 30px rgb(203 161 74 / 32%);
}

.button-large {
	font-size: clamp(.98rem, 1.4vw, 1.12rem);
	padding: 15px 24px;
}

.button.full {
	width: 100%;
}

.section-dark,
.section-light,
.section-muted {
	position: relative;
}

.section-light {
	background: #fff;
	color: var(--ink);
}

.section-muted {
	background: var(--cream);
	color: var(--ink);
}

.hero-section {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	padding-top: 118px;
	text-align: left;
}

.hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgb(7 26 15 / 92%), rgb(7 26 15 / 66%) 55%, rgb(7 26 15 / 40%));
}

.hero-vignette {
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, var(--green-950), transparent 42%, rgb(7 26 15 / 48%));
}

.hero-content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: space-between;
	flex: 1;
	padding-bottom: 48px;
}

.glass {
	background: rgb(255 255 255 / 8%);
	backdrop-filter: blur(14px);
	border: 1px solid rgb(255 255 255 / 14%);
}

.hero-badges,
.eyebrow {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 28px;
}

.hero-badge,
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 16px;
	border-radius: 999px;
	background: rgb(10 36 21 / 70%);
	backdrop-filter: blur(12px);
	border: 1px solid rgb(203 161 74 / 40%);
	color: #fff;
	font-size: .82rem;
	font-weight: 800;
	width: fit-content;
}

.hero-badge .icon {
	width: 16px;
	height: 16px;
}

.hero-badge-gold .icon {
	color: var(--gold);
}

.hero-badge-green {
	background: rgb(22 83 47 / 80%);
	border-color: rgb(140 198 62 / 40%);
	text-transform: uppercase;
	letter-spacing: .03em;
}

.hero-badge-green .icon,
.hero-badge-green span {
	color: #8cc63e;
}

.eyebrow span {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--gold);
	animation: pulse 1.4s ease-in-out infinite;
}

.hero-section h1,
.final-cta h2,
.section-heading h2,
.entry-title,
.archive-header h1 {
	font-family: 'Sora', system-ui, sans-serif;
	line-height: 1.1;
	letter-spacing: 0;
}

.hero-section h1 {
	max-width: 640px;
	margin: 0 0 18px;
	color: #fff;
	font-size: clamp(2rem, 2.75vw, 3.05rem);
	font-weight: 800;
	text-transform: uppercase;
	text-wrap: balance;
	filter: drop-shadow(0 10px 24px rgb(0 0 0 / 30%));
}

.hero-title-line {
	display: block;
	color: #fff;
}

.hero-section h1 .hero-highlight,
.current-price,
.gold-title,
.bonus-label {
	color: #8cc63e;
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(420px, .78fr);
	gap: clamp(34px, 5vw, 88px);
	align-items: start;
}

.hero-copy {
	min-width: 0;
}

.hero-subtitle {
	display: inline;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	margin: 0 0 18px;
	padding: 2px 6px;
	background: var(--gold);
	color: #fff;
	font-size: clamp(.84rem, 1vw, 1rem);
	font-weight: 800;
	line-height: 1.32;
	text-transform: uppercase;
}

.hero-lead {
	max-width: 540px;
	margin: 18px 0 28px;
	color: rgb(255 255 255 / 84%);
	font-size: clamp(.9rem, 1vw, 1.02rem);
	font-weight: 600;
}

.hero-book {
	width: min(var(--hero-book-size, 520px), 86vw);
	margin: -4px 0 20px;
}

.hero-book img {
	display: block;
	width: 100%;
	height: auto;
	filter: drop-shadow(0 24px 30px rgb(0 0 0 / 38%));
}

.hero-buy {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 22px;
	margin-bottom: 24px;
}

.price-row {
	display: flex;
	align-items: baseline;
	justify-content: flex-start;
	gap: 12px;
	margin-bottom: 0;
}

.old-price {
	color: rgb(255 255 255 / 36%);
	font-family: 'Sora', system-ui, sans-serif;
	font-size: 1.1rem;
	text-decoration: line-through;
}

.current-price {
	color: var(--gold);
	font-family: 'Sora', system-ui, sans-serif;
	font-size: clamp(2.25rem, 2.9vw, 3rem);
	font-weight: 800;
	line-height: 1;
}

.hero-side {
	position: relative;
	justify-self: end;
	align-self: end;
	display: flex;
	justify-content: flex-end;
	width: min(100%, 360px);
	padding-top: 0;
}

.hero-business-card {
	width: 100%;
	min-height: 230px;
	padding: 22px 24px;
	border-color: rgb(140 198 62 / 32%);
	border-radius: 16px;
	background: rgb(255 255 255 / 12%);
	box-shadow: 0 0 42px rgb(140 198 62 / 15%);
}

.hero-business-card h2 {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin: 0 0 16px;
	color: #fff;
	font-family: 'Sora', system-ui, sans-serif;
	font-size: clamp(1rem, 1.1vw, 1.18rem);
	line-height: 1.35;
}

.hero-business-card h2 span {
	color: #8cc63e;
}

.hero-business-card ul {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hero-business-card li {
	display: flex;
	align-items: center;
	gap: 10px;
	color: rgb(255 255 255 / 88%);
	font-size: clamp(.82rem, .9vw, .96rem);
	font-weight: 700;
}

.hero-business-card i,
.hero-feature i {
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	width: 34px;
	height: 34px;
	border-radius: 8px;
	background: var(--green-800);
	color: #8cc63e;
	font-style: normal;
}

.hero-business-card .icon {
	width: 18px;
	height: 18px;
}

.hero-income-badge {
	position: absolute;
	left: -22px;
	bottom: -18px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 84px;
	height: 84px;
	border: 2px solid var(--gold);
	border-radius: 50%;
	background: var(--green-925);
	box-shadow: 0 0 30px rgb(203 161 74 / 50%);
	animation: floaty 5s ease-in-out infinite;
	text-align: center;
}

.hero-income-badge strong {
	color: var(--gold);
	font-family: 'Sora', system-ui, sans-serif;
	font-size: 1.08rem;
	line-height: 1;
}

.hero-income-badge span {
	margin-top: 4px;
	color: #fff;
	font-size: .52rem;
	font-weight: 800;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.hero-income-badge small {
	color: rgb(255 255 255 / 68%);
	font-size: .48rem;
}

.hero-feature-strip {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	margin-top: 72px;
}

.hero-feature {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 16px 18px;
	border: 1px solid rgb(255 255 255 / 10%);
	border-radius: 13px;
	background: rgb(255 255 255 / 8%);
	backdrop-filter: blur(14px);
}

.hero-feature i {
	width: 44px;
	height: 44px;
	border-radius: 11px;
}

.hero-feature .icon {
	width: 22px;
	height: 22px;
}

.hero-feature h3 {
	margin: 0;
	color: #fff;
	font-size: .86rem;
	font-weight: 800;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.hero-feature p {
	margin: 3px 0 0;
	color: rgb(255 255 255 / 68%);
	font-size: .82rem;
	line-height: 1.35;
}

.hero-slogan {
	position: relative;
	z-index: 1;
	background: rgb(10 36 21 / 90%);
	backdrop-filter: blur(12px);
	border-top: 1px solid rgb(140 198 62 / 30%);
}

.hero-slogan-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding-top: 16px;
	padding-bottom: 16px;
}

.hero-slogan p {
	margin: 0;
	color: #fff;
	font-family: 'Sora', system-ui, sans-serif;
	font-size: clamp(.9rem, 1.05vw, 1rem);
	font-weight: 800;
	letter-spacing: .04em;
}

.hero-slogan p span {
	color: #8cc63e;
}

.hero-slogan a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 11px 20px;
	border-radius: 10px;
	background: #fff;
	color: var(--green-925);
	text-decoration: none;
	font-size: .9rem;
	font-weight: 800;
	white-space: nowrap;
}

.hero-slogan a .icon {
	width: 17px;
	height: 17px;
}

.problem-section,
.inside-section,
.audience-section,
.pricing-section,
.testimonials-section,
.faq-section {
	padding: 96px 0;
}

.section-heading {
	margin: 0 auto 48px;
	text-align: center;
}

.section-heading h2 {
	margin: 0 0 18px;
	color: var(--ink);
	font-size: clamp(2rem, 4.4vw, 3.1rem);
	font-weight: 800;
}

.section-heading p {
	margin: 0 auto;
	max-width: 740px;
	color: var(--muted);
	font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.display-subtitle {
	color: var(--ink) !important;
	font-family: 'Sora', system-ui, sans-serif;
}

.green-subtitle {
	color: var(--green-600) !important;
	font-family: 'Sora', system-ui, sans-serif;
}

.problem-list {
	display: grid;
	gap: 16px;
}

.problem-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 16px;
	border: 1px solid #fee2e2;
	border-radius: 14px;
	background: #fef2f2;
}

.problem-item .icon {
	color: var(--danger);
	width: 26px;
	height: 26px;
	margin-top: 2px;
}

.problem-item p,
.solution-card p {
	margin: 0;
	color: #4b5563;
}

.solution-card {
	margin-top: 40px;
	padding: clamp(28px, 5vw, 42px);
	border: 1px solid rgb(31 138 76 / 20%);
	border-radius: 20px;
	background: var(--cream);
	text-align: center;
	box-shadow: 0 8px 26px rgb(17 24 39 / 6%);
}

.solution-icon,
.feature-icon {
	display: grid;
	place-items: center;
	width: 72px;
	height: 72px;
	margin: 0 auto 20px;
	border-radius: 50%;
	background: var(--green-800);
	color: var(--gold-light);
}

.solution-card h3 {
	margin: 0 0 10px;
	font-family: 'Sora', system-ui, sans-serif;
	font-size: 1.55rem;
}

.solution-card blockquote {
	margin: 26px 0 0;
	padding: 16px;
	border-radius: 12px;
	border: 1px solid rgb(31 138 76 / 30%);
	background: var(--green-925);
	color: var(--gold);
	font-weight: 700;
}

.inside-list {
	overflow: hidden;
	border: 1px solid #edf0ed;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 8px 26px rgb(17 24 39 / 5%);
}

.inside-item {
	padding: clamp(24px, 4vw, 36px);
	border-bottom: 1px solid #edf0ed;
}

.inside-item:last-child {
	border-bottom: 0;
}

.inside-title {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 18px;
}

.inside-title .feature-icon {
	width: 52px;
	height: 52px;
	margin: 0;
	border-radius: 14px;
}

.inside-title h3 {
	margin: 0;
	font-family: 'Sora', system-ui, sans-serif;
	font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.inside-item ul,
.audience-card ul,
.bonus-list,
.pricing-benefits {
	margin: 0;
	padding: 0;
	list-style: none;
}

.inside-item ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 24px;
	padding-left: 70px;
}

.inside-item li,
.pricing-benefits li,
.bonus-list li,
.audience-card li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	color: #59645d;
}

.inside-item li .icon,
.bonus-list li .icon,
.pricing-benefits .icon,
.audience-card li .icon {
	color: var(--green-500);
	margin-top: 3px;
}

.audience-card {
	padding: clamp(26px, 5vw, 48px);
	border-radius: 22px;
	box-shadow: 0 8px 26px rgb(17 24 39 / 5%);
}

.audience-card + .audience-card {
	margin-top: 28px;
}

.audience-card.good {
	border: 1px solid rgb(41 168 98 / 30%);
	background: var(--cream);
}

.audience-card.bad {
	border: 1px solid #fee2e2;
	background: #fef2f2;
}

.audience-card h3 {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 26px;
	font-size: clamp(1.25rem, 2.4vw, 1.65rem);
}

.audience-card.bad h3,
.audience-card.bad li {
	color: #6b7280;
}

.audience-card.bad .icon {
	color: #f87171;
}

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

.audience-card li {
	font-size: 1.08rem;
}

.pricing-card {
	overflow: hidden;
	border: 1px solid rgb(203 161 74 / 48%);
	border-radius: 24px;
	background: linear-gradient(180deg, var(--green-800), var(--green-925));
	color: #fff;
	box-shadow: 0 0 0 1px rgb(203 161 74 / 40%), 0 20px 60px -15px rgb(203 161 74 / 35%);
}

.pricing-head,
.pricing-body {
	padding: clamp(28px, 5vw, 48px);
}

.pricing-head {
	border-bottom: 1px solid rgb(255 255 255 / 10%);
	text-align: center;
}

.pricing-head p {
	margin: 0 0 8px;
	color: rgb(255 255 255 / 58%);
}

.pricing-head p span {
	text-decoration: line-through;
}

.pricing-price {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 12px;
	margin-bottom: 18px;
}

.pricing-price span {
	color: rgb(255 255 255 / 68%);
	font-size: clamp(1.35rem, 3vw, 2rem);
}

.pricing-price strong {
	color: var(--gold);
	font-family: 'Sora', system-ui, sans-serif;
	font-size: clamp(4rem, 10vw, 5.5rem);
	line-height: 1;
}

.pricing-benefits {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px 22px;
}

.pricing-benefits li {
	color: rgb(255 255 255 / 72%);
	font-size: .95rem;
}

.pricing-body h3 {
	margin: 0 0 22px;
	padding-bottom: 16px;
	border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.numbered-list {
	counter-reset: includes;
	display: grid;
	gap: 14px;
	margin: 0 0 26px;
	padding: 0;
	list-style: none;
}

.numbered-list li {
	counter-increment: includes;
	display: grid;
	grid-template-columns: 34px 1fr;
	gap: 14px;
	align-items: start;
	color: rgb(255 255 255 / 78%);
}

.numbered-list li::before {
	content: counter(includes);
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 9px;
	background: rgb(203 161 74 / 15%);
	color: var(--gold);
	font-weight: 800;
}

.bonus-label {
	margin: 0 0 14px;
	font-size: .8rem;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.bonus-list {
	display: grid;
	gap: 14px;
	margin-bottom: 36px;
}

.bonus-list li {
	color: #fff;
	font-weight: 700;
}

.stars {
	display: flex;
	justify-content: center;
	gap: 4px;
	color: var(--gold);
}

.stars .icon,
.testimonial-card .watermark {
	fill: currentColor;
}

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

.testimonial-card,
.post-card {
	position: relative;
	padding: 28px;
	border: 1px solid #edf0ed;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 8px 26px rgb(17 24 39 / 5%);
}

.testimonial-card .watermark {
	position: absolute;
	top: 22px;
	right: 22px;
	width: 34px;
	height: 34px;
	color: rgb(203 161 74 / 20%);
}

.testimonial-card p {
	position: relative;
	z-index: 1;
	margin: 0 0 24px;
	color: #59645d;
}

.testimonial-card footer {
	display: flex;
	align-items: center;
	gap: 14px;
}

.initial {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--green-800);
	color: var(--gold-light);
	font-size: 1.25rem;
	font-weight: 800;
}

.testimonial-avatar {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	object-fit: cover;
	background: var(--green-800);
}

.testimonial-card h3 {
	margin: 0;
	font-size: 1rem;
}

.testimonial-card span {
	color: var(--green-600);
	font-size: .92rem;
}

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

.faq-item {
	overflow: hidden;
	border: 1px solid #edf0ed;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 8px 26px rgb(17 24 39 / 4%);
}

.faq-item button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 20px 24px;
	border: 0;
	background: transparent;
	color: var(--ink);
	font-weight: 800;
	text-align: left;
	cursor: pointer;
}

.faq-item button[aria-expanded="true"] .icon {
	transform: rotate(180deg);
	color: var(--green-600);
}

.faq-item .icon {
	transition: transform .2s ease;
}

.faq-answer {
	padding: 0 24px 22px;
	color: #59645d;
}

.faq-answer p {
	margin: 0;
}

.final-cta {
	overflow: hidden;
	padding: 128px 0;
	text-align: center;
}

.cta-overlay {
	position: absolute;
	inset: 0;
	background: rgb(7 26 15 / 82%);
}

.final-cta .container {
	position: relative;
	z-index: 1;
}

.final-cta h2 {
	margin: 0 0 24px;
	font-size: clamp(2.3rem, 6vw, 4rem);
}

.final-cta p {
	max-width: 680px;
	margin: 0 auto 42px;
	color: rgb(255 255 255 / 74%);
	font-size: 1.2rem;
}

.site-footer {
	padding: 48px 0;
	border-top: 1px solid rgb(255 255 255 / 5%);
	background: #05120a;
}

.copyright {
	margin: 0;
	color: rgb(255 255 255 / 42%);
	font-size: .92rem;
}

.whatsapp-widget {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 120;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.whatsapp-panel {
	width: min(340px, calc(100vw - 32px));
	margin-bottom: 14px;
	overflow: hidden;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 22px 70px rgb(0 0 0 / 28%);
	transform-origin: right bottom;
	animation: pop .2s ease;
}

.whatsapp-panel-header {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 14px;
	background: #075e54;
}

.whatsapp-avatar {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgb(255 255 255 / 18%);
	color: #fff;
}

.whatsapp-panel-header p {
	margin: 0;
	font-weight: 800;
	line-height: 1.2;
}

.whatsapp-panel-header span {
	display: flex;
	align-items: center;
	gap: 6px;
	color: rgb(255 255 255 / 72%);
	font-size: .78rem;
}

.whatsapp-panel-header i {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #25d366;
}

.icon-button {
	margin-left: auto;
	padding: 6px;
	border: 0;
	background: transparent;
	color: #fff;
	cursor: pointer;
}

.whatsapp-body {
	display: grid;
	gap: 8px;
	min-height: 130px;
	padding: 20px 16px;
	background: #e5ddd5;
}

.chat-bubble {
	width: 85%;
	padding: 9px 12px;
	border-radius: 14px 14px 14px 3px;
	background: #fff;
	color: #1f2937;
	box-shadow: 0 2px 8px rgb(0 0 0 / 8%);
}

.chat-bubble p {
	margin: 0;
	font-size: .88rem;
	line-height: 1.45;
}

.chat-bubble span {
	float: right;
	margin-top: 3px;
	color: #9ca3af;
	font-size: .68rem;
}

.whatsapp-start {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px;
	background: #25d366;
	color: #fff;
	font-weight: 800;
	text-decoration: none;
}

.whatsapp-toggle {
	position: relative;
	display: grid;
	place-items: center;
	width: 62px;
	height: 62px;
	border: 0;
	border-radius: 50%;
	background: #25d366;
	color: #fff;
	box-shadow: 0 14px 35px rgb(0 0 0 / 24%);
	cursor: pointer;
	animation: floaty 1.4s ease-in-out infinite;
}

.whatsapp-widget.is-open .whatsapp-toggle {
	animation: none;
}

.whatsapp-toggle .icon {
	position: relative;
	width: 32px;
	height: 32px;
}

.ping {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: #25d366;
	animation: ping 1.5s cubic-bezier(0, 0, .2, 1) infinite;
	opacity: .42;
}

.mobile-sticky-cta {
	display: none;
	position: fixed;
	inset: auto 0 0;
	z-index: 110;
	padding: 14px 16px;
	border-top: 1px solid rgb(255 255 255 / 10%);
	background: var(--green-925);
}

.mobile-sticky-cta .button {
	width: 100%;
}

/* WooCommerce checkout */
.woocommerce-checkout .content-layout {
	background: linear-gradient(180deg, var(--green-950) 0, var(--green-925) 240px, var(--cream) 240px);
	color: var(--ink);
}

.woocommerce-checkout .content-layout .container.narrow {
	--max: 1120px;
}

.woocommerce-checkout .entry {
	max-width: none;
}

.woocommerce-checkout .entry-header {
	margin-bottom: 22px;
	text-align: center;
}

.woocommerce-checkout .entry-title {
	color: #fff;
}

.somleaf-checkout-note {
	display: grid;
	gap: 6px;
	margin: 0 auto 24px;
	max-width: 760px;
	padding: 18px 20px;
	border: 1px solid rgb(203 161 74 / 34%);
	border-radius: 14px;
	background: rgb(10 36 21 / 72%);
	color: rgb(255 255 255 / 82%);
	box-shadow: 0 18px 50px rgb(0 0 0 / 16%);
	text-align: center;
}

.somleaf-checkout-note span {
	color: var(--gold);
	font-size: .78rem;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.somleaf-checkout-note strong {
	color: #fff;
	font-family: 'Sora', system-ui, sans-serif;
	font-size: clamp(1rem, 1.8vw, 1.28rem);
	line-height: 1.25;
}

.somleaf-checkout-note p {
	margin: 0;
	font-size: .94rem;
}

.woocommerce-checkout .woocommerce {
	color: var(--ink);
}

.woocommerce-checkout .woocommerce-notices-wrapper,
.woocommerce-checkout .woocommerce-form-coupon-toggle {
	max-width: 760px;
	margin-inline: auto;
}

.woocommerce-checkout .woocommerce-notices-wrapper {
	margin-bottom: 18px;
}

.woocommerce-checkout .woocommerce-notices-wrapper .woocommerce-message {
	display: none !important;
}

.woocommerce-checkout .woocommerce-info,
.woocommerce-checkout .woocommerce-message,
.woocommerce-checkout .woocommerce-error {
	border: 1px solid rgb(203 161 74 / 28%);
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 12px 34px rgb(10 36 21 / 9%);
	color: #374151;
}

.woocommerce-checkout .woocommerce-error {
	margin: 0;
	border-color: rgb(239 68 68 / 28%);
	background: #fff7f7;
	color: #7f1d1d;
}

.woocommerce-checkout form.checkout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
	gap: 28px;
	align-items: start;
	grid-auto-flow: dense;
	margin-top: 28px;
}

.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review,
.woocommerce-checkout form.checkout_coupon {
	border: 1px solid rgb(22 83 47 / 12%);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 6px 24px rgb(10 36 21 / 7%);
}

.woocommerce-checkout #customer_details {
	grid-column: 1;
	grid-row: 1;
	padding: 30px;
}

.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2 {
	float: none;
	width: 100%;
}

.woocommerce-checkout #customer_details .col-2 {
	display: none;
}

.woocommerce-checkout h3 {
	margin: 0 0 20px;
	color: var(--green-925);
	font-family: 'Sora', system-ui, sans-serif;
	font-size: clamp(1.25rem, 2.3vw, 1.7rem);
	line-height: 1.2;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper {
	display: grid;
	grid-template-columns: minmax(118px, 190px) minmax(0, 1fr);
	gap: 16px;
}

.woocommerce-checkout .form-row {
	float: none;
	width: 100%;
	margin: 0;
	padding: 0;
}

.woocommerce-checkout #billing_email_field,
.woocommerce-checkout #billing_first_name_field,
.woocommerce-checkout #billing_phone_country_code_field,
.woocommerce-checkout #billing_phone_field,
.woocommerce-checkout #billing_email,
.woocommerce-checkout #billing_first_name,
.woocommerce-checkout #billing_phone_country_code,
.woocommerce-checkout #billing_phone {
	width: 100% !important;
	max-width: none !important;
}

.woocommerce-checkout #billing_email_field,
.woocommerce-checkout #billing_first_name_field {
	grid-column: 1 / -1;
}

.woocommerce-checkout #billing_phone_country_code_field {
	grid-column: 1;
}

.woocommerce-checkout #billing_phone_field {
	grid-column: 2;
}

.woocommerce-checkout .form-row label {
	display: block;
	margin-bottom: 8px;
	color: var(--green-925);
	font-weight: 800;
}

.woocommerce-checkout .required {
	color: var(--gold);
}

.woocommerce-checkout .input-text,
.woocommerce-checkout select,
.woocommerce-checkout textarea,
.woocommerce-checkout .select2-container--default .select2-selection--single {
	width: 100%;
	min-height: 52px;
	border: 1px solid #dfe8e1;
	border-radius: 12px;
	background: #f9fbf8;
	color: var(--ink);
	box-shadow: none;
	font-size: 1rem;
	font-weight: 500;
	transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.woocommerce-checkout .input-text,
.woocommerce-checkout select,
.woocommerce-checkout textarea {
	padding: 13px 15px;
}

.woocommerce-checkout .input-text:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus,
.woocommerce-checkout .select2-container--open .select2-selection--single {
	outline: 0;
	border-color: var(--green-600);
	background: #fff;
	box-shadow: 0 0 0 4px rgb(41 168 98 / 13%);
}

.woocommerce-checkout #order_review_heading {
	grid-column: 2;
	display: none;
}

.woocommerce-checkout #order_review {
	position: sticky;
	top: 104px;
	grid-column: 2;
	grid-row: 1 / span 2;
	padding: 26px;
}

.woocommerce-checkout #order_review::before {
	content: 'Your order';
	display: block;
	margin: 0 0 18px;
	color: var(--green-925);
	font-family: 'Sora', system-ui, sans-serif;
	font-size: clamp(1.25rem, 2.3vw, 1.7rem);
	font-weight: 800;
	line-height: 1.2;
}

.woocommerce-checkout table.shop_table {
	margin: 0 0 20px;
	border: 0;
	border-collapse: collapse;
	border-radius: 12px;
	overflow: hidden;
}

.woocommerce-checkout table.shop_table th,
.woocommerce-checkout table.shop_table td {
	border-color: #eef2ee;
	padding: 14px 0;
	color: #374151;
}

.woocommerce-checkout table.shop_table thead th,
.woocommerce-checkout table.shop_table tfoot th,
.woocommerce-checkout table.shop_table tfoot td {
	color: var(--green-925);
	font-weight: 800;
}

.woocommerce-checkout table.shop_table .order-total th,
.woocommerce-checkout table.shop_table .order-total td {
	border-top: 2px solid rgb(203 161 74 / 36%);
	color: var(--green-925);
	font-size: 1.1rem;
}

.woocommerce-checkout #payment {
	border-radius: 14px;
	background: var(--cream);
	overflow: hidden;
}

.woocommerce-checkout #payment ul.payment_methods {
	border-bottom-color: rgb(22 83 47 / 12%);
	padding: 18px;
}

.woocommerce-checkout #payment div.payment_box {
	border-radius: 12px;
	background: #fff;
	color: #4b5563;
}

.woocommerce-checkout #payment div.payment_box::before {
	border-bottom-color: #fff;
}

.woocommerce-checkout #payment div.form-row {
	padding: 18px;
}

.woocommerce-checkout #payment,
.woocommerce-checkout #payment .payment_methods,
.woocommerce-checkout #payment .payment_box,
.woocommerce-checkout #payment .form-row,
.woocommerce-checkout #payment iframe,
.woocommerce-checkout #payment input {
	width: 100% !important;
	max-width: none !important;
}

.woocommerce-checkout #place_order,
.woocommerce-checkout .button.alt {
	width: 100%;
	min-height: 56px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(90deg, var(--gold), var(--gold-light));
	color: var(--green-925);
	box-shadow: 0 10px 24px rgb(203 161 74 / 22%);
	font-size: 1.05rem;
	font-weight: 900;
	transition: transform .2s ease, box-shadow .2s ease;
}

.woocommerce-checkout #place_order:hover,
.woocommerce-checkout .button.alt:hover {
	background: linear-gradient(90deg, var(--gold), var(--gold-light));
	color: var(--green-925);
	box-shadow: 0 14px 30px rgb(203 161 74 / 28%);
	transform: translateY(-1px);
}

.woocommerce-checkout .woocommerce-privacy-policy-text {
	color: var(--muted);
	font-size: .86rem;
}

/* WooCommerce Blocks checkout */
.woocommerce-checkout .entry-content,
.woocommerce-checkout .entry-content > .woocommerce {
	width: 100%;
	max-width: none;
}

.woocommerce-checkout .wp-block-woocommerce-checkout {
	width: 100%;
	max-width: 1120px;
	margin: 28px auto 0;
	color: var(--ink);
}

/* Defeat WordPress constrained-layout content-width cap so the checkout
   fills the full container instead of the narrow default block width. */
.woocommerce-checkout .wp-block-woocommerce-checkout > * {
	max-width: none !important;
}

.woocommerce-checkout .wc-block-checkout {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 380px) !important;
	gap: 28px;
	align-items: start;
	width: 100%;
	max-width: none;
}

.woocommerce-checkout .wc-block-components-sidebar-layout {
	display: grid !important;
	grid-template-columns: minmax(620px, 1fr) minmax(320px, 380px) !important;
	gap: 28px !important;
	align-items: start;
	width: 100% !important;
	max-width: 1120px !important;
	margin: 0 auto !important;
}

.woocommerce-checkout .wc-block-checkout__main,
.woocommerce-checkout .wc-block-components-main,
.woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-main {
	grid-column: 1;
	min-width: 0;
	width: 100% !important;
	max-width: none !important;
	flex-basis: auto !important;
	margin: 0 !important;
	padding: 0 !important;
}

.woocommerce-checkout .wc-block-checkout__sidebar,
.woocommerce-checkout .wc-block-components-sidebar,
.woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-sidebar {
	grid-column: 2;
	width: 100% !important;
	max-width: none !important;
	flex-basis: auto !important;
	margin: 0 !important;
	padding: 0 !important;
	position: sticky;
	top: 100px;
}

.woocommerce-checkout .wc-block-components-checkout-step,
.woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-sidebar,
.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block {
	border: 1px solid rgb(22 83 47 / 12%);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 6px 24px rgb(10 36 21 / 7%);
}

.woocommerce-checkout .wc-block-components-checkout-step {
	margin: 0 0 18px;
	padding: 26px;
}

.woocommerce-checkout .wc-block-components-checkout-step__heading,
.woocommerce-checkout .wc-block-components-title {
	margin: 0 0 18px;
	color: var(--green-925);
	font-family: 'Sora', system-ui, sans-serif;
	font-size: clamp(1.2rem, 2vw, 1.48rem);
	line-height: 1.2;
}

.woocommerce-checkout .wc-block-components-checkout-step__description,
.woocommerce-checkout .wc-block-components-checkout-step__heading-content,
.woocommerce-checkout .wc-block-components-totals-coupon-link {
	color: var(--muted);
}

.woocommerce-checkout .wc-block-components-address-form,
.woocommerce-checkout .wc-block-components-checkout-step__content {
	display: grid;
	gap: 14px;
}

.woocommerce-checkout .wc-block-components-address-form__first_name,
.woocommerce-checkout .wc-block-components-address-form__phone {
	grid-column: 1 / -1;
}

.woocommerce-checkout .wc-block-components-address-form__last_name,
.woocommerce-checkout .wc-block-components-address-form__country,
.woocommerce-checkout .wc-block-components-address-form__address_1,
.woocommerce-checkout .wc-block-components-address-form__address_2,
.woocommerce-checkout .wc-block-components-address-form__city,
.woocommerce-checkout .wc-block-components-address-form__state,
.woocommerce-checkout .wc-block-components-address-form__postcode,
.woocommerce-checkout .wc-block-components-address-form__address_2-toggle,
.woocommerce-checkout .wc-block-components-address-form__address_2-toggle-wrapper,
.woocommerce-checkout #billing-last_name,
.woocommerce-checkout #billing-country,
.woocommerce-checkout #billing-address_1,
.woocommerce-checkout #billing-address_2,
.woocommerce-checkout #billing-city,
.woocommerce-checkout #billing-state,
.woocommerce-checkout #billing-postcode,
.woocommerce-checkout .wc-block-checkout__add-note,
.woocommerce-checkout .wc-block-checkout__additional-fields,
.woocommerce-checkout .wc-block-checkout__order-notes {
	display: none !important;
}

.woocommerce-checkout .wc-block-components-text-input,
.woocommerce-checkout .wc-block-components-text-input.is-active,
.woocommerce-checkout .wc-block-components-address-form__first_name,
.woocommerce-checkout .wc-block-components-address-form__phone,
.woocommerce-checkout .wc-block-components-express-payment,
.woocommerce-checkout .wc-block-components-express-payment__content,
.woocommerce-checkout .wc-block-components-express-payment__event-buttons,
.woocommerce-checkout .wc-block-components-express-payment__event-buttons > *,
.woocommerce-checkout .wc-block-checkout__payment-method,
.woocommerce-checkout .wc-block-checkout__payment-method .wc-block-components-checkout-step__content,
.woocommerce-checkout .wc-block-components-radio-control,
.woocommerce-checkout .wc-block-components-radio-control__option,
.woocommerce-checkout .wc-block-components-payment-methods,
.woocommerce-checkout .wc-block-components-checkout-step__container,
.woocommerce-checkout .wc-block-components-checkout-step__content > *,
.woocommerce-checkout .wc-block-components-address-form > *,
.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input {
	width: 100% !important;
	max-width: none !important;
}

.woocommerce-checkout .wc-block-components-text-input input[type='email'],
.woocommerce-checkout .wc-block-components-text-input input[type='tel'],
.woocommerce-checkout .wc-block-components-text-input input[type='text'],
.woocommerce-checkout .wc-block-components-text-input input[type='number'],
.woocommerce-checkout .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input,
.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input input[type='text'] {
	min-height: 52px;
	border: 1px solid #dfe8e1;
	border-radius: 12px;
	background: #f9fbf8;
	color: var(--ink);
	box-shadow: none;
	font-size: 1rem;
	font-weight: 500;
	width: 100% !important;
	max-width: none !important;
}

.woocommerce-checkout .wc-block-components-radio-control__option {
	padding: 16px;
}

.woocommerce-checkout .wc-block-components-radio-control__option-layout,
.woocommerce-checkout .wc-block-components-radio-control__option-checked,
.woocommerce-checkout .wc-block-components-radio-control__description,
.woocommerce-checkout .wc-block-components-radio-control__content,
.woocommerce-checkout .wc-block-components-payment-method-label,
.woocommerce-checkout .wc-block-components-payment-method-icons,
.woocommerce-checkout .wc-block-components-payment-method__label,
.woocommerce-checkout .wc-block-components-payment-method__content,
.woocommerce-checkout .wc-block-components-payment-methods__payment-method,
.woocommerce-checkout .wc-block-components-payment-methods__payment-method-content {
	width: 100% !important;
	max-width: none !important;
}

.woocommerce-checkout .wc-block-components-text-input input:focus,
.woocommerce-checkout .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input:focus {
	border-color: var(--green-600);
	background: #fff;
	box-shadow: 0 0 0 4px rgb(41 168 98 / 13%);
}

.woocommerce-checkout .wc-block-components-text-input label,
.woocommerce-checkout .wc-block-components-combobox .wc-block-components-combobox-control label.components-base-control__label {
	color: var(--muted);
	font-weight: 600;
}

.woocommerce-checkout .wc-block-components-checkout-place-order-button,
.woocommerce-checkout .wc-block-components-button.wc-block-components-checkout-place-order-button {
	width: 100%;
	min-height: 58px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(90deg, var(--gold), var(--gold-light));
	color: var(--green-925);
	box-shadow: 0 10px 24px rgb(203 161 74 / 22%);
	font-size: 1.05rem;
	font-weight: 900;
	text-transform: none;
	transition: transform .2s ease, box-shadow .2s ease;
}

.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover,
.woocommerce-checkout .wc-block-components-button.wc-block-components-checkout-place-order-button:hover {
	background: linear-gradient(90deg, var(--gold), var(--gold-light));
	color: var(--green-925);
	box-shadow: 0 14px 30px rgb(203 161 74 / 28%);
	transform: translateY(-1px);
}

.woocommerce-checkout .wc-block-components-checkout-place-order-button:disabled {
	opacity: .65;
	transform: none;
}

.woocommerce-checkout .wc-block-components-totals-wrapper,
.woocommerce-checkout .wc-block-components-order-summary,
.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block {
	border-color: #e2e8e3;
}

.woocommerce-checkout .wc-block-components-order-summary-item__description,
.woocommerce-checkout .wc-block-components-totals-item__label,
.woocommerce-checkout .wc-block-components-totals-item__value {
	color: #334155;
}

.woocommerce-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.woocommerce-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
	color: var(--green-925);
	font-family: 'Sora', system-ui, sans-serif;
	font-weight: 800;
}

@media (max-width: 1020px) {
	.woocommerce-checkout .wc-block-checkout,
	.woocommerce-checkout .wc-block-components-sidebar-layout {
		grid-template-columns: 1fr !important;
	}

	.woocommerce-checkout .wc-block-checkout__main,
	.woocommerce-checkout .wc-block-checkout__sidebar,
	.woocommerce-checkout .wc-block-components-main,
	.woocommerce-checkout .wc-block-components-sidebar,
	.woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-main,
	.woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-sidebar {
		grid-column: 1;
		position: static;
	}
}

.content-layout {
	min-height: 70vh;
	padding: 132px 0 72px;
	background: #fff;
	color: var(--ink);
}

.entry {
	max-width: 760px;
}

.entry-header,
.archive-header {
	margin-bottom: 28px;
}

.entry-title,
.archive-header h1,
.not-found h1 {
	margin: 0 0 12px;
	font-size: clamp(2rem, 5vw, 3rem);
}

.entry-meta {
	color: var(--muted);
}

.entry-content {
	color: #374151;
}

.entry-image,
.post-card-image {
	width: 100%;
	border-radius: 14px;
	object-fit: cover;
}

.content-with-sidebar {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 42px;
}

.sidebar .widget {
	padding: 22px;
	border: 1px solid #edf0ed;
	border-radius: 14px;
	background: var(--cream);
}

.post-card {
	padding: 0;
	overflow: hidden;
}

.post-card-link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.post-card-body {
	padding: 22px;
}

.post-card h2 {
	margin: 0 0 10px;
	font-size: 1.22rem;
}

.post-card p {
	margin: 0;
	color: var(--muted);
}

.somleaf-block {
	padding: clamp(32px, 6vw, 72px);
	border-radius: 16px;
}

.somleaf-block h2 {
	margin: 0 0 18px;
	font-family: 'Sora', system-ui, sans-serif;
	line-height: 1.08;
}

.somleaf-block > p {
	max-width: 720px;
	margin: 0 0 24px;
	color: inherit;
}

.somleaf-block-hero,
.somleaf-block-cta {
	background: var(--green-925);
	color: #fff;
	text-align: center;
}

.somleaf-block-features ul,
.somleaf-block-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.somleaf-block-features li,
.somleaf-block-stats div {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 18px;
	border-radius: 12px;
	background: var(--cream);
	color: var(--ink);
}

.somleaf-block-stats strong {
	display: block;
	color: var(--green-600);
	font-family: 'Sora', system-ui, sans-serif;
	font-size: 2rem;
	line-height: 1;
}

.somleaf-block-stats span {
	color: var(--muted);
}

.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: none;
}

@keyframes pulse {
	50% {
		opacity: .45;
	}
}

@keyframes ping {
	75%,
	100% {
		transform: scale(1.8);
		opacity: 0;
	}
}

@keyframes floaty {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

@keyframes pop {
	from {
		opacity: 0;
		transform: translateY(16px) scale(.94);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}

	.reveal {
		opacity: 1;
		transform: none;
	}
}

@media (max-width: 1280px) {
	.hero-grid {
		grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
		gap: 42px;
	}

	.hero-section h1 {
		max-width: 540px;
		font-size: clamp(1.9rem, 2.75vw, 2.65rem);
	}

	.hero-side {
		width: min(100%, 340px);
		padding-top: 0;
	}

	.hero-business-card {
		width: min(100%, 340px);
		min-height: 220px;
		padding: 20px 22px;
	}

	.hero-feature-strip {
		margin-top: 54px;
	}
}

@media (max-width: 920px) {
	.primary-navigation {
		display: none;
	}

	.header-inner {
		gap: 16px;
	}

	.testimonial-grid,
	.post-grid,
	.content-with-sidebar {
		grid-template-columns: 1fr;
	}

	.hero-grid {
		grid-template-columns: 1fr;
		gap: 38px;
	}

	.hero-side {
		justify-self: end;
		width: min(100%, 340px);
		max-width: 640px;
		padding-top: 0;
	}

	.hero-feature-strip {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hero-income-badge {
		right: -12px;
		left: auto;
		bottom: -28px;
	}

	.hero-slogan-inner {
		flex-direction: column;
		text-align: center;
	}
}

@media (max-width: 782px) {
	.admin-bar .site-header {
		top: 46px;
	}
}

@media (max-width: 720px) {
	body {
		padding-bottom: 78px;
	}

	.site-header,
	.site-header.is-scrolled {
		padding: 14px 0;
	}

	.site-logo img,
	.custom-logo {
		height: 42px;
		max-width: 150px;
	}

	.header-cta {
		padding: 10px 14px;
		border-radius: 999px;
		font-size: .88rem;
		white-space: nowrap;
	}

	.hero-section {
		min-height: 100vh;
		padding-top: 112px;
		text-align: center;
	}

	.hero-content {
		padding-bottom: 28px;
	}

	.hero-badges,
	.hero-copy,
	.hero-buy,
	.price-row {
		justify-content: center;
	}

	.hero-badges {
		margin-bottom: 24px;
	}

	.hero-badge {
		padding: 9px 14px;
		font-size: .78rem;
	}

	.hero-section h1 {
		margin-inline: auto;
		font-size: clamp(1.72rem, 8vw, 2.35rem);
	}

	.hero-subtitle {
		display: inline;
		font-size: .82rem;
	}

	.hero-lead {
		margin-inline: auto;
	}

	.hero-side {
		display: none;
	}

	.hero-feature-strip {
		grid-template-columns: 1fr;
		margin-top: 34px;
		text-align: left;
	}

	.hero-slogan a {
		white-space: normal;
	}

	.woocommerce-checkout .content-layout {
		background:
			linear-gradient(180deg, var(--green-950) 0, var(--green-925) 220px, var(--cream) 220px);
	}

	.woocommerce-checkout form.checkout {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.woocommerce-checkout #customer_details,
	.woocommerce-checkout #order_review_heading,
	.woocommerce-checkout #order_review {
		grid-column: 1;
		grid-row: auto;
	}

	.woocommerce-checkout #customer_details,
	.woocommerce-checkout #order_review {
		padding: 20px;
	}

	.woocommerce-checkout #order_review {
		position: static;
	}

	.woocommerce-checkout #order_review_heading {
		color: var(--green-925);
	}

	.woocommerce-checkout .wc-block-checkout {
		grid-template-columns: 1fr !important;
		gap: 18px;
	}

	.woocommerce-checkout .wc-block-components-sidebar-layout {
		grid-template-columns: 1fr !important;
		max-width: none !important;
	}

	.woocommerce-checkout .wc-block-checkout__main,
	.woocommerce-checkout .wc-block-checkout__sidebar,
	.woocommerce-checkout .wc-block-components-main,
	.woocommerce-checkout .wc-block-components-sidebar {
		grid-column: 1;
		position: static;
	}

	.woocommerce-checkout .wc-block-components-checkout-step {
		padding: 20px;
	}

	.problem-section,
	.inside-section,
	.audience-section,
	.pricing-section,
	.testimonials-section,
	.faq-section {
		padding: 72px 0;
	}

	.inside-item ul {
		grid-template-columns: 1fr;
		padding-left: 0;
	}

	.inside-title {
		align-items: flex-start;
	}

	.pricing-benefits {
		display: grid;
		justify-content: stretch;
	}

	.somleaf-block-features ul,
	.somleaf-block-stats {
		grid-template-columns: 1fr;
	}

	.pricing-price {
		flex-direction: column;
		align-items: center;
		gap: 2px;
	}

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

	.footer-inner {
		flex-direction: column;
		text-align: center;
	}

	.whatsapp-widget {
		right: 18px;
		bottom: 92px;
	}

	.mobile-sticky-cta {
		display: block;
	}
}
