/* ============================================================
   Mega Nav — Design Tokens (inherit from parent)
   ============================================================ */

:root {
	--mega-surface-soft: #f8fafd;
	--mega-surface-tint: #eef3f8;
	--mega-line: rgba(18, 48, 79, 0.06);
	--mega-line-soft: rgba(18, 48, 79, 0.04);
	--mega-shadow-card: 0 2px 0 rgba(18, 48, 79, 0.06), 0 12px 24px rgba(18, 48, 79, 0.05);
	--mega-shadow-card-soft: 0 1px 0 rgba(18, 48, 79, 0.04), 0 8px 18px rgba(18, 48, 79, 0.045);
	--mega-shadow-card-hover: 0 2px 0 rgba(18, 48, 79, 0.08), 0 14px 26px rgba(18, 48, 79, 0.07);
	--mega-shadow-btn: 0 3px 0 rgba(26, 79, 196, 0.26), 0 10px 20px rgba(47, 111, 237, 0.22);
	--mega-shadow-btn-hover: 0 4px 0 rgba(26, 79, 196, 0.28), 0 12px 24px rgba(47, 111, 237, 0.26);
}

/* ============================================================
   Mega Nav Bar
   ============================================================ */
.mega-nav {
	position: sticky;
	top: 0;
	z-index: 9999;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--mega-line-soft);
	box-shadow: 0 2px 16px rgba(15, 32, 59, 0.06);
	transition: box-shadow 0.3s ease;
}

.mega-nav.is-scrolled {
	box-shadow: 0 4px 24px rgba(15, 32, 59, 0.12);
}

.mega-nav__container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 32px;
	height: 76px;
	display: flex;
	align-items: center;
	gap: 10px;
}

/* ---- Brand ---- */
.mega-nav__brand {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	flex-shrink: 0;
	margin-right: 18px;
	color: #12304f;
}

.mega-nav__brand:hover,
.mega-nav__brand:focus,
.mega-nav__brand:focus-visible,
.mega-nav__brand:active,
.mega-nav__brand:visited {
	color: #12304f !important;
	text-decoration: none;
}

.mega-nav__brand-logo {
	width: 114px;
	height: auto;
	display: block;
	flex-shrink: 0;
	transition: transform 0.3s ease, opacity 0.3s ease;
	transform-origin: center center;
	filter: none;
}

.mega-nav__brand:hover .mega-nav__brand-logo,
.mega-nav__brand:focus-visible .mega-nav__brand-logo {
	transform: translateY(-1px);
}

.mega-nav__brand:hover .mega-nav__brand-text,
.mega-nav__brand:focus-visible .mega-nav__brand-text {
	color: var(--primary);
}

.mega-nav__brand-copy {
	display: flex;
	flex-direction: column;
	gap: 0;
	min-width: 0;
	justify-content: center;
}

.mega-nav__brand-text {
	font-size: 20px;
	font-weight: 900;
	color: #12304f;
	letter-spacing: -0.05em;
	line-height: 1;
	font-family: 'Inter', 'Segoe UI', sans-serif;
}

@media (prefers-reduced-motion: reduce) {
	.mega-nav__brand-logo {
		transition: none;
	}

	.mega-nav__brand:hover .mega-nav__brand-logo,
	.mega-nav__brand:focus-visible .mega-nav__brand-logo {
		transform: none;
	}
}

/* ---- Nav List ---- */
.mega-nav__list {
	display: flex;
	align-items: center;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
	flex: 1;
}

.mega-nav__item {
	position: relative;
}

.mega-nav__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	height: 44px;
	padding: 0 16px;
	border-radius: 14px;
	font-size: 14px;
	font-weight: 700;
	color: var(--text);
	text-decoration: none;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(255, 255, 255, 0.35);
	cursor: pointer;
	transition: transform 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease;
	white-space: nowrap;
	font-family: inherit;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.mega-nav__link:focus,
.mega-nav__link:focus-visible,
.mega-nav__action-link:focus,
.mega-nav__action-link:focus-visible,
.mega-nav__mobile-btn:focus,
.mega-nav__mobile-btn:focus-visible,
.mega-nav__drawer-link:focus,
.mega-nav__drawer-link:focus-visible,
.mega-nav__drawer-group-btn:focus,
.mega-nav__drawer-group-btn:focus-visible,
.mega-nav__drawer-sub a:focus,
.mega-nav__drawer-sub a:focus-visible {
	outline: none !important;
	outline-offset: 0;
	box-shadow: none;
}

.mega-nav__link:hover,
.mega-nav__link:focus-visible {
	background: rgba(255, 255, 255, 0.92);
	border-color: rgba(255, 255, 255, 0.65);
	color: var(--primary);
	outline: none;
	transform: translateY(-1px);
	box-shadow: var(--mega-shadow-card-soft);
}

.mega-nav__link.is-active {
	color: var(--primary);
	background: rgba(255, 255, 255, 0.95);
	border-color: rgba(255, 255, 255, 0.7);
	box-shadow: var(--mega-shadow-card-soft);
}

.mega-nav__chevron {
	font-size: 18px;
	transition: transform 0.22s ease;
	color: var(--text-soft);
}

.mega-nav__item.is-open > .mega-nav__link--trigger .mega-nav__chevron {
	transform: rotate(180deg);
	color: var(--primary);
}

.mega-nav__item.is-open > .mega-nav__link--trigger {
	background: rgba(255, 255, 255, 0.95);
	border-color: rgba(255, 255, 255, 0.72);
	color: var(--primary);
	transform: translateY(-1px);
	box-shadow: var(--mega-shadow-card-soft);
}

