/**
 * STG Ecommerce Landing — Monochrome + Glassmorphism
 *
 * Typography:
 *   Headings  → Manrope 400, uppercase, tracked
 *   Body      → Helvetica Neue / Helvetica / Arial
 *   Highlights→ Helvetica, uppercase, bold (700)
 *
 * Palette:  #050507 bg, white at varying opacities. Zero color.
 * Glass:    rgba(22,22,22,0.31) + backdrop-filter blur
 * Backgrounds: Unsplash abstract dark textures at low opacity
 */

/* ================================================
   ROOT VARIABLES
   ================================================ */

:root {
	--stg-lp-bg:          #050507;
	--stg-lp-bg-alt:      #09090f;
	--stg-lp-text:        rgba(255,255,255,0.72);
	--stg-lp-text-strong: #ffffff;
	--stg-lp-text-muted:  rgba(255,255,255,0.4);
	--stg-lp-text-faint:  rgba(255,255,255,0.18);
	--stg-lp-border:      rgba(255,255,255,0.08);
	--stg-lp-font:        'Helvetica Neue', Helvetica, Arial, sans-serif;
	--stg-lp-font-d:      'Manrope', sans-serif;
	--stg-lp-max:         1100px;
	--stg-lp-py:          120px;

	/* Glassmorphism tokens */
	--stg-lp-glass:       rgba(22, 22, 22, 0.31);
	--stg-lp-glass-border:rgba(22, 22, 22, 0.37);
	--stg-lp-glass-shadow:0 4px 30px rgba(0, 0, 0, 0.1);
	--stg-lp-glass-blur:  blur(12px);
}

/* ================================================
   BASE
   ================================================ */

.stg-lp {
	position: relative;
	width: 100%;
	background: var(--stg-lp-bg);
	font-family: var(--stg-lp-font);
	color: var(--stg-lp-text);
	line-height: 1.65;
	box-sizing: border-box;
	overflow: hidden;
}

.stg-lp *,
.stg-lp *::before,
.stg-lp *::after {
	box-sizing: border-box;
}

.stg-lp__container {
	max-width: var(--stg-lp-max);
	margin: 0 auto;
	padding: var(--stg-lp-py) 24px;
	position: relative;
	z-index: 2;
}

/* Alternating backgrounds */
.stg-lp__pain,
.stg-lp__plans,
.stg-lp__compare,
.stg-lp__cta {
	background: var(--stg-lp-bg-alt);
}

/* ── Background textures via ::before on key sections ── */
.stg-lp__hero::before,
.stg-lp__pain::before,
.stg-lp__plans::before,
.stg-lp__engine::before,
.stg-lp__cta::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	pointer-events: none;
}

.stg-lp__hero::before {
	background-image: url('https://images.unsplash.com/photo-1534796636912-3b95b3ab5986?w=1920&q=60&auto=format');
	opacity: 0.08;
}

.stg-lp__pain::before {
	background-image: url('https://images.unsplash.com/photo-1557682250-33bd709cbe85?w=1920&q=60&auto=format');
	opacity: 0.06;
}

.stg-lp__engine::before {
	background-image: url('https://images.unsplash.com/photo-1618005198919-d3d4b5a92ead?w=1920&q=60&auto=format');
	opacity: 0.05;
}

.stg-lp__plans::before {
	background-image: url('https://images.unsplash.com/photo-1579546929518-9e396f3cc809?w=1920&q=60&auto=format');
	opacity: 0.05;
}

.stg-lp__cta::before {
	background-image: url('https://images.unsplash.com/photo-1557683316-973673baf926?w=1920&q=60&auto=format');
	opacity: 0.07;
}

/* ── Section headings — Manrope 400 UPPERCASE ── */
.stg-lp__section-title {
	font-family: var(--stg-lp-font-d);
	font-weight: 400;
	font-size: clamp(26px, 4vw, 40px);
	line-height: 1.15;
	color: var(--stg-lp-text-strong);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin: 0 0 16px;
}

.stg-lp__section-sub {
	font-size: 15px;
	color: var(--stg-lp-text-muted);
	margin: 0 0 56px;
	max-width: 600px;
	line-height: 1.75;
}

/* Grain overlay */
.stg-lp__grain {
	position: absolute;
	inset: 0;
	opacity: 0.03;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
	background-repeat: repeat;
	background-size: 200px 200px;
	pointer-events: none;
	z-index: 1;
}

/* Radial glow — subtle white only */
.stg-lp__glow {
	position: absolute;
	pointer-events: none;
	z-index: 1;
}

.stg-lp__glow--hero {
	top: 30%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 700px;
	height: 700px;
	background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
}

.stg-lp__glow--cta {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(255,255,255,0.035) 0%, transparent 70%);
}

