@font-face {
	font-family: "IRANSans";
	src: url("../fonts/IRANSansXFaNum-Regular.woff2") format("woff2");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "IRANSans";
	src: url("../fonts/IRANSansXFaNum-Medium.woff2") format("woff2");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "IRANSans";
	src: url("../fonts/IRANSansXFaNum-Bold.woff2") format("woff2");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "IRANSans";
	src: url("../fonts/IRANSansXFaNum-ExtraBold.woff2") format("woff2");
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}

:root {
	--color-green: #00A86B;
	--color-dark-green: #006B4A;
	--color-deep: #003B2F;
	--color-mint: #EFFFF7;
	--color-yellow: #FFD43B;
	--color-orange: #FF8A00;
	--color-blue: #2563EB;
	--color-bg: #F7F9FB;
	--color-text: #172033;
	--color-muted: #667085;
	--color-line: #E5EAF0;
	--color-white: #FFFFFF;
	--color-dark: #101828;
	--container: 1160px;
	--radius-lg: 28px;
	--radius-md: 22px;
	--radius-sm: 16px;
	--shadow-soft: 0 18px 45px rgba(16, 24, 40, 0.08);
	--shadow-tiny: 0 10px 24px rgba(16, 24, 40, 0.06);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	direction: rtl;
	background: var(--color-bg);
	color: var(--color-text);
	font-family: "IRANSans", Tahoma, Arial, sans-serif;
	font-size: 15px;
	line-height: 1.85;
	overflow-x: hidden;
}

body.mobile-menu-open {
	overflow: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

button,
input,
textarea,
select {
	font: inherit;
}

.screen-reader-text,
.skip-link {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.educ-container {
	width: min(var(--container), calc(100% - 48px));
	margin: 0 auto;
}

.section-space {
	padding: 78px 0 0;
}

.soft-card {
	background: var(--color-white);
	border: 1px solid rgba(229, 234, 240, 0.72);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-soft);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 26px;
	border: 0;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
	transform: translateY(-1px);
}

.btn-primary {
	background: var(--color-orange);
	color: var(--color-white);
	box-shadow: 0 12px 24px rgba(255, 138, 0, 0.2);
}

.btn-primary:hover {
	background: #ea7d00;
	color: var(--color-white);
}

.btn-secondary {
	background: var(--color-white);
	color: var(--color-dark-green);
	box-shadow: var(--shadow-tiny);
}

.btn-secondary:hover {
	background: var(--color-mint);
}

.btn-green {
	background: var(--color-green);
	color: var(--color-white);
	box-shadow: 0 12px 24px rgba(0, 168, 107, 0.18);
}

.btn-green:hover {
	background: var(--color-dark-green);
	color: var(--color-white);
}

.btn-small {
	min-height: 40px;
	padding: 0 22px;
	font-size: 13px;
}

.btn-wide {
	width: 100%;
}

.site-header {
	position: absolute;
	z-index: 50;
	top: 26px;
	right: 0;
	left: 0;
}

.educ-has-sticky-header .site-header {
	position: sticky;
	top: 16px;
}

.header-shell {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 58px;
	padding: 0 16px 0 14px;
	background: rgba(255, 255, 255, 0.95);
	border: 1px solid rgba(229, 234, 240, 0.82);
	border-radius: 999px;
	box-shadow: 0 14px 34px rgba(16, 24, 40, 0.08);
	backdrop-filter: blur(10px);
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 900;
	color: var(--color-dark-green);
	white-space: nowrap;
}

.site-brand img {
	max-width: 160px;
	max-height: 42px;
	object-fit: contain;
}

.site-brand__mark {
	width: 13px;
	height: 13px;
	border-radius: 4px;
	background: var(--color-green);
	box-shadow: 0 0 0 5px rgba(0, 168, 107, 0.1);
}

.site-brand__text {
	font-size: 15px;
}

.primary-nav .menu,
.mobile-nav .menu {
	display: flex;
	align-items: center;
	gap: 30px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-nav a {
	color: var(--color-text);
	font-size: 13px;
	font-weight: 700;
}

.primary-nav a:hover,
.primary-nav .current-menu-item > a {
	color: var(--color-green);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.header-cta {
	min-height: 34px;
	padding: 0 20px;
	font-size: 12px;
}

.mobile-menu-toggle {
	display: none;
	position: relative;
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 12px;
	background: var(--color-bg);
	color: var(--color-text);
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.mobile-menu-toggle:hover {
	background: var(--color-mint);
	transform: translateY(-1px);
}

.mobile-menu-toggle span[aria-hidden="true"] {
	position: absolute;
	right: 10px;
	left: 10px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
	transition: transform 0.24s ease, opacity 0.2s ease, top 0.24s ease;
}

.mobile-menu-toggle span[aria-hidden="true"]:nth-child(1) {
	top: 11px;
}

.mobile-menu-toggle span[aria-hidden="true"]:nth-child(2) {
	top: 17px;
}

.mobile-menu-toggle span[aria-hidden="true"]:nth-child(3) {
	top: 23px;
}

.mobile-menu-toggle.is-active span[aria-hidden="true"]:nth-child(1) {
	top: 17px;
	transform: rotate(45deg);
}

.mobile-menu-toggle.is-active span[aria-hidden="true"]:nth-child(2) {
	opacity: 0;
}

.mobile-menu-toggle.is-active span[aria-hidden="true"]:nth-child(3) {
	top: 17px;
	transform: rotate(-45deg);
}

.mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 90;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	align-items: stretch;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.28s ease;
}

.mobile-menu.is-open {
	opacity: 1;
	pointer-events: auto;
}

.mobile-menu__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(16, 24, 40, 0.48);
	backdrop-filter: blur(10px);
}

.mobile-menu::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: min(68vw, 260px);
	height: 100%;
	background: linear-gradient(180deg, rgba(239, 255, 247, 0.96), rgba(255, 244, 214, 0.92));
	opacity: 0;
	transform: translateX(22px);
	transition: opacity 0.34s ease, transform 0.34s ease;
}

.mobile-menu.is-open::before {
	opacity: 1;
	transform: translateX(0);
}

.mobile-menu__panel {
	position: relative;
	z-index: 2;
	width: min(86vw, 356px);
	height: calc(100dvh - 24px);
	margin: 12px 12px 12px auto;
	padding: 18px;
	overflow-y: auto;
	background: var(--color-white);
	border: 1px solid rgba(229, 234, 240, 0.9);
	border-radius: 26px 0 0 26px;
	box-shadow: -28px 0 54px rgba(16, 24, 40, 0.18);
	transform: translateX(108%);
	transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu.is-open .mobile-menu__panel {
	transform: translateX(0);
}

.mobile-menu__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--color-line);
}