/* ---- Actions ---- */
.mega-nav__actions {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-left: auto;
	flex-shrink: 0;
}

.mega-nav__action-link {
	font-size: 14px;
	font-weight: 700;
	color: var(--text-soft);
	text-decoration: none;
	padding: 0 10px;
	transition: color 0.18s ease;
}

.mega-nav__action-link:hover {
	color: var(--primary);
}

.mega-nav__cta,
.mega-nav__cta:visited,
.mega-nav__cta:hover,
.mega-nav__cta:focus,
.mega-nav__cta:focus-visible,
.mega-nav__cta:active,
.mega-panel__promo-btn,
.mega-panel__promo-btn:visited,
.mega-panel__promo-btn:hover,
.mega-panel__promo-btn:focus,
.mega-panel__promo-btn:focus-visible,
.mega-panel__promo-btn:active {
	color: #ffffff !important;
}

.mega-nav__cta,
.mega-panel__promo-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	height: 44px;
	padding: 0 20px;
	border-radius: 14px;
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.01em;
	text-decoration: none;
	transition: transform 0.14s ease, box-shadow 0.14s ease, background-color 0.14s ease, color 0.14s ease, border-color 0.14s ease;
	white-space: nowrap;
	outline: none;
}

.mega-nav__cta {
	color: #ffffff;
	background: #2f6fed;
	border: 1px solid rgba(26, 79, 196, 0.22);
	box-shadow: var(--mega-shadow-btn);
}

.mega-nav__cta:hover {
	color: #ffffff;
	background: #2f6fed;
	border-color: rgba(26, 79, 196, 0.28);
	transform: translateY(-1px);
	box-shadow: var(--mega-shadow-btn-hover);
	outline: none;
}

.mega-nav__cta:active {
	color: #ffffff;
	transform: translateY(2px);
	box-shadow: 0 1px 0 rgba(18, 48, 79, 0.24), 0 5px 12px rgba(18, 48, 79, 0.10);
}

.mega-panel__promo-btn {
	color: #ffffff;
	background: #2f6fed;
	border: 1px solid rgba(26, 79, 196, 0.20);
	box-shadow: 0 2px 0 rgba(26, 79, 196, 0.20), 0 8px 18px rgba(47, 111, 237, 0.18);
}

.mega-panel__promo-btn:hover {
	color: #ffffff;
	background: #1a4fc4;
	border-color: rgba(26, 79, 196, 0.28);
	transform: translateY(-1px);
	box-shadow: 0 3px 0 rgba(26, 79, 196, 0.22), 0 10px 20px rgba(47, 111, 237, 0.22);
	outline: none;
}

.mega-panel__promo-btn:active {
	color: #ffffff;
	transform: translateY(2px);
	box-shadow: 0 1px 0 rgba(26, 79, 196, 0.18), 0 4px 10px rgba(47, 111, 237, 0.12);
}

.mega-nav__cta:focus-visible,
.mega-panel__promo-btn:focus-visible {
	outline: none;
}

.mega-nav__cta .site-icon,
.mega-panel__promo-btn .site-icon {
	width: 18px;
	height: 18px;
}

/* ---- Mobile Toggle ---- */
.mega-nav__mobile-btn {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 14px;
	background: #ffffff;
	border: 1px solid var(--mega-line);
	cursor: pointer;
	margin-left: 8px;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
	user-select: none;
	-webkit-user-select: none;
	box-shadow: var(--mega-shadow-card-soft);
}

.mega-nav__mobile-btn:hover {
	background: var(--mega-surface-soft);
	border-color: #c7d5e6;
	transform: translateY(-1px);
	box-shadow: var(--mega-shadow-card-hover);
}

.mega-nav__mobile-icon {
	font-size: 22px;
	color: var(--text);
}
.mega-panel {
	position: absolute;
	top: calc(100% + 10px);
	left: 50%;
	transform: translateX(-50%) translateY(-8px);
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(255, 255, 255, 0.68);
	border-radius: 16px;
	box-shadow: 0 16px 40px rgba(15, 32, 59, 0.12);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.24s ease, transform 0.24s ease;
	z-index: 100;
	min-width: 760px;
	padding-top: 0;
	overflow: hidden;
}

/* Transparent bridge fills the gap so mouse doesn't leave the item */
.mega-panel::before {
	content: '';
	position: absolute;
	top: -12px;
	left: 0;
	right: 0;
	height: 12px;
}

.mega-nav__item.is-open > .mega-panel {
	opacity: 1;
	pointer-events: auto;
	transform: translateX(-50%) translateY(0);
}

.mega-panel__inner {
	display: grid;
	grid-template-columns: 1fr 1fr auto;
	gap: 0;
	padding: 14px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 250, 253, 0.92) 100%);
}

.mega-panel__inner--wide {
	grid-template-columns: 1fr 1fr auto;
}

/* ---- Column ---- */
.mega-panel__col {
	padding: 28px 24px;
}

.mega-panel__col + .mega-panel__col {
	border-left: none;
}

.mega-panel__col-title {
	margin: 0 0 18px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(90, 106, 130, 0.72);
	padding-bottom: 0;
	border-bottom: none;
}

