/**
 * Coaching Page Styles
 * Tabcom Coaching - Light Theme
 * Brand Colors: #0038FF, #001BE6, #0FDEC9
 * 
 * @package TabcomGroup
 */

/* ============================================
   CSS Variables
   ============================================ */
.coaching-page {
	--co-primary: #0038FF;
	--co-primary-dark: #001BE6;
	--co-accent: #0FDEC9;
	--co-bg: #f8fafb;
	--co-bg-alt: #eef3f6;
	--co-surface: #ffffff;
	--co-text: #1a2c32;
	--co-text-muted: #64748b;
	--co-border: rgba(0, 0, 0, 0.08);
	--co-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	--co-gradient: linear-gradient(180deg, #0FDEC9 0%, #001BE6 40%);
}

/* ============================================
   Base Styles
   ============================================ */
.coaching-page {
	background: var(--co-bg);
	color: var(--co-text);
	font-family: 'SF Pro Display', 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	overflow-x: hidden;
}

.coaching-page .container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.co-hero {
	position: relative;
	padding: 80px 0 100px;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(0, 56, 255, 0.03) 0%, rgba(15, 222, 201, 0.05) 50%, #f8fafb 100%);
}

.co-hero__bg-effects {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.co-hero__glow {
	position: absolute;
	top: 0;
	right: 0;
	width: 60%;
	height: 100%;
	background: radial-gradient(ellipse at top right, rgba(0, 56, 255, 0.08) 0%, transparent 60%);
}

.co-hero__blur {
	position: absolute;
	top: -100px;
	left: -100px;
	width: 400px;
	height: 400px;
	background: rgba(15, 222, 201, 0.08);
	border-radius: 50%;
	filter: blur(80px);
}

.co-hero__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.co-hero__content {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.co-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: fit-content;
	padding: 8px 16px;
	background: rgba(0, 56, 255, 0.08);
	border: 1px solid rgba(0, 56, 255, 0.2);
	border-radius: 50px;
	font-size: 12px;
	font-weight: 700;
	color: var(--co-primary);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.co-hero__badge .badge-dot {
	width: 8px;
	height: 8px;
	background: var(--co-primary);
	border-radius: 50%;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.5; transform: scale(1.2); }
}

.co-hero__title {
	font-size: 48px;
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: var(--co-text);
	margin: 0;
}

.co-hero__title .highlight {
	background: var(--co-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.co-hero__desc {
	font-size: 18px;
	line-height: 1.7;
	color: var(--co-text-muted);
	max-width: 540px;
	margin: 0;
	padding-left: 16px;
	border-left: 4px solid var(--co-primary);
}

.co-hero__subdesc {
	font-size: 15px;
	line-height: 1.7;
	color: var(--co-text-muted);
	max-width: 500px;
	margin: 0;
}

.co-hero__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	padding-top: 8px;
}

.co-hero__buttons .btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 52px;
	padding: 0 32px;
	background: var(--co-gradient);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	border-radius: 12px;
	text-decoration: none;
	box-shadow: 0 8px 25px rgba(0, 56, 255, 0.3);
	transition: all 0.3s ease;
}

.co-hero__buttons .btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 30px rgba(0, 56, 255, 0.4);
}

.co-hero__buttons .btn-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 52px;
	padding: 0 32px;
	background: var(--co-surface);
	color: var(--co-text);
	font-size: 15px;
	font-weight: 700;
	border: 2px solid var(--co-border);
	border-radius: 12px;
	text-decoration: none;
	box-shadow: var(--co-shadow);
	transition: all 0.3s ease;
}

.co-hero__buttons .btn-secondary:hover {
	border-color: var(--co-primary);
	color: var(--co-primary);
}

/* Hero Visual */
.co-hero__visual {
	position: relative;
}

