/**
 * MyTasbih Pro — Landing Page
 *
 * Mobile-first, premium subscription page. Calm, spacious and
 * restrained: gold is used as an accent, not a flood. Inter for UI,
 * Amiri for display headings. Full dark-mode + reduced-motion support.
 *
 * @package MyTasbih Pro
 */

/* ════════════════════════════════════════════════
 * Tokens
 * ════════════════════════════════════════════════ */
.page-wrapper {
	/* Pro page only (this stylesheet loads only here): replace the global
	   blue→cream body gradient with a calm cream so the area behind the
	   transparent header matches the hero instead of showing blue. */
	background: linear-gradient(180deg, #fcfaf5 0%, #f6f1e7 55%, #f3ede1 100%);
	--pro-gold: #c9a227;
	--pro-gold-soft: #d4af37;
	--pro-ink: #1b1d2a;
	--pro-body: #545b6b;
	--pro-muted: #8a92a3;
	--pro-line: rgba(27, 29, 42, 0.10);
	--pro-line-gold: rgba(201, 162, 39, 0.22);
	--pro-surface: #ffffff;
	--pro-bg: #f6f1e7;
	--pro-bg-alt: #fcfaf5;
	--pro-shadow: 0 1px 2px rgba(27, 29, 42, 0.04), 0 8px 28px rgba(27, 29, 42, 0.06);
	--pro-shadow-lg: 0 2px 4px rgba(27, 29, 42, 0.05), 0 18px 48px rgba(27, 29, 42, 0.12);
	--pro-radius: 18px;
	--pro-radius-sm: 12px;
}
.page-wrapper.dark {
	background: linear-gradient(180deg, #121826 0%, #0e1320 55%, #0c111c 100%);
	--pro-gold: #e0c97f;
	--pro-gold-soft: #e0c97f;
	--pro-ink: #f3ecd6;
	--pro-body: #b7c0d0;
	--pro-muted: #8b94a6;
	--pro-line: rgba(255, 255, 255, 0.09);
	--pro-line-gold: rgba(224, 201, 127, 0.20);
	--pro-surface: #161c29;
	--pro-bg: #0e1320;
	--pro-bg-alt: #121826;
	--pro-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 10px 30px rgba(0, 0, 0, 0.35);
	--pro-shadow-lg: 0 2px 6px rgba(0, 0, 0, 0.4), 0 22px 52px rgba(0, 0, 0, 0.5);
}

/* ════════════════════════════════════════════════
 * Global chrome alignment (Pro page only)
 * The shared top-nav ships a generic dark tint (rgba(30,30,50,…)) that
 * reads as a third, off-hue band above the transparent header + hero.
 * Realign it to the Pro palette so nav → header → hero look like one
 * continuous surface in both themes.
 * ════════════════════════════════════════════════ */
.top-nav {
	background: rgba(252, 250, 245, 0.72); /* matches --pro-bg-alt (light) */
	border-bottom-color: var(--pro-line);
}
.page-wrapper.dark .top-nav {
	background: rgba(18, 24, 38, 0.78); /* matches --pro-bg-alt (#121826, dark) */
	border-bottom-color: var(--pro-line);
}

/* ════════════════════════════════════════════════
 * Layout primitives
 * ════════════════════════════════════════════════ */
.pro-main { background: var(--pro-bg); }

.pro-container {
	width: 100%;
	max-width: 1080px;
	margin: 0 auto;
	padding: 0 20px;
}
.pro-container--mid { max-width: 820px; }
.pro-container--narrow { max-width: 680px; }

.pro-section { padding: 44px 0; }
.pro-section--alt { background: var(--pro-bg-alt); }

.pro-head {
	text-align: center;
	max-width: 620px;
	margin: 0 auto 36px;
}
.pro-head__kicker {
	display: inline-block;
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--pro-gold);
	margin-bottom: 12px;
}
.pro-head__title {
	font-family: 'Amiri', serif;
	font-size: 27px;
	line-height: 1.22;
	font-weight: 700;
	color: var(--pro-ink);
	margin: 0;
	letter-spacing: -0.01em;
}
.pro-head__sub {
	font-family: 'Inter', sans-serif;
	font-size: 15.5px;
	line-height: 1.65;
	color: var(--pro-body);
	margin: 14px auto 0;
	max-width: 540px;
}

/* ════════════════════════════════════════════════
 * Icons
 * ════════════════════════════════════════════════ */
.pro-ic {
	width: 24px;
	height: 24px;
	stroke: currentColor;
	stroke-width: 1.6;
	stroke-linecap: round;
	stroke-linejoin: round;
	fill: none;
	flex-shrink: 0;
}
.pro-ic--sm { width: 16px; height: 16px; vertical-align: -3px; }

/* ════════════════════════════════════════════════
 * Buttons
 * ════════════════════════════════════════════════ */
.pro-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 48px;
	padding: 13px 26px;
	border-radius: 12px;
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	border: 1.5px solid transparent;
	transition: transform 0.18s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.pro-btn--lg { min-height: 52px; padding: 16px 34px; font-size: 15.5px; }
.pro-btn--block { width: 100%; }

.pro-btn--primary {
	background: linear-gradient(135deg, #e7cf86 0%, #c9a227 100%);
	color: #1b1d2a;
	box-shadow: 0 6px 20px rgba(201, 162, 39, 0.32);
}
.pro-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(201, 162, 39, 0.42); }
.pro-btn--primary:active { transform: translateY(0); }

.pro-btn--ghost {
	background: transparent;
	color: var(--pro-gold);
	border-color: var(--pro-line-gold);
}
.pro-btn--ghost:hover { background: rgba(201, 162, 39, 0.07); border-color: var(--pro-gold); transform: translateY(-1px); }

.pro-btn:focus-visible { outline: 2px solid var(--pro-gold); outline-offset: 3px; }

/* ════════════════════════════════════════════════
 * Hero
 * ════════════════════════════════════════════════ */
.pro-hero {
	position: relative;
	overflow: hidden;
	padding: 96px 16px 32px;
	background:
		radial-gradient(115% 80% at 88% 6%, rgba(201, 162, 39, 0.16), transparent 58%),
		radial-gradient(90% 70% at 4% 2%, rgba(201, 162, 39, 0.07), transparent 55%),
		linear-gradient(180deg, var(--pro-bg-alt) 0%, var(--pro-bg) 100%);
}
.pro-hero__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1140px;
	margin: 0 auto;
	display: grid;
	gap: 30px;
	align-items: center;
	text-align: center;
}
.pro-hero__copy {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.pro-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--pro-gold);
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	padding: 7px 15px;
	border: 1px solid var(--pro-line-gold);
	border-radius: 100px;
	margin-bottom: 22px;
	background: rgba(201, 162, 39, 0.07);
}
.pro-hero__title {
	font-family: 'Amiri', serif;
	font-size: 34px;
	line-height: 1.14;
	font-weight: 700;
	color: var(--pro-ink);
	margin: 0 0 18px;
	letter-spacing: -0.01em;
}
.pro-hero__subtitle {
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	line-height: 1.7;
	color: var(--pro-body);
	margin: 0 0 30px;
	max-width: 540px;
}
.pro-hero__actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
	max-width: 320px;
	margin-bottom: 20px;
}
.pro-hero__assurance {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	color: var(--pro-muted);
	margin: 0;
}
.pro-hero__assurance .pro-ic { color: var(--pro-gold); }