/* ---- Links ---- */
.mega-panel__links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.mega-panel__link {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 12px 14px;
	border-radius: 16px;
	text-decoration: none;
	background: transparent;
	border: none;
	box-shadow: none;
	transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.mega-panel__link:hover {
	background: rgba(255, 255, 255, 0.42);
	transform: translateX(4px);
	box-shadow: none;
}

.mega-panel__link-icon {
	font-size: 22px;
	line-height: 1;
	color: var(--primary);
	flex-shrink: 0;
	width: 46px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	background: var(--mega-surface-tint);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.mega-panel__link-icon .site-icon {
	width: 22px;
	height: 22px;
	line-height: 1;
}

.mega-panel__link:hover .mega-panel__link-icon {
	background: #e3edf9;
}

.mega-panel__link-body {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.mega-panel__link-body strong {
	font-size: 14px;
	font-weight: 800;
	color: var(--text);
	line-height: 1.3;
}

.mega-panel__link-body em {
	font-size: 12px;
	font-style: normal;
	color: var(--text-soft);
	line-height: 1.5;
}

/* ---- Promo Column ---- */
.mega-panel__promo {
	width: 240px;
	padding: 28px 24px;
	border-left: none;
	background: linear-gradient(180deg, rgba(244, 248, 252, 0.82) 0%, rgba(237, 243, 249, 0.72) 100%);
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin: 12px;
	margin-left: 4px;
	box-shadow: none;
}

.mega-panel__promo-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.72);
	color: var(--primary);
	font-size: 28px;
	line-height: 1;
	box-shadow: none;
}

.mega-panel__promo-icon .site-icon {
	width: 28px;
	height: 28px;
	line-height: 1;
}

.mega-panel__promo-title {
	margin: 0;
	font-size: 16px;
	font-weight: 800;
	color: var(--text);
	line-height: 1.3;
}

.mega-panel__promo-text {
	margin: 0;
	font-size: 13px;
	line-height: 1.8;
	color: var(--text-soft);
	flex: 1;
}

/* ---- Template Preview Column ---- */
.mega-panel__template-preview {
	width: 240px;
	padding: 28px 24px;
	border-left: none;
	background: linear-gradient(180deg, rgba(248, 244, 234, 0.82) 0%, rgba(246, 239, 223, 0.72) 100%);
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin: 12px;
	margin-left: 4px;
	box-shadow: none;
}

/* Mini diploma card */
.mega-panel__tpl-card {
	position: relative;
	padding: 14px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.7);
	border: none;
	box-shadow: none;
	overflow: hidden;
}

.mega-panel__tpl-ribbon {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--accent);
}

.mega-panel__tpl-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 6px;
	margin-bottom: 8px;
}

.mega-panel__tpl-mark {
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--text-soft);
}

.mega-panel__tpl-stamp {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 1.5px solid var(--accent);
	opacity: 0.6;
}

.mega-panel__tpl-title {
	font-size: 11px;
	font-weight: 800;
	color: var(--text);
	letter-spacing: -0.01em;
	margin-bottom: 8px;
}

.mega-panel__tpl-line {
	height: 5px;
	border-radius: 999px;
	background: var(--border-strong);
	margin-bottom: 5px;
}

.mega-panel__tpl-line--short {
	width: 55%;
}

.mega-panel__template-note {
	margin: 0;
	font-size: 12px;
	line-height: 1.6;
	color: var(--text-soft);
}

/* ---- Dropdown Panel ---- */
.mega-panel--dropdown {
	min-width: 260px;
	left: 0;
	transform: translateX(0) translateY(-8px);
}

.mega-nav__item.is-open > .mega-panel--dropdown {
	transform: translateX(0) translateY(0);
}

.mega-panel__dropdown-list {
	list-style: none;
	margin: 0;
	padding: 12px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.mega-panel__dropdown-link {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	border-radius: 16px;
	font-size: 14px;
	font-weight: 700;
	color: var(--text);
	text-decoration: none;
	background: transparent;
	border: 1px solid transparent;
	box-shadow: none;
	transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.mega-panel__dropdown-link:hover {
	background: rgba(255, 255, 255, 0.62);
	border-color: rgba(255, 255, 255, 0.28);
	color: var(--primary);
	transform: translateY(-1px);
	box-shadow: 0 8px 18px rgba(18, 48, 79, 0.05);
}

.mega-panel__dropdown-link .site-icon {
	width: 20px;
	height: 20px;
	line-height: 1;
	color: var(--text-soft);
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: var(--mega-surface-tint);
	flex-shrink: 0;
}

.mega-panel__dropdown-link:hover .site-icon {
	color: var(--primary);
	background: #e3edf9;
}

/* ---- Wide panel (templates) — keep left-anchored ---- */
.mega-panel--wide {
	min-width: 860px;
	left: 0;
	transform: translateX(-20%) translateY(-8px);
}

.mega-nav__item.is-open > .mega-panel--wide {
	transform: translateX(-20%) translateY(0);
}

/* ============================================================
   Backdrop
   ============================================================ */
.mega-nav__backdrop {
	position: fixed;
	inset: 0;
	top: 76px;
	background: rgba(14, 30, 51, 0.18);
	backdrop-filter: blur(2px);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.22s ease;
	z-index: 9998;
}

body.has-open-panel .mega-nav__backdrop {
	opacity: 1;
	pointer-events: auto;
}

/* ============================================================
   Mobile Drawer
   ============================================================ */
.mega-nav__drawer {
	position: fixed;
	top: 76px;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--surface);
	overflow-y: auto;
	transform: translateX(-100%);
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 9997;
	border-top: 1px solid var(--mega-line-soft);
}

body.drawer-open .mega-nav__drawer {
	transform: translateX(0);
}

.mega-nav__drawer-inner {
	padding: 16px 20px 32px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-height: 100%;
	background: var(--mega-surface-soft);
}

.mega-nav__drawer-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}

