/* =========================================================
   AI Padhai – Exam Hub
   Light-mode "school noticeboard" design system
   ========================================================= */

.aipeh-root {
	--ink: #1B2A4A;
	--ink-soft: #4B5876;
	--cream: #FFF9EC;
	--cream-deep: #FBF2DC;
	--paper: #FFFFFF;
	--line: #E8DFC8;
	--orange: #E0592A;
	--orange-deep: #C44A20;
	--green: #2F9E6E;
	--yellow: #FFD23F;
	--shadow-soft: 0 18px 40px -22px rgba(27, 42, 74, 0.25);
	--shadow-card: 0 10px 28px -16px rgba(27, 42, 74, 0.18);
	--radius-lg: 26px;
	--radius-md: 18px;
	--radius-sm: 12px;
	--font-display: "Fraunces", Georgia, serif;
	--font-body: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

	font-family: var(--font-body);
	color: var(--ink);
	background: var(--cream);
	position: relative;
	overflow-x: clip;
	line-height: 1.5;
}

.aipeh-root * { box-sizing: border-box; }
.aipeh-root img { max-width: 100%; display: block; }

.aipeh-container {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 24px;
	position: relative;
	z-index: 2;
}

/* ---------- Reduced motion respect ---------- */
@media (prefers-reduced-motion: reduce) {
	.aipeh-root *, .aipeh-root *::before, .aipeh-root *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/* ---------- Focus visibility ---------- */
.aipeh-root a:focus-visible,
.aipeh-root button:focus-visible {
	outline: 3px solid var(--orange);
	outline-offset: 3px;
	border-radius: 6px;
}

/* =========================================================
   AMBIENT BACKGROUND LAYER (full-page, light, paper-like)
   ========================================================= */
.aipeh-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
}

.aipeh-bg-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(var(--line) 1px, transparent 1px),
		linear-gradient(90deg, var(--line) 1px, transparent 1px);
	background-size: 56px 56px;
	opacity: 0.35;
	mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.aipeh-bg-notebook-lines { display: none; }

/* Floating chalk dust specks */
.aipeh-chalk-dust span {
	position: absolute;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--yellow);
	opacity: 0.55;
	animation: aipeh-dust-float 14s ease-in-out infinite;
}
.aipeh-chalk-dust span:nth-child(1) { top: 8%;  left: 6%;  animation-delay: 0s;   background: var(--orange); }
.aipeh-chalk-dust span:nth-child(2) { top: 22%; left: 92%; animation-delay: 1.5s; }
.aipeh-chalk-dust span:nth-child(3) { top: 48%; left: 4%;  animation-delay: 3s;   background: var(--green); }
.aipeh-chalk-dust span:nth-child(4) { top: 65%; left: 88%; animation-delay: 4.5s; }
.aipeh-chalk-dust span:nth-child(5) { top: 80%; left: 14%; animation-delay: 2s;   background: var(--orange); }
.aipeh-chalk-dust span:nth-child(6) { top: 36%; left: 50%; animation-delay: 6s;   width: 4px; height: 4px; }
.aipeh-chalk-dust span:nth-child(7) { top: 90%; left: 60%; animation-delay: 5s; }
.aipeh-chalk-dust span:nth-child(8) { top: 14%; left: 40%; animation-delay: 7s;   background: var(--green); }
.aipeh-chalk-dust span:nth-child(9) { top: 58%; left: 70%; animation-delay: 8s; }
.aipeh-chalk-dust span:nth-child(10){ top: 4%;  left: 75%; animation-delay: 9s;   width: 5px; height: 5px; }

@keyframes aipeh-dust-float {
	0%, 100% { transform: translateY(0) translateX(0); opacity: 0.45; }
	50% { transform: translateY(-26px) translateX(10px); opacity: 0.9; }
}

/* Floating stationery shapes scattered across page */
.aipeh-float-shape {
	position: absolute;
	opacity: 0.85;
	filter: drop-shadow(0 6px 10px rgba(27,42,74,0.08));
	animation: aipeh-shape-drift 9s ease-in-out infinite;
}
.shape-protractor { width: 90px; top: 6%;   right: 6%;  animation-delay: 0s; }
.shape-pencil      { width: 110px; top: 42%; left: -2%; transform: rotate(-18deg); animation-delay: 1.2s; }
.shape-check       { width: 56px; top: 70%;  right: 10%; animation-delay: 2.4s; }
.shape-star        { width: 38px; top: 16%;  left: 18%;  animation-delay: 3.6s; }
.shape-ruler       { width: 130px; top: 86%; left: 38%;  transform: rotate(4deg); animation-delay: 1.8s; }