/* Particles canvas */
.stg-lp__particles {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	width: 100%;
	height: 100%;
}

/* ================================================
   GLASSMORPHISM MIXIN CLASS
   ================================================ */

.stg-lp__glass {
	background: var(--stg-lp-glass);
	box-shadow: var(--stg-lp-glass-shadow);
	backdrop-filter: var(--stg-lp-glass-blur);
	-webkit-backdrop-filter: var(--stg-lp-glass-blur);
	border: 1px solid var(--stg-lp-glass-border);
}

/* ================================================
   BUTTONS — white / ghost only
   ================================================ */

.stg-lp__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--stg-lp-font);
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 14px 32px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: all 0.25s ease;
	position: relative;
	overflow: hidden;
}

.stg-lp__btn--primary {
	background: #ffffff;
	color: #050507 !important;
	border-color: #ffffff;
}

.stg-lp__btn--primary:hover {
	background: rgba(255,255,255,0.88);
	border-color: rgba(255,255,255,0.88);
}

.stg-lp__btn--primary::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
	animation: stgLpShimmer 4s ease-in-out infinite;
}

.stg-lp__btn--ghost {
	background: var(--stg-lp-glass);
	color: rgba(255,255,255,0.6) !important;
	border-color: var(--stg-lp-glass-border);
	backdrop-filter: var(--stg-lp-glass-blur);
	-webkit-backdrop-filter: var(--stg-lp-glass-blur);
}

.stg-lp__btn--ghost:hover {
	color: #ffffff !important;
	border-color: rgba(255,255,255,0.3);
	background: rgba(22,22,22,0.5);
}

.stg-lp__btn--lg {
	padding: 18px 40px;
	font-size: 13px;
}

/* ================================================
   SCROLL REVEAL
   ================================================ */

.stg-lp__reveal-child {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.stg-lp__reveal--visible > .stg-lp__reveal-child,
.stg-lp__reveal-child.stg-lp__reveal--visible {
	opacity: 1;
	transform: translateY(0);
}

/* ================================================
   KEYFRAMES
   ================================================ */

@keyframes stgLpShimmer {
	0%   { left: -100%; }
	50%  { left: 100%; }
	100% { left: 100%; }
}

@keyframes stgLpFadeUp {
	from { opacity: 0; transform: translateY(24px); }
	to   { opacity: 1; transform: translateY(0); }
}

@keyframes stgLpFadeIn {
	from { opacity: 0; }
	to   { opacity: 1; }
}

@keyframes stgLpLine {
	0%   { left: -40%; }
	100% { left: 100%; }
}

/* ================================================
   1. HERO — reference layout: content top + 3 cards bottom
   ================================================ */

.stg-lp__hero {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 100px 24px 60px;
	gap: 48px;
}

/* ── Hero text content ── */
.stg-lp__hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 900px;
}

.stg-lp__kicker {
	display: inline-block;
	font-family: var(--stg-lp-font);
	font-weight: 700;
	font-size: 11px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--stg-lp-text-faint);
	margin-bottom: 24px;
	opacity: 0;
	animation: stgLpFadeUp 0.8s ease 0.1s forwards;
}

.stg-lp__line-track {
	width: 100%;
	max-width: 240px;
	height: 1px;
	background: rgba(255,255,255,0.06);
	margin: 0 auto 56px;
	position: relative;
	overflow: hidden;
	opacity: 0;
	animation: stgLpFadeIn 0.6s ease 0.3s forwards;
}

.stg-lp__line-fill {
	position: absolute;
	top: 0;
	left: -40%;
	width: 40%;
	height: 100%;
	background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.5) 50%, transparent 100%);
	animation: stgLpLine 3s ease-in-out infinite;
}

.stg-lp__hero-title {
	font-family: var(--stg-lp-font-d);
	font-weight: 400;
	font-size: clamp(30px, 5vw, 52px);
	line-height: 1.12;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--stg-lp-text-strong);
	margin: 0 0 28px;
	opacity: 0;
	animation: stgLpFadeUp 0.9s ease 0.2s forwards;
}

.stg-lp__hero-title em {
	font-style: normal;
	color: rgba(255,255,255,0.4);
}

.stg-lp__hero-sub {
	font-size: 15px;
	line-height: 1.75;
	color: var(--stg-lp-text-muted);
	max-width: 540px;
	margin: 0 auto 48px;
	opacity: 0;
	animation: stgLpFadeUp 0.9s ease 0.4s forwards;
}

.stg-lp__hero-ctas {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
	opacity: 0;
	animation: stgLpFadeUp 0.9s ease 0.6s forwards;
}

/* ── Hero bottom: label + 3 glassmorphic cards ── */
.stg-lp__hero-bottom {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: var(--stg-lp-max);
	text-align: center;
}