.mega-nav__drawer-link {
	display: block;
	padding: 14px 16px;
	border-radius: 16px;
	font-size: 15px;
	font-weight: 700;
	color: var(--text);
	text-decoration: none;
	background: #ffffff;
	border: 1px solid var(--mega-line-soft);
	box-shadow: var(--mega-shadow-card-soft);
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.mega-nav__drawer-link:hover {
	background: #ffffff;
	color: var(--primary);
	transform: translateY(-1px);
	box-shadow: var(--mega-shadow-card-hover);
}

/* Drawer accordion groups */
.mega-nav__drawer-group-btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 14px 16px;
	border-radius: 16px;
	font-size: 15px;
	font-weight: 700;
	color: var(--text);
	background: #ffffff;
	border: 1px solid var(--mega-line-soft);
	box-shadow: var(--mega-shadow-card-soft);
	cursor: pointer;
	font-family: inherit;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
}

.mega-nav__drawer-group-btn:hover {
	background: #ffffff;
	color: var(--primary);
	transform: translateY(-1px);
	box-shadow: var(--mega-shadow-card-hover);
}

.mega-nav__drawer-group-btn .site-icon {
	width: 20px;
	height: 20px;
	color: var(--text-soft);
	transition: transform 0.22s ease;
}

.mega-nav__drawer-group.is-open .mega-nav__drawer-group-btn .site-icon {
	transform: rotate(180deg);
	color: var(--primary);
}

.mega-nav__drawer-group.is-open .mega-nav__drawer-group-btn {
	color: var(--primary);
	border-color: var(--mega-line);
}

.mega-nav__drawer-sub {
	list-style: none;
	margin: 8px 0 0;
	padding: 0 0 4px 10px;
	display: none;
	flex-direction: column;
	gap: 8px;
}

.mega-nav__drawer-group.is-open .mega-nav__drawer-sub {
	display: flex;
}

.mega-nav__drawer-sub a {
	display: block;
	padding: 12px 14px;
	border-radius: 14px;
	font-size: 14px;
	font-weight: 600;
	color: var(--text-soft);
	text-decoration: none;
	background: rgba(255, 255, 255, 0.86);
	border: 1px solid var(--mega-line-soft);
	transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.mega-nav__drawer-sub a:hover {
	background: #ffffff;
	color: var(--primary);
	transform: translateY(-1px);
}

.mega-nav__drawer-footer {
	padding-top: 20px;
	border-top: 1px solid var(--mega-line-soft);
	margin-top: 8px;
}

.mega-nav__cta--full {
	width: 100%;
	justify-content: center;
	height: 48px;
	font-size: 15px;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
	.mega-nav__list,
	.mega-nav__actions {
		display: none;
	}

	.mega-nav__mobile-btn {
		display: flex;
		margin-left: auto;
	}
}

@media (max-width: 640px) {
	.mega-nav__container {
		padding: 0 20px;
		height: 72px;
	}

	.mega-nav__backdrop,
	.mega-nav__drawer {
		top: 72px;
	}
}

/* ============================================================
   Global Reset / Body
   ============================================================ */
body {
	margin: 0;
	padding: 0 !important; /* override Astra header offset */
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Hide Astra's masthead on all pages — we use our own mega-nav */
#masthead,
.ast-header-break-point .ast-mobile-header-wrap,
.ast-desktop-header,
.site-header,
.ast-above-header-wrap,
.ast-below-header-wrap {
	display: none !important;
}

/* ============================================================
   Design Tokens (fallback if not set by parent)
   ============================================================ */
:root {
	--primary:       #2f6fed;
	--primary-dark:  #1a4fc4;
	--accent:        #c9a35a;
	--text:          #0f203b;
	--text-soft:     #5a6a82;
	--surface:       #ffffff;
	--bg:            #f7f9fc;
	--border:        rgba(15,32,59,0.09);
	--border-strong: rgba(15,32,59,0.16);
	--radius-sm:     8px;
	--radius-md:     12px;
	--radius-lg:     16px;
	--radius-xl:     20px;
}

/* ============================================================
   Container
   ============================================================ */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 32px;
}

/* ============================================================
   Sections
   ============================================================ */
.section {
	padding: 80px 0;
}

.section--light {
	background: #ffffff;
}

.section--muted {
	background: var(--bg);
}

/* ============================================================
   Section Header
   ============================================================ */
.section-header {
	margin-bottom: 48px;
}

.section-header--center {
	text-align: center;
}

.section-header__eyebrow {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--primary);
	margin: 0 0 12px;
}

.section-header__title {
	font-size: clamp(24px, 3vw, 36px);
	font-weight: 800;
	color: var(--text);
	letter-spacing: -0.02em;
	line-height: 1.2;
	margin: 0 0 16px;
}

.section-header__subtitle {
	font-size: 16px;
	line-height: 1.7;
	color: var(--text-soft);
	margin: 0;
	max-width: 600px;
}

.section-header--center .section-header__subtitle {
	margin: 0 auto;
}

/* ============================================================
   Inner Page Hero
   ============================================================ */
.inner-hero {
	padding: 72px 0 64px;
}

.inner-hero__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}

.inner-hero__inner--narrow {
	grid-template-columns: 1fr;
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
}

.inner-hero__inner--narrow .inner-hero__eyebrow,
.inner-hero__inner--narrow .inner-hero__actions {
	justify-content: center;
}

.inner-hero__eyebrow {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 13px;
	color: var(--text-soft);
	margin: 0 0 20px;
	flex-wrap: wrap;
}

.inner-hero__eyebrow a {
	color: var(--primary);
	text-decoration: none;
	font-weight: 600;
}

.inner-hero__eyebrow a:hover {
	text-decoration: underline;
}

.inner-hero__eyebrow .site-icon {
	width: 16px;
	height: 16px;
	color: var(--border-strong);
}

