/* ==========================================================================
   Taptwice Media v1 — landing.css
   Component library for landing / home pages. Flat + layered.
   ========================================================================== */

/* -------------------------------------------------------------------------- */
/* Section wrappers                                                            */
/* -------------------------------------------------------------------------- */
.lp-section {
	padding: 40px 0;
	background: var(--bg);
}
.lp-section--soft  { background: var(--soft); }
.lp-section--soft-2 { background: var(--soft-2); }
.lp-section--tint  { background: var(--tint-accent); }

.lp-section__head {
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 24px;
}
.lp-section__lede {
	color: var(--muted);
	font-size: var(--fs-base);
	line-height: 1.5;
	margin-top: 4px;
}

/* -------------------------------------------------------------------------- */
/* Hero                                                                        */
/* -------------------------------------------------------------------------- */
.lp-hero {
	position: relative;
	padding: 48px 0 56px;
	background: var(--bg);
	overflow: hidden;
}
.lp-hero::before {
	content: "";
	position: absolute;
	inset: auto 0 0 0;
	height: 58%;
	background: var(--soft);
	z-index: 0;
}
.lp-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
	gap: var(--sp-50);
	align-items: end;
}
@media (max-width: 960px) {
	.lp-hero__grid { grid-template-columns: 1fr; }
	.lp-hero::before { height: 42%; }
}
.lp-hero__body { max-width: 820px; }
.lp-hero__title {
	font-size: var(--fs-3xl);
	font-weight: 800;
	line-height: 1.06;
	letter-spacing: -0.02em;
	margin: 4px 0 10px;
}
.lp-hero__title em { color: var(--accent); font-style: normal; }
.lp-hero__lede {
	font-size: var(--fs-md);
	color: var(--muted);
	line-height: 1.5;
	max-width: 56ch;
	margin-bottom: 20px;
}
.lp-hero__lede strong { color: var(--ink); font-weight: 600; }
.lp-hero__ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}
.lp-hero--compact { padding: 32px 0 40px; }
.lp-hero--compact::before { height: 36%; }

.lp-hero__stat { align-self: end; }
.stat-card {
	background: var(--tint-accent);
	padding: var(--sp-30);
	border-left: 3px solid var(--accent);
	max-width: 360px;
}
.stat-card__num {
	display: block;
	font-family: var(--ff-display);
	font-size: clamp(3.5rem, 8vw, 5.5rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 0.95;
	color: var(--accent);
	margin-bottom: 0.5rem;
}
.stat-card__caption {
	font-size: var(--fs-sm);
	color: var(--ink-2);
	margin: 0;
	line-height: 1.45;
}

/* -------------------------------------------------------------------------- */
/* Trust strip                                                                 */
/* -------------------------------------------------------------------------- */
.lp-trust {
	padding: 12px 0;
	background: var(--bg);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}
.lp-trust__label {
	font-family: var(--ff-mono);
	font-size: var(--fs-xs);
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--muted);
	margin: 0 0 0.75rem;
}
.lp-trust__row {
	list-style: none;
	padding: 0; margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-30);
	align-items: center;
	font-family: var(--ff-display);
	font-weight: 600;
	font-size: var(--fs-md);
	color: var(--ink-2);
}
.lp-trust__row li { letter-spacing: -0.01em; }

/* -------------------------------------------------------------------------- */
/* Features grid                                                               */
/* -------------------------------------------------------------------------- */
.lp-features {
	display: grid;
	gap: var(--sp-30);
}
.lp-features--2 { grid-template-columns: repeat(2, 1fr); }
.lp-features--3 { grid-template-columns: repeat(3, 1fr); }
.lp-features--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1080px) { .lp-features--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px)  {
	.lp-features--2, .lp-features--3, .lp-features--4 { grid-template-columns: 1fr; }
}

.lp-feature {
	background: var(--bg);
	padding: 22px 22px 20px;
	position: relative;
	border-top: 2px solid var(--line);
}
.lp-section--soft .lp-feature,
.lp-section--soft-2 .lp-feature,
.lp-section--tint .lp-feature {
	background: var(--bg);
}
.lp-feature__index {
	display: block;
	font-family: var(--ff-mono);
	font-size: var(--fs-xs);
	letter-spacing: 0.18em;
	color: var(--accent);
	font-weight: 600;
	margin-bottom: 0.75rem;
}
.lp-feature h3 {
	font-size: var(--fs-lg);
	margin: 0 0 0.5rem;
}
.lp-feature p { color: var(--muted); margin-bottom: 1rem; line-height: 1.55; }
.lp-feature code { background: var(--soft); padding: 1px 5px; font-size: 0.9em; }