.co-hero__image-wrapper {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	background: var(--co-surface);
	border: 1px solid var(--co-border);
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.co-hero__image {
	width: 100%;
	height: 420px;
	object-fit: cover;
	display: block;
}

.co-hero__deco {
	position: absolute;
	top: -16px;
	right: -16px;
	width: 100%;
	height: 100%;
	border: 2px solid rgba(0, 56, 255, 0.2);
	border-radius: 20px;
	z-index: -1;
}

/* ============================================
   WHO IS THIS FOR SECTION
   ============================================ */
.co-audience {
	padding: 80px 0;
	background: var(--co-bg-alt);
}

.co-audience__header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-end;
	gap: 24px;
	margin-bottom: 48px;
}

.co-audience__header h2 {
	font-size: 36px;
	font-weight: 700;
	color: var(--co-text);
	margin: 0;
	max-width: 600px;
}

.co-audience__header h2 .highlight {
	color: var(--co-primary);
}

.co-audience__header p {
	font-size: 15px;
	color: var(--co-text-muted);
	margin: 0;
	max-width: 400px;
	text-align: right;
}

.co-audience__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.co-audience__card {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 28px;
	background: var(--co-surface);
	border: 1px solid var(--co-border);
	border-radius: 16px;
	box-shadow: var(--co-shadow);
	transition: all 0.3s ease;
}

.co-audience__card:hover {
	border-color: rgba(0, 56, 255, 0.3);
	transform: translateY(-4px);
	box-shadow: 0 12px 30px rgba(0, 56, 255, 0.1);
}

.co-audience__icon {
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 56, 255, 0.1);
	color: var(--co-primary);
	border-radius: 14px;
	transition: all 0.3s ease;
}

.co-audience__card:hover .co-audience__icon {
	background: var(--co-primary);
	color: #fff;
	transform: scale(1.1);
}

.co-audience__card h3 {
	font-size: 18px;
	font-weight: 700;
	color: var(--co-text);
	margin: 0;
}

.co-audience__card p {
	font-size: 14px;
	line-height: 1.7;
	color: var(--co-text-muted);
	margin: 0;
}

/* ============================================
   PROBLEMS SECTION
   ============================================ */
.co-problems {
	padding: 80px 0;
	background: var(--co-bg);
}

.co-problems__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.co-problems__content h2 {
	font-size: 36px;
	font-weight: 700;
	color: var(--co-text);
	margin: 0 0 16px;
	line-height: 1.2;
}

.co-problems__content h2 .highlight {
	color: var(--co-primary);
}

.co-problems__content > p {
	font-size: 17px;
	line-height: 1.7;
	color: var(--co-text-muted);
	margin: 0 0 32px;
}

.co-problems__quote {
	padding: 24px;
	background: rgba(0, 56, 255, 0.04);
	border: 1px solid rgba(0, 56, 255, 0.1);
	border-radius: 16px;
	position: relative;
	overflow: hidden;
}

.co-problems__quote::before {
	content: '';
	position: absolute;
	top: -50px;
	right: -50px;
	width: 150px;
	height: 150px;
	background: rgba(0, 56, 255, 0.08);
	border-radius: 50%;
	filter: blur(40px);
}

.co-problems__quote .material-symbols-outlined {
	font-size: 36px;
	color: var(--co-primary);
	margin-bottom: 12px;
	display: block;
}

.co-problems__quote p {
	font-size: 16px;
	font-style: italic;
	color: var(--co-text);
	margin: 0;
	position: relative;
	z-index: 1;
}

.co-problems__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.co-problems__item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 20px;
	background: var(--co-surface);
	border: 1px solid var(--co-border);
	border-radius: 12px;
	transition: all 0.3s ease;
}

.co-problems__item:hover {
	border-color: rgba(0, 56, 255, 0.3);
	background: rgba(0, 56, 255, 0.02);
}

.co-problems__item .material-symbols-outlined {
	color: var(--co-primary);
	font-size: 24px;
	flex-shrink: 0;
	margin-top: 2px;
}