@keyframes aipeh-shape-drift {
	0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
	50% { transform: translateY(-18px) rotate(calc(var(--r, 0deg) + 3deg)); }
}
.shape-pencil { --r: -18deg; }
.shape-ruler { --r: 4deg; }

@media (max-width: 900px) {
	.shape-protractor, .shape-pencil, .shape-ruler { display: none; }
}

/* =========================================================
   PA ANNOUNCEMENT STRIP
   ========================================================= */
.aipeh-pa-strip {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 8px 16px 8px 12px;
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: var(--ink-soft);
	box-shadow: var(--shadow-card);
	margin-bottom: 28px;
}
.aipeh-pa-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--green);
	flex-shrink: 0;
	animation: aipeh-pulse 1.8s ease-in-out infinite;
}
@keyframes aipeh-pulse {
	0%, 100% { box-shadow: 0 0 0 0 rgba(47,158,110,0.45); }
	50% { box-shadow: 0 0 0 6px rgba(47,158,110,0); }
}

/* =========================================================
   HERO
   ========================================================= */
.aipeh-hero {
	position: relative;
	padding: 100px 0 0;
}

.aipeh-hero-grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 56px;
	align-items: center;
	padding-bottom: 70px;
}

.aipeh-hero-title {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: clamp(2.6rem, 5vw, 4.4rem);
	line-height: 1.04;
	margin: 0 0 22px;
	color: var(--ink);
}
.aipeh-hero-title .aipeh-line { display: block; }
.aipeh-hero-sub-line {
	font-style: italic;
	font-weight: 500;
	color: var(--ink-soft);
	font-size: 0.62em;
	margin-top: 4px;
}

.aipeh-marker-wrap {
	position: relative;
	display: inline-block !important;
	color: var(--orange-deep);
}
.aipeh-marker-stroke {
	position: absolute;
	left: -4px;
	right: -4px;
	bottom: 6px;
	height: 0.42em;
	background: var(--yellow);
	z-index: -1;
	border-radius: 3px;
	transform: scaleX(0);
	transform-origin: left;
	animation: aipeh-marker-draw 0.9s 1.1s cubic-bezier(.65,.05,.36,1) forwards;
}
@keyframes aipeh-marker-draw {
	to { transform: scaleX(1); }
}

.aipeh-hero-desc {
	font-size: 1.1rem;
	color: var(--ink-soft);
	max-width: 540px;
	margin: 0 0 32px;
}
.aipeh-hero-desc strong { color: var(--ink); }

.aipeh-hero-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 26px;
}

.aipeh-hero-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.aipeh-hero-tags span {
	font-size: 12.5px;
	font-weight: 600;
	color: var(--ink-soft);
	background: var(--cream-deep);
	border: 1px solid var(--line);
	border-radius: 8px;
	padding: 6px 12px;
}

/* ---------- Buttons ---------- */
.aipeh-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 15px;
	padding: 14px 26px;
	border-radius: 999px;
	text-decoration: none;
	border: 2px solid transparent;
	transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
	cursor: pointer;
	white-space: nowrap;
}
.aipeh-btn-primary {
	background: var(--orange);
	color: #fff;
	box-shadow: 0 10px 24px -10px rgba(224, 89, 42, 0.55);
}
.aipeh-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 30px -10px rgba(224, 89, 42, 0.6); background: var(--orange-deep); }
.aipeh-btn-primary svg { transition: transform 0.22s ease; }
.aipeh-btn-primary:hover svg { transform: translateX(3px); }