/* -------------------------------------------------------------------------- */
/* Split (media / body)                                                        */
/* -------------------------------------------------------------------------- */
.lp-split {
	padding: 40px 0; background: var(--bg); }
.lp-split__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
	gap: var(--sp-50);
	align-items: center;
}
@media (max-width: 960px) { .lp-split__grid { grid-template-columns: 1fr; } }

.lp-split__media {
	position: relative;
	aspect-ratio: 4 / 5;
	min-height: 420px;
}
.lp-split__layer--bg {
	position: absolute;
	inset: 0 20% 20% 0;
	background: var(--tint-accent);
	z-index: 0;
}
.lp-split__layer--stat {
	position: absolute;
	inset: 20% 0 0 20%;
	background: var(--bg);
	border-left: 3px solid var(--accent);
	padding: var(--sp-30);
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.lp-split__layer--stat span {
	font-family: var(--ff-mono);
	font-size: var(--fs-xs);
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--muted);
	margin-bottom: 0.5rem;
}
.lp-split__layer--stat strong {
	font-family: var(--ff-display);
	font-size: clamp(4rem, 9vw, 6rem);
	font-weight: 700;
	color: var(--accent);
	line-height: 0.95;
	letter-spacing: -0.03em;
	display: block;
	margin-bottom: 0.75rem;
}
.lp-split__layer--stat small {
	font-size: var(--fs-sm);
	color: var(--ink-2);
	line-height: 1.45;
}

/* Numbered process list */
.lp-process {
	list-style: none;
	counter-reset: lp-process;
	padding: 0;
	margin: var(--sp-30) 0 var(--sp-30);
	display: grid;
	gap: var(--sp-20);
}
.lp-process li {
	counter-increment: lp-process;
	padding-left: 3rem;
	position: relative;
	line-height: 1.5;
	color: var(--muted);
}
.lp-process li::before {
	content: counter(lp-process, decimal-leading-zero);
	position: absolute;
	left: 0; top: 0.15rem;
	font-family: var(--ff-mono);
	font-size: var(--fs-xs);
	letter-spacing: 0.14em;
	color: var(--accent);
	font-weight: 600;
}
.lp-process strong { color: var(--ink); font-weight: 600; }