.inner-hero__title {
	font-size: clamp(28px, 4vw, 48px);
	font-weight: 800;
	color: var(--text);
	letter-spacing: -0.03em;
	line-height: 1.15;
	margin: 0 0 20px;
}

.inner-hero__subtitle {
	font-size: 17px;
	line-height: 1.7;
	color: var(--text-soft);
	margin: 0 0 32px;
}

.inner-hero__actions {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}

/* ============================================================
   4-Column Grid
   ============================================================ */
.grid--4 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

/* ============================================================
   Template Grid & Cards
   ============================================================ */
.template-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.template-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 16px;
	overflow: hidden;
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.template-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 48px rgba(15,32,59,0.1);
}

.template-card__preview {
	height: 180px;
	background: var(--bg);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.template-card__mock {
	width: 100%;
	max-width: 200px;
	background: #fff;
	border-radius: 8px;
	padding: 16px;
	box-shadow: 0 4px 16px rgba(15,32,59,0.1);
	position: relative;
	overflow: hidden;
}

.template-card__mock--gold {
	border: 1.5px solid var(--accent);
}

.template-card__mock--minimal {
	border: 1px solid var(--border);
}

.template-card__mock-ribbon {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
}

.template-card__mock-ribbon--gold {
	background: var(--accent);
}

.template-card__mock-title {
	font-size: 8px;
	font-weight: 800;
	color: var(--text);
	margin-bottom: 8px;
	letter-spacing: -0.01em;
}

.template-card__mock-line {
	height: 4px;
	border-radius: 999px;
	background: var(--border-strong);
	margin-bottom: 4px;
}

.template-card__mock-line--short {
	width: 60%;
}

.template-card__mock-seal {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 1.5px solid var(--border-strong);
	margin-top: 8px;
}

.template-card__mock-seal--gold {
	border-color: var(--accent);
}

.template-card__body {
	padding: 20px 24px 24px;
}

.template-card__tag {
	display: inline-block;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--primary);
	background: rgba(47,111,237,0.08);
	padding: 3px 10px;
	border-radius: 999px;
	margin-bottom: 10px;
}

.template-card__tag--gold {
	color: var(--accent);
	background: rgba(201,163,90,0.1);
}

.template-card__name {
	font-size: 15px;
	font-weight: 700;
	color: var(--text);
	margin: 0 0 10px;
}

.template-card__meta {
	display: flex;
	gap: 14px;
	font-size: 12px;
	color: var(--text-soft);
	margin-bottom: 16px;
}

.template-card__meta span {
	display: flex;
	align-items: center;
	gap: 4px;
}

.template-card__meta .site-icon {
	width: 15px;
	height: 15px;
}

.template-card__btn {
	display: inline-flex;
	align-items: center;
	height: 36px;
	padding: 0 18px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
	color: var(--primary);
	background: rgba(47,111,237,0.08);
	text-decoration: none;
	transition: background 0.18s ease, color 0.18s ease;
}

.template-card__btn:hover {
	background: var(--primary);
	color: #ffffff;
}

/* ============================================================
   Inner Split Layout
   ============================================================ */
.inner-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}

.inner-split__text .section-header__subtitle {
	max-width: 100%;
}

/* ============================================================
   Spec Card
   ============================================================ */
.inner-spec-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 16px;
	overflow: hidden;
}

.inner-spec-card__row {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 18px 24px;
	border-bottom: 1px solid var(--border);
}

.inner-spec-card__row:last-child {
	border-bottom: none;
}

.inner-spec-card__row .site-icon {
	width: 40px;
	height: 40px;
	color: var(--primary);
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(47,111,237,0.08);
	border-radius: 10px;
}

.inner-spec-card__row div {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.inner-spec-card__row strong {
	font-size: 13px;
	font-weight: 700;
	color: var(--text);
}

.inner-spec-card__row span {
	font-size: 13px;
	color: var(--text-soft);
}

/* ============================================================
   Inner CTA
   ============================================================ */
.home-cta {
	padding: 80px 0;
}

.inner-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	background: #f3f7fc;
	border: 1px solid rgba(47,111,237,0.12);
	border-radius: 16px;
	padding: 48px 56px;
}

.inner-cta__text {
	font-size: 16px;
	line-height: 1.7;
	color: var(--text-soft);
	margin: 8px 0 0;
}

.inner-cta__actions {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-shrink: 0;
	flex-wrap: wrap;
}

/* ============================================================
   Check List
   ============================================================ */
.check-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.check-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	color: var(--text-soft);
}

.check-list__icon {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	color: var(--primary);
}

.check-list li span {
	display: inline-block;
	line-height: 1.6;
}

.check-list li::before {
	display: none;
}

/* ============================================================
   Contact Page
   ============================================================ */
.contact-layout {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 64px;
	align-items: start;
}