.stg-lp__hero-label {
	display: inline-block;
	font-family: var(--stg-lp-font);
	font-weight: 700;
	font-size: 11px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--stg-lp-text-faint);
	margin-bottom: 24px;
	opacity: 0;
	animation: stgLpFadeUp 0.9s ease 0.7s forwards;
}

.stg-lp__hero-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	position: relative;
	opacity: 0;
	animation: stgLpFadeUp 0.9s ease 0.8s forwards;
}

/* Abstract texture behind card area for glassmorphism depth */
.stg-lp__hero-cards::before {
	content: '';
	position: absolute;
	inset: -32px;
	z-index: 0;
	background-image: url('https://images.unsplash.com/photo-1534796636912-3b95b3ab5986?w=1920&q=60&auto=format');
	background-size: cover;
	background-position: center;
	opacity: 0.1;
	border-radius: 24px;
	pointer-events: none;
}

.stg-lp__hero-card {
	position: relative;
	z-index: 1;
	background: var(--stg-lp-glass);
	box-shadow: var(--stg-lp-glass-shadow);
	backdrop-filter: var(--stg-lp-glass-blur);
	-webkit-backdrop-filter: var(--stg-lp-glass-blur);
	border: 1px solid var(--stg-lp-glass-border);
	border-radius: 16px;
	padding: 36px 28px;
	text-align: left;
	min-height: 220px;
	display: flex;
	flex-direction: column;
	transition: border-color 0.3s ease, transform 0.3s ease;
}

.stg-lp__hero-card:hover {
	border-color: rgba(255,255,255,0.18);
	transform: translateY(-4px);
}

.stg-lp__hero-card-num {
	display: block;
	font-family: var(--stg-lp-font-d);
	font-weight: 300;
	font-size: 44px;
	letter-spacing: -0.03em;
	color: var(--stg-lp-text-strong);
	line-height: 1;
	margin-bottom: 20px;
	background: linear-gradient(180deg, #ffffff 30%, rgba(255,255,255,0.25) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.stg-lp__hero-card-title {
	font-family: var(--stg-lp-font-d);
	font-weight: 400;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--stg-lp-text);
	margin: 0 0 12px;
}

.stg-lp__hero-card-desc {
	font-size: 13px;
	line-height: 1.7;
	color: var(--stg-lp-text-muted);
	margin: 0;
	margin-top: auto;
}

/* ================================================
   2. PAIN — big number + short glass card
   ================================================ */

.stg-lp__pain .stg-lp__container {
	text-align: center;
	max-width: 800px;
}

.stg-lp__pain-stat {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 4px;
	margin-bottom: 16px;
}

.stg-lp__pain-number {
	font-family: var(--stg-lp-font-d);
	font-weight: 300;
	font-size: clamp(100px, 20vw, 200px);
	line-height: 0.85;
	letter-spacing: -0.04em;
	color: var(--stg-lp-text-strong);
	background: linear-gradient(180deg, #ffffff 20%, rgba(255,255,255,0.08) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.stg-lp__pain-pct {
	font-family: var(--stg-lp-font-d);
	font-weight: 300;
	font-size: clamp(40px, 8vw, 72px);
	color: var(--stg-lp-text-faint);
}

.stg-lp__pain-title {
	font-family: var(--stg-lp-font-d);
	font-weight: 400;
	font-size: clamp(16px, 2.5vw, 22px);
	line-height: 1.45;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--stg-lp-text);
	margin: 0 auto 48px;
	max-width: 600px;
}

/* Glass card for pain content */
.stg-lp__pain-card {
	background: var(--stg-lp-glass);
	box-shadow: var(--stg-lp-glass-shadow);
	backdrop-filter: var(--stg-lp-glass-blur);
	-webkit-backdrop-filter: var(--stg-lp-glass-blur);
	border: 1px solid var(--stg-lp-glass-border);
	padding: 40px;
	max-width: 640px;
	margin: 0 auto;
	text-align: left;
}

.stg-lp__pain-card p {
	font-size: 14px;
	line-height: 1.8;
	color: var(--stg-lp-text-muted);
	margin: 0 0 16px;
}

.stg-lp__pain-card p:last-child {
	margin-bottom: 0;
}

.stg-lp__pain-card strong {
	color: var(--stg-lp-text-strong);
	font-weight: 700;
}

/* Divider line inside card */
.stg-lp__pain-divider {
	width: 40px;
	height: 1px;
	background: rgba(255,255,255,0.12);
	margin: 20px 0;
}

/* Legacy styles kept for backward compat */
.stg-lp__pain-body {
	text-align: left;
	max-width: 600px;
	margin: 0 auto;
}

.stg-lp__pain-body p {
	font-size: 14px;
	line-height: 1.8;
	color: var(--stg-lp-text-muted);
	margin: 0 0 20px;
}