/* -------------------------------------------------------------------------- */
/* Chips (location links)                                                      */
/* -------------------------------------------------------------------------- */
.lp-chips {
	list-style: none;
	padding: 0; margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.lp-chips li {}
.lp-chips a {
	display: inline-flex;
	align-items: center;
	padding: 10px 16px;
	background: var(--bg);
	border: 1px solid var(--line);
	font-family: var(--ff-mono);
	font-size: var(--fs-sm);
	font-weight: 500;
	color: var(--ink);
	transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.lp-chips a:hover {
	background: var(--ink);
	color: var(--bg);
	border-color: var(--ink);
}

/* -------------------------------------------------------------------------- */
/* Quotes / testimonials                                                       */
/* -------------------------------------------------------------------------- */
.lp-quotes {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--sp-40);
}
@media (max-width: 780px) { .lp-quotes { grid-template-columns: 1fr; } }
.lp-quote {
	background: var(--bg);
	padding: var(--sp-30);
	border-left: 3px solid var(--accent);
	margin: 0;
}
.lp-quote blockquote {
	font-family: var(--ff-display);
	font-size: var(--fs-lg);
	line-height: 1.35;
	color: var(--ink);
	margin: 0 0 var(--sp-20);
	quotes: "\201C" "\201D";
}
.lp-quote blockquote::before { content: open-quote; color: var(--accent); margin-right: 0.1em; }
.lp-quote blockquote::after  { content: close-quote; color: var(--accent); margin-left: 0.1em; }
.lp-quote figcaption {
	font-family: var(--ff-mono);
	font-size: var(--fs-sm);
	color: var(--muted);
}
.lp-quote figcaption strong { color: var(--ink); font-weight: 600; }

/* -------------------------------------------------------------------------- */
/* CTA (end of page)                                                           */
/* -------------------------------------------------------------------------- */
.lp-cta {
	padding: 20px 0 40px;
	background: var(--bg);
	position: relative;
	overflow: hidden;
}
.lp-cta::before { content: none; }
.lp-cta--slim { padding: 12px 0 32px; }
.lp-cta--compact { padding: 12px 0 28px; }
.lp-cta__grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
	gap: 32px;
	align-items: center;
	background: var(--accent);
	color: #ffffff !important;
	padding: 32px 32px;
	border-top: 6px solid var(--ink);
}
@media (max-width: 840px) { .lp-cta__grid { grid-template-columns: 1fr; padding: 24px; gap: 18px; } }
.lp-cta h2 { color: #ffffff !important; font-size: var(--fs-2xl); line-height: 1.1; margin: 0 0 6px; font-weight: 800; letter-spacing: -0.015em; }
.lp-cta p { color: rgba(255,255,255,0.92) !important; font-size: var(--fs-base); line-height: 1.5; margin: 0; max-width: 56ch; }
.lp-cta__actions { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
@media (min-width: 841px) { .lp-cta__actions { justify-self: end; align-items: flex-end; } }
@media (min-width: 841px) { .lp-cta__actions { justify-self: end; align-items: flex-end; } }

/* -------------------------------------------------------------------------- */
/* Pricing cards                                                               */
/* -------------------------------------------------------------------------- */
.lp-pricing {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--sp-30);
}
@media (max-width: 900px) { .lp-pricing { grid-template-columns: 1fr; } }
.lp-plan {
	background: var(--bg);
	padding: var(--sp-40);
	display: flex;
	flex-direction: column;
	border-top: 3px solid var(--line);
}
.lp-plan--featured { border-top-color: var(--accent); background: var(--soft); }
.lp-plan__name {
	font-family: var(--ff-mono);
	font-size: var(--fs-xs);
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--muted);
	font-weight: 600;
}
.lp-plan__price {
	font-family: var(--ff-display);
	font-size: clamp(2.5rem, 4vw, 3.2rem);
	font-weight: 700;
	color: var(--ink);
	margin: 0.5rem 0 0.25rem;
	letter-spacing: -0.02em;
}
.lp-plan__price small { font-size: 0.45em; color: var(--muted); font-weight: 500; }
.lp-plan__summary { color: var(--muted); line-height: 1.5; margin-bottom: var(--sp-20); }
.lp-plan__features {
	list-style: none;
	padding: 0; margin: 0 0 var(--sp-30);
	display: grid; gap: 10px;
}
.lp-plan__features li {
	padding-left: 1.5rem;
	position: relative;
	font-size: var(--fs-sm);
	color: var(--ink-2);
	line-height: 1.5;
}
.lp-plan__features li::before {
	content: "→";
	position: absolute;
	left: 0; top: 0;
	color: var(--accent);
	font-weight: 600;
}
.lp-plan .btn { align-self: flex-start; margin-top: auto; }

/* -------------------------------------------------------------------------- */
/* FAQ                                                                         */
/* -------------------------------------------------------------------------- */
.lp-faq {
	display: grid;
	gap: 0;
}
.lp-faq details {
	border-bottom: 1px solid var(--line);
	padding: var(--sp-20) 0;
}
.lp-faq details:first-child { border-top: 1px solid var(--line); }
.lp-faq summary {
	font-family: var(--ff-display);
	font-size: var(--fs-md);
	font-weight: 600;
	color: var(--ink);
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: var(--sp-20);
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after {
	content: "+";
	font-family: var(--ff-mono);
	color: var(--accent);
	font-size: 1.5em;
	line-height: 1;
	transition: transform var(--dur) var(--ease);
}
.lp-faq details[open] summary::after { transform: rotate(45deg); }
.lp-faq details > *:not(summary) {
	margin-top: 0.75rem;
	color: var(--muted);
	line-height: 1.55;
}

/* -------------------------------------------------------------------------- */
/* Deliverables list                                                           */
/* -------------------------------------------------------------------------- */
.lp-deliverables {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--sp-20);
	list-style: none;
	padding: 0; margin: 0;
}
@media (max-width: 640px) { .lp-deliverables { grid-template-columns: 1fr; } }
.lp-deliverables li {
	padding: var(--sp-20);
	background: var(--bg);
	border-top: 1px solid var(--line);
	font-size: var(--fs-sm);
	color: var(--ink-2);
	line-height: 1.5;
}
.lp-deliverables li strong {
	display: block;
	font-family: var(--ff-display);
	font-size: var(--fs-md);
	color: var(--ink);
	margin-bottom: 0.35rem;
	font-weight: 600;
}