.contact-features {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.contact-feature {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	color: var(--text-soft);
}

.contact-feature .site-icon {
	width: 18px;
	height: 18px;
	color: var(--primary);
	flex-shrink: 0;
}

.contact-form-wrap {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 40px;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.contact-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.contact-form__field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.contact-form__field label {
	font-size: 13px;
	font-weight: 600;
	color: var(--text);
}

.contact-form__field label span {
	color: var(--primary);
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
	width: 100%;
	padding: 11px 14px;
	border: 1.5px solid var(--border-strong);
	border-radius: var(--radius-md);
	font-size: 14px;
	font-family: inherit;
	color: var(--text);
	background: var(--surface);
	transition: border-color 0.18s ease, box-shadow 0.18s ease;
	box-sizing: border-box;
	outline: none;
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(47,111,237,0.12);
}

.contact-form__field textarea {
	resize: vertical;
	min-height: 120px;
}

.contact-form__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: 48px;
	padding: 0 28px;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 700;
	color: #ffffff;
	background: var(--primary);
	border: 1px solid var(--primary-dark);
	box-shadow: 0 3px 0 rgba(26,74,184,0.24);
	cursor: pointer;
	font-family: inherit;
	box-shadow: 0 8px 24px rgba(47,111,237,0.28);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	align-self: flex-start;
}

.contact-form__submit:hover,
.contact-form__submit:focus,
.contact-form__submit:focus-visible {
	transform: none;
	box-shadow: 0 10px 24px rgba(47,111,237,0.30);
	outline: none;
}

.contact-form__submit .site-icon {
	width: 18px;
	height: 18px;
}

.contact-form-theme-bridge .dsf-form-wrap,
.contact-form-theme-bridge .dsf-form-shell {
	display: contents;
}

.contact-form-theme-bridge .dsf-form-header,
.contact-form-theme-bridge .dsf-submit-meta,
.contact-form-theme-bridge .dsf-pre-submit-note,
.contact-form-theme-bridge .dsf-form-trust,
.contact-form-theme-bridge .dsf-form-kicker,
.contact-form-theme-bridge .dsf-form-subtitle {
	display: none;
}

.contact-form-theme-bridge .dsf-ajax-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin: 0;
}

.contact-form-theme-bridge .dsf-form-title {
	display: none;
}

.contact-form-theme-bridge .dsf-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.contact-form-theme-bridge .dsf-field {
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 0;
	margin: 0;
}

.contact-form-theme-bridge .dsf-field--full,
.contact-form-theme-bridge .dsf-captcha-field,
.contact-form-theme-bridge .dsf-submit-row,
.contact-form-theme-bridge .dsf-notice {
	grid-column: 1 / -1;
}

.contact-form-theme-bridge .dsf-field label {
	margin: 0;
	font-size: 13px;
	font-weight: 600;
	color: var(--text);
}

.contact-form-theme-bridge .dsf-field input,
.contact-form-theme-bridge .dsf-field select,
.contact-form-theme-bridge .dsf-field textarea,
.contact-form-theme-bridge .dsf-captcha-input {
	width: 100%;
	min-width: 0;
	max-width: 100%;
	padding: 11px 14px;
	border: 1.5px solid var(--border-strong);
	border-radius: var(--radius-md);
	font-size: 14px;
	font-family: inherit;
	line-height: 1.5;
	color: var(--text);
	background: var(--surface);
	transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
	box-sizing: border-box;
	outline: none !important;
	appearance: none;
	-webkit-appearance: none;
}

.contact-form-theme-bridge .dsf-field textarea {
	resize: vertical;
	min-height: 120px;
}

.contact-form-theme-bridge .dsf-field input:focus,
.contact-form-theme-bridge .dsf-field select:focus,
.contact-form-theme-bridge .dsf-field textarea:focus,
.contact-form-theme-bridge .dsf-captcha-input:focus,
.contact-form-theme-bridge .dsf-submit:focus,
.contact-form-theme-bridge .dsf-submit:focus-visible {
	outline: none !important;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(47,111,237,0.12);
}

.contact-form-theme-bridge .dsf-field select {
	padding-right: 40px;
	background-image: linear-gradient(45deg, transparent 50%, rgba(18, 48, 79, 0.55) 50%), linear-gradient(135deg, rgba(18, 48, 79, 0.55) 50%, transparent 50%);
	background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 12px) calc(50% - 2px);
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
}

.contact-form-theme-bridge .dsf-security-row,
.contact-form-theme-bridge .dsf-captcha-box {
	display: block;
}

.contact-form-theme-bridge .dsf-captcha-question {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 10px;
	font-size: 14px;
	font-weight: 600;
	color: var(--text);
}

.contact-form-theme-bridge .dsf-captcha-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 999px;
	background: rgba(47,111,237,0.12);
	color: var(--primary);
	font-size: 13px;
	font-weight: 700;
}

.contact-form-theme-bridge .dsf-captcha-tip {
	margin-top: 8px;
	font-size: 12px;
	line-height: 1.6;
	color: var(--text-soft);
}

.contact-form-theme-bridge .dsf-submit-row {
	display: flex;
	justify-content: flex-start;
	margin-top: 4px;
}

.contact-form-theme-bridge .dsf-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 46px;
	padding: 0 20px;
	border: none;
	border-radius: 10px;
	background: #2f6fed;
	color: #ffffff !important;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.01em;
	box-shadow: 0 6px 16px rgba(18, 48, 79, 0.12);
	transition: transform 0.14s ease, box-shadow 0.14s ease, background-color 0.14s ease;
	cursor: pointer;
}

.contact-form-theme-bridge .dsf-submit:hover,
.contact-form-theme-bridge .dsf-submit:focus,
.contact-form-theme-bridge .dsf-submit:focus-visible {
	transform: translateY(-1px);
	background: #2b63d5;
	box-shadow: 0 8px 18px rgba(18, 48, 79, 0.14);
	outline: none;
	border: none;
}

.contact-form-theme-bridge .dsf-submit-arrow {
	font-size: 14px;
	line-height: 1;
}

.contact-form-theme-bridge .dsf-notice {
	padding: 12px 14px;
	border-radius: var(--radius-md);
	font-size: 13px;
	line-height: 1.6;
}

.contact-form-theme-bridge .dsf-notice--success {
	background: rgba(34, 197, 94, 0.08);
	color: #166534;
	border: 1px solid rgba(34, 197, 94, 0.18);
}

.contact-form-theme-bridge .dsf-notice--error {
	background: rgba(239, 68, 68, 0.08);
	color: #991b1b;
	border: 1px solid rgba(239, 68, 68, 0.18);
}

