/**
 * CannyRO Chestionar TCE — implementare 1:1 a designului (Chestionar TCE v2).
 * Mobile-first (390px baza), desktop la ≥1024px. Tokens conform README-ului de design.
 */

:root {
	/* Brand */
	--tce-gold:      #F0A81C;
	--tce-gold-dark: #B07E10;
	--tce-black:     #201F1C;
	--tce-red:       #D42B21;
	/* Text */
	--tce-ink:       #26231C;
	--tce-soft:      #55503F;
	--tce-muted:     #6E6754;
	--tce-faint:     #A29876;
	/* Suprafețe */
	--tce-cream:     #FBF6EC;
	--tce-white:     #FFFFFF;
	--tce-border:    #E3D8B9;
	--tce-border-2:  #EBE0C2;
	--tce-track:     #EDE3C8;
	/* Stări casierie */
	--state-valid:   #2E6437;
	--state-used:    #A83A2B;
	--state-none:    #5E6058;
	/* Formă */
	--radius:        12px;
}

/* ---------- bază ---------- */

body.chq-body {
	margin: 0;
	background: var(--tce-cream);
	color: var(--tce-ink);
	font-family: 'Archivo', system-ui, sans-serif;
	-webkit-font-smoothing: antialiased;
}

.chq-app {
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	flex-direction: column;
}

.chq-app *,
.chq-app *::before,
.chq-app *::after {
	box-sizing: border-box;
}

/* ---------- header negru ---------- */

.chq-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 20px;
	background: var(--tce-black);
}

.chq-header span {
	font-size: 12px;
	font-weight: 500;
	color: rgba(255, 255, 255, .6);
}

.chq-logo {
	height: 30px;
	display: block;
	width: auto;
}

/* ---------- progres ---------- */

.chq-pwrap {
	padding: 16px 20px 0;
}

.chq-pmeta {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
}

.chq-pstep { font-weight: 700; }
.chq-pcount { color: var(--tce-muted); }

.chq-ptrack {
	height: 6px;
	background: var(--tce-track);
	border-radius: 99px;
	margin-top: 8px;
	overflow: hidden;
}

.chq-pfill {
	height: 100%;
	background: var(--tce-gold);
	border-radius: 99px;
	transition: width .3s ease;
}

/* ---------- formular ---------- */

.chq-shell { flex: 1; display: flex; flex-direction: column; }
.chq-side { display: none; }
.chq-main { flex: 1; display: flex; flex-direction: column; }

#chq-form {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.chq-step {
	border: 0;
	margin: 0;
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 18px;
	flex: 1;
}

.chq-step[hidden] { display: none; }

.chq-st {
	margin: 0;
	font-size: 24px;
	font-weight: 800;
	letter-spacing: -.01em;
}

.chq-ssub {
	margin: -10px 0 0;
	font-size: 14px;
	color: var(--tce-muted);
	line-height: 1.45;
}

.chq-qgrid {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.chq-qn {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--tce-gold-dark);
}

.chq-ql {
	display: block;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.4;
	margin: 4px 0 8px;
}

.chq-ql-opt {
	color: var(--tce-muted);
	font-weight: 500;
}

.chq-ta {
	width: 100%;
	min-height: 100px;
	padding: 12px 14px;
	border: 1.5px solid var(--tce-border);
	border-radius: var(--radius);
	background: var(--tce-white);
	font: inherit;
	font-size: 16px;
	line-height: 1.45;
	color: var(--tce-ink);
	resize: vertical;
}

.chq-in {
	width: 100%;
	height: 50px;
	padding: 0 14px;
	border: 1.5px solid var(--tce-border);
	border-radius: var(--radius);
	background: var(--tce-white);
	font: inherit;
	font-size: 16px;
	color: var(--tce-ink);
}

.chq-ta:focus,
.chq-in:focus {
	outline: 2px solid var(--tce-gold);
	outline-offset: 0;
	border-color: var(--tce-gold);
}

.chq-fld { display: flex; flex-direction: column; gap: 8px; }
.chq-fld .chq-ql { margin: 0; }

.chq-field-error .chq-ta,
.chq-field-error .chq-in {
	border-color: var(--tce-red);
	background: #FCF0EC;
}

.chq-emsg {
	display: block;
	margin-top: 6px;
	font-size: 13px;
	font-weight: 600;
	color: var(--tce-red);
}

.chq-emsg[hidden] { display: none; }

/* GDPR checkbox custom */

.chq-gdpr {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-size: 13px;
	line-height: 1.5;
	color: var(--tce-soft);
	cursor: pointer;
}