/* -------------------------------------------------------------------------- */
/* Related cards (bottom of service pages)                                     */
/* -------------------------------------------------------------------------- */
.lp-related {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 12px;
}
@media (max-width: 820px) { .lp-related { grid-template-columns: 1fr; } }
.lp-related a {
	display: block;
	padding: var(--sp-30);
	background: var(--bg);
	border-top: 1px solid var(--line);
	color: var(--ink);
	transition: background-color var(--dur) var(--ease);
}
.lp-related a:hover { background: var(--soft); color: var(--accent); }
.lp-related .eyebrow { margin-bottom: 0.5rem; }
.lp-related strong { display: block; font-family: var(--ff-display); font-size: var(--fs-md); margin-bottom: 0.5rem; }
.lp-related small { color: var(--muted); font-size: var(--fs-sm); }


/* ==========================================================================
   CRM-style structured landing components (compact + layered)
   ========================================================================== */

/* -- Hero split (title + badge column) ----------------------------------- */
.lp-hero-split {
	padding: 32px 0 24px;
	background: var(--bg);
	border-bottom: 1px solid var(--line);
}
.lp-hero-split__wrap {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
	gap: 36px;
	align-items: start;
}
@media (max-width: 880px) { .lp-hero-split__wrap { grid-template-columns: 1fr; } }
.lp-hero-split__text h1 {
	font-size: var(--fs-3xl);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.06;
	margin: 6px 0 12px;
}
.lp-hero-split__text h1 .hl { color: var(--accent); }
.lp-hero-split__desc {
	font-size: var(--fs-md);
	color: var(--muted);
	line-height: 1.5;
	max-width: 56ch;
	margin: 0 0 20px;
}
.lp-hero-split__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.lp-hero-split__badges {
	display: grid;
	gap: 10px;
	padding: 18px;
	background: var(--soft);
	border-left: 3px solid var(--accent);
}
.lp-hero-split__badge {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--ff-mono);
	font-size: var(--fs-xs);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--ink);
	font-weight: 600;
	padding: 8px 10px;
	background: var(--bg);
	border-top: 1px solid var(--line);
}
.lp-hero-split__badge strong { color: var(--accent); font-weight: 700; }

/* -- Marquee strip ------------------------------------------------------- */
.lp-marquee {
	background: var(--soft-2);
	padding: 14px 0;
	overflow: hidden;
	border-bottom: 1px solid var(--line);
}
.lp-marquee__track {
	display: flex;
	gap: 28px;
	animation: lp-marquee-scroll 40s linear infinite;
	white-space: nowrap;
	font-family: var(--ff-mono);
	font-size: var(--fs-xs);
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--ink);
	font-weight: 600;
}
.lp-marquee__item::before { content: "·"; color: var(--accent); margin-right: 28px; }
@keyframes lp-marquee-scroll {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

/* -- Prose (centered narrow paragraphs) --------------------------------- */
.lp-prose {
	max-width: 680px;
	margin: 0 auto;
	color: var(--ink);
	font-size: var(--fs-base);
	line-height: 1.65;
}
.lp-prose p { margin: 0 0 14px; }
.lp-prose p strong { color: var(--ink); font-weight: 700; }
.lp-prose--center { text-align: center; }

/* -- Centered section heading variants ---------------------------------- */
.lp-heading--center { text-align: center; }
.lp-subheading {
	max-width: 640px;
	margin: 0 auto 28px;
	font-size: var(--fs-base);
	color: var(--muted);
	text-align: center;
	line-height: 1.5;
}

/* -- Highlight grid (icon-led 4-up cards) ------------------------------- */
.lp-highlight-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}
@media (max-width: 980px) { .lp-highlight-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .lp-highlight-grid { grid-template-columns: 1fr; } }
.lp-highlight {
	padding: 18px 18px 16px;
	background: var(--bg);
	border-top: 2px solid var(--accent);
}
.lp-highlight__num {
	display: inline-flex;
	width: 34px; height: 34px;
	align-items: center;
	justify-content: center;
	background: var(--tint-accent);
	color: var(--accent);
	font-family: var(--ff-mono);
	font-weight: 700;
	font-size: var(--fs-sm);
	margin-bottom: 12px;
}
.lp-highlight__title {
	font-size: var(--fs-md);
	font-weight: 700;
	margin: 0 0 8px;
	color: var(--ink);
	line-height: 1.25;
}
.lp-highlight__text {
	font-size: var(--fs-sm);
	color: var(--muted);
	line-height: 1.5;
	margin: 0;
}