.aipeh-btn-ghost {
	background: transparent;
	color: var(--ink);
	border-color: var(--ink);
}
.aipeh-btn-ghost:hover { background: var(--ink); color: #fff; transform: translateY(-3px); }

.aipeh-btn-outline {
	background: transparent;
	color: var(--ink);
	border-color: var(--line);
	width: 100%;
	justify-content: center;
}
.aipeh-btn-outline:hover { border-color: var(--ink); background: var(--cream-deep); }

.aipeh-btn-sm { padding: 10px 20px; font-size: 13.5px; }
.aipeh-btn-lg { padding: 17px 34px; font-size: 16.5px; }

/* ---------- Hero visual: corkboard + datesheet ---------- */
.aipeh-hero-visual { position: relative; }

.aipeh-bell {
	position: absolute;
	top: -38px;
	right: 60px;
	z-index: 3;
	transform-origin: top center;
	animation: aipeh-bell-swing 4.5s ease-in-out infinite;
	filter: drop-shadow(0 6px 8px rgba(27,42,74,0.18));
}
@keyframes aipeh-bell-swing {
	0%, 100% { transform: rotate(-6deg); }
	50% { transform: rotate(6deg); }
}

.aipeh-corkboard {
	position: relative;
	background: var(--cream-deep);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 38px 30px 84px;
	box-shadow: var(--shadow-soft);
	background-image: radial-gradient(circle, rgba(27,42,74,0.05) 1px, transparent 1px);
	background-size: 14px 14px;
}

.aipeh-pin {
	position: absolute;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	box-shadow: 0 3px 5px rgba(27,42,74,0.3), inset 0 -2px 2px rgba(0,0,0,0.15);
	z-index: 4;
}
.pin-1 { top: 18px; left: 26px; background: var(--orange); }
.pin-2 { top: 18px; right: 26px; background: var(--green); }
.pin-3 { bottom: 96px; right: 36px; background: var(--yellow); }

.aipeh-datesheet-card {
	background: var(--paper);
	border-radius: var(--radius-md);
	padding: 26px 24px;
	box-shadow: var(--shadow-card);
	transform: rotate(-1.4deg);
	animation: aipeh-pin-drop 0.8s cubic-bezier(.2,.9,.3,1.2) both;
}
@keyframes aipeh-pin-drop {
	0% { opacity: 0; transform: translateY(-26px) rotate(-1.4deg) scale(0.96); }
	100% { opacity: 1; transform: translateY(0) rotate(-1.4deg) scale(1); }
}

.aipeh-datesheet-head {
	display: flex;
	align-items: center;
	gap: 14px;
	padding-bottom: 16px;
	margin-bottom: 14px;
	border-bottom: 1.5px dashed var(--line);
}
.aipeh-stamp-circle {
	flex-shrink: 0;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	border: 2.5px solid var(--orange);
	color: var(--orange-deep);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 13px;
	transform: rotate(-8deg);
}
.aipeh-ds-kicker {
	margin: 0;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--orange-deep);
}
.aipeh-ds-title {
	margin: 2px 0 0;
	font-family: var(--font-display);
	font-size: 1.2rem;
	font-weight: 600;
}

.aipeh-ds-list { list-style: none; margin: 0 0 18px; padding: 0; }
.aipeh-ds-list li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 9px 0;
	border-bottom: 1px solid var(--line);
	font-size: 14.5px;
}
.aipeh-ds-list li:last-child { border-bottom: none; }
.aipeh-ds-subject { font-weight: 600; }
.aipeh-ds-status {
	font-size: 11.5px;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 999px;
}
.status-done { background: rgba(47,158,110,0.14); color: var(--green); }
.status-progress { background: rgba(224,89,42,0.14); color: var(--orange-deep); animation: aipeh-soft-pulse 2s ease-in-out infinite; }
.status-upcoming { background: var(--cream-deep); color: var(--ink-soft); }
@keyframes aipeh-soft-pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.55; }
}

.aipeh-ds-footer {
	display: flex;
	align-items: center;
	gap: 14px;
	padding-top: 14px;
	border-top: 1.5px dashed var(--line);
}
.aipeh-progress-ring {
	position: relative;
	width: 56px;
	height: 56px;
	flex-shrink: 0;
}
.aipeh-progress-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.ring-track { fill: none; stroke: var(--cream-deep); stroke-width: 6; }
.ring-fill {
	fill: none;
	stroke: var(--green);
	stroke-width: 6;
	stroke-linecap: round;
	stroke-dasharray: 163.36;
	stroke-dashoffset: 163.36;
	animation: aipeh-ring-fill 1.4s 0.6s ease-out forwards;
}
@keyframes aipeh-ring-fill {
	to { stroke-dashoffset: 45.7; } /* ~72% */
}
.aipeh-progress-num {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 700;
	color: var(--ink);
}
.aipeh-ds-foot-text {
	margin: 0;
	font-size: 12.5px;
	color: var(--ink-soft);
	line-height: 1.35;
}