.co-problems__item h4 {
	font-size: 16px;
	font-weight: 700;
	color: var(--co-text);
	margin: 0 0 4px;
}

.co-problems__item p {
	font-size: 14px;
	color: var(--co-text-muted);
	margin: 0;
}


/* ============================================
   PROCESS SECTION
   ============================================ */
.co-process {
	padding: 80px 0;
	background: var(--co-bg-alt);
}

.co-process__header {
	text-align: center;
	margin-bottom: 60px;
}

.co-process__header h2 {
	font-size: 36px;
	font-weight: 700;
	color: var(--co-text);
	margin: 0 0 12px;
}

.co-process__header p {
	font-size: 16px;
	color: var(--co-text-muted);
	margin: 0;
}

.co-process__timeline {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
}

.co-process__timeline::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 2px;
	background: rgba(0, 56, 255, 0.15);
	transform: translateX(-50%);
}

.co-process__step {
	display: flex;
	align-items: center;
	margin-bottom: 48px;
	position: relative;
}

.co-process__step:last-child {
	margin-bottom: 0;
}

.co-process__step:nth-child(odd) {
	flex-direction: row;
}

.co-process__step:nth-child(even) {
	flex-direction: row-reverse;
}

.co-process__step-content {
	width: calc(50% - 40px);
	padding: 24px;
	background: var(--co-surface);
	border: 1px solid var(--co-border);
	border-radius: 16px;
	box-shadow: var(--co-shadow);
	transition: all 0.3s ease;
}

.co-process__step:nth-child(odd) .co-process__step-content {
	text-align: right;
	margin-right: 40px;
}

.co-process__step:nth-child(even) .co-process__step-content {
	text-align: left;
	margin-left: 40px;
}

.co-process__step:hover .co-process__step-content {
	border-color: rgba(0, 56, 255, 0.3);
	transform: translateY(-4px);
}

.co-process__step-content h3 {
	font-size: 18px;
	font-weight: 700;
	color: var(--co-text);
	margin: 0 0 8px;
	transition: color 0.3s ease;
}

.co-process__step:hover .co-process__step-content h3 {
	color: var(--co-primary);
}

.co-process__step-content p {
	font-size: 14px;
	line-height: 1.7;
	color: var(--co-text-muted);
	margin: 0;
}

.co-process__step-number {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--co-surface);
	border: 3px solid var(--co-primary);
	border-radius: 50%;
	font-size: 18px;
	font-weight: 700;
	color: var(--co-primary);
	z-index: 2;
	transition: all 0.3s ease;
}

.co-process__step:hover .co-process__step-number {
	background: var(--co-primary);
	color: #fff;
	transform: translateX(-50%) scale(1.1);
}

/* ============================================
   COACHING MODELS SECTION
   ============================================ */
.co-models {
	padding: 100px 0;
	background: var(--co-bg);
}

.co-models__header {
	text-align: center;
	margin-bottom: 60px;
}

.co-models__header h2 {
	font-size: 36px;
	font-weight: 700;
	color: var(--co-text);
	margin: 0 0 12px;
}

.co-models__header p {
	font-size: 16px;
	color: var(--co-text-muted);
	margin: 0;
}

.co-models__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	align-items: stretch;
}

.co-models__card {
	display: flex;
	flex-direction: column;
	padding: 32px;
	background: var(--co-surface);
	border: 1px solid var(--co-border);
	border-radius: 20px;
	box-shadow: var(--co-shadow);
	transition: all 0.3s ease;
}

.co-models__card:hover {
	border-color: rgba(0, 56, 255, 0.3);
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 56, 255, 0.1);
}

.co-models__card.featured {
	border: 2px solid var(--co-primary);
	position: relative;
	transform: scale(1.02);
	box-shadow: 0 20px 50px rgba(0, 56, 255, 0.15);
}

.co-models__card.featured:hover {
	transform: scale(1.02) translateY(-8px);
}

