.pct-hero {
	position: relative;
	min-height: 640px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--pct-primary-soft);
}

.pct-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.pct-hero__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 72% center;
}

.pct-hero__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(255, 255, 255, 0.97) 0%,
		rgba(255, 255, 255, 0.94) 28%,
		rgba(255, 255, 255, 0.72) 42%,
		rgba(255, 255, 255, 0.22) 58%,
		rgba(255, 255, 255, 0) 72%
	);
}

.pct-hero__inner {
	position: relative;
	z-index: 1;
	width: min(100% - (var(--pct-gutter) * 2), var(--pct-container));
	padding: 88px 0 72px;
}

.pct-hero__content {
	max-width: 560px;
}

.pct-hero__eyebrow {
	margin-bottom: 18px;
}

.pct-hero__title {
	font-size: clamp(2.15rem, 4.4vw, 3.45rem);
	text-transform: uppercase;
	margin-bottom: 6px;
	line-height: 1.12;
	color: var(--pct-primary-dark);
}

.pct-hero__script {
	font-size: clamp(1.9rem, 3.2vw, 2.75rem);
	margin-bottom: 18px;
	display: block;
	color: var(--pct-primary);
}

.pct-hero__desc {
	color: var(--pct-text);
	max-width: 34em;
	margin-bottom: 32px;
	line-height: 1.7;
}

.pct-hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.pct-stats-values {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 32px;
	align-items: stretch;
	padding: 8px 0 8px;
}

.pct-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px 20px;
	align-content: center;
	padding: 8px 8px 8px 0;
}

.pct-stat {
	padding: 4px 0;
}

.pct-stat__value {
	font-size: clamp(2.2rem, 3.2vw, 2.85rem);
	font-weight: 800;
	color: var(--pct-primary);
	line-height: 1;
}

.pct-stat__label {
	margin-top: 8px;
	color: var(--pct-muted);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.pct-values {
	background: linear-gradient(135deg, var(--pct-primary-dark), var(--pct-primary));
	color: var(--pct-white);
	border-radius: 28px;
	padding: 32px 20px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
	box-shadow: var(--pct-shadow-md);
}

.pct-value p {
	display: none;
}

.pct-value {
	text-align: center;
	padding: 10px 8px;
	border-radius: var(--pct-radius-md);
	transition: transform 0.35s var(--pct-ease), background 0.35s ease;
}

.pct-value:hover {
	transform: translateY(-6px);
	background: rgba(255, 255, 255, 0.08);
}

.pct-value__icon {
	width: 48px;
	height: 48px;
	margin: 0 auto 10px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: rgba(255, 255, 255, 0.12);
	transition: transform 0.35s var(--pct-ease);
}

.pct-value:hover .pct-value__icon {
	transform: scale(1.08);
}

.pct-value h3 {
	color: var(--pct-white);
	font-size: 0.92rem;
	margin: 0 0 6px;
}

.pct-value p {
	margin: 0;
	font-size: 0.78rem;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.78);
}

.pct-about__copy h2 {
	margin-bottom: 16px;
}

.pct-about__list {
	list-style: none;
	margin: 20px 0 28px;
	padding: 0;
	display: grid;
	gap: 12px;
}

.pct-about__list li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-weight: 500;
}

.pct-about__list .pct-icon {
	color: var(--pct-primary);
	background: var(--pct-primary-light);
	border-radius: 50%;
	padding: 4px;
	width: 26px;
	height: 26px;
}

.pct-about__visual {
	position: relative;
}

.pct-about__video {
	position: relative;
	border-radius: 28px;
	overflow: hidden;
	min-height: 360px;
	box-shadow: var(--pct-shadow-md);
}

.pct-about__video img {
	width: 100%;
	height: 420px;
	object-fit: cover;
}

.pct-about__overlay {
	position: absolute;
	inset: auto auto 20px 20px;
	background: rgba(3, 56, 38, 0.78);
	color: var(--pct-white);
	padding: 14px 16px;
	border-radius: var(--pct-radius-md);
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	line-height: 1.2;
}

.pct-play {
	position: absolute;
	inset: 0;
	margin: auto;
	width: 76px;
	height: 76px;
	border: 0;
	border-radius: 50%;
	background: var(--pct-white);
	color: var(--pct-primary);
	display: grid;
	place-items: center;
	box-shadow: var(--pct-shadow-md);
}

.pct-about__side {
	position: absolute;
	right: -18px;
	bottom: -22px;
	width: 180px;
	background: var(--pct-white);
	border-radius: var(--pct-radius-md);
	overflow: hidden;
	box-shadow: var(--pct-shadow-md);
}