.mobile-menu__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 0;
	border-radius: 14px;
	background: var(--color-bg);
	color: var(--color-text);
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.mobile-menu__close:hover {
	background: var(--color-deep);
	color: var(--color-white);
	transform: rotate(4deg);
}

.mobile-nav .menu {
	align-items: stretch;
	flex-direction: column;
	gap: 8px;
	margin: 18px 0;
}

.mobile-nav a {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 48px;
	padding: 0 14px 0 12px;
	border: 1px solid transparent;
	border-radius: 16px;
	color: var(--color-text);
	font-weight: 800;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.mobile-nav a::before {
	content: "";
	width: 7px;
	height: 7px;
	margin-left: 10px;
	border-radius: 3px;
	background: var(--color-green);
	opacity: 0.65;
}

.mobile-nav a:hover,
.mobile-nav .current-menu-item > a {
	background: var(--color-mint);
	border-color: rgba(0, 168, 107, 0.16);
	color: var(--color-dark-green);
	transform: translateX(-2px);
}

.mobile-nav li {
	opacity: 0;
	transform: translateX(18px);
	transition: opacity 0.28s ease, transform 0.28s ease;
}

.mobile-menu.is-open .mobile-nav li {
	opacity: 1;
	transform: translateX(0);
}

.mobile-menu.is-open .mobile-nav li:nth-child(1) {
	transition-delay: 0.08s;
}

.mobile-menu.is-open .mobile-nav li:nth-child(2) {
	transition-delay: 0.12s;
}

.mobile-menu.is-open .mobile-nav li:nth-child(3) {
	transition-delay: 0.16s;
}

.mobile-menu.is-open .mobile-nav li:nth-child(4) {
	transition-delay: 0.2s;
}

.mobile-menu.is-open .mobile-nav li:nth-child(5) {
	transition-delay: 0.24s;
}

.mobile-menu.is-open .mobile-nav li:nth-child(6) {
	transition-delay: 0.28s;
}

.mobile-menu.is-open .mobile-nav li:nth-child(7) {
	transition-delay: 0.32s;
}

.mobile-menu .btn-wide {
	margin-top: 12px;
	box-shadow: 0 16px 30px rgba(255, 138, 0, 0.22);
}

.educ-breadcrumbs {
	position: relative;
	z-index: 3;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	width: min(var(--container), calc(100% - 48px));
	margin: 22px auto -70px;
	color: var(--color-muted);
	font-size: 12px;
	font-weight: 800;
}

.educ-breadcrumbs a {
	color: var(--color-dark-green);
}

.educ-breadcrumbs strong {
	color: var(--color-text);
}

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

.hero-section {
	position: relative;
	padding: 112px 0 60px;
	background:
		radial-gradient(circle at 18% 18%, rgba(255, 212, 59, 0.22), transparent 32%),
		linear-gradient(135deg, #effff6 0%, #f5fff9 52%, #fff4d6 100%);
	overflow: hidden;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr 0.96fr;
	gap: 88px;
	align-items: center;
	min-height: 430px;
}

.hero-content {
	order: 1;
	text-align: right;
}

.hero-visual {
	position: relative;
	order: 2;
	min-height: 330px;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	padding: 8px 18px;
	border-radius: 999px;
	background: rgba(0, 168, 107, 0.09);
	color: var(--color-dark-green);
	font-size: 13px;
	font-weight: 800;
}

.hero-content h1 {
	max-width: 580px;
	margin: 0;
	color: var(--color-text);
	font-size: 48px;
	font-weight: 900;
	line-height: 1.32;
}

.hero-content p {
	max-width: 560px;
	margin: 22px 0 0;
	color: var(--color-muted);
	font-size: 15px;
}

.hero-actions {
	display: flex;
	gap: 14px;
	margin-top: 30px;
}

.week-card {
	position: relative;
	width: 390px;
	min-height: 300px;
	padding: 30px 34px;
	margin-right: auto;
}

.week-card__head {
	margin-bottom: 26px;
	text-align: center;
}

.week-card h2 {
	margin: 0;
	font-size: 18px;
	font-weight: 900;
}

.week-card p {
	margin: 4px 0 0;
	color: var(--color-muted);
	font-size: 12px;
}

.progress-item + .progress-item {
	margin-top: 20px;
}

.progress-item__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 7px;
	color: var(--color-muted);
	font-size: 12px;
	font-weight: 800;
}

.progress-item__meta strong {
	color: var(--color-text);
}

.progress-track {
	height: 8px;
	overflow: hidden;
	background: var(--color-line);
	border-radius: 999px;
}

.progress-track span {
	display: block;
	height: 100%;
	background: var(--color-green);
	border-radius: inherit;
}

.hero-mini-cards {
	position: absolute;
	right: 36px;
	bottom: 14px;
	display: flex;
	align-items: flex-end;
	gap: 16px;
}

.mini-card {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 174px;
	min-height: 92px;
	padding: 18px 20px;
	border-radius: 20px;
	box-shadow: 0 16px 36px rgba(16, 24, 40, 0.1);
}

.mini-card--dark {
	background: var(--color-deep);
	color: var(--color-white);
}

.mini-card--light {
	background: var(--color-white);
	color: var(--color-dark-green);
}

.mini-card strong {
	font-size: 20px;
	font-weight: 900;
	line-height: 1.2;
}

.mini-card span {
	margin-top: 6px;
	font-size: 11px;
	color: currentColor;
	opacity: 0.78;
}

.stats-strip-section {
	margin-top: -24px;
}

.stats-strip {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	min-height: 118px;
	padding: 24px 46px;
	background: var(--color-white);
	border-radius: 24px;
	box-shadow: var(--shadow-soft);
}

.stat-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.stat-item strong {
	color: var(--color-green);
	font-size: 30px;
	font-weight: 900;
	line-height: 1.2;
}

.stat-item span {
	margin-top: 6px;
	color: var(--color-muted);
	font-size: 13px;
	font-weight: 700;
}

.section-intro {
	max-width: 620px;
	margin: 0 auto 34px;
	text-align: center;
}

.section-intro h2,
.path-copy h2 {
	margin: 0;
	color: var(--color-text);
	font-size: 32px;
	font-weight: 900;
	line-height: 1.45;
}

.section-intro p,
.path-copy p {
	margin: 12px 0 0;
	color: var(--color-muted);
	font-size: 14px;
}

.path-grid {
	display: flex;
	gap: 122px;
	align-items: center;
	justify-content: space-between;
}

.path-copy {
	flex: 1 1 auto;
	max-width: 590px;
	text-align: right;
}

.steps-card {
	flex: 0 0 390px;
	padding: 30px 34px;
}

.step-row {
	display: flex;
	align-items: center;
	gap: 14px;
	min-height: 42px;
	font-size: 14px;
	font-weight: 800;
}

.step-row + .step-row {
	margin-top: 9px;
}

.step-row span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--color-mint);
	color: var(--color-green);
	font-size: 12px;
	font-weight: 900;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 36px;
}