.chq-cb-input {
	position: absolute;
	opacity: 0;
	width: 1px;
	height: 1px;
}

.chq-cb {
	flex: none;
	width: 20px;
	height: 20px;
	border: 1.5px solid #C5B98F;
	border-radius: 6px;
	background: var(--tce-white);
	margin-top: 1px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 800;
	color: transparent;
}

.chq-cb-input:checked + .chq-cb {
	background: var(--tce-gold);
	border-color: var(--tce-gold);
	color: var(--tce-black);
}

.chq-cb-input:focus-visible + .chq-cb {
	outline: 2px solid var(--tce-gold);
	outline-offset: 2px;
}

.chq-hp {
	position: absolute;
	left: -9999px;
	top: -9999px;
}

/* nav / butoane */

.chq-fnav {
	display: flex;
	gap: 12px;
	padding: 14px 20px 26px;
	border-top: 1px solid var(--tce-track);
	background: var(--tce-cream);
	position: sticky;
	bottom: 0;
}

.chq-fnav[hidden] { display: none; }

.chq-fnav-final {
	flex-direction: column;
	gap: 10px;
	align-items: center;
}

.chq-fnote {
	margin: 0;
	font-size: 12px;
	color: var(--tce-muted);
	text-align: center;
}

.chq-btn {
	font: inherit;
	font-size: 15px;
	font-weight: 800;
	border: none;
	cursor: pointer;
	border-radius: var(--radius);
	height: 50px;
	padding: 0 22px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	text-decoration: none;
}

.chq-btn:disabled { opacity: .6; cursor: default; }
.chq-btn[hidden] { display: none; }

.chq-prim { background: var(--tce-gold); color: var(--tce-black); }

.chq-ghost {
	background: transparent;
	border: 1.5px solid #D8CCA9;
	color: var(--tce-soft);
	font-weight: 700;
}

.chq-f1 { flex: 1; }
.chq-w100 { width: 100%; }

.chq-form-message {
	margin: 0;
	padding: 12px 20px;
	font-size: 14px;
	font-weight: 600;
	color: var(--tce-red);
	text-align: center;
}

.chq-closed {
	max-width: 480px;
	margin: 80px auto;
	padding: 24px;
	text-align: center;
	font-size: 16px;
	color: var(--tce-soft);
}

/* ---------- panou lateral desktop ---------- */

.chq-side-logo { height: 38px; align-self: flex-start; }

.chq-side-title {
	font-size: 34px;
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -.01em;
	margin: 18px 0 0;
	color: #fff;
}

.chq-side-sub {
	font-size: 15px;
	line-height: 1.55;
	color: rgba(255, 255, 255, .78);
	margin: 0;
}

.chq-steplist {
	display: flex;
	flex-direction: column;
	gap: 11px;
	font-size: 14px;
	margin-top: 6px;
}

.chq-stepit {
	display: flex;
	align-items: center;
	gap: 10px;
	color: rgba(255, 255, 255, .6);
}

.chq-sdot {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	border: 1.5px solid rgba(255, 255, 255, .4);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 800;
	flex: none;
}

.chq-sdone .chq-sdot {
	background: var(--tce-gold);
	color: var(--tce-black);
	border-color: var(--tce-gold);
}

.chq-scur { color: #fff; font-weight: 700; }
.chq-scur .chq-sdot { border-color: var(--tce-gold); color: var(--tce-gold); }

.chq-script {
	font-family: 'Caveat', cursive;
	font-size: 26px;
	font-weight: 700;
	color: var(--tce-gold);
	line-height: 1.1;
	margin: auto 0 0;
}

.chq-tease {
	background: rgba(240, 168, 28, .12);
	border: 1px solid rgba(240, 168, 28, .4);
	border-radius: var(--radius);
	padding: 16px 18px;
	font-size: 14px;
	line-height: 1.5;
	color: #fff;
}

.chq-tease b { color: var(--tce-gold); }

/* ---------- thank-you + voucher ---------- */

.chq-tybody {
	flex: 1;
	padding: 26px 22px 34px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	align-items: center;
	text-align: center;
}

.chq-tyk {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--tce-gold-dark);
}

.chq-tyh {
	margin: 0;
	font-size: 28px;
	font-weight: 800;
	letter-spacing: -.01em;
}

.chq-typ {
	margin: 0;
	font-size: 14.5px;
	line-height: 1.55;
	color: var(--tce-soft);
	max-width: 330px;
}

.chq-typ-desktop { display: none; }