.pct-about__side img {
	height: 110px;
	width: 100%;
	object-fit: cover;
}

.pct-about__side span {
	display: block;
	padding: 8px 10px 10px;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	color: var(--pct-primary);
	text-transform: uppercase;
}

.pct-highlight {
	position: relative;
	min-height: 300px;
	border-radius: var(--pct-radius-lg);
	overflow: hidden;
	display: flex;
	align-items: flex-end;
}

.pct-highlight img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s var(--pct-ease);
}

.pct-highlight::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 42%, rgba(3, 56, 38, 0.55) 100%);
}

.pct-highlight:hover img {
	transform: scale(1.04);
}

.pct-highlight__body {
	position: relative;
	z-index: 1;
	margin: 14px;
	padding: 14px 16px;
	color: var(--pct-text);
	width: calc(100% - 28px);
	background: var(--pct-white);
	border-radius: 14px;
	box-shadow: var(--pct-shadow-sm);
}

.pct-highlight h3 {
	color: var(--pct-primary);
	margin: 0 0 4px;
	font-size: 1.25rem;
}

.pct-highlight p {
	margin: 0;
	font-size: 0.84rem;
	color: var(--pct-muted);
}

.pct-news-card {
	background: var(--pct-white);
}

.pct-news-card__media {
	position: relative;
	height: 180px;
}

.pct-news-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pct-news-card__date {
	position: absolute;
	left: 12px;
	top: 12px;
	min-width: 64px;
	flex-direction: column;
}

.pct-news-card__date b {
	font-size: 1.2rem;
	display: block;
}

.pct-news-card__date span {
	font-size: 0.68rem;
	text-transform: uppercase;
}

.pct-news-card__body {
	padding: 16px 16px 20px;
}

.pct-news-card h3 {
	font-size: 1rem;
	margin: 0 0 8px;
}

.pct-news-card h3 a {
	color: var(--pct-black);
}

.pct-news-card p {
	color: var(--pct-muted);
	font-size: 0.9rem;
	margin: 0;
}

.pct-news-card .pct-read {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 12px;
	font-weight: 700;
	font-size: 0.85rem;
}

.pct-news-card .pct-read .pct-icon {
	transition: transform 0.3s ease;
}

.pct-news-card:hover .pct-read .pct-icon {
	transform: translateX(5px);
}

.pct-achieve {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	padding: 8px 4px;
}

.pct-achieve__icon {
	width: 52px;
	height: 52px;
	border-radius: 16px;
	background: #fff6e4;
	color: var(--pct-accent-dark);
	display: grid;
	place-items: center;
	flex-shrink: 0;
}

.pct-achieve h3 {
	font-size: 1rem;
	margin: 0 0 4px;
}

.pct-achieve p {
	margin: 0;
	color: var(--pct-muted);
	font-size: 0.9rem;
}

.pct-field-home__visual {
	border-radius: 32px;
	overflow: hidden;
	min-height: 380px;
	box-shadow: var(--pct-shadow-md);
}

.pct-field-home__visual img {
	width: 100%;
	height: 420px;
	object-fit: cover;
}

.pct-feature-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px 16px;
	margin: 22px 0 28px;
	padding: 0;
	list-style: none;
}

.pct-feature-list li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	font-size: 0.92rem;
}

.pct-feature-list .pct-icon {
	color: var(--pct-primary);
}

.pct-admit {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 80% 20%, rgba(245, 183, 47, 0.16), transparent 26%),
		linear-gradient(135deg, var(--pct-primary-deep), var(--pct-primary-dark) 55%, var(--pct-primary));
	color: var(--pct-white);
}

.pct-admit h2,
.pct-admit .pct-script {
	color: var(--pct-white);
}

.pct-admit h2 {
	white-space: pre-line;
	margin-bottom: 10px;
}

.pct-admit__grid {
	display: grid;
	grid-template-columns: 0.95fr 1.15fr;
	gap: 36px;
	align-items: center;
	position: relative;
}

.pct-admit__form {
	background: var(--pct-white);
	color: var(--pct-text);
	border-radius: var(--pct-radius-xl);
	padding: 28px 24px;
	box-shadow: var(--pct-shadow-lg);
	position: relative;
	z-index: 1;
	margin-right: 10%;
}

.pct-admit__photo {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 30%;
	max-width: 280px;
	z-index: 2;
	pointer-events: none;
}