/* -- Compare (with/without) --------------------------------------------- */
.lp-compare {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}
@media (max-width: 720px) { .lp-compare { grid-template-columns: 1fr; } }
.lp-compare__col {
	padding: 18px;
	background: var(--bg);
	border-top: 2px solid var(--line);
}
.lp-compare__col--bad  { border-top-color: var(--muted-2); background: var(--soft); }
.lp-compare__col--good { border-top-color: var(--accent); background: var(--tint-accent); }
.lp-compare__col h3 {
	font-size: var(--fs-md);
	font-weight: 700;
	margin: 0 0 12px;
	color: var(--ink);
}
.lp-compare__col ul { list-style: none; margin: 0; padding: 0; }
.lp-compare__col li {
	padding: 8px 0 8px 24px;
	position: relative;
	font-size: var(--fs-sm);
	color: var(--ink);
	border-bottom: 1px solid rgba(0,0,0,0.05);
	line-height: 1.4;
}
.lp-compare__col li:last-child { border-bottom: 0; }
.lp-compare__col--bad li::before  { content: "×"; position: absolute; left: 4px; color: var(--muted-2); font-weight: 700; }
.lp-compare__col--good li::before { content: "✓"; position: absolute; left: 4px; color: var(--accent); font-weight: 700; }

/* -- Tabs (radio-driven, JS-optional) ----------------------------------- */
.lp-tabs { }
.lp-tabs__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 2px;
	border-bottom: 1px solid var(--line);
	margin-bottom: 20px;
}
.lp-tabs__btn {
	background: transparent;
	border: 0;
	padding: 12px 18px;
	font-family: var(--ff-mono);
	font-size: var(--fs-xs);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: 700;
	color: var(--muted);
	cursor: pointer;
	box-shadow: inset 0 -2px 0 transparent;
	transition: color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.lp-tabs__btn.is-active { color: var(--ink); box-shadow: inset 0 -2px 0 var(--accent); }
.lp-tabs__panel { display: none; }
.lp-tabs__panel.is-active { display: block; }

/* -- Stat strip (inline numbers) ---------------------------------------- */
.lp-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2px;
	background: var(--line);
	padding: 2px;
}
@media (max-width: 780px) { .lp-stats { grid-template-columns: repeat(2, 1fr); } }
.lp-stats__cell {
	background: var(--bg);
	padding: 18px 16px;
}
.lp-stats__num {
	display: block;
	font-family: var(--ff-display);
	font-size: clamp(1.75rem, 2.8vw, 2.25rem);
	font-weight: 800;
	color: var(--accent);
	line-height: 1;
	margin-bottom: 6px;
}
.lp-stats__label {
	font-family: var(--ff-mono);
	font-size: var(--fs-xs);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--muted);
	font-weight: 600;
}

/* -- Compact final CTA panel -------------------------------------------- */
.lp-cta--compact {
	padding: 28px 0;
	background: var(--tint-accent);
}
.lp-cta--compact h2 {
	font-size: var(--fs-2xl);
	margin: 0 0 8px;
}
.lp-cta--compact p {
	font-size: var(--fs-base);
	margin: 0 0 14px;
	color: var(--ink-2);
}