@media (max-width: 767px) {
	.contact-form-theme-bridge .dsf-form-grid {
		grid-template-columns: 1fr;
	}
}

/* ============================================================
   Stats Bar
   ============================================================ */
.stats-bar {
	padding: 32px 0;
}

.stats-bar__inner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	border: 1px solid var(--border);
	border-radius: 16px;
	overflow: hidden;
	background: var(--surface);
}

.stats-bar__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 24px 20px;
	border-right: 1px solid var(--border);
	text-align: center;
}

.stats-bar__item:last-child {
	border-right: none;
}

.stats-bar__item strong {
	font-size: 28px;
	font-weight: 800;
	color: var(--primary);
	letter-spacing: -0.03em;
	line-height: 1;
	margin-bottom: 6px;
}

.stats-bar__item span {
	font-size: 13px;
	color: var(--text-soft);
}

/* ============================================================
   Print Types Grid
   ============================================================ */
.print-types-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.print-type-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 32px 28px;
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.print-type-card:hover {
	transform: none;
	box-shadow: 0 10px 24px rgba(15,32,59,0.08);
}

.print-type-card__icon {
	font-size: 32px;
	color: var(--primary);
	display: block;
	margin-bottom: 16px;
}

.print-type-card h3 {
	font-size: 16px;
	font-weight: 700;
	color: var(--text);
	margin: 0 0 10px;
}

.print-type-card p {
	font-size: 14px;
	line-height: 1.7;
	color: var(--text-soft);
	margin: 0;
}

/* ============================================================
   Process Steps
   ============================================================ */
.process-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	position: relative;
}

.process-steps::before {
	content: '';
	position: absolute;
	top: 36px;
	left: 12.5%;
	right: 12.5%;
	height: 2px;
	background: rgba(47,111,237,0.2);
	opacity: 0.2;
}

.process-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 0 20px;
}

.process-step__num {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.1em;
	color: var(--primary);
	margin-bottom: 12px;
}

.process-step__icon-wrap {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: var(--surface);
	border: 2px solid var(--primary);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	position: relative;
	z-index: 1;
}

.process-step__icon-wrap .site-icon {
	width: 28px;
	height: 28px;
	color: var(--primary);
}

.process-step h3 {
	font-size: 15px;
	font-weight: 700;
	color: var(--text);
	margin: 0 0 10px;
}

.process-step p {
	font-size: 13px;
	line-height: 1.7;
	color: var(--text-soft);
	margin: 0;
}

/* ============================================================
   Feature List
   ============================================================ */
.feature-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.feature-list__item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.feature-list__icon {
	font-size: 22px;
	color: var(--primary);
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(47,111,237,0.08);
	border-radius: 12px;
}

.feature-list__item div {
	display: flex;
	flex-direction: column;
	gap: 3px;
	padding-top: 10px;
}

.feature-list__item strong {
	font-size: 14px;
	font-weight: 700;
	color: var(--text);
}

.feature-list__item span {
	font-size: 13px;
	color: var(--text-soft);
	line-height: 1.6;
}

/* ============================================================
   Pricing Card
   ============================================================ */
.pricing-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 16px;
	overflow: hidden;
}

.pricing-card__header {
	background: #2f6fed;
	border-bottom: 1px solid rgba(255,255,255,0.18);
}

.pricing-card__label {
	font-size: 14px;
	font-weight: 700;
	color: rgba(255,255,255,0.9);
	margin: 0;
}

.pricing-card__rows {
	padding: 8px 0;
}

.pricing-card__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 24px;
	border-bottom: 1px solid var(--border);
	font-size: 14px;
}

.pricing-card__row:last-child {
	border-bottom: none;
}

.pricing-card__row span {
	color: var(--text-soft);
}

.pricing-card__row strong {
	color: var(--text);
	font-weight: 600;
}

.pricing-card .home-cta__primary-btn {
	margin: 0 24px 24px;
	width: calc(100% - 48px) !important;
}

/* ============================================================
   FAQ Grid
   ============================================================ */
.faq-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.faq-item {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 28px;
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.faq-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 40px rgba(15,32,59,0.08);
}

.faq-item__q {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 15px;
	font-weight: 700;
	color: var(--text);
	margin: 0 0 12px;
	line-height: 1.4;
}

.faq-item__q .site-icon {
	width: 20px;
	height: 20px;
	color: var(--primary);
	flex-shrink: 0;
	margin-top: 1px;
}

.faq-item__a {
	font-size: 14px;
	line-height: 1.8;
	color: var(--text-soft);
	margin: 0;
}

/* ============================================================
   Diploma Scene (Hero Visual)
   ============================================================ */
.diploma-scene {
	position: relative;
	width: 100%;
	max-width: 420px;
	margin: 0 auto;
	padding: 40px 20px;
}

.diploma-scene__glow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: rgba(47,111,237,0.08);
	box-shadow: none;
	pointer-events: none;
}

.diploma-scene__sheet {
	position: absolute;
	border-radius: 12px;
	background: var(--surface);
	border: 1px solid var(--border);
	box-shadow: 0 8px 32px rgba(15,32,59,0.1);
}

.diploma-scene__sheet--back {
	width: 85%;
	height: 85%;
	top: 8%;
	left: 10%;
	transform: rotate(-4deg);
	opacity: 0.5;
}

.diploma-scene__sheet--front {
	position: relative;
	width: 100%;
	padding: 28px 24px;
	border-radius: 12px;
	background: var(--surface);
	border: 1px solid var(--border);
	box-shadow: 0 16px 48px rgba(15,32,59,0.14);
	overflow: hidden;
}