.pct-admit__photo img {
	width: 100%;
	max-height: 420px;
	object-fit: cover;
	object-position: top;
	filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.22));
}

.pct-fab {
	position: fixed;
	right: 18px;
	top: 50%;
	transform: translateY(-50%);
	z-index: var(--pct-z-fab);
	width: 92px;
	display: flex;
	flex-direction: column;
	background: rgba(0, 77, 50, 0.88);
	border: 1.5px solid var(--pct-white);
	border-radius: 28px;
	overflow: hidden;
	box-shadow: 0 14px 36px rgba(0, 77, 50, 0.28);
	backdrop-filter: blur(10px);
}

.pct-fab__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 118px;
	padding: 16px 8px;
	color: var(--pct-white);
	text-align: center;
	writing-mode: horizontal-tb;
	transform: none;
	width: auto;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	text-transform: none;
	letter-spacing: 0;
	font-size: 0.78rem;
	font-weight: 600;
	line-height: 1.25;
}

.pct-fab__item + .pct-fab__item {
	border-top: 1px solid rgba(255, 255, 255, 0.9);
}

.pct-fab__icon {
	display: grid;
	place-items: center;
	color: var(--pct-white);
}

.pct-fab__label {
	display: block;
}

.pct-fab a:hover,
.pct-fab__item:hover {
	background: rgba(255, 255, 255, 0.12);
	color: var(--pct-white);
	transform: none;
}

.pct-admit__points {
	display: grid;
	gap: 12px;
	margin-top: 24px;
}

.pct-admit__point {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 600;
}

.pct-admit__point span {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	display: grid;
	place-items: center;
}

.pct-mobile-bar {
	display: none;
	position: fixed;
	left: 12px;
	right: 12px;
	bottom: 12px;
	z-index: var(--pct-z-fab);
	background: var(--pct-white);
	border-radius: var(--pct-radius-pill);
	box-shadow: var(--pct-shadow-lg);
	grid-template-columns: 1fr 1fr 1fr;
	overflow: hidden;
}

.pct-mobile-bar a {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	padding: 10px 6px;
	font-size: 0.72rem;
	font-weight: 700;
	color: var(--pct-primary-dark);
}

.pct-mobile-bar a:nth-child(3) {
	background: var(--pct-accent);
}

.pct-video-modal {
	position: fixed;
	inset: 0;
	z-index: 80;
	background: rgba(0, 0, 0, 0.72);
	display: grid;
	place-items: center;
	padding: 24px;
	opacity: 0;
	visibility: hidden;
}

.pct-video-modal.is-open {
	opacity: 1;
	visibility: visible;
}

.pct-video-modal__panel {
	width: min(900px, 100%);
	aspect-ratio: 16 / 9;
	background: #000;
	border-radius: 16px;
	overflow: hidden;
	position: relative;
}

.pct-video-modal iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

.pct-video-modal__close {
	position: absolute;
	top: -44px;
	right: 0;
	background: transparent;
	border: 0;
	color: #fff;
}

@media (max-width: 1199px) {
	.pct-hero {
		min-height: 0;
	}

	.pct-hero__inner {
		padding: 56px 0 48px;
	}

	.pct-hero__content {
		max-width: 100%;
	}

	.pct-hero__bg::after {
		background: linear-gradient(
			180deg,
			rgba(255, 255, 255, 0.96) 0%,
			rgba(255, 255, 255, 0.88) 48%,
			rgba(255, 255, 255, 0.35) 78%,
			rgba(255, 255, 255, 0.12) 100%
		);
	}

	.pct-hero__bg img {
		object-position: center 30%;
	}

	.pct-stats-values,
	.pct-admit__grid {
		grid-template-columns: 1fr;
	}

	.pct-values {
		grid-template-columns: 1fr 1fr;
	}

	.pct-value p {
		display: block;
	}

	.pct-admit__form {
		margin-right: 0;
	}

	.pct-admit__photo {
		display: none;
	}
}

@media (max-width: 767px) {
	.pct-hero {
		min-height: 520px;
	}

	.pct-hero__inner {
		padding: 40px 0 36px;
	}

	.pct-hero__cta .pct-btn {
		width: 100%;
	}

	.pct-stats {
		grid-template-columns: 1fr 1fr;
	}

	.pct-feature-list {
		grid-template-columns: 1fr;
	}

	.pct-fab {
		display: none;
	}

	.pct-mobile-bar {
		display: grid;
	}

	.pct-about__side {
		position: static;
		width: 100%;
		margin-top: 12px;
	}
}