/* Sticky notes around the corkboard */
.aipeh-sticky {
	position: absolute;
	width: 96px;
	min-height: 78px;
	padding: 12px 10px;
	border-radius: 4px;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.3rem;
	color: var(--ink);
	box-shadow: 0 8px 16px -8px rgba(27,42,74,0.3);
	display: flex;
	flex-direction: column;
	gap: 4px;
	animation: aipeh-sticky-float 6s ease-in-out infinite;
}
.aipeh-sticky span {
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 10.5px;
	line-height: 1.2;
	color: var(--ink-soft);
}
.sticky-1 { background: var(--yellow); bottom: -2px; left: 6px; transform: rotate(-7deg); animation-delay: 0s; }
.sticky-2 { background: #BFE3D0; bottom: 26px; right: -16px; transform: rotate(6deg); animation-delay: 1.5s; }
.sticky-3 { background: #FFD8C2; bottom: -18px; right: 70px; transform: rotate(-4deg); animation-delay: 3s; }

@keyframes aipeh-sticky-float {
	0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
	50% { transform: translateY(-7px) rotate(var(--rot, 0deg)); }
}
.sticky-1 { --rot: -7deg; }
.sticky-2 { --rot: 6deg; }
.sticky-3 { --rot: -4deg; }

@media (max-width: 720px) {
	.aipeh-sticky { width: 80px; font-size: 1.1rem; min-height: 64px; }
	.sticky-3 { right: 10px; }
}

/* =========================================================
   MARQUEE — scrolling PA-style ticker
   ========================================================= */
.aipeh-marquee {
	margin-top: 36px;
	background: var(--ink);
	overflow: hidden;
	padding: 13px 0;
}
.aipeh-marquee-track {
	display: flex;
	width: max-content;
	gap: 28px;
	animation: aipeh-marquee-scroll 28s linear infinite;
}
.aipeh-marquee-track span {
	color: var(--cream);
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.06em;
	white-space: nowrap;
	opacity: 0.85;
}
@keyframes aipeh-marquee-scroll {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

/* =========================================================
   SECTION SHARED
   ========================================================= */
.aipeh-section {
	position: relative;
	padding: 88px 0;
}
.aipeh-section-alt { background: var(--cream-deep); }

.aipeh-section-head {
	max-width: 640px;
	margin: 0 auto 52px;
	text-align: center;
}
.aipeh-eyebrow {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--orange-deep);
	background: rgba(224,89,42,0.1);
	padding: 6px 14px;
	border-radius: 999px;
	margin-bottom: 16px;
}
.aipeh-section-head h2 {
	font-family: var(--font-display);
	font-size: clamp(1.8rem, 3.4vw, 2.6rem);
	font-weight: 600;
	margin: 0 0 14px;
	line-height: 1.18;
}
.aipeh-section-head p {
	color: var(--ink-soft);
	font-size: 1.02rem;
	margin: 0;
}

/* =========================================================
   TOOL CARDS — rubber-stamp entrance
   ========================================================= */
.aipeh-tool-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.aipeh-tool-card {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	padding: 30px 26px;
	box-shadow: var(--shadow-card);
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.aipeh-tool-card:hover {
	transform: translateY(-6px) rotate(-0.4deg);
	box-shadow: 0 22px 38px -18px rgba(27,42,74,0.28);
	border-color: var(--orange);
}

.aipeh-tool-icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--ti-color, var(--orange));
	background: color-mix(in srgb, var(--ti-color, var(--orange)) 12%, var(--paper));
	margin-bottom: 18px;
}
.aipeh-tool-icon svg { width: 24px; height: 24px; }

.aipeh-tool-card h3 {
	font-family: var(--font-display);
	font-size: 1.18rem;
	font-weight: 600;
	margin: 0 0 8px;
}
.aipeh-tool-card p {
	color: var(--ink-soft);
	font-size: 0.96rem;
	margin: 0 0 16px;
}
.aipeh-tool-link {
	color: var(--orange-deep);
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
}
.aipeh-tool-link:hover { text-decoration: underline; }

.aipeh-tool-card-cta {
	background: var(--ink);
	border-color: var(--ink);
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.aipeh-tool-card-cta h3 { color: #fff; }
.aipeh-tool-card-cta p { color: rgba(255,255,255,0.72); }
.aipeh-tool-card-cta:hover { border-color: var(--orange); }

/* Stamp-in entrance animation (applied via JS class .is-in) */
.aipeh-stamp-in {
	opacity: 0;
	transform: scale(0.82) rotate(-6deg);
}
.aipeh-stamp-in.is-in {
	animation: aipeh-stamp 0.55s cubic-bezier(.2,.85,.35,1.2) forwards;
}
@keyframes aipeh-stamp {
	0% { opacity: 0; transform: scale(0.82) rotate(-6deg); }
	60% { opacity: 1; transform: scale(1.04) rotate(1deg); }
	100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

@media (max-width: 940px) {
	.aipeh-tool-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
	.aipeh-tool-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   TIMETABLE / HOW IT WORKS
   ========================================================= */
.aipeh-timetable {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}
.aipeh-timetable-rail {
	position: absolute;
	top: 26px;
	left: 6%;
	right: 6%;
	height: 2px;
	background: repeating-linear-gradient(90deg, var(--line) 0 10px, transparent 10px 18px);
	z-index: 0;
}

.aipeh-period { position: relative; z-index: 1; text-align: center; }
.aipeh-period-bell {
	width: 52px;
	height: 52px;
	margin: 0 auto 18px;
	border-radius: 50%;
	background: var(--ink);
	color: var(--cream);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.1rem;
	box-shadow: 0 8px 18px -8px rgba(27,42,74,0.45);
}
.aipeh-period:nth-child(2) .aipeh-period-bell { background: var(--orange); }
.aipeh-period:nth-child(3) .aipeh-period-bell { background: var(--green); }
.aipeh-period:nth-child(4) .aipeh-period-bell { background: var(--ink); }

.aipeh-period-card {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	padding: 20px 18px;
	box-shadow: var(--shadow-card);
}
.aipeh-period-card h4 {
	font-family: var(--font-display);
	font-size: 1.04rem;
	margin: 0 0 8px;
	font-weight: 600;
}
.aipeh-period-card p {
	font-size: 0.88rem;
	color: var(--ink-soft);
	margin: 0;
	line-height: 1.45;
}

@media (max-width: 880px) {
	.aipeh-timetable { grid-template-columns: repeat(2, 1fr); }
	.aipeh-timetable-rail { display: none; }
}
@media (max-width: 540px) {
	.aipeh-timetable { grid-template-columns: 1fr; }
}

/* =========================================================
   PRICING — exam fee receipt cards
   ========================================================= */
.aipeh-pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	align-items: stretch;
}

.aipeh-price-card {
	position: relative;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	padding: 32px 28px;
	box-shadow: var(--shadow-card);
	display: flex;
	flex-direction: column;
	transition: transform 0.3s ease;
}
.aipeh-price-card:hover { transform: translateY(-5px); }

.aipeh-price-featured {
	background: var(--ink);
	border-color: var(--ink);
	color: #fff;
	transform: scale(1.04);
	box-shadow: 0 26px 44px -18px rgba(27,42,74,0.45);
}
.aipeh-price-featured:hover { transform: scale(1.04) translateY(-5px); }
.aipeh-price-featured .aipeh-price-tag,
.aipeh-price-featured .aipeh-price-validity,
.aipeh-price-featured .aipeh-price-list li { color: rgba(255,255,255,0.78); }
.aipeh-price-featured .aipeh-price-amount span { color: rgba(255,255,255,0.6); }
.aipeh-price-featured .aipeh-price-list li::before { color: var(--yellow); }

.aipeh-price-ribbon {
	position: absolute;
	top: -13px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--orange);
	color: #fff;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.05em;
	padding: 6px 16px;
	border-radius: 999px;
	box-shadow: 0 6px 14px -6px rgba(224,89,42,0.6);
}

.aipeh-price-name {
	font-family: var(--font-display);
	font-size: 1.3rem;
	font-weight: 600;
	margin: 6px 0 4px;
}
.aipeh-price-tag {
	font-size: 0.88rem;
	color: var(--ink-soft);
	margin: 0 0 18px;
}
.aipeh-price-amount {
	font-family: var(--font-display);
	font-size: 2.4rem;
	font-weight: 700;
	margin: 0;
}
.aipeh-price-amount span {
	font-family: var(--font-body);
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--ink-soft);
}
.aipeh-price-validity {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: var(--orange-deep);
	margin: 8px 0 22px;
	text-transform: uppercase;
}
.aipeh-price-featured .aipeh-price-validity { color: var(--yellow); }

.aipeh-price-list {
	list-style: none;
	margin: 0 0 26px;
	padding: 0;
	flex-grow: 1;
}
.aipeh-price-list li {
	font-size: 13.5px;
	color: var(--ink-soft);
	padding: 7px 0;
	padding-left: 24px;
	position: relative;
}
.aipeh-price-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--green);
	font-weight: 700;
}