.stg-lp__pain-body p:last-child {
	margin-bottom: 0;
}

.stg-lp__pain-problems {
	color: rgba(255,255,255,0.35) !important;
	border-left: 1px solid rgba(255,255,255,0.12);
	padding-left: 20px;
}

.stg-lp__pain-highlight {
	font-family: var(--stg-lp-font);
	font-weight: 700;
	font-size: 14px !important;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--stg-lp-text-strong) !important;
	text-align: center;
	margin-top: 32px !important;
	margin-bottom: 32px !important;
}

.stg-lp__pain-body strong {
	color: var(--stg-lp-text-strong);
	font-weight: 700;
}

/* ================================================
   3. ENGINE — glass cards
   ================================================ */

.stg-lp__engine .stg-lp__container {
	text-align: center;
}

.stg-lp__engine .stg-lp__section-sub {
	margin-left: auto;
	margin-right: auto;
}

.stg-lp__engine-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.stg-lp__engine-card {
	background: var(--stg-lp-glass);
	box-shadow: var(--stg-lp-glass-shadow);
	backdrop-filter: var(--stg-lp-glass-blur);
	-webkit-backdrop-filter: var(--stg-lp-glass-blur);
	border: 1px solid var(--stg-lp-glass-border);
	padding: 48px 28px;
	text-align: center;
	transition: border-color 0.3s ease, transform 0.3s ease;
}

.stg-lp__engine-card:hover {
	border-color: rgba(255,255,255,0.15);
	transform: translateY(-2px);
}

.stg-lp__engine-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	font-size: 14px;
	margin-bottom: 20px;
	border: 1px solid rgba(255,255,255,0.1);
	color: rgba(255,255,255,0.3);
}

.stg-lp__engine-name {
	font-family: var(--stg-lp-font);
	font-weight: 700;
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--stg-lp-text-faint);
	margin: 0 0 20px;
}

.stg-lp__engine-quote {
	font-family: var(--stg-lp-font-d);
	font-weight: 400;
	font-size: 17px;
	line-height: 1.35;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: var(--stg-lp-text-strong);
	margin: 0 0 16px;
}

.stg-lp__engine-desc {
	font-size: 13px;
	line-height: 1.7;
	color: var(--stg-lp-text-muted);
	margin: 0;
}

/* ================================================
   4. PLANS — reference pricing layout
   ================================================ */

.stg-lp__plans {
	position: relative;
	overflow: hidden;
}

/* Video background */
.stg-lp__plans-video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	transform: translate(-50%, -50%);
	object-fit: cover;
	z-index: 0;
	pointer-events: none;
}

/* Dark overlay on top of video */
.stg-lp__plans-overlay {
	position: absolute;
	inset: 0;
	background: rgba(5, 5, 7, 0.82);
	z-index: 1;
}

/* Big background text: "PLANES" / "Plans" — top-exposed like pricing.png */
.stg-lp__plans-bg-text {
	position: absolute;
	top: -0.12em;
	left: 50%;
	transform: translateX(-50%);
	font-family: var(--stg-lp-font-d);
	font-weight: 700;
	font-size: clamp(120px, 18vw, 280px);
	text-transform: capitalize;
	letter-spacing: 0.02em;
	color: #ffffff;
	opacity: 0.08;
	white-space: nowrap;
	pointer-events: none;
	z-index: 2;
	user-select: none;
}

.stg-lp__plans .stg-lp__container {
	padding-left: 16px;
	padding-right: 16px;
	position: relative;
	z-index: 3;
}

.stg-lp__plans-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	align-items: start;
	padding-top: clamp(80px, 10vw, 160px);
}

.stg-lp__plan {
	background: rgba(22, 22, 22, 0.55);
	box-shadow: var(--stg-lp-glass-shadow);
	backdrop-filter: var(--stg-lp-glass-blur);
	-webkit-backdrop-filter: var(--stg-lp-glass-blur);
	border: 1px solid rgba(255,255,255,0.08);
	padding: 44px 28px 36px;
	position: relative;
	transition: border-color 0.3s ease, transform 0.3s ease;
}

.stg-lp__plan:hover {
	border-color: rgba(255,255,255,0.18);
}

/* Popular (middle) card — elevated */
.stg-lp__plan--popular {
	border-color: rgba(255,255,255,0.15);
	background: rgba(22, 22, 22, 0.7);
	transform: scale(1.03);
	z-index: 2;
}

.stg-lp__plan--popular:hover {
	border-color: rgba(255,255,255,0.3);
}

/* Premium (third) card */
.stg-lp__plan--premium {
	border-color: rgba(255,255,255,0.1);
}