.service-card {
	position: relative;
	min-height: 136px;
	padding: 28px 68px 24px 26px;
	color: var(--color-text);
}

.service-card__icon {
	position: absolute;
	top: 26px;
	right: 26px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 12px;
	background: var(--color-mint);
	color: var(--color-green);
}

.service-card h3,
.consultant-card h3,
.plan-card h3,
.post-card h3 {
	margin: 0;
	font-size: 18px;
	font-weight: 900;
	line-height: 1.5;
}

.service-card p,
.consultant-card p,
.plan-card p,
.post-card small {
	margin: 8px 0 0;
	color: var(--color-muted);
	font-size: 13px;
}

.filter-pills {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin: 22px 0 36px;
}

.filter-pills a,
.filter-pills button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 0 18px;
	border: 0;
	border-radius: 999px;
	background: var(--color-white);
	color: var(--color-dark-green);
	font-size: 12px;
	font-weight: 800;
	box-shadow: var(--shadow-tiny);
	cursor: pointer;
}

.filter-pills .is-active {
	background: var(--color-green);
	color: var(--color-white);
}

.consultants-grid,
.plans-grid,
.blog-grid,
.archive-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.consultant-card {
	position: relative;
	padding: 22px;
	text-align: right;
}

.consultant-card__media {
	display: block;
	margin-bottom: 20px;
}