.chq-vc {
	width: 100%;
	max-width: 400px;
	background: var(--tce-white);
	border: 1.5px solid var(--tce-border-2);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(32, 28, 14, .12);
	text-align: center;
	margin-top: 6px;
}

.chq-vtop {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: var(--tce-black);
	padding: 14px 18px;
}

.chq-vlogo { height: 26px; }

.chq-vchip {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .1em;
	color: var(--tce-gold);
	border: 1px solid rgba(240, 168, 28, .55);
	border-radius: 99px;
	padding: 4px 10px;
}

.chq-vbody {
	padding: 20px 22px 22px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: center;
}

.chq-vlab {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--tce-muted);
}

.chq-vamt {
	font-size: 56px;
	font-weight: 800;
	letter-spacing: -.02em;
	line-height: 1;
	color: var(--tce-red);
}

.chq-vamt span { font-size: 22px; }

.chq-vfor { font-size: 14.5px; }

.chq-perf {
	width: 100%;
	border-top: 2px dashed var(--tce-border);
	margin: 10px 0;
}

.chq-qrbox {
	width: 140px;
	height: 140px;
	padding: 10px;
	background: var(--tce-white);
	border: 1.5px solid var(--tce-border-2);
	border-radius: 12px;
}

.chq-qrbox img {
	width: 100%;
	height: 100%;
	display: block;
}

.chq-vcode {
	font-family: 'JetBrains Mono', monospace;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: .06em;
}

.chq-vexp { font-size: 12.5px; color: var(--tce-muted); }
.chq-vstate { font-weight: 700; color: var(--tce-red); }

.chq-vinstr {
	margin: 0;
	font-size: 12.5px;
	line-height: 1.55;
	color: var(--tce-muted);
}

.chq-tysave {
	width: 100%;
	max-width: 400px;
	margin-top: 10px;
}

.chq-tynote {
	font-size: 12.5px;
	color: var(--tce-faint);
	margin: 0;
}

.chq-tyscript { display: none; margin: 0; }

/* ---------- verificare casierie ---------- */

.chq-cs { color: #fff; }
.chq-cs-valid { background: var(--state-valid); }
.chq-cs-used { background: var(--state-used); }
.chq-cs-none { background: var(--state-none); }

.chq-cstop {
	padding: 18px 20px 0;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .7);
	text-align: center;
}

.chq-csmid {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 24px;
	text-align: center;
}

.chq-ico {
	width: 116px;
	height: 116px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .16);
	border: 2px solid rgba(255, 255, 255, .4);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 56px;
	font-weight: 700;
	margin-bottom: 10px;
}

.chq-vcode2 {
	font-family: 'JetBrains Mono', monospace;
	font-size: 26px;
	font-weight: 700;
	letter-spacing: .05em;
}

.chq-csname { font-size: 16px; color: rgba(255, 255, 255, .9); }

.chq-cstat {
	font-size: 21px;
	font-weight: 800;
	letter-spacing: .04em;
	margin: 4px 0 0;
}

h1.chq-cstat { margin: 4px 0 0; }

.chq-cssub {
	font-size: 14px;
	color: rgba(255, 255, 255, .85);
	max-width: 280px;
	line-height: 1.5;
	margin: 0;
}

.chq-csbot { padding: 16px 20px 30px; }

.chq-wbtn { background: #fff; color: var(--tce-ink); width: 100%; }

.chq-obtn {
	background: transparent;
	border: 1.5px solid rgba(255, 255, 255, .55);
	color: #fff;
	width: 100%;
}

.chq-csform {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
	max-width: 300px;
	margin-top: 8px;
}

.chq-csin {
	width: 100%;
	height: 52px;
	border: none;
	border-radius: var(--radius);
	padding: 0 16px;
	font-family: 'JetBrains Mono', monospace;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: .06em;
	text-align: center;
	text-transform: uppercase;
	color: var(--tce-ink);
}

/* bottom-sheet PIN */

.chq-dim {
	position: fixed;
	inset: 0;
	background: rgba(18, 16, 10, .55);
	z-index: 40;
}

.chq-dim[hidden] { display: none; }

.chq-sheet {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--tce-cream);
	color: var(--tce-ink);
	border-radius: 22px 22px 0 0;
	padding: 14px 20px 30px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: center;
	z-index: 41;
	max-width: 480px;
	margin: 0 auto;
}

.chq-sheet[hidden] { display: none; }

.chq-shbar {
	width: 44px;
	height: 5px;
	border-radius: 99px;
	background: #D8CCA9;
}