/* Buttons inside the pre-footer CTA card */
.lp-cta .btn--primary { background: #ffffff; color: var(--accent); }
.lp-cta .btn--primary:hover, .lp-cta .btn--primary:focus-visible { background: var(--ink); color: #ffffff; }
.lp-cta .btn--ghost { color: #ffffff; box-shadow: inset 0 -2px 0 #ffffff; background: transparent; }
.lp-cta .btn--ghost:hover, .lp-cta .btn--ghost:focus-visible { background: #ffffff; color: var(--accent); box-shadow: none; }


/* ==========================================================================
   Two-way contact chooser (WhatsApp vs form)
   ========================================================================== */
.lp-choice {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 16px;
	align-items: stretch;
}
@media (max-width: 820px) { .lp-choice { grid-template-columns: 1fr; } }
.lp-choice__card {
	display: flex;
	flex-direction: column;
	padding: 28px 28px 24px;
	background: var(--bg);
	position: relative;
	border-top: 3px solid var(--line);
}
.lp-choice__card--featured {
	background: #25d366;
	color: #ffffff;
	border-top: 3px solid #075e54;
}
.lp-choice__card--featured h3,
.lp-choice__card--featured p { color: #ffffff; }
.lp-choice__card--featured .lp-choice__tag { background: rgba(255,255,255,0.2); color: #ffffff; }
.lp-choice__tag {
	display: inline-flex;
	align-self: flex-start;
	padding: 4px 10px;
	background: var(--tint-accent);
	color: var(--accent);
	font-family: var(--ff-mono);
	font-size: var(--fs-xs);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: 700;
	margin-bottom: 12px;
}
.lp-choice__card h3 {
	font-size: var(--fs-xl);
	font-weight: 800;
	margin: 0 0 6px;
	line-height: 1.15;
	letter-spacing: -0.015em;
}
.lp-choice__card p {
	font-size: var(--fs-sm);
	line-height: 1.5;
	color: var(--muted);
	margin: 0 0 16px;
}
.lp-choice__card--featured p { color: rgba(255,255,255,0.88); }
.lp-choice__phone {
	font-family: var(--ff-display);
	font-size: var(--fs-lg);
	font-weight: 800;
	letter-spacing: -0.01em;
	margin: 0 0 14px;
}
.lp-choice__card .btn { align-self: flex-start; margin-top: auto; }
.lp-choice__card--featured .btn--wa {
	background: #ffffff;
	color: #128c7e;
	font-weight: 700;
}
.lp-choice__card--featured .btn--wa:hover { background: var(--ink); color: #ffffff; }
.lp-choice__divider {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 18px 0;
	font-family: var(--ff-mono);
	font-size: var(--fs-xs);
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--muted);
}
.lp-choice__divider::before,
.lp-choice__divider::after {
	content: "";
	flex: 1;
	height: 1px;
	background: var(--line);
	margin: 0 12px;
}

/* Sureforms wrapper inside our landing pages */
.lp-form-wrap {
	background: var(--soft);
	padding: 28px;
	border-top: 3px solid var(--accent);
}
.lp-form-wrap .srfm-form-container,
.lp-form-wrap form { background: transparent; }


/* ==========================================================================
   Pricing variants (2/4-col + Custom card + Contact-scope card)
   ========================================================================== */
.lp-pricing--2 { grid-template-columns: repeat(2, 1fr); }
.lp-pricing--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) { .lp-pricing--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  {
	.lp-pricing--2, .lp-pricing--4 { grid-template-columns: 1fr; }
}
.lp-plan__badge {
	position: absolute;
	top: 10px; right: 10px;
	font-family: var(--ff-mono);
	font-size: var(--fs-xs);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--accent);
	background: #ffffff;
	padding: 4px 8px;
}
.lp-plan { position: relative; padding: 26px 24px; }
.lp-plan__price { font-size: clamp(2rem, 3vw, 2.5rem); }
.lp-plan__price .amount { color: var(--accent); }
.lp-plan__per {
	display: block;
	font-family: var(--ff-mono);
	font-size: var(--fs-xs);
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--muted);
	margin-top: -6px;
	margin-bottom: 10px;
	font-weight: 600;
}
.lp-plan__features { margin-bottom: 20px; }

/* Custom / contact-scope card — full width, different background */
.lp-plan--custom,
.lp-plan--scope {
	margin-top: 16px;
	padding: 28px 32px;
	background: var(--tint-accent);
	border-top: 3px solid var(--accent);
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
	gap: 28px;
	align-items: center;
}
@media (max-width: 820px) {
	.lp-plan--custom, .lp-plan--scope { grid-template-columns: 1fr; }
}
.lp-plan--custom h3,
.lp-plan--scope h3 {
	font-size: var(--fs-lg);
	font-weight: 800;
	color: var(--ink);
	margin: 0 0 6px;
	letter-spacing: -0.01em;
}
.lp-plan--custom p,
.lp-plan--scope p {
	font-size: var(--fs-base);
	color: var(--ink-2);
	margin: 0;
	line-height: 1.5;
}
.lp-plan--custom .btn,
.lp-plan--scope .btn { justify-self: end; align-self: center; }
@media (max-width: 820px) {
	.lp-plan--custom .btn, .lp-plan--scope .btn { justify-self: start; }
}

/* Pricing section policy note */
.lp-pricing-note {
	margin-top: 14px;
	padding: 12px 14px;
	background: var(--soft);
	border-left: 3px solid var(--accent);
	font-size: var(--fs-sm);
	color: var(--muted);
	line-height: 1.5;
}
.lp-pricing-note strong { color: var(--ink); }