.stg-lp__plan--premium:hover {
	border-color: rgba(255,255,255,0.22);
}

/* Badge */
.stg-lp__plan-badge {
	position: absolute;
	top: -1px;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	font-family: var(--stg-lp-font);
	font-weight: 700;
	font-size: 10px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 6px 16px;
	white-space: nowrap;
	background: #ffffff;
	color: #050507;
}

/* Plan name — prominent like Shopify */
.stg-lp__plan-name {
	font-family: var(--stg-lp-font-d);
	font-weight: 700;
	font-size: clamp(24px, 3vw, 32px);
	letter-spacing: -0.01em;
	color: #ffffff;
	margin: 0 0 6px;
}

/* Audience — friendly "who is this for" */
.stg-lp__plan-audience {
	font-size: 13px;
	line-height: 1.4;
	color: rgba(255,255,255,0.45);
	margin: 0 0 24px;
}

/* Price block */
.stg-lp__plan-price {
	display: flex;
	align-items: baseline;
	gap: 2px;
	margin-bottom: 4px;
}

.stg-lp__plan-currency {
	font-family: var(--stg-lp-font-d);
	font-weight: 300;
	font-size: 20px;
	color: rgba(255,255,255,0.55);
}

.stg-lp__plan-amount {
	font-family: var(--stg-lp-font-d);
	font-weight: 300;
	font-size: clamp(30px, 4vw, 44px);
	line-height: 1;
	letter-spacing: -0.02em;
	color: #ffffff;
}

.stg-lp__plan-suffix {
	font-family: var(--stg-lp-font-d);
	font-weight: 400;
	font-size: 13px;
	color: rgba(255,255,255,0.4);
	margin-left: 6px;
}

.stg-lp__plan-tag {
	display: block;
	font-family: var(--stg-lp-font);
	font-weight: 700;
	font-size: 10px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.3);
	margin-bottom: 24px;
}

/* Intel phrase — the key differentiator */
.stg-lp__plan-intel {
	padding: 16px 0;
	margin-bottom: 24px;
	border-top: 1px solid rgba(255,255,255,0.08);
	border-bottom: 1px solid rgba(255,255,255,0.08);
}

.stg-lp__plan-intel-phrase {
	display: block;
	font-family: var(--stg-lp-font-d);
	font-weight: 400;
	font-size: 15px;
	line-height: 1.4;
	letter-spacing: 0.01em;
	color: #ffffff;
}

/* "Qué incluye" label */
.stg-lp__plan-feat-label {
	display: block;
	font-family: var(--stg-lp-font);
	font-weight: 700;
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.35);
	margin-bottom: 16px;
}

/* Feature list — white readable text */
.stg-lp__plan-features {
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
}

.stg-lp__plan-features li {
	position: relative;
	padding-left: 22px;
	font-size: 14px;
	line-height: 1.5;
	color: rgba(255,255,255,0.82);
	margin-bottom: 12px;
}

.stg-lp__plan-features li:last-child {
	margin-bottom: 0;
}

.stg-lp__plan-features li::before {
	content: '\2713';
	position: absolute;
	left: 0;
	color: rgba(255,255,255,0.4);
	font-size: 12px;
	font-weight: 700;
}

/* Footer — infra + renewal */
.stg-lp__plan-footer {
	padding: 14px 0;
	margin-bottom: 24px;
	border-top: 1px solid rgba(255,255,255,0.06);
}

.stg-lp__plan-infra {
	display: block;
	font-size: 12px;
	color: rgba(255,255,255,0.45);
	margin-bottom: 2px;
}

.stg-lp__plan-renewal {
	display: block;
	font-size: 11px;
	color: rgba(255,255,255,0.28);
}

/* Plan CTA */
.stg-lp__plan-cta {
	display: block;
	width: 100%;
	text-align: center;
}

/* ================================================
   5. JOURNEY — compact steps + big result statement
   ================================================ */

.stg-lp__journey .stg-lp__container {
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* Steps grid — compact 3×2 */
.stg-lp__journey-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	width: 100%;
	max-width: 900px;
	background: rgba(255,255,255,0.04);
	margin-bottom: 72px;
}

.stg-lp__journey-step {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 24px 20px;
	background: var(--stg-lp-bg);
}

.stg-lp__journey-num {
	font-family: var(--stg-lp-font-d);
	font-weight: 700;
	font-size: 11px;
	color: rgba(255,255,255,0.2);
	flex-shrink: 0;
	margin-top: 2px;
}