@media (max-width: 940px) {
	.aipeh-pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
	.aipeh-price-featured { transform: none; order: -1; }
	.aipeh-price-featured:hover { transform: translateY(-5px); }
}

/* =========================================================
   FINAL CTA — exam hall admit ticket
   ========================================================= */
.aipeh-cta-section { padding-bottom: 110px; }

.aipeh-ticket {
	display: grid;
	grid-template-columns: 1fr 200px;
	background: var(--ink);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: 0 30px 60px -24px rgba(27,42,74,0.5);
	position: relative;
}
.aipeh-ticket::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 200px;
	width: 0;
	border-left: 2px dashed rgba(255,255,255,0.25);
}

.aipeh-ticket-main {
	padding: 56px 50px;
	color: #fff;
}
.aipeh-eyebrow-light {
	color: var(--yellow);
	background: rgba(255,210,63,0.12);
}
.aipeh-ticket-main h2 {
	font-family: var(--font-display);
	font-size: clamp(1.7rem, 3.2vw, 2.3rem);
	font-weight: 600;
	margin: 14px 0 16px;
	line-height: 1.22;
	color: #ffffff !important;
}
.aipeh-ticket-main p {
	color: rgba(255,255,255,0.72);
	max-width: 460px;
	margin: 0 0 28px;
}