.consultant-card__image,
.educ-placeholder {
	width: 100%;
	aspect-ratio: 1.7 / 1;
	border-radius: 16px;
	background: #e8f0ff;
	object-fit: cover;
}

.consultant-card:nth-child(2n) .educ-placeholder,
.post-card:nth-child(2n) .educ-placeholder {
	background: #fff2c5;
}

.consultant-card:nth-child(3n) .educ-placeholder,
.post-card:nth-child(3n) .educ-placeholder {
	background: #d5faec;
}

.educ-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(23, 32, 51, 0.5);
	font-size: 13px;
	font-weight: 800;
}

.card-badge {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 0 12px;
	margin-bottom: 10px;
	border-radius: 999px;
	background: var(--color-mint);
	color: var(--color-dark-green);
	font-size: 11px;
	font-weight: 900;
}

.consultant-card strong {
	display: block;
	margin-top: 4px;
	color: var(--color-green);
	font-size: 13px;
}

.consultant-card .btn {
	margin-top: 18px;
}

.resume-panel {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	padding: 52px 60px;
	background: linear-gradient(135deg, var(--color-deep), var(--color-dark-green));
	border-radius: 28px;
	box-shadow: 0 24px 52px rgba(0, 59, 47, 0.18);
	color: var(--color-white);
}

.resume-stat {
	text-align: center;
}

.resume-stat strong {
	display: block;
	color: var(--color-yellow);
	font-size: 34px;
	font-weight: 900;
	line-height: 1.1;
}

.resume-stat span {
	display: block;
	margin-top: 10px;
	font-weight: 900;
}

.resume-stat small {
	display: block;
	margin-top: 12px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 12px;
}

.plan-card {
	position: relative;
	padding: 32px 30px 28px;
}

.plan-card.is-highlighted {
	border-color: rgba(255, 138, 0, 0.28);
	transform: translateY(-8px);
}

.plan-card__ribbon {
	position: absolute;
	top: -13px;
	right: 30px;
	padding: 6px 14px;
	border-radius: 999px;
	background: var(--color-orange);
	color: var(--color-white);
	font-size: 11px;
	font-weight: 900;
}

.plan-card__price {
	display: block;
	margin-top: 8px;
	color: var(--color-green);
	font-size: 18px;
}

.plan-card ul,
.check-list {
	padding: 0;
	margin: 22px 0;
	list-style: none;
}

.plan-card li,
.check-list li {
	display: flex;
	align-items: center;
	gap: 9px;
	margin-top: 10px;
	color: var(--color-text);
	font-size: 13px;
	font-weight: 700;
}

.plan-card li i,
.check-list li i {
	color: var(--color-green);
}

.videos-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) 0.82fr;
	gap: 34px;
	align-items: stretch;
}

.video-main {
	order: 1;
}