.stg-lp__journey-copy {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.stg-lp__journey-verb {
	font-family: var(--stg-lp-font-d);
	font-weight: 700;
	font-size: 14px;
	color: #ffffff;
	letter-spacing: -0.01em;
}

.stg-lp__journey-detail {
	font-size: 13px;
	line-height: 1.5;
	color: rgba(255,255,255,0.45);
}

/* Result statement — THE payoff */
.stg-lp__journey-result {
	text-align: center;
	max-width: 640px;
}

.stg-lp__journey-result-big {
	display: block;
	font-family: var(--stg-lp-font-d);
	font-weight: 300;
	font-size: clamp(56px, 10vw, 120px);
	line-height: 1;
	letter-spacing: -0.03em;
	color: #ffffff;
	margin-bottom: 8px;
}

.stg-lp__journey-result-from {
	display: block;
	font-family: var(--stg-lp-font-d);
	font-weight: 400;
	font-size: clamp(16px, 2.5vw, 22px);
	letter-spacing: 0.02em;
	color: rgba(255,255,255,0.5);
	margin-bottom: 24px;
}

.stg-lp__journey-result-sub {
	font-size: 14px;
	line-height: 1.7;
	color: rgba(255,255,255,0.35);
	margin: 0;
	max-width: 460px;
	margin-left: auto;
	margin-right: auto;
}

/* ================================================
   6. INCLUDES — glass items
   ================================================ */

.stg-lp__includes .stg-lp__container {
	text-align: center;
}

.stg-lp__includes-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	text-align: left;
	max-width: 900px;
	margin: 0 auto;
}

.stg-lp__includes-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 18px 20px;
	background: var(--stg-lp-glass);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid var(--stg-lp-glass-border);
	transition: border-color 0.2s ease;
}

.stg-lp__includes-item:hover {
	border-color: rgba(255,255,255,0.12);
}

.stg-lp__includes-check {
	flex-shrink: 0;
	color: rgba(255,255,255,0.3);
	font-size: 14px;
	font-weight: 700;
	margin-top: 1px;
}

.stg-lp__includes-item span:last-child {
	font-size: 13px;
	line-height: 1.55;
	color: var(--stg-lp-text);
}

/* ================================================
   7. COMPARE — glass table wrapper
   ================================================ */

.stg-lp__compare .stg-lp__container {
	text-align: center;
}

.stg-lp__compare-wrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	background: var(--stg-lp-glass);
	backdrop-filter: var(--stg-lp-glass-blur);
	-webkit-backdrop-filter: var(--stg-lp-glass-blur);
	border: 1px solid var(--stg-lp-glass-border);
	box-shadow: var(--stg-lp-glass-shadow);
}

.stg-lp__compare-table {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	border-collapse: collapse;
	font-size: 13px;
}

.stg-lp__compare-table th,
.stg-lp__compare-table td {
	padding: 14px 18px;
	text-align: center;
	border-bottom: 1px solid rgba(255,255,255,0.05);
}

.stg-lp__compare-table thead th {
	font-family: var(--stg-lp-font);
	font-weight: 700;
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--stg-lp-text-strong);
	padding-bottom: 18px;
}

.stg-lp__compare-table thead th:first-child {
	text-align: left;
}

.stg-lp__compare-label {
	text-align: left !important;
	font-weight: 600;
	color: var(--stg-lp-text);
}

.stg-lp__compare-table td {
	color: var(--stg-lp-text-muted);
	font-size: 13px;
}

/* Highlighted column */
.stg-lp__compare-popular {
	background: rgba(255,255,255,0.03);
	border-left: 1px solid rgba(255,255,255,0.06);
	border-right: 1px solid rgba(255,255,255,0.06);
}

.stg-lp__compare-table thead .stg-lp__compare-popular {
	color: var(--stg-lp-text-strong) !important;
	border-top: 1px solid rgba(255,255,255,0.12);
}

/* ================================================
   8. SUPPORT — glass cards
   ================================================ */

.stg-lp__support .stg-lp__container {
	text-align: center;
}

.stg-lp__support .stg-lp__section-sub {
	margin-left: auto;
	margin-right: auto;
}

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

.stg-lp__support-card {
	background: var(--stg-lp-glass);
	box-shadow: var(--stg-lp-glass-shadow);
	backdrop-filter: var(--stg-lp-glass-blur);
	-webkit-backdrop-filter: var(--stg-lp-glass-blur);
	border: 1px solid var(--stg-lp-glass-border);
	padding: 36px 24px;
	text-align: left;
	transition: border-color 0.3s ease, transform 0.3s ease;
}

.stg-lp__support-card:hover {
	border-color: rgba(255,255,255,0.15);
	transform: translateY(-2px);
}

.stg-lp__support-name {
	font-family: var(--stg-lp-font-d);
	font-weight: 400;
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--stg-lp-text-strong);
	margin: 0 0 12px;
}

.stg-lp__support-price {
	display: flex;
	align-items: baseline;
	gap: 2px;
	margin-bottom: 20px;
}