.co-models__card-badge {
	display: inline-block;
	padding: 6px 14px;
	background: rgba(0, 56, 255, 0.1);
	color: var(--co-primary);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border-radius: 50px;
	margin-bottom: 16px;
	width: fit-content;
}

.co-models__card.featured .co-models__card-badge {
	background: var(--co-gradient);
	color: #fff;
}

.co-models__popular-tag {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	padding: 6px 16px;
	background: var(--co-gradient);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	border-radius: 50px;
	white-space: nowrap;
}

.co-models__card h3 {
	font-size: 24px;
	font-weight: 700;
	color: var(--co-text);
	margin: 0 0 8px;
}

.co-models__card > p {
	font-size: 14px;
	color: var(--co-text-muted);
	margin: 0 0 24px;
	min-height: 42px;
}

.co-models__features {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 24px;
}

.co-models__features li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	color: var(--co-text-muted);
}

.co-models__features .material-symbols-outlined {
	color: var(--co-primary);
	font-size: 18px;
	flex-shrink: 0;
}

.co-models__card .btn-card {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 48px;
	background: var(--co-surface);
	color: var(--co-text);
	font-size: 14px;
	font-weight: 700;
	border: 2px solid var(--co-border);
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
}

.co-models__card .btn-card:hover {
	border-color: var(--co-primary);
	color: var(--co-primary);
}

.co-models__card.featured .btn-card {
	background: var(--co-gradient);
	color: #fff;
	border: none;
	box-shadow: 0 8px 20px rgba(0, 56, 255, 0.3);
}

.co-models__card.featured .btn-card:hover {
	box-shadow: 0 12px 25px rgba(0, 56, 255, 0.4);
}

/* ============================================
   WHY TABCOM SECTION
   ============================================ */
.co-why {
	padding: 80px 0;
	background: var(--co-bg-alt);
}

.co-why__header {
	text-align: center;
	margin-bottom: 48px;
}

.co-why__header h2 {
	font-size: 36px;
	font-weight: 700;
	color: var(--co-text);
	margin: 0;
}

.co-why__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.co-why__item {
	display: flex;
	gap: 16px;
}

.co-why__item .material-symbols-outlined {
	font-size: 32px;
	color: var(--co-primary);
	flex-shrink: 0;
}

.co-why__item h4 {
	font-size: 18px;
	font-weight: 700;
	color: var(--co-text);
	margin: 0 0 8px;
}

.co-why__item p {
	font-size: 14px;
	line-height: 1.7;
	color: var(--co-text-muted);
	margin: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */
.co-cta {
	position: relative;
	padding: 100px 0;
	background: var(--co-gradient);
	overflow: hidden;
}

.co-cta__bg-blur {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 600px;
	height: 600px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 50%;
	filter: blur(100px);
}

.co-cta__content {
	position: relative;
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
	z-index: 1;
}

.co-cta__content h2 {
	font-size: 40px;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 20px;
	line-height: 1.2;
}

.co-cta__content p {
	font-size: 18px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.9);
	margin: 0 0 36px;
}

.co-cta__buttons {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

.co-cta .btn-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 56px;
	min-width: 220px;
	padding: 0 36px;
	background: #ffffff;
	color: var(--co-primary);
	font-size: 16px;
	font-weight: 700;
	border-radius: 12px;
	text-decoration: none;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
}

.co-cta .btn-cta:hover {
	background: #f0f0f0;
	transform: translateY(-2px);
}

.co-cta .btn-cta-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 56px;
	min-width: 180px;
	padding: 0 36px;
	background: transparent;
	color: #ffffff;
	font-size: 16px;
	font-weight: 700;
	border: 2px solid #ffffff;
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.co-cta .btn-cta-secondary:hover {
	background: rgba(255, 255, 255, 0.1);
}

.co-cta__contact {
	color: rgba(255, 255, 255, 0.8);
	font-size: 14px;
}