.diploma-scene__ribbon {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--accent);
}

.diploma-scene__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
	margin-top: 4px;
}

.diploma-scene__mark {
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--text-soft);
}

.diploma-scene__stamp {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 2px solid var(--accent);
	opacity: 0.6;
}

.diploma-scene__title {
	font-size: 14px;
	font-weight: 800;
	color: var(--text);
	letter-spacing: -0.01em;
	margin-bottom: 14px;
}

.diploma-scene__line {
	height: 6px;
	border-radius: 999px;
	background: var(--border-strong);
	margin-bottom: 6px;
}

.diploma-scene__line--short {
	width: 55%;
}

.diploma-scene__signature-row {
	display: flex;
	gap: 20px;
	margin-top: 16px;
	margin-bottom: 12px;
}

.diploma-scene__signature {
	flex: 1;
	height: 3px;
	border-radius: 999px;
	background: var(--border-strong);
}

.diploma-scene__footer {
	display: flex;
	justify-content: space-between;
	font-size: 8px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--text-soft);
	border-top: 1px solid var(--border);
	padding-top: 10px;
	margin-top: 4px;
}

.diploma-scene__tool {
	position: absolute;
	border-radius: 8px;
}

.diploma-scene__tool--pen {
	width: 8px;
	height: 48px;
	background: var(--primary);
	bottom: 20px;
	right: 10px;
	transform: rotate(-20deg);
	border-radius: 4px 4px 2px 2px;
}

.diploma-scene__tool--press {
	width: 32px;
	height: 32px;
	background: rgba(201,163,90,0.15);
	border: 1.5px solid var(--accent);
	border-radius: 50%;
	bottom: 30px;
	left: 10px;
}

/* ============================================================
   Comparison Table
   ============================================================ */
.compare-table {
	width: 100%;
	border-collapse: collapse;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid var(--border);
}

.compare-table th {
	background: #2f6fed;
	border-bottom: 1px solid rgba(255,255,255,0.18);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	padding: 16px 20px;
	text-align: left;
}

.compare-table th:first-child {
	width: 40%;
}

.compare-table td {
	padding: 14px 20px;
	font-size: 14px;
	color: var(--text-soft);
	border-bottom: 1px solid var(--border);
}

.compare-table tr:last-child td {
	border-bottom: none;
}

.compare-table tr:nth-child(even) td {
	background: var(--bg);
}

.compare-table td:first-child {
	font-weight: 600;
	color: var(--text);
}

.compare-table .check {
	color: var(--primary);
	font-family: 'Material Symbols Outlined';
	font-size: 18px;
}

/* ============================================================
   Testimonials
   ============================================================ */
.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

/* ============================================================
   Highlight Banner
   ============================================================ */
.highlight-banner {
	background: linear-gradient(135deg, #2f6fed 0%, #1a4fc4 100%);
	border: 1px solid rgba(255,255,255,0.16);
	color: #fff;
	padding: 40px 48px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	color: #fff;
}

.highlight-banner__text h3 {
	font-size: 22px;
	font-weight: 800;
	margin: 0 0 8px;
	color: #fff;
}

.highlight-banner__text p {
	font-size: 15px;
	opacity: 0.85;
	margin: 0;
	line-height: 1.6;
}

.highlight-banner__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 48px;
	padding: 0 28px;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 700;
	color: var(--primary);
	background: #fff;
	text-decoration: none;
	white-space: nowrap;
	flex-shrink: 0;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.highlight-banner__btn:hover {
	transform: none;
	box-shadow: 0 8px 20px rgba(0,0,0,0.14);
}

/* ============================================================
   Responsive — New Components
   ============================================================ */
@media (max-width: 1024px) {
	.stats-bar__inner {
		grid-template-columns: repeat(2, 1fr);
	}

	.stats-bar__item:nth-child(2) {
		border-right: none;
	}

	.stats-bar__item:nth-child(1),
	.stats-bar__item:nth-child(2) {
		border-bottom: 1px solid var(--border);
	}

	.print-types-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.process-steps {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px;
	}

	.process-steps::before {
		display: none;
	}

	.faq-grid {
		grid-template-columns: 1fr;
	}

	.testimonials-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.highlight-banner {
		flex-direction: column;
		align-items: flex-start;
		padding: 32px;
	}
}

@media (max-width: 640px) {
	.stats-bar__inner {
		grid-template-columns: repeat(2, 1fr);
	}

	.print-types-grid {
		grid-template-columns: 1fr;
	}

	.process-steps {
		grid-template-columns: 1fr;
	}

	.testimonials-grid {
		grid-template-columns: 1fr;
	}

	.highlight-banner {
		padding: 24px;
	}
}

/* ============================================================
   Reveal Animation
   ============================================================ */
.is-revealing {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.is-revealed {
	opacity: 1;
	transform: translateY(0);
}

/* ============================================================
   Inner Page Responsive
   ============================================================ */
@media (max-width: 1024px) {
	.grid--4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.template-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.inner-hero__inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.inner-split {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.inner-cta {
		flex-direction: column;
		align-items: flex-start;
		padding: 40px;
	}

	.contact-layout {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

@media (max-width: 640px) {
	.container {
		padding: 0 20px;
	}

	.section {
		padding: 56px 0;
	}

	.inner-hero {
		padding: 48px 0 40px;
	}

	.grid--4 {
		grid-template-columns: 1fr;
	}

	.template-grid {
		grid-template-columns: 1fr;
	}

	.contact-form__row {
		grid-template-columns: 1fr;
	}

	.inner-cta {
		padding: 28px 24px;
	}

	.contact-form-wrap {
		padding: 24px;
	}
}