.stg-lp__support-price span:first-child {
	font-family: var(--stg-lp-font-d);
	font-weight: 300;
	font-size: 28px;
	color: var(--stg-lp-text-strong);
	letter-spacing: -0.02em;
}

.stg-lp__support-freq {
	font-family: var(--stg-lp-font-d);
	font-weight: 400;
	font-size: 14px;
	color: var(--stg-lp-text-muted);
}

.stg-lp__support-items {
	list-style: none;
	margin: 0;
	padding: 0;
	border-top: 1px solid rgba(255,255,255,0.06);
	padding-top: 16px;
}

.stg-lp__support-items li {
	position: relative;
	padding-left: 16px;
	font-size: 13px;
	line-height: 1.55;
	color: var(--stg-lp-text-muted);
	margin-bottom: 8px;
}

.stg-lp__support-items li::before {
	content: '\2713';
	position: absolute;
	left: 0;
	color: rgba(255,255,255,0.25);
	font-size: 10px;
}

.stg-lp__support-note {
	font-size: 13px;
	line-height: 1.65;
	color: var(--stg-lp-text-faint);
	max-width: 600px;
	margin: 0 auto;
}

/* ================================================
   4b. CLIENTS — infinite logo slider
   ================================================ */

.stg-lp__clients {
	background-color: transparent;
	overflow: hidden;
}

.stg-lp__clients .stg-lp__container {
	padding-top: 0;
	padding-bottom: 0;
}

.stg-lp__clients-title {
	font-family: var(--stg-lp-font);
	font-weight: 700;
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.3);
	text-align: center;
	margin: 0 0 32px;
}