/* ============================================
   COMMITMENT SECTION
   ============================================ */
.co-commitment {
	padding: 80px 0;
	background: var(--co-bg);
}

.co-commitment__header {
	text-align: center;
	margin-bottom: 48px;
}

.co-commitment__header h2 {
	font-size: 36px;
	font-weight: 700;
	color: var(--co-text);
	margin: 0;
}

.co-commitment__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.co-commitment__item {
	display: flex;
	gap: 16px;
	padding: 24px;
	background: var(--co-surface);
	border: 1px solid var(--co-border);
	border-radius: 16px;
	box-shadow: var(--co-shadow);
	transition: all 0.3s ease;
}

.co-commitment__item:hover {
	border-color: rgba(0, 56, 255, 0.3);
	transform: translateY(-4px);
}

.co-commitment__item .material-symbols-outlined {
	font-size: 28px;
	color: var(--co-primary);
	flex-shrink: 0;
}

.co-commitment__item p {
	font-size: 14px;
	line-height: 1.7;
	color: var(--co-text-muted);
	margin: 0;
}

/* ============================================
   COURSES SECTION
   ============================================ */
.co-courses {
	padding: 100px 0;
	background: var(--co-bg-alt);
}

.co-courses__header {
	text-align: center;
	margin-bottom: 60px;
}

.co-courses__header h2 {
	font-size: 36px;
	font-weight: 700;
	color: var(--co-text);
	margin: 0 0 12px;
}

.co-courses__header p {
	font-size: 16px;
	color: var(--co-text-muted);
	margin: 0;
}

.co-courses__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
	max-width: 900px;
	margin: 0 auto;
}

.co-courses__card {
	display: flex;
	flex-direction: column;
	padding: 32px;
	background: var(--co-surface);
	border: 2px solid var(--co-border);
	border-radius: 20px;
	box-shadow: var(--co-shadow);
	transition: all 0.3s ease;
}

.co-courses__card:hover {
	border-color: var(--co-primary);
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 56, 255, 0.15);
}

.co-courses__card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.co-courses__platform {
	display: flex;
	align-items: center;
	gap: 10px;
}

.co-courses__platform-logo {
	width: 40px;
	height: 40px;
	object-fit: contain;
}

.co-courses__platform span {
	font-size: 15px;
	font-weight: 700;
	color: var(--co-text);
}

.co-courses__badge {
	padding: 6px 14px;
	background: var(--co-gradient);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border-radius: 50px;
}

.co-courses__card h3 {
	font-size: 24px;
	font-weight: 700;
	color: var(--co-text);
	margin: 0 0 16px;
}

.co-courses__price {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin-bottom: 24px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--co-border);
}

.co-courses__price .price-value {
	font-size: 32px;
	font-weight: 800;
	color: var(--co-primary);
}

.co-courses__price .price-note {
	font-size: 14px;
	color: var(--co-text-muted);
}

.co-courses__features {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 24px;
}

.co-courses__features .feature-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: var(--co-text-muted);
}

.co-courses__features .material-symbols-outlined {
	color: var(--co-primary);
	font-size: 20px;
	flex-shrink: 0;
}

.co-courses__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 52px;
	background: var(--co-gradient);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	border-radius: 12px;
	text-decoration: none;
	box-shadow: 0 8px 20px rgba(0, 56, 255, 0.3);
	transition: all 0.3s ease;
}

.co-courses__btn:hover {
	box-shadow: 0 12px 25px rgba(0, 56, 255, 0.4);
	transform: translateY(-2px);
}

/* ============================================
   COURSE CONTENT SECTION
   ============================================ */
.co-content {
	padding: 80px 0;
	background: var(--co-bg);
}

.co-content__header {
	text-align: center;
	margin-bottom: 60px;
}

.co-content__header h2 {
	font-size: 36px;
	font-weight: 700;
	color: var(--co-text);
	margin: 0 0 12px;
}

