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

:root {
	--bg: #07080b;
	--panel: #ffffff;
	--panel-dark: #12141c;
	--border-dark: #23252f;
	--text: #0b0d14;
	--text-inv: #f4f5f8;
	--muted: #6b7280;
	--muted-inv: #9298a8;
	--primary: #2f6bff;
	--primary-dark: #1c4fd6;
	--primary-light: #eaf1ff;
	--radius: 16px;
	--radius-sm: 11px;
	--ease: cubic-bezier(.22,1,.36,1);
}

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

/* ---- scroll progress ---- */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0%; background: linear-gradient(90deg, var(--primary), #7fa8ff); z-index: 60; transition: width .08s linear; }

/* ---- scroll reveal ---- */
.reveal-el { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal-el.in-view { opacity: 1; transform: translateY(0); }
body {
	margin: 0; background: var(--bg); color: var(--text-inv);
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 16px; line-height: 1.5; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-weight: 800; letter-spacing: -.01em; margin: 0 0 .6rem; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 1.25rem; }

/* ---- buttons ---- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
	padding: .8rem 1.5rem; border-radius: 999px; font-weight: 700; font-size: .95rem;
	cursor: pointer; border: none; transition: transform .15s var(--ease), box-shadow .15s var(--ease), background .15s var(--ease);
}
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 8px 24px rgba(47,107,255,.35); }
.btn-primary:hover { background: var(--primary-dark); }
.btn-magnetic { transition: transform .18s var(--ease), background .15s var(--ease); }
.btn-outline { background: transparent; color: var(--text-inv); border: 1.5px solid rgba(255,255,255,.25); }
.btn-outline:hover { border-color: #fff; }
.btn-sm { padding: .6rem 1.15rem; font-size: .85rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }

/* ---- header ---- */
.site-header { position: sticky; top: 0; z-index: 40; background: rgba(7,8,11,.75); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255,255,255,.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: .9rem 1.25rem; }
.logo img { height: 26px; background: #fff; border-radius: 7px; padding: 3px 8px; }
.main-nav { display: flex; gap: 1.75rem; }
.main-nav a { color: var(--muted-inv); font-size: .9rem; font-weight: 500; transition: color .15s; }
.main-nav a:hover { color: #fff; }
@media (max-width: 760px) { .main-nav { display: none; } }

.header-actions { display: flex; align-items: center; gap: .9rem; }
.cart-btn {
	position: relative; display: flex; align-items: center; justify-content: center;
	width: 38px; height: 38px; border-radius: 999px; border: 1px solid rgba(255,255,255,.15);
	background: transparent; color: var(--text-inv); cursor: pointer; transition: border-color .15s, background .15s;
}
.cart-btn:hover { border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.06); }
.cart-btn svg { width: 19px; height: 19px; }
.cart-badge {
	position: absolute; top: -4px; right: -4px; min-width: 17px; height: 17px; padding: 0 4px;
	border-radius: 999px; background: var(--primary); color: #fff; font-size: .65rem; font-weight: 800;
	display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 2px #07080b;
}

/* ---- cart drawer ---- */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 90; }
.cart-drawer {
	position: fixed; top: 0; right: 0; bottom: 0; width: 380px; max-width: 92vw; z-index: 91;
	background: #12141c; color: var(--text-inv); display: flex; flex-direction: column;
	transform: translateX(100%); transition: transform .3s var(--ease); box-shadow: -20px 0 60px rgba(0,0,0,.4);
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.cart-drawer-head h2 { font-size: 1.1rem; margin: 0; }
.cart-close { background: none; border: none; color: var(--muted-inv); font-size: 1.5rem; line-height: 1; cursor: pointer; padding: 0; }
.cart-close:hover { color: #fff; }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 1.25rem 1.5rem; }
.cart-empty { color: var(--muted-inv); font-size: .9rem; text-align: center; margin-top: 2rem; }
.cart-item { display: flex; gap: .9rem; padding: .9rem 0; border-bottom: 1px solid rgba(255,255,255,.08); align-items: flex-start; }
.cart-item img { width: 56px; height: 56px; object-fit: cover; border-radius: 10px; flex: none; background: #000; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-title { font-size: .86rem; font-weight: 600; margin: 0 0 .25rem; }
.cart-item-price { font-size: .82rem; color: var(--muted-inv); margin: 0 0 .5rem; }
.cart-item-personalize { font-size: .74rem; color: #6d97ff; margin: -.3rem 0 .5rem; }
.cart-item-qty { display: flex; align-items: center; gap: .6rem; font-size: .85rem; }
.cart-qty-btn {
	width: 22px; height: 22px; border-radius: 6px; border: 1px solid rgba(255,255,255,.15); background: transparent;
	color: var(--text-inv); cursor: pointer; font-size: .9rem; line-height: 1; display: flex; align-items: center; justify-content: center;
}
.cart-qty-btn:hover { border-color: rgba(255,255,255,.4); }
.cart-item-remove { background: none; border: none; color: var(--muted-inv); font-size: 1.2rem; cursor: pointer; padding: 0 0 0 .5rem; flex: none; }
.cart-item-remove:hover { color: #fff; }
.cart-drawer-foot { padding: 1.25rem 1.5rem 1.5rem; border-top: 1px solid rgba(255,255,255,.1); }
.cart-subtotal { display: flex; justify-content: space-between; font-size: 1rem; font-weight: 700; margin-bottom: .3rem; }
.cart-surcharge-note { font-size: .74rem; color: var(--muted-inv); margin: 0 0 .8rem; }
.cart-drawer-foot .btn { width: 100%; }
.cart-note { font-size: .74rem; color: var(--muted-inv); text-align: center; margin: .7rem 0 0; }

/* ---- hero ---- */
.hero { position: relative; overflow: hidden; padding: 4.5rem 0; }
.hero-glow {
	position: absolute; inset: -20% -10% auto -10%; height: 620px; z-index: 0; pointer-events: none;
	background:
		radial-gradient(440px 340px at 18% 22%, rgba(47,107,255,.28), transparent 70%),
		radial-gradient(420px 340px at 82% 15%, rgba(47,107,255,.14), transparent 70%);
	filter: blur(10px);
	animation: glowDrift 16s ease-in-out infinite alternate;
}
@keyframes glowDrift {
	0% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(2%, 3%) scale(1.05); }
	100% { transform: translate(-3%, -1%) scale(.98); }
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; }
@media (max-width: 860px) { .hero-inner { grid-template-columns: 1fr; } }
.nfc-badge {
	display: inline-flex; align-items: center; gap: .5rem; font-size: .78rem; font-weight: 700; color: #bcd0ff;
	background: rgba(47,107,255,.12); border: 1px solid rgba(47,107,255,.35); padding: .4rem .85rem; border-radius: 999px; margin-bottom: 1.1rem;
}
.nfc-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 0 rgba(47,107,255,.6); animation: badgePulse 1.8s ease-out infinite; }
@keyframes badgePulse { 0% { box-shadow: 0 0 0 0 rgba(47,107,255,.55); } 100% { box-shadow: 0 0 0 7px rgba(47,107,255,0); } }
.hero-copy h1 { font-size: 3rem; line-height: 1.08; margin-bottom: 1.1rem; }
@media (max-width: 560px) { .hero-copy h1 { font-size: 2.2rem; } }
.grad { background: linear-gradient(90deg, #7fa8ff, var(--primary) 60%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { color: var(--muted-inv); font-size: 1.05rem; max-width: 46ch; margin-bottom: 1.75rem; }
.hero-cta { display: flex; gap: .8rem; flex-wrap: wrap; }
.hero-media { position: relative; display: flex; align-items: center; justify-content: center; gap: 1.35rem; min-height: 320px; padding: 1.5rem .5rem 0; }
.hero-card { position: relative; width: 46%; max-width: 205px; }
.hero-card img { display: block; width: 100%; border-radius: 20px; box-shadow: 0 26px 70px rgba(0,0,0,.5); }
.hero-card-front { z-index: 2; animation: heroFloat 5.5s ease-in-out infinite; }
.hero-card-back { z-index: 1; margin-top: 2.5rem; filter: brightness(.92); animation: heroFloatBack 5.5s ease-in-out infinite; animation-delay: .5s; }
.hero-card-label {
	position: absolute; bottom: -13px; left: 50%; transform: translateX(-50%); z-index: 3;
	background: var(--primary); color: #fff; font-size: .68rem; font-weight: 800; letter-spacing: .02em;
	padding: .32rem .8rem; border-radius: 999px; white-space: nowrap; box-shadow: 0 6px 16px rgba(47,107,255,.45);
}
.hero-card-label-alt { background: #16a34a; box-shadow: 0 6px 16px rgba(22,163,74,.4); }
.tap-pulse { position: absolute; left: 50%; top: 44%; width: 10px; height: 10px; z-index: 2; pointer-events: none; }
@keyframes heroFloat { 0%, 100% { transform: translateY(0) rotate(2deg); } 50% { transform: translateY(-10px) rotate(2deg); } }
@keyframes heroFloatBack { 0%, 100% { transform: translateY(0) rotate(-3deg); } 50% { transform: translateY(-8px) rotate(-3deg); } }
@media (max-width: 620px) {
	.hero-media { min-height: 280px; gap: 1rem; }
	.hero-card { max-width: 165px; }
	.hero-card-back { margin-top: 1.75rem; }
}
@media (max-width: 400px) {
	.hero-media { gap: .7rem; }
	.hero-card { max-width: 135px; }
	.hero-card-label { font-size: .6rem; padding: .26rem .6rem; }
}

.tap-pulse span {
	position: absolute; inset: 0; border-radius: 50%; border: 2px solid rgba(47,107,255,.55);
	animation: tapPulse 2.4s var(--ease) infinite;
}
.tap-pulse span:nth-child(2) { animation-delay: .5s; }
.tap-pulse span:nth-child(3) { animation-delay: 1s; }
@keyframes tapPulse {
	0% { transform: scale(1); opacity: .8; }
	100% { transform: scale(14); opacity: 0; }
}

/* ---- sections ---- */
.section { padding: 5rem 0; }
.section-dark { background: var(--panel-dark); }
.eyebrow { text-transform: uppercase; letter-spacing: .08em; font-size: .74rem; font-weight: 700; color: var(--primary); margin: 0 0 .5rem; }
.section h2 { font-size: 2rem; }
.section-sub { color: var(--muted-inv); max-width: 62ch; font-size: 1rem; }

/* ---- products showcase (numbered, two variants per item) ---- */
.showcase { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 2.25rem; }
@media (max-width: 860px) { .showcase { grid-template-columns: 1fr; } }
.showcase-item {
	display: grid; grid-template-columns: 40px 1fr; gap: 1rem; align-items: start;
	background: var(--panel-dark); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius);
	padding: 1.35rem 1.35rem 1.6rem; transition: border-color .18s var(--ease);
}
.showcase-item:hover { border-color: rgba(47,107,255,.4); }
.showcase-num { font-size: 1.4rem; font-weight: 800; color: var(--primary); opacity: .5; line-height: 1; }
.showcase-body h3 { font-size: 1.05rem; margin: 0 0 .9rem; }
.product-price { font-size: 1.3rem; font-weight: 800; }

.variant-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.variant-col { display: flex; flex-direction: column; }
.variant-swatch {
	display: flex; align-items: center; justify-content: center; border-radius: 14px; overflow: hidden;
	aspect-ratio: 4/3;
}
.variant-swatch-review { background: #14161e; border: 1px solid rgba(255,255,255,.08); }
.variant-swatch-menu { background: #0f2419; border: 1px solid rgba(22,163,74,.3); }
.variant-swatch-review svg, .variant-swatch-menu svg { color: var(--text-inv); opacity: .92; }
.variant-swatch-photo img { width: 100%; height: 100%; object-fit: cover; }
.variant-caption { text-align: center; font-size: .78rem; font-weight: 600; color: var(--muted-inv); margin: .55rem 0 0; }

.shape-stojak .variant-swatch, .shape-karta .variant-swatch { aspect-ratio: 3/4; }
.shape-naklejka .variant-swatch { aspect-ratio: 1/1; border-radius: 50%; }

.showcase-footer { margin-top: 1.1rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .6rem; }
.showcase-footer-tight { margin-top: .65rem; }
@media (max-width: 520px) {
	.showcase-footer-tight { flex-direction: column; align-items: stretch; gap: .5rem; }
	.showcase-footer-tight .btn { width: 100%; text-align: center; }
}

.personalize-hint { color: var(--muted-inv); font-size: .85rem; margin: 1rem 0 0; max-width: 62ch; }
.personalize-check {
	display: flex; align-items: center; gap: .45rem; margin-top: .6rem; font-size: .76rem; font-weight: 500;
	color: var(--muted-inv); cursor: pointer;
}
.personalize-check input { width: auto; accent-color: var(--primary); cursor: pointer; }

.showcase-banner {
	margin-top: 1.75rem; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
	background: linear-gradient(135deg, rgba(47,107,255,.12), rgba(47,107,255,.04));
	border: 1px solid rgba(47,107,255,.3); border-radius: var(--radius); padding: 1.25rem 1.5rem;
}
.showcase-banner-feature { display: flex; align-items: center; gap: .7rem; font-size: .88rem; color: var(--muted-inv); flex: 1; min-width: 220px; }
.showcase-banner-feature svg { flex: none; width: 22px; height: 22px; color: var(--primary); }
.showcase-banner .btn { flex: none; }

@media (max-width: 640px) {
	.showcase-item { grid-template-columns: 36px 1fr; padding: 1.25rem 1.1rem 1.5rem; }
	.showcase-num { font-size: 1.3rem; }
}

/* ---- bulk / quantity pricing table ---- */
.bulk-pricing { margin-top: 3rem; }
.bulk-pricing h3 { font-size: 1.3rem; margin: 0 0 .35rem; }
.bulk-pricing-table-wrap { overflow-x: auto; margin-top: 1.5rem; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); }
.bulk-pricing-table { width: 100%; border-collapse: collapse; font-size: .88rem; min-width: 480px; }
.bulk-pricing-table th, .bulk-pricing-table td { text-align: left; padding: .75rem 1.1rem; white-space: nowrap; }
.bulk-pricing-table thead th { color: var(--muted-inv); font-weight: 600; font-size: .76rem; text-transform: uppercase; letter-spacing: .04em; background: var(--panel-dark); border-bottom: 1px solid rgba(255,255,255,.1); }
.bulk-pricing-table tbody tr:not(:last-child) td { border-bottom: 1px solid rgba(255,255,255,.08); }
.bulk-pricing-table tbody td:first-child { font-weight: 700; color: var(--text-inv); }
.bulk-pricing-table tbody td:not(:first-child) { color: var(--muted-inv); }
.bulk-pricing-note { font-size: .85rem; color: var(--muted-inv); margin-top: 1rem; }
.bulk-pricing-note a { color: var(--primary); }

.check-list { list-style: none; padding: 0; margin: 1.1rem 0 0; display: flex; flex-direction: column; gap: .55rem; }
.check-list li { font-size: .92rem; color: var(--muted-inv); }
.check-list li::before { content: '✓ '; color: var(--primary); font-weight: 700; }

/* ---- picto flow (ultra-simple picture explanation) ---- */
.picto-flow {
	display: flex; align-items: center; justify-content: center; gap: 1.25rem; flex-wrap: wrap;
	background: var(--panel-dark); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius);
	padding: 2rem 1.5rem; margin: 2rem 0 2.5rem;
}
.picto-step { display: flex; flex-direction: column; align-items: center; text-align: center; max-width: 190px; }
.picto-icon {
	width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
	color: var(--primary); background: rgba(47,107,255,.12); border: 1px solid rgba(47,107,255,.3); border-radius: 14px;
}
.picto-icon svg { width: 28px; height: 28px; }
.picto-caption { font-size: .82rem; color: var(--muted-inv); margin: .75rem 0 0; }
.picto-arrow { width: 22px; height: 22px; color: var(--muted-inv); flex: none; }
@media (max-width: 760px) {
	.picto-flow { flex-direction: column; }
	.picto-arrow { transform: rotate(90deg); }
}

/* ---- contact / custom project form ---- */
.contact-inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: 3rem; }
@media (max-width: 860px) { .contact-inner { grid-template-columns: 1fr; } }
.contact-form { background: var(--panel); border-radius: var(--radius); padding: 1.75rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 1rem; }
.field label { display: block; font-size: .82rem; font-weight: 600; color: var(--text); margin-bottom: .35rem; }
.field input, .field textarea {
	width: 100%; font-family: inherit; font-size: .92rem; padding: .65rem .8rem; border: 1.5px solid #e2e4ea; border-radius: var(--radius-sm);
	background: #fff; color: var(--text); resize: vertical;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-light); }
.field input[type="file"] { padding: .5rem .6rem; font-size: .84rem; }
.field-hint { font-size: .76rem; color: var(--muted); margin: .35rem 0 0; }
.contact-form .error-msg { color: #dc2626; font-size: .82rem; margin-top: .35rem; min-height: 0; }
.contact-form .btn { width: 100%; margin-top: .25rem; }
.contact-form .btn:disabled { opacity: .6; cursor: not-allowed; }
.contact-note { font-size: .76rem; color: var(--muted); text-align: center; margin: .75rem 0 0; }

.contact-success {
	display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
	min-height: 320px; padding: 1.5rem; animation: contactSuccessIn .45s var(--ease);
}
.contact-success-icon { width: 64px; height: 64px; margin-bottom: 1rem; }
.contact-success-icon svg { width: 100%; height: 100%; }
.csi-circle { stroke: #16a34a; stroke-width: 3; stroke-dasharray: 151; stroke-dashoffset: 151; animation: csiCircle .6s ease-out forwards; }
.csi-check { stroke: #16a34a; stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 34; stroke-dashoffset: 34; animation: csiCheck .35s .5s ease-out forwards; }
.contact-success h3 { font-size: 1.25rem; margin: 0 0 .4rem; color: var(--text); }
.contact-success p { color: var(--muted); font-size: .92rem; margin: 0; max-width: 30ch; }
@keyframes contactSuccessIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes csiCircle { to { stroke-dashoffset: 0; } }
@keyframes csiCheck { to { stroke-dashoffset: 0; } }
@media (prefers-reduced-motion: reduce) {
	.contact-success, .csi-circle, .csi-check { animation: none; stroke-dashoffset: 0; }
}

/* ---- steps ---- */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.25rem; }
@media (max-width: 820px) { .steps-grid { grid-template-columns: 1fr; } }
.step-card { background: var(--panel-dark); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 1.5rem; transition: transform .18s var(--ease), border-color .18s; }
.step-card:hover { transform: translateY(-3px); }
.step-num { width: 34px; height: 34px; border-radius: 50%; color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; margin-bottom: .9rem; box-shadow: 0 6px 16px rgba(47,107,255,.35); background: linear-gradient(135deg, #2f6bff, #1c4fd6); }
.step-card h3 { font-size: 1rem; }
.step-card p { color: var(--muted-inv); font-size: .88rem; margin: 0; }

/* ---- trial callout ---- */
.trial-callout {
	display: flex; align-items: flex-start; gap: 1.5rem;
	background: linear-gradient(135deg, rgba(47,107,255,.14), rgba(22,163,74,.08));
	border: 1.5px solid rgba(47,107,255,.4); border-radius: var(--radius); padding: 1.75rem; margin-top: 2rem;
}
.trial-callout-badge {
	flex: none; width: 84px; height: 84px; display: flex; align-items: center; justify-content: center; flex-direction: column;
	background: var(--primary); color: #fff; font-weight: 800; font-size: .82rem; line-height: 1.25; border-radius: 16px;
	box-shadow: 0 10px 24px rgba(47,107,255,.4); text-align: center;
}
.trial-callout-body h3 { font-size: 1.08rem; margin: 0 0 .5rem; }
.trial-callout-body p { color: var(--muted-inv); font-size: .9rem; margin: 0 0 .9rem; }
@media (max-width: 620px) { .trial-callout { flex-direction: column; align-items: flex-start; } }

/* ---- plan cards (reuses same visual language as the app's plan picker) ---- */
.plan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1rem; }
.plan-card-loading { color: var(--muted-inv); font-size: .9rem; }
.plan-card {
	position: relative; display: flex; flex-direction: column; background: var(--panel-dark); border: 1.5px solid rgba(255,255,255,.12);
	border-radius: var(--radius); padding: 1.5rem 1.35rem 1.35rem;
	animation: planCardIn .55s var(--ease) both;
}
.plan-card:nth-child(1) { animation-delay: 0ms; }
.plan-card:nth-child(2) { animation-delay: 90ms; }
.plan-card:nth-child(3) { animation-delay: 180ms; }
.plan-card:nth-child(4) { animation-delay: 270ms; }
@keyframes planCardIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.plan-card.featured { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(47,107,255,.2); }
.plan-popular-badge { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #fff; font-size: .66rem; font-weight: 700; text-transform: uppercase; padding: .28rem .7rem; border-radius: 999px; }
.plan-name { font-size: 1.05rem; font-weight: 700; margin: 0 0 .2rem; }
.plan-desc { color: var(--muted-inv); font-size: .8rem; min-height: 2.1em; margin: 0 0 .5rem; }
.plan-price { display: flex; align-items: baseline; gap: .3rem; margin: .2rem 0 .15rem; }
.plan-price .amount { font-size: 1.7rem; font-weight: 800; }
.plan-price .interval { font-size: .78rem; color: var(--muted-inv); }
.plan-limit { color: var(--muted-inv); font-size: .78rem; margin: 0 0 .9rem; }
.plan-features { list-style: none; padding: 0; margin: 0 0 1.1rem; flex: 1; display: flex; flex-direction: column; gap: .4rem; }
.plan-features li { font-size: .82rem; color: var(--muted-inv); }
.plan-features li::before { content: '✓ '; color: var(--primary); font-weight: 700; }

/* ---- faq ---- */
.faq-wrap { max-width: 760px; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,.12); }
.faq-q {
	width: 100%; text-align: left; background: none; border: none; color: var(--text-inv); font-family: inherit;
	font-size: .98rem; font-weight: 600; padding: 1.1rem 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer;
}
.faq-q span { color: var(--primary); font-size: 1.3rem; font-weight: 400; transition: transform .2s var(--ease); }
.faq-item.open .faq-q span { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s var(--ease); }
.faq-a p { color: var(--muted-inv); font-size: .9rem; margin: 0 0 1.1rem; }
.faq-item.open .faq-a { max-height: 200px; }

/* ---- final cta ---- */
.final-cta { text-align: center; }
.final-cta .section-sub { margin: 0 auto 1.75rem; }

/* ---- footer ---- */
.site-footer { border-top: 1px solid rgba(255,255,255,.08); padding: 2.5rem 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
.footer-logo { height: 22px; background: #fff; border-radius: 6px; padding: 3px 7px; opacity: .9; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.25rem; font-size: .82rem; color: var(--muted-inv); }
.footer-links a:hover { color: #fff; }
.footer-copy { color: var(--muted-inv); font-size: .78rem; margin: 0; }