.stg-lp__clients-track {
	position: relative;
	width: 100%;
	mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.stg-lp__clients-slide {
	display: flex;
	gap: 60px;
	width: max-content;
	animation: stg-lp-slide 30s linear infinite;
}

@keyframes stg-lp-slide {
	0%   { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

.stg-lp__clients-item {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

.stg-lp__clients-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	font-family: var(--stg-lp-font-d);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: -0.02em;
	color: rgba(255,255,255,0.5);
	border: 1px solid rgba(255,255,255,0.1);
	flex-shrink: 0;
}

.stg-lp__clients-name {
	font-family: var(--stg-lp-font-d);
	font-weight: 400;
	font-size: 14px;
	letter-spacing: 0.01em;
	color: rgba(255,255,255,0.4);
	white-space: nowrap;
}

/* ================================================
   4c. TESTIMONIALS — social proof with avatars
   ================================================ */

.stg-lp__testimonials .stg-lp__section-title {
	text-align: center;
}

.stg-lp__testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.stg-lp__testimonial {
	background: var(--stg-lp-glass);
	box-shadow: var(--stg-lp-glass-shadow);
	backdrop-filter: var(--stg-lp-glass-blur);
	-webkit-backdrop-filter: var(--stg-lp-glass-blur);
	border: 1px solid var(--stg-lp-glass-border);
	padding: 36px 28px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: border-color 0.3s ease;
}

.stg-lp__testimonial:hover {
	border-color: rgba(255,255,255,0.12);
}

.stg-lp__testimonial-quote {
	font-family: var(--stg-lp-font);
	font-weight: 400;
	font-size: 14px;
	line-height: 1.7;
	color: rgba(255,255,255,0.75);
	margin: 0 0 28px;
	font-style: normal;
}

.stg-lp__testimonial-author {
	display: flex;
	align-items: center;
	gap: 14px;
}

.stg-lp__testimonial-avatar {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.1);
	font-family: var(--stg-lp-font-d);
	font-weight: 700;
	font-size: 14px;
	letter-spacing: -0.02em;
	color: rgba(255,255,255,0.5);
	flex-shrink: 0;
}

.stg-lp__testimonial-name {
	display: block;
	font-family: var(--stg-lp-font-d);
	font-weight: 700;
	font-size: 14px;
	color: #ffffff;
}

.stg-lp__testimonial-role {
	display: block;
	font-size: 12px;
	color: rgba(255,255,255,0.35);
	margin-top: 2px;
}

/* ================================================
   9. FAQ — accordion
   ================================================ */

.stg-lp__faq .stg-lp__section-title {
	text-align: center;
}

.stg-lp__faq-list {
	max-width: 740px;
	margin: 0 auto;
}

.stg-lp__faq-item {
	border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stg-lp__faq-item:first-child {
	border-top: 1px solid rgba(255,255,255,0.06);
}

.stg-lp__faq-q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 22px 0;
	font-family: var(--stg-lp-font-d);
	font-weight: 400;
	font-size: 15px;
	color: rgba(255,255,255,0.8);
	cursor: pointer;
	list-style: none;
	transition: color 0.2s ease;
}

.stg-lp__faq-q::-webkit-details-marker {
	display: none;
}

.stg-lp__faq-q::after {
	content: '+';
	font-family: var(--stg-lp-font-d);
	font-weight: 300;
	font-size: 22px;
	color: rgba(255,255,255,0.25);
	flex-shrink: 0;
	transition: transform 0.3s ease, color 0.2s ease;
}

.stg-lp__faq-item[open] .stg-lp__faq-q {
	color: #ffffff;
}

.stg-lp__faq-item[open] .stg-lp__faq-q::after {
	content: '\2212';
	color: rgba(255,255,255,0.5);
}

.stg-lp__faq-q:hover {
	color: #ffffff;
}

.stg-lp__faq-a {
	padding: 0 0 24px;
}

.stg-lp__faq-a p {
	font-size: 14px;
	line-height: 1.7;
	color: rgba(255,255,255,0.5);
	margin: 0;
	max-width: 640px;
}

/* ================================================
   10. CTA
   ================================================ */

.stg-lp__cta {
	text-align: center;
}

.stg-lp__cta-inner {
	position: relative;
	z-index: 2;
	max-width: 680px;
	padding-top: 100px;
	padding-bottom: 100px;
}

.stg-lp__cta-title {
	font-family: var(--stg-lp-font-d);
	font-weight: 400;
	font-size: clamp(26px, 5vw, 44px);
	line-height: 1.1;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--stg-lp-text-strong);
	margin: 0 0 20px;
}

.stg-lp__cta-sub {
	font-size: 15px;
	line-height: 1.75;
	color: var(--stg-lp-text-muted);
	max-width: 500px;
	margin: 0 auto 40px;
}

.stg-lp__cta-btns {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

/* ================================================
   RESPONSIVE — 900px (tablet)
   ================================================ */

@media (max-width: 900px) {
	:root {
		--stg-lp-py: 80px;
	}

	.stg-lp__hero {
		padding: 80px 20px 48px;
		min-height: auto;
	}

	.stg-lp__hero-cards {
		grid-template-columns: 1fr;
		gap: 12px;
		max-width: 420px;
		margin: 0 auto;
	}

	.stg-lp__hero-card {
		min-height: auto;
		padding: 28px 24px;
	}

	.stg-lp__hero-cards::before {
		inset: -20px;
		border-radius: 16px;
	}

	.stg-lp__engine-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.stg-lp__journey-steps {
		grid-template-columns: repeat(2, 1fr);
		margin-bottom: 56px;
	}

	.stg-lp__plans-grid {
		grid-template-columns: 1fr;
		max-width: 480px;
		margin: 0 auto;
		gap: 16px;
	}

	.stg-lp__plan--popular {
		transform: none;
	}

	.stg-lp__testimonials-grid {
		grid-template-columns: 1fr;
		max-width: 520px;
		margin: 0 auto;
		gap: 16px;
	}

	.stg-lp__support-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.stg-lp__includes-grid {
		grid-template-columns: 1fr;
		gap: 8px;
	}
}

/* ================================================
   RESPONSIVE — 600px (mobile)
   ================================================ */

@media (max-width: 600px) {
	:root {
		--stg-lp-py: 56px;
	}

	.stg-lp__container {
		padding-left: 16px;
		padding-right: 16px;
	}

	.stg-lp__hero {
		padding: 60px 16px 40px;
		gap: 32px;
	}

	.stg-lp__hero-card {
		padding: 24px 20px;
		border-radius: 12px;
	}

	.stg-lp__hero-card-num {
		font-size: 36px;
		margin-bottom: 14px;
	}

	.stg-lp__hero-ctas {
		flex-direction: column;
		gap: 12px;
	}

	.stg-lp__hero-ctas .stg-lp__btn {
		width: 100%;
	}

	.stg-lp__line-track {
		max-width: 160px;
		margin-bottom: 40px;
	}

	.stg-lp__kicker {
		margin-bottom: 16px;
	}

	.stg-lp__pain .stg-lp__container {
		padding-top: 64px;
		padding-bottom: 64px;
	}

	.stg-lp__pain-card {
		padding: 28px 20px;
	}

	.stg-lp__journey-steps {
		grid-template-columns: 1fr;
		max-width: 400px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 48px;
	}

	.stg-lp__plan {
		padding: 32px 20px 28px;
	}

	.stg-lp__compare-table {
		min-width: 600px;
	}

	.stg-lp__cta-btns {
		flex-direction: column;
		gap: 12px;
	}

	.stg-lp__cta-btns .stg-lp__btn {
		width: 100%;
	}

	.stg-lp__cta-inner {
		padding-top: 64px;
		padding-bottom: 64px;
	}

	.stg-lp__btn--lg {
		padding: 16px 28px;
		font-size: 12px;
	}
}