.co-content__header p {
	font-size: 16px;
	color: var(--co-text-muted);
	margin: 0;
}

.co-content__modules {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.co-content__module {
	padding: 28px;
	background: var(--co-surface);
	border: 1px solid var(--co-border);
	border-radius: 16px;
	box-shadow: var(--co-shadow);
	transition: all 0.3s ease;
}

.co-content__module:hover {
	border-color: rgba(0, 56, 255, 0.3);
	transform: translateY(-4px);
}

.co-content__module-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--co-border);
}

.co-content__module-header .module-icon {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 56, 255, 0.1);
	color: var(--co-primary);
	border-radius: 12px;
}

.co-content__module-header h3 {
	font-size: 18px;
	font-weight: 700;
	color: var(--co-primary);
	margin: 0;
}

.co-content__module-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.co-content__module-list li {
	position: relative;
	padding-left: 20px;
	font-size: 14px;
	line-height: 1.7;
	color: var(--co-text-muted);
}

.co-content__module-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 8px;
	width: 6px;
	height: 6px;
	background: var(--co-primary);
	border-radius: 50%;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
	.co-hero__grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.co-hero__visual {
		order: -1;
	}
	
	.co-hero__title {
		font-size: 40px;
	}
	
	.co-audience__grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.co-commitment__grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.co-courses__grid {
		grid-template-columns: 1fr;
		max-width: 500px;
	}
	
	.co-content__modules {
		grid-template-columns: 1fr;
	}
	
	.co-problems__grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.co-process__timeline::before {
		left: 24px;
	}
	
	.co-process__step,
	.co-process__step:nth-child(odd),
	.co-process__step:nth-child(even) {
		flex-direction: row;
	}
	
	.co-process__step-content,
	.co-process__step:nth-child(odd) .co-process__step-content,
	.co-process__step:nth-child(even) .co-process__step-content {
		width: calc(100% - 70px);
		text-align: left;
		margin-left: 70px;
		margin-right: 0;
	}
	
	.co-process__step-number {
		left: 24px;
		transform: translateX(-50%);
	}
	
	.co-models__grid {
		grid-template-columns: 1fr;
		max-width: 450px;
		margin: 0 auto;
	}
	
	.co-models__card.featured {
		transform: none;
	}
	
	.co-models__card.featured:hover {
		transform: translateY(-8px);
	}
	
	.co-why__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.co-hero {
		padding: 60px 0 80px;
	}
	
	.co-hero__title {
		font-size: 32px;
	}
	
	.co-hero__desc {
		font-size: 16px;
	}
	
	.co-hero__buttons {
		flex-direction: column;
	}
	
	.co-hero__buttons .btn-primary,
	.co-hero__buttons .btn-secondary {
		width: 100%;
	}
	
	.co-audience__header {
		flex-direction: column;
		text-align: center;
	}
	
	.co-audience__header p {
		text-align: center;
	}
	
	.co-audience__grid {
		grid-template-columns: 1fr;
	}
	
	.co-commitment__grid {
		grid-template-columns: 1fr;
	}
	
	.co-why__grid {
		grid-template-columns: 1fr;
	}
	
	.co-cta__content h2 {
		font-size: 28px;
	}
	
	.co-cta__buttons {
		flex-direction: column;
		align-items: center;
	}
	
	.co-cta .btn-cta,
	.co-cta .btn-cta-secondary {
		width: 100%;
		max-width: 300px;
	}
}

@media (max-width: 480px) {
	.co-hero__title {
		font-size: 28px;
	}
	
	.co-audience__header h2,
	.co-problems__content h2,
	.co-process__header h2,
	.co-models__header h2,
	.co-why__header h2,
	.co-commitment__header h2,
	.co-courses__header h2,
	.co-content__header h2 {
		font-size: 28px;
	}
	
	.co-courses__price .price-value {
		font-size: 26px;
	}
}