.aipeh-ticket-stub {
	background: var(--orange);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 24px;
}
.aipeh-ticket-stub span {
	color: #fff;
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.12em;
}
.aipeh-ticket-rotate {
	font-family: var(--font-display);
	font-size: 2.4rem !important;
	letter-spacing: 0 !important;
	transform: rotate(-90deg);
	display: inline-block;
}

@media (max-width: 760px) {
	.aipeh-ticket { grid-template-columns: 1fr; }
	.aipeh-ticket::before { display: none; }
	.aipeh-ticket-main { padding: 42px 30px; text-align: center; }
	.aipeh-ticket-main p { margin-left: auto; margin-right: auto; }
	.aipeh-ticket-stub { flex-direction: row; padding: 16px; }
	.aipeh-ticket-rotate { transform: none; font-size: 1.6rem !important; }
}

/* =========================================================
   SCROLL-REVEAL base states (JS toggles .is-in)
   ========================================================= */
.aipeh-reveal-fade {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 0.7s cubic-bezier(.2,.7,.3,1), transform 0.7s cubic-bezier(.2,.7,.3,1);
}
.aipeh-reveal-fade.is-in { opacity: 1; transform: translateY(0); }

.aipeh-reveal-line {
	opacity: 0;
	transform: translateY(18px);
	animation: aipeh-line-in 0.7s cubic-bezier(.2,.7,.3,1) forwards;
}
.aipeh-hero-title .aipeh-line:nth-child(1) { animation-delay: 0.1s; }
.aipeh-hero-title .aipeh-line:nth-child(2) { animation-delay: 0.3s; }
.aipeh-hero-title .aipeh-line:nth-child(3) { animation-delay: 0.5s; }
@keyframes aipeh-line-in {
	to { opacity: 1; transform: translateY(0); }
}

/* Hero copy block fades immediately (above the fold) regardless of JS observer timing */
.aipeh-hero .aipeh-reveal-fade {
	animation: aipeh-line-in 0.8s 0.6s cubic-bezier(.2,.7,.3,1) forwards;
}

/* =========================================================
   RESPONSIVE — HERO
   ========================================================= */
@media (max-width: 980px) {
	.aipeh-hero-grid { grid-template-columns: 1fr; gap: 64px; }
	.aipeh-hero { padding-top: 70px; }
	.aipeh-bell { right: 30px; top: -30px; }
}
@media (max-width: 560px) {
	.aipeh-hero-grid { padding-bottom: 50px; }
	.aipeh-corkboard { padding: 30px 20px 90px; }
	.aipeh-hero-ctas { flex-direction: column; }
	.aipeh-btn { width: 100%; justify-content: center; }
	.aipeh-section { padding: 64px 0; }
}