.video-list {
	order: 2;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.video-player {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: var(--color-dark);
	border-radius: 22px;
	box-shadow: var(--shadow-soft);
}

.video-player iframe,
.video-player script + iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

.video-main h3 {
	margin: 18px 0 0;
	color: var(--color-white);
	font-size: 18px;
	font-weight: 900;
	text-align: center;
	transform: translateY(-58px);
}

.play-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 74px;
	height: 74px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.94);
	color: var(--color-dark);
	font-size: 27px;
}

.video-card {
	display: grid;
	grid-template-columns: 84px minmax(0, 1fr);
	gap: 16px;
	align-items: center;
	min-height: 88px;
	padding: 14px;
}

.video-card__media {
	position: relative;
	display: block;
}

.video-card__thumb {
	width: 84px;
	height: 58px;
	border-radius: 14px;
	background: #e8f0ff;
	object-fit: cover;
}

.video-card__play {
	position: absolute;
	top: 50%;
	left: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--color-mint);
	color: var(--color-green);
	transform: translate(-50%, -50%);
}

.video-card__body strong {
	display: block;
	font-size: 14px;
	font-weight: 900;
}

.video-card__body small {
	display: block;
	margin-top: 4px;
	color: var(--color-orange);
	font-size: 12px;
	font-weight: 800;
}

.post-card {
	overflow: hidden;
}

.post-card__image {
	width: 100%;
	aspect-ratio: 1.75 / 1;
	object-fit: cover;
}

.post-card__body {
	padding: 20px 22px 22px;
}

.post-card__category {
	display: block;
	margin-bottom: 8px;
	color: var(--color-green);
	font-size: 12px;
	font-weight: 900;
}

.final-cta {
	padding: 48px 32px;
	text-align: center;
	background: linear-gradient(135deg, var(--color-deep), var(--color-dark-green));
	border-radius: 28px;
	color: var(--color-white);
	box-shadow: 0 24px 52px rgba(0, 59, 47, 0.18);
}

.final-cta h2 {
	margin: 0;
	font-size: 32px;
	font-weight: 900;
}

.final-cta p {
	max-width: 650px;
	margin: 14px auto 24px;
	color: rgba(255, 255, 255, 0.76);
}

.site-footer {
	margin-top: 76px;
	padding: 62px 0 28px;
	background: var(--color-text);
	color: var(--color-white);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.45fr 0.8fr 0.8fr 1fr;
	gap: 54px;
	padding-bottom: 42px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-about p {
	max-width: 360px;
	margin: 18px 0 0;
	color: rgba(255, 255, 255, 0.7);
	font-size: 13px;
}

.footer-socials {
	display: flex;
	gap: 10px;
	margin-top: 18px;
}

.footer-socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.08);
	color: var(--color-white);
}

.footer-col h2 {
	margin: 0 0 18px;
	font-size: 16px;
	font-weight: 900;
}

.footer-links {
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-links li,
.footer-links a {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 10px;
	color: rgba(255, 255, 255, 0.68);
	font-size: 13px;
}

.footer-links a:hover {
	color: var(--color-white);
}

.footer-bottom {
	padding-top: 22px;
	text-align: center;
	color: rgba(255, 255, 255, 0.55);
	font-size: 12px;
}

.footer-credit-mini {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-height: 18px;
	margin-top: 8px;
	color: rgba(255, 255, 255, 0.36);
	font-size: 10px;
	line-height: 1.4;
}

.footer-credit-mini a {
	color: rgba(255, 255, 255, 0.48);
	text-decoration: none;
}

.footer-credit-mini a:hover {
	color: var(--color-white);
}

.page-hero,
.single-hero {
	padding: 140px 0 64px;
	background: linear-gradient(135deg, #effff6 0%, #fff7df 100%);
	text-align: center;
}

.page-hero h1,
.single-hero h1 {
	max-width: 780px;
	margin: 0 auto;
	font-size: 42px;
	font-weight: 900;
	line-height: 1.45;
}

.page-hero p,
.single-hero p {
	max-width: 650px;
	margin: 14px auto 0;
	color: var(--color-muted);
}

.content-sidebar-layout,
.single-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 30px;
	align-items: start;
}

.archive-sidebar,
.author-box,
.toc-box,
.inline-cta,
.contact-info {
	padding: 26px;
}

.archive-sidebar h2,
.author-box strong,
.toc-box strong,
.contact-info h2 {
	margin: 0 0 14px;
	font-size: 18px;
	font-weight: 900;
}

.archive-sidebar ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.archive-sidebar li,
.toc-box li {
	margin-top: 10px;
}

.toc-box ul {
	padding: 0;
	margin: 10px 0 0;
	color: var(--color-muted);
	list-style: none;
}

.toc-box + .author-box {
	margin-top: 22px;
}

.narrow-content,
.single-content {
	max-width: 860px;
	padding: 36px;
}

.single-content {
	max-width: none;
}

.single-content h2 {
	margin-top: 34px;
	font-size: 24px;
}

.single-content p,
.single-content li {
	color: #344054;
	font-size: 15px;
}

.single-featured {
	margin: 0 0 28px;
	overflow: hidden;
	border-radius: 22px;
}

.single-featured img {
	width: 100%;
}

.single-hero__meta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
	margin-bottom: 16px;
	color: var(--color-dark-green);
	font-size: 13px;
	font-weight: 800;
}