/* ── Hero device mockup (self-contained, theme-aware) ── */
.pro-mock {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin: 0 auto;
	padding: 14px;
}
.pro-mock__glow {
	position: absolute;
	width: 80%;
	height: 80%;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(201, 162, 39, 0.30), transparent 68%);
	filter: blur(20px);
	z-index: 0;
}
.pro-mock__device {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 320px;
	background: linear-gradient(165deg, #1b2338 0%, #0f1424 100%);
	border: 1px solid rgba(224, 201, 127, 0.18);
	border-radius: 26px;
	padding: 18px 16px 16px;
	box-shadow: 0 30px 70px rgba(10, 14, 26, 0.42), 0 4px 14px rgba(10, 14, 26, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.05);
	animation: pro-float 6.5s ease-in-out infinite;
}
.pro-mock__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 15px;
}
.pro-mock__bar-title {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 700;
	color: #f3ecd6;
}
.pro-mock__bar-title .pro-ic { width: 16px; height: 16px; color: var(--pro-gold-soft); }
.pro-mock__chip {
	font-family: 'Inter', sans-serif;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: #0f1424;
	background: linear-gradient(135deg, #e7cf86, #c9a227);
	padding: 4px 11px;
	border-radius: 100px;
}
.pro-mock__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-bottom: 13px;
}
.pro-mock__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 14px;
	padding: 12px 8px 11px;
}
.pro-mock__ring {
	position: relative;
	width: 62px;
	height: 62px;
	margin-bottom: 8px;
}
.pro-mock__ring svg {
	width: 62px;
	height: 62px;
	transform: rotate(-90deg);
}
.pro-mock__ring-track {
	fill: none;
	stroke: rgba(255, 255, 255, 0.10);
	stroke-width: 5;
}
.pro-mock__ring-val {
	fill: none;
	stroke: var(--pro-gold-soft);
	stroke-width: 5;
	stroke-linecap: round;
	transition: stroke-dashoffset 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.pro-mock__count {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Inter', sans-serif;
	font-size: 17px;
	font-weight: 800;
	color: #f3ecd6;
}
.pro-mock__name {
	font-family: 'Inter', sans-serif;
	font-size: 11.5px;
	font-weight: 600;
	color: #cfd6e4;
	line-height: 1.2;
}
.pro-mock__meta {
	font-family: 'Inter', sans-serif;
	font-size: 10.5px;
	color: #8b94a6;
	margin-top: 2px;
}
.pro-mock__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 3px;
}
.pro-mock__total {
	font-family: 'Inter', sans-serif;
	font-size: 11.5px;
	color: #cfd6e4;
}
.pro-mock__total b {
	color: var(--pro-gold-soft);
	font-weight: 800;
}
.pro-mock__save {
	font-family: 'Inter', sans-serif;
	font-size: 10.5px;
	font-weight: 700;
	color: #0f1424;
	background: linear-gradient(135deg, #e7cf86, #c9a227);
	padding: 6px 12px;
	border-radius: 8px;
}
.page-wrapper.dark .pro-mock__device {
	border-color: rgba(224, 201, 127, 0.24);
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.page-wrapper.dark .pro-mock__glow {
	background: radial-gradient(circle, rgba(224, 201, 127, 0.22), transparent 68%);
}

/* ════════════════════════════════════════════════
 * Hero feature marquee
 * A slow auto-scrolling strip of app-style cards (one compact row on every
 * screen). The track holds two identical card sets and loops seamlessly;
 * it pauses on hover/focus and degrades to a manual scroll for reduced motion.
 * ════════════════════════════════════════════════ */
.pro-rail-wrap {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1140px;
	margin: 36px auto 0;
}
.pro-rail {
	overflow: hidden;
	padding: 6px 0 14px;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.pro-rail::-webkit-scrollbar { display: none; }
.pro-rail__track {
	display: flex;
	width: max-content;
	animation: pro-marquee 60s linear infinite;
}
.pro-rail:hover .pro-rail__track,
.pro-rail:focus-within .pro-rail__track { animation-play-state: paused; }
.pro-rail__set {
	display: flex;
	gap: 14px;
	padding-right: 14px;   /* matches the gap so the loop is seamless */
	flex: 0 0 auto;
}
@keyframes pro-marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

/* ── Feature card (app-style, dark glass widget) ── */
.pro-float {
	flex: 0 0 auto;
	width: 168px;
	min-height: 134px;
	scroll-snap-align: start;
	display: flex;
	flex-direction: column;
	font-family: 'Inter', sans-serif;
	background: linear-gradient(165deg, #1b2338 0%, #0f1424 100%);
	border: 1px solid rgba(224, 201, 127, 0.18);
	border-radius: 16px;
	box-shadow: 0 12px 30px rgba(10, 14, 26, 0.16);
	padding: 14px 15px 13px;
	transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.pro-float:hover { transform: translateY(-3px); border-color: rgba(224, 201, 127, 0.34); box-shadow: 0 18px 40px rgba(10, 14, 26, 0.24); }
.page-wrapper.dark .pro-float { box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45); }

.pro-float__head { display: flex; align-items: center; gap: 7px; margin-bottom: 13px; }
.pro-float__ic { display: inline-flex; color: var(--pro-gold-soft); }
.pro-float__ic .pro-ic { width: 16px; height: 16px; }
.pro-float__title { font-size: 12px; font-weight: 700; color: #f3ecd6; letter-spacing: 0.01em; }
.pro-float__bars { display: flex; align-items: flex-end; gap: 4px; height: 32px; }
.pro-float__bars i {
	display: block;
	width: 6px;
	height: var(--h, 50%);
	border-radius: 3px;
	background: linear-gradient(180deg, #e7cf86, #c9a227);
	transform: scaleY(0);
	transform-origin: bottom;
	transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.pro-float__meta { font-size: 11px; color: rgba(255, 255, 255, 0.66); margin-top: auto; padding-top: 11px; }
.pro-float__meta b { color: #f3ecd6; font-weight: 800; font-size: 12.5px; }

/* Streak — a row of day-dots instead of an analytics chart. */
.pro-float__days { display: flex; align-items: center; gap: 5px; height: 32px; }
.pro-float__days i {
	display: block;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: linear-gradient(180deg, #e7cf86, #c9a227);
	transform: scale(0);
	transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pro-float__days i.is-today {
	width: 11px;
	height: 11px;
	background: radial-gradient(circle at 50% 35%, #fff2cf, #e7cf86 55%, #c9a227);
	box-shadow: 0 0 0 3px rgba(224, 201, 127, 0.22);
}

/* Cloud sync — a "synced" check badge. */
.pro-float__sync { display: flex; align-items: center; gap: 9px; height: 32px; }
.pro-float__check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	color: #0f1424;
	background: linear-gradient(135deg, #e7cf86, #c9a227);
	transform: scale(0);
	transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pro-float__check .pro-ic { width: 15px; height: 15px; stroke-width: 2.4; }
.pro-float__sync-txt { font-size: 11.5px; font-weight: 700; color: #f3ecd6; }

/* Qibla — a compass dial with a needle that swings into place. */
.pro-float__compass {
	position: relative;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 1.5px solid rgba(255, 255, 255, 0.18);
	background: radial-gradient(circle at 50% 40%, rgba(224, 201, 127, 0.12), transparent 70%);
}
.pro-float__needle {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 2.5px;
	height: 13px;
	margin: -13px 0 0 -1.25px;
	transform-origin: bottom center;
	transform: rotate(-40deg) scale(0);
	border-radius: 2px;
	background: linear-gradient(180deg, #e7cf86, rgba(201, 162, 39, 0.35));
	transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.pro-float__compass::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 4px;
	height: 4px;
	margin: -2px 0 0 -2px;
	border-radius: 50%;
	background: #e7cf86;
}

/* Reminders — scheduled adhkar rows. */
.pro-float__times { display: flex; flex-direction: column; gap: 6px; }
.pro-float__time {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 10.5px;
	font-weight: 600;
	color: #cfd6e4;
	opacity: 0;
	transform: translateX(-6px);
	transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.pro-float__time i {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: linear-gradient(135deg, #e7cf86, #c9a227);
	flex-shrink: 0;
}

/* Listen — play button + animated equaliser. */
.pro-float__audio { display: flex; align-items: center; gap: 10px; height: 32px; }
.pro-float__play {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	color: #0f1424;
	background: linear-gradient(135deg, #e7cf86, #c9a227);
	flex-shrink: 0;
}
.pro-float__play .pro-ic { width: 17px; height: 17px; }
.pro-float__play .pro-ic circle { display: none; }   /* drop the ring */
.pro-float__play .pro-ic path { fill: #0f1424; }       /* solid play triangle */
.pro-float__wave { display: flex; align-items: center; gap: 3px; height: 26px; flex: 1; }
.pro-float__wave i {
	display: block;
	width: 3px;
	height: 26px;
	border-radius: 3px;
	background: linear-gradient(180deg, #e7cf86, #c9a227);
	transform: scaleY(0.22);
	transform-origin: center;
	transition: transform 0.5s ease;
}

/* Reports — export progress bar + download badge. */
.pro-float__dl { display: flex; align-items: center; gap: 10px; height: 32px; }
.pro-float__dlbar {
	position: relative;
	flex: 1;
	height: 7px;
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.10);
	overflow: hidden;
}
.pro-float__dlbar i {
	position: absolute;
	inset: 0;
	border-radius: 4px;
	background: linear-gradient(90deg, #e7cf86, #c9a227);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.pro-float__dlic {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 9px;
	color: #0f1424;
	background: linear-gradient(135deg, #e7cf86, #c9a227);
	flex-shrink: 0;
}
.pro-float__dlic .pro-ic { width: 16px; height: 16px; stroke-width: 2; }

/* Library — list rows that slide in like catalogue entries. */
.pro-float__list { display: flex; flex-direction: column; justify-content: center; gap: 7px; height: 32px; }
.pro-float__row {
	position: relative;
	height: 6px;
	border-radius: 3px;
	background: rgba(255, 255, 255, 0.10);
	overflow: hidden;
}
.pro-float__row i {
	position: absolute;
	inset: 0;
	border-radius: 3px;
	background: linear-gradient(90deg, #e7cf86, #c9a227);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Guided adhkar — segmented step progress. */
.pro-float__steps { display: flex; align-items: center; gap: 5px; height: 32px; }
.pro-float__steps b {
	flex: 1;
	height: 6px;
	border-radius: 3px;
	background: rgba(255, 255, 255, 0.12);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.pro-float__steps b.is-on { background: linear-gradient(90deg, #e7cf86, #c9a227); }

/* Night modes — a glowing crescent with twinkling stars. */
.pro-float__night { position: relative; height: 32px; }
.pro-float__moon .pro-ic {
	width: 30px;
	height: 30px;
	color: #e7cf86;
	fill: rgba(231, 207, 134, 0.18);
	filter: drop-shadow(0 0 6px rgba(224, 201, 127, 0.5));
}
.pro-float__star {
	position: absolute;
	left: var(--x);
	top: var(--y);
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: #fff2cf;
	box-shadow: 0 0 4px rgba(255, 242, 207, 0.85);
	opacity: 0;
	transform: scale(0);
	transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Appearance — colour swatches + a small bead-string preview. */
.pro-float__skin { display: flex; align-items: center; gap: 7px; height: 32px; }
.pro-float__swatch {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--c, #c9a227);
	box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.22);
	transform: scale(0);
	transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pro-float__beads { display: inline-flex; align-items: center; gap: 3px; margin-inline-start: 4px; }
.pro-float__beads i {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: radial-gradient(circle at 35% 30%, #fff2cf, #e7cf86 55%, #c9a227);
	opacity: 0;
	transform: scale(0);
	transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Bars / dots / badges animate in as the carousel reveals. */
.pro-rail.is-revealed .pro-float__bars i { transform: scaleY(1); }
.pro-rail.is-revealed .pro-float__days i { transform: scale(1); }
.pro-rail.is-revealed .pro-float--qibla .pro-float__needle { transform: rotate(118deg) scale(1); }
.pro-rail.is-revealed .pro-float__check { transform: scale(1); }
.pro-rail.is-revealed .pro-float__time { opacity: 1; transform: none; }
.pro-rail.is-revealed .pro-float__dlbar i { transform: scaleX(1); }
.pro-rail.is-revealed .pro-float__dlic { animation: pro-bob 1.5s ease-in-out infinite; }
.pro-rail.is-revealed .pro-float__wave i { animation: pro-eq 1s ease-in-out infinite; }
.pro-rail.is-revealed .pro-float__row i { transform: scaleX(1); }
.pro-rail.is-revealed .pro-float__steps b { transform: scaleX(1); }
.pro-rail.is-revealed .pro-float__star { opacity: 1; transform: scale(1); animation: pro-twinkle 2.2s ease-in-out infinite; }
.pro-rail.is-revealed .pro-float__swatch { transform: scale(1); }
.pro-rail.is-revealed .pro-float__beads i { opacity: 1; transform: scale(1); }
.pro-rail.is-revealed .pro-float__swatch:nth-child(1) { transition-delay: 0.16s; }
.pro-rail.is-revealed .pro-float__swatch:nth-child(2) { transition-delay: 0.24s; }
.pro-rail.is-revealed .pro-float__swatch:nth-child(3) { transition-delay: 0.32s; }
.pro-rail.is-revealed .pro-float__swatch:nth-child(4) { transition-delay: 0.40s; }
.pro-rail.is-revealed .pro-float__beads i:nth-child(1) { transition-delay: 0.46s; }
.pro-rail.is-revealed .pro-float__beads i:nth-child(2) { transition-delay: 0.52s; }
.pro-rail.is-revealed .pro-float__beads i:nth-child(3) { transition-delay: 0.58s; }
.pro-rail.is-revealed .pro-float__beads i:nth-child(4) { transition-delay: 0.64s; }
.pro-rail.is-revealed .pro-float__row:nth-child(1) i { transition-delay: 0.18s; }
.pro-rail.is-revealed .pro-float__row:nth-child(2) i { transition-delay: 0.28s; }
.pro-rail.is-revealed .pro-float__row:nth-child(3) i { transition-delay: 0.38s; }
.pro-rail.is-revealed .pro-float__steps b:nth-child(1) { transition-delay: 0.16s; }
.pro-rail.is-revealed .pro-float__steps b:nth-child(2) { transition-delay: 0.24s; }
.pro-rail.is-revealed .pro-float__steps b:nth-child(3) { transition-delay: 0.32s; }
.pro-rail.is-revealed .pro-float__steps b:nth-child(4) { transition-delay: 0.40s; }
.pro-rail.is-revealed .pro-float__steps b:nth-child(5) { transition-delay: 0.48s; }
.pro-rail.is-revealed .pro-float__star:nth-child(3) { animation-delay: 0.4s; }
.pro-rail.is-revealed .pro-float__star:nth-child(4) { animation-delay: 0.9s; }
.pro-rail.is-revealed .pro-float__bars i:nth-child(1),
.pro-rail.is-revealed .pro-float__days i:nth-child(1) { transition-delay: 0.20s; }
.pro-rail.is-revealed .pro-float__bars i:nth-child(2),
.pro-rail.is-revealed .pro-float__days i:nth-child(2) { transition-delay: 0.26s; }
.pro-rail.is-revealed .pro-float__bars i:nth-child(3),
.pro-rail.is-revealed .pro-float__days i:nth-child(3) { transition-delay: 0.32s; }
.pro-rail.is-revealed .pro-float__bars i:nth-child(4),
.pro-rail.is-revealed .pro-float__days i:nth-child(4) { transition-delay: 0.38s; }
.pro-rail.is-revealed .pro-float__bars i:nth-child(5),
.pro-rail.is-revealed .pro-float__days i:nth-child(5) { transition-delay: 0.44s; }
.pro-rail.is-revealed .pro-float__bars i:nth-child(6),
.pro-rail.is-revealed .pro-float__days i:nth-child(6) { transition-delay: 0.50s; }
.pro-rail.is-revealed .pro-float__bars i:nth-child(7),
.pro-rail.is-revealed .pro-float__days i:nth-child(7) { transition-delay: 0.56s; }
.pro-rail.is-revealed .pro-float__time:nth-child(2) { transition-delay: 0.30s; }
/* Equaliser bars stagger out of phase for a waveform feel. */
.pro-float__wave i:nth-child(1) { animation-delay: 0s; }
.pro-float__wave i:nth-child(2) { animation-delay: 0.12s; }
.pro-float__wave i:nth-child(3) { animation-delay: 0.24s; }
.pro-float__wave i:nth-child(4) { animation-delay: 0.08s; }
.pro-float__wave i:nth-child(5) { animation-delay: 0.30s; }
.pro-float__wave i:nth-child(6) { animation-delay: 0.16s; }
.pro-float__wave i:nth-child(7) { animation-delay: 0.04s; }
.pro-float__wave i:nth-child(8) { animation-delay: 0.20s; }

@keyframes pro-eq {
	0%, 100% { transform: scaleY(0.25); }
	50% { transform: scaleY(1); }
}
@keyframes pro-bob {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(2px); }
}
@keyframes pro-twinkle {
	0%, 100% { opacity: 0.35; transform: scale(0.8); }
	50% { opacity: 1; transform: scale(1); }
}

/* ── Payment-brand logos ── */
.pro-pay {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 18px;
}
.pro-pay__label {
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	color: var(--pro-muted);
	margin-right: 2px;
}
.pay-logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 30px;
	min-width: 48px;
	padding: 0 10px;
	background: #fff;
	border: 1px solid rgba(27, 29, 42, 0.10);
	border-radius: 7px;
	box-shadow: 0 1px 2px rgba(27, 29, 42, 0.07);
}
.pay-logo__mc { height: 20px; width: auto; display: block; }
.pay-logo__txt {
	font-family: Arial, 'Helvetica Neue', sans-serif;
	font-weight: 800;
	font-size: 14px;
	line-height: 1;
}
.pay-logo__visa { color: #1434cb; font-style: italic; letter-spacing: 0.02em; }
.pay-logo__paypal { height: 17px; width: auto; display: block; }
.pay-logo__stripe { color: #635bff; }

/* ════════════════════════════════════════════════
 * Trust strip
 * ════════════════════════════════════════════════ */
.pro-trust {
	background: var(--pro-surface);
	border-bottom: 1px solid var(--pro-line);
	padding: 20px 0;
}
.pro-trust__row {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 14px;
}
.pro-trust__row li {
	display: flex;
	align-items: center;
	gap: 10px;
	justify-content: center;
	font-family: 'Inter', sans-serif;
	font-size: 13.5px;
	font-weight: 600;
	color: var(--pro-ink);
	white-space: nowrap;
}
.pro-trust__row .pro-ic {
	width: 16px;
	height: 16px;
	color: var(--pro-gold);
	background: rgba(201, 162, 39, 0.12);
	border-radius: 50%;
	padding: 7px;
	box-sizing: content-box;
	flex-shrink: 0;
}
.page-wrapper.dark .pro-trust__row .pro-ic { background: rgba(224, 201, 127, 0.14); }

/* ════════════════════════════════════════════════
 * Why Pro — pillars
 * ════════════════════════════════════════════════ */
.pro-pillars {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}
.pro-pillar {
	background: var(--pro-surface);
	border: 1px solid var(--pro-line);
	border-radius: var(--pro-radius);
	padding: 20px 18px;
	box-shadow: var(--pro-shadow);
}
.pro-pillar__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: rgba(201, 162, 39, 0.10);
	color: var(--pro-gold);
	margin-bottom: 13px;
}
.pro-pillar__title {
	font-family: 'Inter', sans-serif;
	font-size: 17px;
	font-weight: 700;
	color: var(--pro-ink);
	margin: 0 0 8px;
}
.pro-pillar__text {
	font-family: 'Inter', sans-serif;
	font-size: 14.5px;
	line-height: 1.65;
	color: var(--pro-body);
	margin: 0;
}

/* ════════════════════════════════════════════════
 * Feature highlights
 * ════════════════════════════════════════════════ */
/* Mobile: a swipeable row so nine cards take one screen-row, not nine. */
.pro-features {
	display: flex;
	gap: 12px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	margin: 0 -20px;
	padding: 2px 20px 14px;
	scroll-padding-left: 20px;
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.pro-features::-webkit-scrollbar { display: none; }
.pro-feature {
	display: flex;
	gap: 15px;
	flex: 0 0 82%;
	scroll-snap-align: start;
	background: var(--pro-surface);
	border: 1px solid var(--pro-line);
	border-radius: var(--pro-radius);
	padding: 22px;
	box-shadow: var(--pro-shadow);
	transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.pro-feature:hover { transform: translateY(-3px); box-shadow: var(--pro-shadow-lg); border-color: var(--pro-line-gold); }
.pro-feature__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(201, 162, 39, 0.10);
	color: var(--pro-gold);
	flex-shrink: 0;
}
.pro-feature__title {
	font-family: 'Inter', sans-serif;
	font-size: 15.5px;
	font-weight: 700;
	color: var(--pro-ink);
	margin: 2px 0 6px;
}
.pro-feature__text {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	line-height: 1.6;
	color: var(--pro-body);
	margin: 0;
}

/* ════════════════════════════════════════════════
 * Free vs Pro
 * ════════════════════════════════════════════════ */
.pro-compare {
	background: var(--pro-surface);
	border: 1px solid var(--pro-line);
	border-radius: var(--pro-radius);
	box-shadow: var(--pro-shadow);
	overflow: hidden;
}
.pro-compare__head,
.pro-compare__row {
	display: grid;
	grid-template-columns: 1fr 54px 92px;
	align-items: center;
	gap: 8px;
	padding: 13px 16px;
}
.pro-compare__head {
	border-bottom: 1px solid var(--pro-line);
	background: rgba(201, 162, 39, 0.05);
}
.pro-compare__head span { font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.pro-compare__free { text-align: center; color: var(--pro-muted); }
.pro-compare__pro { text-align: center; color: var(--pro-gold); display: inline-flex; align-items: center; justify-content: center; gap: 4px; }

.pro-compare__row { border-bottom: 1px solid var(--pro-line); }
.pro-compare__row:last-child { border-bottom: 0; }
.pro-compare__row--keep { background: rgba(201, 162, 39, 0.04); }
.pro-compare__feat {
	font-family: 'Inter', sans-serif;
	font-size: 13.5px;
	line-height: 1.45;
	color: var(--pro-ink);
	font-weight: 500;
}
.pro-compare__cell { text-align: center; }
.pro-compare__cell--pro { font-weight: 600; }
.pro-compare__val {
	font-family: 'Inter', sans-serif;
	font-size: 12.5px;
	font-weight: 600;
	color: var(--pro-gold);
	line-height: 1.3;
	display: inline-block;
}
.pro-compare__cell .pro-compare__val { color: var(--pro-ink); }
.pro-compare__cell--pro .pro-compare__val { color: var(--pro-gold); }
.pro-compare__yes { color: var(--pro-gold); display: inline-flex; }
.pro-compare__cell:not(.pro-compare__cell--pro) .pro-compare__yes { color: #4a5568; }
.page-wrapper.dark .pro-compare__cell:not(.pro-compare__cell--pro) .pro-compare__yes { color: #cbd5e0; }
.pro-compare__no { color: var(--pro-muted); font-weight: 400; }

/* ════════════════════════════════════════════════
 * Quran verse
 * ════════════════════════════════════════════════ */
.pro-verse {
	text-align: center;
	padding: 56px 20px;
	background: var(--pro-bg);
	border-top: 1px solid var(--pro-line-gold);
	border-bottom: 1px solid var(--pro-line-gold);
}
.pro-verse__arabic {
	font-family: 'Amiri', serif;
	font-size: 30px;
	line-height: 1.7;
	color: var(--pro-gold);
	margin: 0 0 16px;
}
.pro-verse__translation {
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-style: italic;
	line-height: 1.6;
	color: var(--pro-ink);
	margin: 0 0 6px;
}
.pro-verse__ref {
	font-family: 'Inter', sans-serif;
	font-size: 12.5px;
	letter-spacing: 0.04em;
	color: var(--pro-muted);
	margin: 0;
}

/* ════════════════════════════════════════════════
 * Pricing
 * ════════════════════════════════════════════════ */
.pro-plans {
	display: grid;
	gap: 16px;
	max-width: 380px;
	margin: 0 auto;
}
.pro-plan {
	position: relative;
	background: var(--pro-surface);
	border: 1px solid var(--pro-line);
	border-radius: var(--pro-radius);
	padding: 28px 24px;
	box-shadow: var(--pro-shadow);
	display: flex;
	flex-direction: column;
	transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.pro-plan:hover { transform: translateY(-3px); box-shadow: var(--pro-shadow-lg); }
.pro-plan--featured {
	border-color: var(--pro-gold);
	box-shadow: 0 2px 6px rgba(201, 162, 39, 0.12), 0 22px 50px rgba(201, 162, 39, 0.18);
}
.pro-plan__badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, #e7cf86, #c9a227);
	color: #1b1d2a;
	font-family: 'Inter', sans-serif;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 5px 14px;
	border-radius: 100px;
	white-space: nowrap;
}
.pro-plan__name {
	font-family: 'Inter', sans-serif;
	font-size: 17px;
	font-weight: 700;
	color: var(--pro-ink);
	margin: 0 0 4px;
}
.pro-plan__tagline {
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	color: var(--pro-muted);
	margin: 0 0 18px;
}
.pro-plan__price {
	display: flex;
	align-items: baseline;
	gap: 6px;
	margin-bottom: 4px;
}
.pro-plan__amount {
	font-family: 'Inter', sans-serif;
	font-size: 40px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--pro-ink);
	line-height: 1;
}
.pro-plan__per {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	color: var(--pro-muted);
}
.pro-plan__note {
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	color: var(--pro-body);
	margin: 0 0 22px;
	min-height: 18px;
}
.pro-plan__note--save { color: var(--pro-gold); font-weight: 600; }

/* What's-included list — gives each plan card real body and substance. */
.pro-plan__features {
	list-style: none;
	margin: 4px 0 24px;
	padding: 18px 0 0;
	border-top: 1px solid var(--pro-line);
	display: flex;
	flex-direction: column;
	gap: 11px;
}
.pro-plan__features li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-family: 'Inter', sans-serif;
	font-size: 13.5px;
	line-height: 1.4;
	color: var(--pro-body);
}
.pro-plan__features li.is-lead { color: var(--pro-ink); font-weight: 600; }
.pro-plan__features .pro-ic {
	width: 16px;
	height: 16px;
	color: var(--pro-gold);
	flex-shrink: 0;
	margin-top: 1px;
}
.pro-plan .pro-btn { margin-top: auto; }


/* ════════════════════════════════════════════════
 * FAQ
 * ════════════════════════════════════════════════ */
.pro-faq__item {
	background: var(--pro-surface);
	border: 1px solid var(--pro-line);
	border-radius: var(--pro-radius-sm);
	margin-bottom: 10px;
	overflow: hidden;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.pro-faq__item.is-open { border-color: var(--pro-line-gold); box-shadow: var(--pro-shadow); }
.pro-faq__h { margin: 0; }
.pro-faq__q {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 17px 20px;
	background: none;
	border: 0;
	cursor: pointer;
	text-align: left;
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: var(--pro-ink);
	transition: color 0.15s ease;
}
.pro-faq__q:hover { color: var(--pro-gold); }
.pro-faq__q:focus-visible { outline: 2px solid var(--pro-gold); outline-offset: -2px; border-radius: var(--pro-radius-sm); }
.pro-faq__plus {
	position: relative;
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}
.pro-faq__plus::before,
.pro-faq__plus::after {
	content: '';
	position: absolute;
	background: var(--pro-gold);
	border-radius: 2px;
	transition: transform 0.25s ease, opacity 0.25s ease;
}
.pro-faq__plus::before { top: 7px; left: 0; width: 16px; height: 2px; }
.pro-faq__plus::after { left: 7px; top: 0; width: 2px; height: 16px; }
.pro-faq__item.is-open .pro-faq__plus::after { transform: rotate(90deg); opacity: 0; }

.pro-faq__a {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.28s ease;
}
.pro-faq__a > p {
	overflow: hidden;
	min-height: 0;
	margin: 0;
	padding: 0 20px;
	font-family: 'Inter', sans-serif;
	font-size: 14.5px;
	line-height: 1.7;
	color: var(--pro-body);
}
.pro-faq__item.is-open .pro-faq__a { grid-template-rows: 1fr; }
.pro-faq__item.is-open .pro-faq__a > p { padding-bottom: 18px; }

/* ════════════════════════════════════════════════
 * Final CTA
 * ════════════════════════════════════════════════ */
.pro-final {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 360px;
	padding: 72px 20px;
}
.pro-final__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 0;
}
.pro-final__bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(10, 12, 22, 0.7) 0%, rgba(10, 12, 22, 0.78) 100%);
}
.pro-final__inner {
	position: relative;
	z-index: 1;
	max-width: 560px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.pro-final__title {
	font-family: 'Amiri', serif;
	font-size: 28px;
	line-height: 1.22;
	font-weight: 700;
	color: #fff;
	margin: 0 0 14px;
}
.pro-final__sub {
	font-family: 'Inter', sans-serif;
	font-size: 15.5px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.82);
	margin: 0 0 28px;
}

/* ════════════════════════════════════════════════
 * Stats band — real product facts, animated count-up
 * ════════════════════════════════════════════════ */
.pro-stats {
	background:
		radial-gradient(120% 120% at 50% 0%, rgba(201, 162, 39, 0.10), transparent 60%),
		var(--pro-surface);
	border-top: 1px solid var(--pro-line);
	border-bottom: 1px solid var(--pro-line);
	padding: 44px 0;
}
.pro-stats__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px 16px;
	text-align: center;
}
.pro-stat__num {
	font-family: 'Inter', sans-serif;
	font-size: 34px;
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1;
	color: var(--pro-gold);
	margin-bottom: 7px;
	font-variant-numeric: tabular-nums;
}
.pro-stat__label {
	font-family: 'Inter', sans-serif;
	font-size: 12.5px;
	line-height: 1.4;
	color: var(--pro-body);
}

/* ════════════════════════════════════════════════
 * Motion — scroll reveal, float, shine
 * (gated by .pro-js so a no-JS page shows everything)
 * ════════════════════════════════════════════════ */
.pro-js [data-reveal] {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.6s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
	transition-delay: var(--rd, 0s);
	will-change: opacity, transform;
}
.pro-js [data-reveal].is-revealed {
	opacity: 1;
	transform: none;
}
/* Gentle stagger for siblings that reveal together in a row/grid.
   Inline --rd (e.g. hero mockup, stats) overrides these. */
.pro-js [data-reveal]:nth-child(2) { --rd: 0.05s; }
.pro-js [data-reveal]:nth-child(3) { --rd: 0.10s; }
.pro-js [data-reveal]:nth-child(4) { --rd: 0.15s; }
.pro-js [data-reveal]:nth-child(5) { --rd: 0.20s; }
.pro-js [data-reveal]:nth-child(6) { --rd: 0.25s; }

@keyframes pro-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}
@keyframes pro-shine {
	0% { left: -130%; }
	60%, 100% { left: 140%; }
}

/* Subtle shine sweep on the primary CTA (hover/focus only) */
.pro-btn--primary { position: relative; overflow: hidden; }
.pro-btn--primary::after {
	content: '';
	position: absolute;
	top: 0;
	left: -130%;
	width: 55%;
	height: 100%;
	background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.45), transparent);
	transform: skewX(-18deg);
	pointer-events: none;
}
.pro-btn--primary:hover::after,
.pro-btn--primary:focus-visible::after { animation: pro-shine 0.9s ease; }

/* ════════════════════════════════════════════════
 * Tablet
 * ════════════════════════════════════════════════ */
@media (min-width: 640px) {
	.pro-section { padding: 80px 0; }
	.pro-head__title { font-size: 31px; }
	.pro-hero__title { font-size: 40px; }
	.pro-hero__subtitle { font-size: 17px; }
	.pro-hero__actions { flex-direction: row; max-width: none; width: auto; }
	.pro-stats__grid { grid-template-columns: repeat(3, 1fr); }
	.pro-trust__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px 40px; }
	.pro-pillars { grid-template-columns: repeat(2, 1fr); gap: 18px; }
	.pro-pillar { padding: 26px 24px; }
	.pro-features {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		overflow: visible;
		margin: 0;
		padding: 0;
		gap: 14px;
	}
	.pro-feature { flex: initial; }
	.pro-plans { grid-template-columns: repeat(3, 1fr); max-width: none; align-items: start; }
	.pro-compare__head, .pro-compare__row { grid-template-columns: 1fr 110px 150px; padding: 15px 24px; }
	.pro-verse__arabic { font-size: 36px; }
	.pro-final__title { font-size: 34px; }
}

/* ════════════════════════════════════════════════
 * Desktop
 * ════════════════════════════════════════════════ */
@media (min-width: 980px) {
	.pro-section { padding: 96px 0; }
	.pro-head { margin-bottom: 48px; }
	.pro-head__title { font-size: 36px; }
	.pro-hero { padding: 124px 20px 88px; }
	.pro-hero__inner { grid-template-columns: 1.04fr 0.96fr; gap: 56px; text-align: left; }
	.pro-hero__copy { align-items: flex-start; }
	.pro-hero__title { font-size: 54px; }
	.pro-mock__device { max-width: 384px; }
	.pro-rail-wrap { margin-top: 44px; }
	.pro-stats__grid { grid-template-columns: repeat(6, 1fr); }
	.pro-pillars { grid-template-columns: repeat(4, 1fr); }
	.pro-features { grid-template-columns: repeat(3, 1fr); gap: 16px; }
	.pro-plan--featured { transform: scale(1.04); }
	.pro-plan--featured:hover { transform: scale(1.04) translateY(-3px); }
}

/* ════════════════════════════════════════════════
 * Reduced motion
 * ════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
	.pro-btn, .pro-feature, .pro-plan, .pro-faq__a, .pro-faq__plus::before, .pro-faq__plus::after, .pro-faq__item {
		transition: none !important;
	}
	.pro-plan--featured, .pro-plan--featured:hover { transform: none; }
	.pro-btn--primary:hover, .pro-feature:hover, .pro-plan:hover { transform: none; }
	.pro-js [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
	.pro-mock__device { animation: none !important; }
	.pro-mock__ring-val { transition: none !important; }
	.pro-btn--primary:hover::after, .pro-btn--primary:focus-visible::after { animation: none !important; }
	.pro-float { animation: none !important; }
	/* Stop the marquee and let the visitor scroll the single set by hand. */
	.pro-rail { overflow-x: auto; -webkit-overflow-scrolling: touch; -webkit-mask-image: none; mask-image: none; }
	.pro-rail__track { animation: none !important; }
	.pro-rail__set:nth-child(2) { display: none; }
	.pro-float__bars i,
	.pro-float__days i,
	.pro-float__check,
	.pro-float__wave i,
	.pro-float__row i,
	.pro-float__steps b { transform: none !important; transition: none !important; animation: none !important; }
	.pro-float__dlbar i { transform: scaleX(1) !important; transition: none !important; }
	.pro-float__dlic { animation: none !important; }
	.pro-float__needle { transform: rotate(118deg) !important; transition: none !important; }
	.pro-float__time { opacity: 1 !important; transform: none !important; transition: none !important; }
	.pro-float__star { opacity: 1 !important; transform: scale(1) !important; transition: none !important; animation: none !important; }
}