.chq-shh { margin: 2px 0 0; font-size: 19px; font-weight: 800; }

.chq-shp {
	margin: 0;
	font-size: 13px;
	color: var(--tce-muted);
	text-align: center;
	line-height: 1.45;
}

.chq-sherr {
	margin: 0;
	font-size: 13px;
	font-weight: 600;
	color: var(--tce-red);
}

.chq-dots { display: flex; gap: 14px; margin: 4px 0 6px; }

.chq-dot {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	border: 1.5px solid #C5B98F;
	background: #fff;
}

.chq-don { background: var(--tce-gold); border-color: var(--tce-gold); }

@keyframes chq-shake {
	0%, 100% { transform: translateX(0); }
	20% { transform: translateX(-8px); }
	40% { transform: translateX(8px); }
	60% { transform: translateX(-6px); }
	80% { transform: translateX(6px); }
}

.chq-shake { animation: chq-shake .3s ease; }

.chq-pad {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	width: 100%;
}

.chq-key {
	height: 56px;
	border: none;
	border-radius: var(--radius);
	background: #fff;
	box-shadow: 0 1px 2px rgba(32, 28, 14, .10);
	font: inherit;
	font-size: 22px;
	font-weight: 600;
	cursor: pointer;
	color: var(--tce-ink);
}

.chq-knull { background: transparent; box-shadow: none; cursor: default; }

/* ---------- desktop ≥1024 ---------- */

@media (min-width: 1024px) {

	/* formular: panou lateral + 2 coloane */

	.chq-form-app .chq-header { display: none; }

	.chq-form-app .chq-shell {
		display: grid;
		grid-template-columns: 430px 1fr;
		flex: 1;
		min-height: 100vh;
	}

	.chq-side {
		display: flex;
		flex-direction: column;
		gap: 22px;
		background: var(--tce-black);
		background-image: radial-gradient(rgba(240, 168, 28, .14) 1.5px, transparent 1.5px);
		background-size: 20px 20px;
		color: #fff;
		padding: 52px 48px 44px;
	}

	.chq-main {
		padding: 44px 64px 52px;
		max-width: 860px;
		gap: 0;
	}

	.chq-pwrap { padding: 0 0 20px; }

	.chq-step { padding: 0; }

	.chq-st { font-size: 28px; }

	.chq-qgrid {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 20px 26px;
	}

	.chq-step-contact .chq-fld,
	.chq-step-contact .chq-field-consent {
		max-width: 520px;
	}

	.chq-fnav {
		position: static;
		border-top: 0;
		background: transparent;
		padding: 20px 0 0;
		justify-content: space-between;
	}

	.chq-f1 { flex: 0 0 auto; min-width: 220px; }

	.chq-fnav-final { align-items: flex-start; }
	.chq-fnav-final .chq-w100 { width: auto; min-width: 320px; }

	/* thank-you desktop */

	.chq-ty-app .chq-header { padding: 14px 40px; }

	.chq-tybody {
		justify-content: center;
		padding: 64px;
	}

	.chq-tyh { font-size: 36px; }

	.chq-typ { max-width: 440px; font-size: 16px; }
	.chq-typ-mobile { display: none; }
	.chq-typ-desktop { display: block; }

	.chq-vc { max-width: 440px; }

	.chq-tysave { width: auto; min-width: 280px; margin-top: 8px; }

	.chq-tynote { display: none; }
	.chq-tyscript { display: block; font-size: 30px; }
}

/* ============ LANDING PAGE ============ */

.chq-lp { background: var(--tce-cream); }

.chq-lp-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
	background: var(--tce-black);
	position: sticky;
	top: 0;
	z-index: 10;
}

.chq-lp-navlinks { display: none; gap: 28px; }

.chq-lp-navlinks a {
	color: rgba(255, 255, 255, .82);
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
}

.chq-lp-navlinks a:hover { color: var(--tce-gold); }

/* hero */

.chq-lp-hero {
	background: var(--tce-black);
	background-image: radial-gradient(rgba(240, 168, 28, .14) 1.5px, transparent 1.5px);
	background-size: 22px 22px;
	color: #fff;
	padding: 56px 20px 64px;
}

.chq-lp-hero-inner { max-width: 1040px; margin: 0 auto; }

.chq-lp-kicker {
	display: inline-block;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--tce-gold);
	margin-bottom: 16px;
}

.chq-lp-title {
	margin: 0;
	font-size: 40px;
	line-height: 1.08;
	font-weight: 800;
	letter-spacing: -.02em;
}