.inline-cta {
	margin-top: 22px;
	background: var(--color-deep);
	border-radius: 22px;
	color: var(--color-white);
}

.inline-cta h2 {
	margin: 0;
	font-size: 20px;
}

.inline-cta p {
	color: rgba(255, 255, 255, 0.72);
}

.consultant-profile__grid,
.plan-single__grid,
.single-video-grid,
.contact-grid {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 34px;
	align-items: start;
}

.consultant-profile__media {
	padding: 24px;
}

.consultant-profile__image {
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 24px;
	object-fit: cover;
}

.consultant-profile__content h1 {
	margin: 8px 0;
	font-size: 42px;
	font-weight: 900;
}

.consultant-profile__content > strong {
	display: block;
	color: var(--color-green);
	font-size: 18px;
}

.profile-stats {
	display: grid;
	grid-template-columns: repeat(2, 150px);
	gap: 14px;
	margin: 26px 0;
}

.profile-stats div,
.meta-pill {
	padding: 16px;
	background: var(--color-white);
	border-radius: 18px;
	box-shadow: var(--shadow-tiny);
}

.profile-stats strong {
	display: block;
	color: var(--color-green);
	font-size: 24px;
}

.profile-actions {
	display: flex;
	gap: 12px;
}

.single-video-player iframe,
.single-video-player .video-player {
	width: 100%;
	aspect-ratio: 16 / 9;
	border: 0;
	border-radius: 24px;
	box-shadow: var(--shadow-soft);
}

.single-video-info,
.plan-single__content,
.plan-single__aside,
.contact-form {
	padding: 32px;
}

.single-video-info h1,
.plan-single__content h1 {
	margin: 10px 0;
	font-size: 36px;
	font-weight: 900;
	line-height: 1.45;
}

.meta-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 18px;
	color: var(--color-orange);
	font-weight: 900;
}

.plan-single__grid {
	grid-template-columns: minmax(0, 1fr) 340px;
}

.plan-price {
	display: block;
	margin-bottom: 18px;
	color: var(--color-green);
	font-size: 28px;
	font-weight: 900;
}

.contact-form {
	display: grid;
	gap: 16px;
}

.contact-form label {
	display: grid;
	gap: 8px;
	color: var(--color-text);
	font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.search-form input[type="search"] {
	width: 100%;
	border: 1px solid var(--color-line);
	border-radius: 16px;
	background: var(--color-white);
	padding: 13px 16px;
	color: var(--color-text);
}

.search-form {
	display: flex;
	max-width: 520px;
	margin: 26px auto 0;
	gap: 10px;
}

.search-form input[type="submit"],
.search-form button {
	border: 0;
	border-radius: 999px;
	background: var(--color-orange);
	color: var(--color-white);
	padding: 0 22px;
	font-weight: 900;
}

.contact-info p {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--color-muted);
}

.not-found-card {
	max-width: 620px;
	margin: 70px auto 0;
	padding: 56px 34px;
	text-align: center;
}

.not-found-card span {
	display: block;
	color: var(--color-green);
	font-size: 80px;
	font-weight: 900;
	line-height: 1;
}

.not-found-card h1 {
	margin: 10px 0;
	font-size: 34px;
	font-weight: 900;
}

.empty-state {
	grid-column: 1 / -1;
	padding: 28px;
	background: var(--color-white);
	border-radius: 20px;
	text-align: center;
	box-shadow: var(--shadow-tiny);
}

.nav-links {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 40px;
}

.nav-links a,
.nav-links span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 12px;
	border-radius: 999px;
	background: var(--color-white);
	box-shadow: var(--shadow-tiny);
}

.nav-links .current {
	background: var(--color-green);
	color: var(--color-white);
}