.chq-lp-lead {
	margin: 18px 0 0;
	font-size: 17px;
	line-height: 1.55;
	color: rgba(255, 255, 255, .8);
	max-width: 560px;
}

.chq-lp-script { color: var(--tce-gold); font-size: 30px; margin: 22px 0 0; }

.chq-lp-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.chq-lp-ghost {
	background: transparent;
	border: 1.5px solid rgba(255, 255, 255, .4);
	color: #fff;
}

/* strip cifre */

.chq-lp-strip {
	display: flex;
	flex-direction: column;
	gap: 4px;
	background: var(--tce-gold);
	color: var(--tce-black);
	padding: 20px;
	text-align: center;
	font-size: 15px;
	font-weight: 600;
}

.chq-lp-strip-k { font-weight: 800; }

/* secțiuni */

.chq-lp-section { max-width: 1040px; margin: 0 auto; padding: 56px 20px; }

.chq-lp-head { text-align: center; max-width: 560px; margin: 0 auto 32px; }

.chq-lp-eyebrow {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--tce-gold-dark);
}

.chq-lp-h2 {
	margin: 8px 0 0;
	font-size: 30px;
	font-weight: 800;
	letter-spacing: -.01em;
	color: var(--tce-ink);
}

.chq-lp-sub { margin: 12px 0 0; font-size: 15px; line-height: 1.55; color: var(--tce-muted); }

.chq-lp-cards { display: grid; grid-template-columns: 1fr; gap: 18px; }

.chq-lp-card {
	background: var(--tce-white);
	border: 1.5px solid var(--tce-border-2);
	border-radius: 16px;
	padding: 26px 24px;
	box-shadow: 0 8px 24px rgba(32, 28, 14, .06);
}

.chq-lp-ic { font-size: 38px; line-height: 1; }

.chq-lp-card h3 { margin: 14px 0 6px; font-size: 19px; font-weight: 800; color: var(--tce-ink); }

.chq-lp-card p { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--tce-muted); }

/* band */

.chq-lp-band {
	background: var(--tce-black);
	color: #fff;
	padding: 52px 20px;
	text-align: center;
}

.chq-lp-band-inner { max-width: 680px; margin: 0 auto; }

.chq-lp-band-h { margin: 0; font-size: 28px; font-weight: 800; letter-spacing: -.01em; }

.chq-lp-band-p { margin: 14px 0 0; font-size: 15.5px; line-height: 1.6; color: rgba(255, 255, 255, .78); }

/* magazine */

.chq-lp-stores { display: grid; grid-template-columns: 1fr; gap: 18px; }

.chq-lp-store {
	background: var(--tce-white);
	border: 1.5px solid var(--tce-border-2);
	border-radius: 16px;
	padding: 26px 24px;
	border-left: 4px solid var(--tce-gold);
}

.chq-lp-store h3 { margin: 0 0 8px; font-size: 20px; font-weight: 800; color: var(--tce-ink); }

.chq-lp-store p { margin: 0; font-size: 15px; color: var(--tce-soft); }

.chq-lp-store-meta { margin-top: 8px !important; font-size: 13px !important; color: var(--tce-faint) !important; }

/* footer */

.chq-lp-footer {
	background: var(--tce-black);
	color: rgba(255, 255, 255, .7);
	text-align: center;
	padding: 44px 20px 40px;
}

.chq-lp-flogo { height: 40px; margin: 0 auto 14px; }

.chq-lp-fscript { color: var(--tce-gold); font-size: 28px; margin: 0 0 16px; }

.chq-lp-fmeta { font-size: 13px; margin: 0 0 8px; color: rgba(255, 255, 255, .6); }

.chq-lp-fcopy { font-size: 12px; margin: 0; color: rgba(255, 255, 255, .45); }

@media (min-width: 768px) {
	.chq-lp-navlinks { display: flex; }
	.chq-lp-nav { padding: 16px 40px; }
	.chq-lp-hero { padding: 88px 40px 96px; }
	.chq-lp-title { font-size: 60px; }
	.chq-lp-lead { font-size: 19px; }
	.chq-lp-strip { flex-direction: row; justify-content: center; gap: 60px; font-size: 16px; }
	.chq-lp-section { padding: 80px 40px; }
	.chq-lp-h2 { font-size: 38px; }
	.chq-lp-cards { grid-template-columns: repeat(3, 1fr); gap: 22px; }
	.chq-lp-stores { grid-template-columns: repeat(2, 1fr); gap: 22px; }
	.chq-lp-band-h { font-size: 36px; }
}

