/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* Some base resets for better cross-browser compatibility */

:root {
	--primary-color: #0d9488;
	--secondary-color: #0f766e;
	--accent-color: #14b8a6;
	--accent-2: #2dd4bf;
	--accent-3: #f59e0b;
	--text-dark: #0f172a;
	--text-light: #64748b;
	--bg-light: #f0fdfa;
	--bg-white: #ffffff;
	--bg-gradient-1: linear-gradient(135deg, #0d9488 0%, #065f46 100%);
	--bg-gradient-2: linear-gradient(135deg, #14b8a6 0%, #f59e0b 100%);
	--bg-gradient-3: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
	--bg-gradient-4: linear-gradient(135deg, #10b981 0%, #059669 100%);
	--border-color: #e2e8f0;
	--error-color: #ef4444;
	--success-color: #10b981;
	--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	--shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	--shadow-glow: 0 0 20px rgba(13, 148, 136, 0.3);
	--transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-fast: all 0.2s ease;
	--transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	line-height: 1.7;
	color: var(--text-dark);
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	background-attachment: fixed;
	font-size: 16px;
	overflow-x: hidden;
	position: relative;
	/* Space for the fixed bottom disclaimer bar ("ВАЖНО") */
	padding-bottom: calc(var(--disclaimer-offset, 0px) + env(safe-area-inset-bottom));
}

body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 
		radial-gradient(circle at 20% 50%, rgba(13, 148, 136, 0.08) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.08) 0%, transparent 50%),
		radial-gradient(circle at 40% 20%, rgba(20, 184, 166, 0.08) 0%, transparent 50%);
	pointer-events: none;
	z-index: 0;
}

body > * {
	position: relative;
	z-index: 1;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Disclaimer */
.disclaimer {
	background-color: #dc2626;
	color: white;
	padding: 16px 0;
	text-align: center;
	position: fixed;
	left: 0;
	right: 0;
	bottom: env(safe-area-inset-bottom);
	top: auto;
	z-index: 1000;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.disclaimer-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	font-size: 15px;
	line-height: 1.6;
}

.disclaimer-content strong {
	font-weight: 600;
}

/* Cookie Notice */
.cookie-notice {
	position: fixed;
	bottom: calc(var(--disclaimer-offset, 0px) + env(safe-area-inset-bottom));
	left: 0;
	right: 0;
	background: rgba(31, 41, 55, 0.95);
	backdrop-filter: blur(10px);
	color: white;
	padding: 20px;
	z-index: 9999;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.cookie-notice.show {
	transform: translateY(0);
}

.cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.cookie-content p {
	margin: 0;
	flex: 1;
	min-width: 250px;
}

.cookie-content a {
	color: var(--accent-color);
	text-decoration: underline;
}

.cookie-btn {
	background: var(--primary-color);
	color: white;
	border: none;
	padding: 10px 24px;
	border-radius: 6px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 500;
	transition: var(--transition);
}

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

/* Header */
.header {
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(20px) saturate(180%);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
	position: sticky;
	top: 0;
	z-index: 100;
	border-bottom: 1px solid rgba(226, 232, 240, 0.8);
	transition: var(--transition);
}

.header.scrolled {
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 0;
}

.logo {
	font-size: 26px;
	font-weight: 900;
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-3) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-decoration: none;
	transition: var(--transition);
	letter-spacing: -0.02em;
	position: relative;
}

.logo::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--primary-color), var(--accent-3));
	transition: width 0.4s ease;
}

.logo:hover::after {
	width: 100%;
}

.logo:hover {
	transform: scale(1.05);
}

.nav-list {
	display: flex;
	list-style: none;
	gap: 32px;
}

.nav-list a {
	color: var(--text-dark);
	text-decoration: none;
	font-weight: 500;
	transition: var(--transition);
	position: relative;
}

.nav-list a::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary-color);
	transition: var(--transition);
}

.nav-list a:hover::after {
	width: 100%;
}

/* Nav Dropdown */
.nav-dropdown {
	position: relative;
}

.nav-dropdown-btn {
	display: flex;
	align-items: center;
	gap: 6px;
	background: none;
	border: none;
	color: var(--text-dark);
	font-size: inherit;
	font-weight: 500;
	font-family: inherit;
	cursor: pointer;
	padding: 0;
	transition: var(--transition);
	position: relative;
}

.nav-dropdown-btn::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary-color);
	transition: var(--transition);
}

.nav-dropdown-btn:hover::after,
.nav-dropdown.active .nav-dropdown-btn::after {
	width: 100%;
}

.nav-dropdown-btn:hover,
.nav-dropdown.active .nav-dropdown-btn {
	color: var(--primary-color);
}

.nav-dropdown-arrow {
	font-size: 10px;
	transition: transform 0.3s ease;
	opacity: 0.6;
}

.nav-dropdown.active .nav-dropdown-arrow {
	transform: rotate(180deg);
}

.nav-dropdown-menu {
	position: absolute;
	top: calc(100% + 16px);
	left: -20px;
	min-width: 280px;
	background: white;
	border-radius: 16px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	z-index: 1000;
	list-style: none;
	padding: 8px;
	overflow: hidden;
}

.nav-dropdown.active .nav-dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.nav-dropdown-menu li {
	margin: 0;
}

.dropdown-link {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	color: var(--text-dark);
	text-decoration: none;
	border-radius: 12px;
	transition: all 0.3s ease;
}

.dropdown-link:hover {
	background: rgba(13, 148, 136, 0.08);
	color: var(--primary-color);
	transform: translateX(4px);
}

.link-icon {
	font-size: 24px;
	flex-shrink: 0;
}

.link-content {
	display: flex;
	flex-direction: column;
	gap: 2px;
	flex: 1;
}

.link-title {
	font-size: 14px;
	font-weight: 600;
	color: var(--text-dark);
	line-height: 1.3;
}

.dropdown-link:hover .link-title {
	color: var(--primary-color);
}

.link-desc {
	font-size: 12px;
	color: var(--text-light);
	line-height: 1.3;
}

.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 4px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	z-index: 101;
}

.mobile-menu-toggle span {
	width: 24px;
	height: 2px;
	background: var(--text-dark);
	transition: var(--transition);
	border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
	padding: 120px 0 60px;
	background: #050a0a;
}

.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.hero-noise {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
	opacity: 0.03;
	pointer-events: none;
}

.hero-glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(100px);
	opacity: 0.4;
}

.hero-glow-1 {
	width: 600px;
	height: 600px;
	background: var(--primary-color);
	top: -200px;
	left: -200px;
	animation: glowPulse 8s ease-in-out infinite;
}

.hero-glow-2 {
	width: 500px;
	height: 500px;
	background: var(--accent-3);
	bottom: -150px;
	right: -150px;
	animation: glowPulse 10s ease-in-out infinite reverse;
}

@keyframes glowPulse {
	0%, 100% { opacity: 0.3; transform: scale(1); }
	50% { opacity: 0.5; transform: scale(1.1); }
}

.hero-grid-pattern {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: 
		linear-gradient(rgba(20, 184, 166, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(20, 184, 166, 0.03) 1px, transparent 1px);
	background-size: 60px 60px;
	mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
	-webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

/* Marquee */
.hero-marquee {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	transform: translateY(-50%) rotate(-3deg);
	overflow: hidden;
	opacity: 0.04;
	z-index: 1;
	pointer-events: none;
}

.marquee-track {
	display: flex;
	gap: 60px;
	white-space: nowrap;
	animation: marquee 30s linear infinite;
	font-size: 120px;
	font-weight: 900;
	color: white;
	text-transform: uppercase;
	letter-spacing: -0.02em;
}

@keyframes marquee {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

/* Hero Layout */
.hero-layout {
	position: relative;
	z-index: 10;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	min-height: 60vh;
}

.hero-left {
	position: relative;
}

.hero-tag {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 32px;
	opacity: 0;
	animation: fadeIn 0.6s ease 0.2s forwards;
}

.tag-dot {
	width: 8px;
	height: 8px;
	background: var(--accent-3);
	border-radius: 50%;
	animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
	0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
	50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(245, 158, 11, 0); }
}

.hero-tag span:last-child {
	font-size: 13px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.5);
	text-transform: uppercase;
	letter-spacing: 2px;
}

.hero-headline {
	font-size: clamp(56px, 10vw, 100px);
	font-weight: 900;
	line-height: 0.95;
	margin-bottom: 32px;
	letter-spacing: -0.04em;
}

.headline-row {
	display: block;
	overflow: hidden;
}

.headline-row .word {
	display: inline-block;
	color: white;
	opacity: 0;
	transform: translateY(100%);
	animation: wordReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.headline-row:nth-child(1) .word { animation-delay: 0.3s; }
.headline-row:nth-child(2) .word { animation-delay: 0.45s; }
.headline-row:nth-child(3) .word { animation-delay: 0.6s; }

.headline-row .word.accent {
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-3) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

@keyframes wordReveal {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-desc {
	font-size: 18px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.5);
	max-width: 420px;
	margin-bottom: 40px;
	opacity: 0;
	animation: fadeIn 0.6s ease 0.8s forwards;
}

@keyframes fadeIn {
	to { opacity: 1; }
}

.hero-actions {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	opacity: 0;
	animation: fadeIn 0.6s ease 1s forwards;
}

.hero-btn-main {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 18px 32px;
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
	color: white;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	border-radius: 60px;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	position: relative;
	overflow: hidden;
}

.hero-btn-main::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--accent-3) 0%, var(--primary-color) 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.hero-btn-main:hover::before {
	opacity: 1;
}

.hero-btn-main .btn-text,
.hero-btn-main .btn-icon {
	position: relative;
	z-index: 1;
}

.hero-btn-main .btn-icon {
	transition: transform 0.3s ease;
}

.hero-btn-main:hover {
	transform: translateY(-2px);
	box-shadow: 0 20px 40px rgba(13, 148, 136, 0.3);
}

.hero-btn-main:hover .btn-icon {
	transform: translateX(4px);
}

.hero-btn-ghost {
	display: inline-flex;
	align-items: center;
	padding: 18px 32px;
	background: transparent;
	color: rgba(255, 255, 255, 0.7);
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 60px;
	transition: all 0.3s ease;
}

.hero-btn-ghost:hover {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.3);
	color: white;
}

/* Hero Visual */
.hero-right {
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-visual {
	position: relative;
	width: 400px;
	height: 400px;
	opacity: 0;
	animation: fadeIn 0.8s ease 0.5s forwards;
}

.visual-ring {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	border: 1px solid rgba(20, 184, 166, 0.2);
}

.ring-1 {
	width: 100%;
	height: 100%;
	animation: ringRotate 20s linear infinite;
}

.ring-2 {
	width: 75%;
	height: 75%;
	animation: ringRotate 15s linear infinite reverse;
}

.ring-3 {
	width: 50%;
	height: 50%;
	border-color: rgba(245, 158, 11, 0.2);
	animation: ringRotate 10s linear infinite;
}

@keyframes ringRotate {
	from { transform: translate(-50%, -50%) rotate(0deg); }
	to { transform: translate(-50%, -50%) rotate(360deg); }
}

.visual-center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(13, 148, 136, 0.2) 0%, rgba(245, 158, 11, 0.2) 100%);
	border-radius: 50%;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.center-icon {
	font-size: 48px;
	z-index: 2;
}

.center-pulse {
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: rgba(20, 184, 166, 0.3);
	animation: centerPulse 2s ease-out infinite;
}

@keyframes centerPulse {
	0% { transform: scale(1); opacity: 0.5; }
	100% { transform: scale(2); opacity: 0; }
}

.floating-tag {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 40px;
	animation: tagFloat 6s ease-in-out infinite;
}

.floating-tag .ft-icon {
	font-size: 18px;
}

.floating-tag .ft-text {
	font-size: 13px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.8);
}

.tag-1 {
	top: 10%;
	left: 10%;
	animation-delay: 0s;
}

.tag-2 {
	top: 15%;
	right: 5%;
	animation-delay: 1.5s;
}

.tag-3 {
	bottom: 20%;
	left: 5%;
	animation-delay: 3s;
}

.tag-4 {
	bottom: 10%;
	right: 10%;
	animation-delay: 4.5s;
}

@keyframes tagFloat {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-15px); }
}

/* Hero Bottom */
.hero-bottom {
	position: relative;
	z-index: 10;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 80px;
	padding-top: 40px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	opacity: 0;
	animation: fadeIn 0.6s ease 1.2s forwards;
}

.hero-counter {
	display: flex;
	align-items: center;
	gap: 40px;
}

.counter-item {
	display: flex;
	align-items: baseline;
	gap: 4px;
	flex-wrap: wrap;
}

.counter-num {
	font-size: 42px;
	font-weight: 900;
	color: white;
	line-height: 1;
	font-variant-numeric: tabular-nums;
}

.counter-suffix {
	font-size: 24px;
	font-weight: 700;
	color: var(--accent-3);
}

.counter-label {
	width: 100%;
	font-size: 12px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.4);
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-top: 8px;
}

.counter-divider {
	width: 1px;
	height: 50px;
	background: rgba(255, 255, 255, 0.1);
}

.hero-scroll {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.scroll-text {
	font-size: 11px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.4);
	text-transform: uppercase;
	letter-spacing: 2px;
}

.scroll-line {
	width: 1px;
	height: 60px;
	background: rgba(255, 255, 255, 0.1);
	position: relative;
	overflow: hidden;
}

.scroll-dot {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 3px;
	height: 10px;
	background: var(--primary-color);
	border-radius: 2px;
	animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
	0% { top: 0; opacity: 1; }
	100% { top: 100%; opacity: 0; }
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 36px;
	border-radius: 14px;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	transition: var(--transition);
	border: none;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: 14px;
}

.btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
	width: 300px;
	height: 300px;
}

.btn span {
	position: relative;
	z-index: 1;
}

.btn-primary {
	background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
	color: var(--primary-color);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.btn-primary:active {
	transform: translateY(-1px) scale(1);
}

.btn-secondary {
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(20px) saturate(180%);
	color: var(--bg-white);
	border: 2px solid rgba(255, 255, 255, 0.3);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.25);
	border-color: rgba(255, 255, 255, 0.5);
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-secondary:active {
	transform: translateY(-1px) scale(1);
}

/* Section Styles */
section {
	padding: 120px 0;
	position: relative;
}

section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 4px;
	background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
	opacity: 0.3;
}

.section-header {
	text-align: center;
	margin-bottom: 80px;
	position: relative;
}

.section-title {
	font-size: clamp(36px, 6vw, 56px);
	font-weight: 900;
	margin-bottom: 24px;
	color: var(--text-dark);
	letter-spacing: -0.03em;
	position: relative;
	display: inline-block;
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-3) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -12px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: linear-gradient(90deg, var(--primary-color), var(--accent-3));
	border-radius: 2px;
}

.section-subtitle {
	font-size: clamp(16px, 2vw, 20px);
	color: var(--text-light);
	max-width: 700px;
	margin: 32px auto 0;
	line-height: 1.8;
	font-weight: 400;
}

/* About Section */
.about-section {
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
	position: relative;
	overflow: hidden;
}

.about-section::after {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(13, 148, 136, 0.08) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.about-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 32px;
	position: relative;
	z-index: 1;
}

.about-card {
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(20px) saturate(180%);
	padding: 48px 40px;
	border-radius: 24px;
	box-shadow: 
		0 8px 32px rgba(0, 0, 0, 0.08),
		0 0 0 1px rgba(255, 255, 255, 0.8),
		inset 0 1px 0 rgba(255, 255, 255, 0.9);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, background 0.4s ease;
	text-align: center;
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(226, 232, 240, 0.8);
	transform-style: preserve-3d;
}

.about-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--primary-color), var(--accent-3));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-card:hover::before {
	transform: scaleX(1);
}

.about-card:hover {
	transform: translateY(-12px) scale(1.02);
	box-shadow: 
		0 20px 60px rgba(13, 148, 136, 0.15),
		0 0 0 1px rgba(13, 148, 136, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.9);
	background: rgba(255, 255, 255, 0.95);
}

.card-icon {
	font-size: 64px;
	margin-bottom: 24px;
	display: inline-block;
	background: linear-gradient(135deg, var(--primary-color), var(--accent-3));
	-webkit-background-clip: text;
	background-clip: text;
	filter: drop-shadow(0 4px 8px rgba(13, 148, 136, 0.2));
	transition: var(--transition);
}

.about-card:hover .card-icon {
	transform: scale(1.1) rotate(5deg);
	filter: drop-shadow(0 6px 12px rgba(13, 148, 136, 0.3));
}

.about-card h3 {
	font-size: 26px;
	margin-bottom: 20px;
	color: var(--text-dark);
	font-weight: 700;
	letter-spacing: -0.02em;
}

.about-card p {
	color: var(--text-light);
	line-height: 1.8;
	font-size: 16px;
}

/* Podcasts Slider */
.podcasts-section {
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
	position: relative;
	overflow: hidden;
}

.podcasts-section::before {
	content: '';
	position: absolute;
	top: 20%;
	left: -10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
	animation: float 20s ease-in-out infinite;
}

.podcasts-section::after {
	content: '';
	position: absolute;
	bottom: 20%;
	right: -10%;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(13, 148, 136, 0.08) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
	animation: float 25s ease-in-out infinite reverse;
}

.slider-container {
	position: relative;
	margin: 0 auto;
	max-width: 1000px;
}

.slider-wrapper {
	overflow: hidden;
	border-radius: 16px;
}

.slider-track {
	display: flex;
	transition: transform 0.5s ease;
}

.slider-slide {
	min-width: 100%;
	flex-shrink: 0;
}

.podcast-card {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(20px) saturate(180%);
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 
		0 12px 40px rgba(0, 0, 0, 0.1),
		0 0 0 1px rgba(255, 255, 255, 0.8);
	display: flex;
	flex-direction: column;
	height: 100%;
	transition: var(--transition);
	border: 1px solid rgba(226, 232, 240, 0.8);
	position: relative;
}

.podcast-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(13, 148, 136, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
	opacity: 0;
	transition: var(--transition);
	pointer-events: none;
}

.podcast-card:hover::after {
	opacity: 1;
}

.podcast-card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 
		0 24px 60px rgba(13, 148, 136, 0.2),
		0 0 0 1px rgba(13, 148, 136, 0.1);
}

a.podcast-card {
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
}

.podcast-image {
	width: 100%;
	height: 320px;
	object-fit: cover;
	transition: var(--transition-slow);
	filter: brightness(0.95);
}

.podcast-card:hover .podcast-image {
	transform: scale(1.1);
	filter: brightness(1);
}

.podcast-content {
	padding: 36px 36px 36px 36px;
	flex: 1;
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 1;
	background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.95) 20%);
	box-sizing: border-box;
}

.podcast-content h3 {
	font-size: 28px;
	margin: 0 0 16px 0;
	padding: 0;
	color: var(--text-dark);
	font-weight: 800;
	letter-spacing: -0.02em;
	background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.3;
}

.podcast-content p {
	color: var(--text-light);
	margin: 0 0 24px 0;
	padding: 0;
	line-height: 1.8;
	flex: 1;
	font-size: 16px;
}

.podcast-meta {
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-size: 14px;
	color: var(--text-light);
	margin: 0;
	padding: 0;
}

.podcast-meta span {
	display: block;
	padding: 0;
	margin: 0;
	line-height: 1.6;
}

.slider-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px) saturate(180%);
	border: 2px solid rgba(255, 255, 255, 0.8);
	width: 56px;
	height: 56px;
	border-radius: 50%;
	font-size: 28px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 
		0 8px 24px rgba(0, 0, 0, 0.15),
		0 0 0 1px rgba(255, 255, 255, 0.5);
	transition: var(--transition);
	z-index: 10;
	color: var(--primary-color);
	font-weight: 300;
	line-height: 1;
}

.slider-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 0;
	height: 0;
	background: linear-gradient(135deg, var(--primary-color), var(--accent-3));
	border-radius: 50%;
	transition: width 0.4s ease, height 0.4s ease;
	opacity: 0.1;
}

.slider-btn:hover::before {
	width: 100%;
	height: 100%;
}

.slider-btn:hover {
	background: rgba(255, 255, 255, 1);
	transform: translateY(-50%) scale(1.15);
	box-shadow: 
		0 12px 32px rgba(13, 148, 136, 0.25),
		0 0 0 1px rgba(255, 255, 255, 0.8);
	color: var(--accent-3);
}

.slider-btn:active {
	transform: translateY(-50%) scale(1.05);
}

.slider-btn-prev {
	left: -24px;
}

.slider-btn-next {
	right: -24px;
}

.slider-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 24px;
}

.slider-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(226, 232, 240, 0.8);
	border: 2px solid transparent;
	cursor: pointer;
	transition: var(--transition);
	position: relative;
}

.slider-dot::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 0;
	height: 0;
	background: linear-gradient(135deg, var(--primary-color), var(--accent-3));
	border-radius: 50%;
	transition: width 0.3s ease, height 0.3s ease;
}

.slider-dot:hover::before {
	width: 100%;
	height: 100%;
}

.slider-dot.active {
	background: linear-gradient(135deg, var(--primary-color), var(--accent-3));
	width: 36px;
	border-radius: 18px;
	box-shadow: 0 4px 12px rgba(13, 148, 136, 0.4);
}

.slider-dot.active::before {
	width: 0;
	height: 0;
}

/* Reviews Section */
.reviews-section {
	background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
	position: relative;
	overflow: hidden;
}

.reviews-section::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(20, 184, 166, 0.06) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
	animation: pulse 10s ease-in-out infinite;
}

.reviews-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 32px;
}

.review-card {
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(20px) saturate(180%);
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 
		0 8px 32px rgba(0, 0, 0, 0.08),
		0 0 0 1px rgba(255, 255, 255, 0.8);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, background 0.4s ease;
	display: flex;
	flex-direction: column;
	border: 1px solid rgba(226, 232, 240, 0.8);
	position: relative;
	transform-style: preserve-3d;
}

.review-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(13, 148, 136, 0.03) 0%, rgba(245, 158, 11, 0.03) 100%);
	opacity: 0;
	transition: var(--transition);
	z-index: 0;
}

.review-card:hover::before {
	opacity: 1;
}

.review-card:hover {
	transform: translateY(-8px) rotate(1deg);
	box-shadow: 
		0 20px 60px rgba(13, 148, 136, 0.15),
		0 0 0 1px rgba(13, 148, 136, 0.1);
	background: rgba(255, 255, 255, 0.95);
}

.review-image {
	width: 100%;
	height: 240px;
	object-fit: cover;
	transition: var(--transition-slow);
	filter: brightness(0.9) saturate(1.1);
	position: relative;
	z-index: 1;
}

.review-card:hover .review-image {
	transform: scale(1.15);
	filter: brightness(1) saturate(1.2);
}

.review-content {
	padding: 28px;
	flex: 1;
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 1;
	background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.98) 30%);
}

.review-content h3 {
	font-size: 24px;
	margin-bottom: 16px;
	color: var(--text-dark);
	font-weight: 800;
	letter-spacing: -0.01em;
	line-height: 1.3;
}

.review-excerpt {
	color: var(--text-light);
	margin-bottom: 20px;
	line-height: 1.8;
	flex: 1;
	font-size: 15px;
}

.review-rating {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
	font-size: 14px;
}

.rating-label {
	color: var(--text-light);
}

.rating-stars {
	background: linear-gradient(135deg, #fbbf24, #f59e0b);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-size: 20px;
	letter-spacing: 2px;
	filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.review-link {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 600;
	transition: var(--transition);
}

.review-link:hover {
	color: var(--secondary-color);
}

/* Benefits Section */
.benefits-section {
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	position: relative;
	overflow: hidden;
}

.benefits-section::after {
	content: '';
	position: absolute;
	bottom: -20%;
	left: -10%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(13, 148, 136, 0.08) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.benefits-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	position: relative;
}

.benefits-content::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(13, 148, 136, 0.08) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.benefits-text h2 {
	font-size: 36px;
	margin-bottom: 32px;
	color: var(--text-dark);
}

.benefits-list {
	list-style: none;
}

.benefits-list li {
	padding: 16px 0;
	padding-left: 32px;
	position: relative;
	font-size: 18px;
	color: var(--text-dark);
	border-bottom: 1px solid var(--border-color);
}

.benefits-list li:last-child {
	border-bottom: none;
}

.benefits-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--success-color), #34d399);
	border-radius: 50%;
	color: white;
	font-size: 16px;
	font-weight: bold;
	box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.benefits-image {
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 
		0 20px 60px rgba(13, 148, 136, 0.2),
		0 0 0 1px rgba(255, 255, 255, 0.8);
	position: relative;
	transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
	transition: var(--transition);
}

.benefits-image::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(13, 148, 136, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
	opacity: 0;
	transition: var(--transition);
	z-index: 1;
}

.benefits-image:hover::before {
	opacity: 1;
}

.benefits-image:hover {
	transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.05);
	box-shadow: 
		0 30px 80px rgba(13, 148, 136, 0.3),
		0 0 0 1px rgba(255, 255, 255, 0.9);
}

.benefits-image img {
	width: 100%;
	height: auto;
	display: block;
	transition: var(--transition-slow);
	filter: brightness(0.95) saturate(1.1);
}

.benefits-image:hover img {
	transform: scale(1.1);
	filter: brightness(1) saturate(1.2);
}

/* Categories Section */
.categories-section {
	background: var(--bg-light);
}

.categories-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 24px;
}

.category-card {
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(20px) saturate(180%);
	padding: 40px 32px;
	border-radius: 24px;
	box-shadow: 
		0 8px 32px rgba(0, 0, 0, 0.08),
		0 0 0 1px rgba(255, 255, 255, 0.8);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, background 0.4s ease;
	border: 2px solid rgba(226, 232, 240, 0.6);
	position: relative;
	overflow: hidden;
	transform-style: preserve-3d;
}

.category-card::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(135deg, rgba(13, 148, 136, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
	opacity: 0;
	transition: var(--transition);
	transform: rotate(45deg);
}

.category-card:hover::before {
	opacity: 1;
}

.category-card:hover {
	border-color: var(--primary-color);
	transform: translateY(-8px) scale(1.03);
	box-shadow: 
		0 20px 60px rgba(13, 148, 136, 0.2),
		0 0 0 2px rgba(13, 148, 136, 0.1);
	background: rgba(255, 255, 255, 0.95);
}

.category-card h3 {
	font-size: 24px;
	margin-bottom: 12px;
	color: var(--text-dark);
}

.category-card p {
	color: var(--text-light);
	margin-bottom: 16px;
	line-height: 1.6;
}

.category-count {
	display: inline-block;
	background: linear-gradient(135deg, var(--primary-color), var(--accent-3));
	color: white;
	padding: 8px 16px;
	border-radius: 12px;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
	position: relative;
	z-index: 1;
}

/* Statistics Section */
.statistics-section {
	background: linear-gradient(135deg, rgba(13, 148, 136, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
	position: relative;
	overflow: hidden;
}

.statistics-section::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 800px;
	height: 800px;
	background: radial-gradient(circle, rgba(13, 148, 136, 0.1) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.statistics-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 32px;
	position: relative;
	z-index: 1;
}

.stat-card {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(20px) saturate(180%);
	padding: 40px 32px;
	border-radius: 24px;
	text-align: center;
	box-shadow: 
		0 8px 32px rgba(0, 0, 0, 0.08),
		0 0 0 1px rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(226, 232, 240, 0.8);
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

.stat-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--primary-color), var(--accent-3));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.5s ease;
}

.stat-card:hover::before {
	transform: scaleX(1);
}

.stat-card:hover {
	transform: translateY(-8px);
	box-shadow: 
		0 20px 60px rgba(13, 148, 136, 0.15),
		0 0 0 1px rgba(13, 148, 136, 0.1);
}

.stat-number {
	font-size: 56px;
	font-weight: 900;
	background: linear-gradient(135deg, var(--primary-color), var(--accent-3));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 12px;
	line-height: 1;
}

.stat-label {
	font-size: 20px;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 12px;
}

.stat-description {
	font-size: 14px;
	color: var(--text-light);
	line-height: 1.6;
}

/* Learning Path Section */
.learning-path-section {
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	position: relative;
}

.learning-steps {
	display: flex;
	flex-direction: column;
	gap: 48px;
}

.step-card {
	display: grid;
	grid-template-columns: 80px 1fr 300px;
	gap: 40px;
	align-items: center;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(20px) saturate(180%);
	padding: 48px;
	border-radius: 24px;
	box-shadow: 
		0 8px 32px rgba(0, 0, 0, 0.08),
		0 0 0 1px rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(226, 232, 240, 0.8);
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

.step-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 6px;
	height: 100%;
	background: linear-gradient(180deg, var(--primary-color), var(--accent-3));
	transform: scaleY(0);
	transform-origin: top;
	transition: transform 0.5s ease;
}

.step-card:hover::before {
	transform: scaleY(1);
}

.step-card:hover {
	transform: translateX(8px);
	box-shadow: 
		0 20px 60px rgba(13, 148, 136, 0.15),
		0 0 0 1px rgba(13, 148, 136, 0.1);
}

.step-card.reverse {
	grid-template-columns: 300px 1fr 80px;
}

.step-card.reverse .step-number {
	order: 3;
}

.step-card.reverse .step-content {
	order: 2;
}

.step-card.reverse .step-image {
	order: 1;
}

.step-number {
	font-size: 64px;
	font-weight: 900;
	background: linear-gradient(135deg, var(--primary-color), var(--accent-3));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
	opacity: 0.3;
}

.step-content h3 {
	font-size: 28px;
	font-weight: 800;
	margin-bottom: 16px;
	color: var(--text-dark);
	letter-spacing: -0.02em;
}

.step-content p {
	font-size: 16px;
	color: var(--text-light);
	line-height: 1.8;
	margin-bottom: 20px;
}

.step-list {
	list-style: none;
	padding: 0;
}

.step-list li {
	padding: 12px 0;
	padding-left: 32px;
	position: relative;
	color: var(--text-dark);
	font-weight: 500;
}

.step-list li::before {
	content: '→';
	position: absolute;
	left: 0;
	color: var(--primary-color);
	font-weight: bold;
	font-size: 20px;
}

.step-image {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
	transition: var(--transition);
}

.step-card:hover .step-image {
	transform: scale(1.05);
	box-shadow: 0 12px 32px rgba(13, 148, 136, 0.2);
}

.step-image img {
	width: 100%;
	height: auto;
	display: block;
}

/* FAQ Section */
.faq-section {
	background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
	position: relative;
}

.faq-container {
	max-width: 900px;
	margin: 0 auto;
}

.faq-item {
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(20px) saturate(180%);
	border-radius: 20px;
	margin-bottom: 20px;
	overflow: hidden;
	border: 1px solid rgba(226, 232, 240, 0.8);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
	transition: var(--transition);
}

.faq-item:hover {
	box-shadow: 0 8px 24px rgba(13, 148, 136, 0.1);
}

.faq-item.active {
	box-shadow: 0 12px 32px rgba(13, 148, 136, 0.15);
	border-color: rgba(13, 148, 136, 0.3);
}

.faq-question {
	width: 100%;
	background: none;
	border: none;
	padding: 24px 28px;
	text-align: left;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	font-size: 18px;
	font-weight: 600;
	color: var(--text-dark);
	transition: var(--transition);
}

.faq-question:hover {
	color: var(--primary-color);
}

.faq-icon {
	font-size: 24px;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(13, 148, 136, 0.1);
	border-radius: 50%;
	color: var(--primary-color);
	transition: var(--transition);
	flex-shrink: 0;
}

.faq-item.active .faq-icon {
	transform: rotate(45deg);
	background: rgba(13, 148, 136, 0.2);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s ease;
	padding: 0 28px;
}

.faq-item.active .faq-answer {
	max-height: 500px;
	padding: 0 28px 24px 28px;
}

.faq-answer p {
	color: var(--text-light);
	line-height: 1.8;
	margin: 0;
	font-size: 16px;
}

/* Newsletter Section */
.newsletter-section {
	background: linear-gradient(135deg, rgba(13, 148, 136, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
	position: relative;
	overflow: hidden;
}

.newsletter-section::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(13, 148, 136, 0.15) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.newsletter-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.newsletter-text h2 {
	font-size: 42px;
	font-weight: 900;
	margin-bottom: 20px;
	color: var(--text-dark);
	letter-spacing: -0.02em;
	background: linear-gradient(135deg, var(--primary-color), var(--accent-3));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.newsletter-text p {
	font-size: 18px;
	color: var(--text-light);
	line-height: 1.8;
	margin-bottom: 24px;
}

.newsletter-benefits {
	list-style: none;
	padding: 0;
}

.newsletter-benefits li {
	padding: 12px 0;
	padding-left: 32px;
	position: relative;
	color: var(--text-dark);
	font-weight: 500;
}

.newsletter-benefits li::before {
	content: '✓';
	position: absolute;
	left: 0;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--success-color), #34d399);
	border-radius: 50%;
	color: white;
	font-size: 14px;
	font-weight: bold;
}

.newsletter-form-wrapper {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(20px) saturate(180%);
	padding: 40px;
	border-radius: 24px;
	box-shadow: 
		0 12px 40px rgba(0, 0, 0, 0.1),
		0 0 0 1px rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(226, 232, 240, 0.8);
}

.newsletter-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.newsletter-form .form-group input {
	width: 100%;
	padding: 16px 20px;
	border: 2px solid rgba(226, 232, 240, 0.8);
	border-radius: 14px;
	font-size: 16px;
	background: rgba(255, 255, 255, 0.9);
	transition: var(--transition);
}

.newsletter-form .form-group input:focus {
	outline: none;
	border-color: var(--primary-color);
	background: rgba(255, 255, 255, 1);
	box-shadow: 0 4px 16px rgba(13, 148, 136, 0.15);
}

.newsletter-privacy {
	font-size: 12px;
	color: var(--text-light);
	text-align: center;
	margin-top: 8px;
}

/* Updates Section */
.updates-section {
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	position: relative;
}

.updates-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 32px;
}

.update-card {
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(20px) saturate(180%);
	padding: 32px;
	border-radius: 24px;
	box-shadow: 
		0 8px 32px rgba(0, 0, 0, 0.08),
		0 0 0 1px rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(226, 232, 240, 0.8);
	transition: var(--transition);
	display: flex;
	gap: 24px;
	position: relative;
	overflow: hidden;
}

.update-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: linear-gradient(180deg, var(--primary-color), var(--accent-3));
	transform: scaleY(0);
	transform-origin: top;
	transition: transform 0.5s ease;
}

.update-card:hover::before {
	transform: scaleY(1);
}

.update-card:hover {
	transform: translateY(-8px);
	box-shadow: 
		0 20px 60px rgba(13, 148, 136, 0.15),
		0 0 0 1px rgba(13, 148, 136, 0.1);
}

.update-date {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--primary-color), var(--accent-3));
	border-radius: 16px;
	color: white;
	padding: 12px;
	box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
	flex-shrink: 0;
}

.date-day {
	font-size: 32px;
	font-weight: 900;
	line-height: 1;
}

.date-month {
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	opacity: 0.9;
}

.update-content {
	flex: 1;
}

.update-content h3 {
	font-size: 22px;
	font-weight: 800;
	margin-bottom: 12px;
	color: var(--text-dark);
	letter-spacing: -0.01em;
}

.update-content p {
	color: var(--text-light);
	line-height: 1.7;
	margin-bottom: 16px;
	font-size: 15px;
}

.update-link {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 600;
	transition: var(--transition);
	display: inline-block;
}

.update-link:hover {
	color: var(--accent-3);
	transform: translateX(4px);
}

/* Tips Section */
.tips-section {
	background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
	position: relative;
}

.tips-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 32px;
}

.tip-card {
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(20px) saturate(180%);
	padding: 40px 32px;
	border-radius: 24px;
	text-align: center;
	box-shadow: 
		0 8px 32px rgba(0, 0, 0, 0.08),
		0 0 0 1px rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(226, 232, 240, 0.8);
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

.tip-card::after {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(135deg, rgba(13, 148, 136, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
	opacity: 0;
	transition: var(--transition);
	transform: rotate(45deg);
}

.tip-card:hover::after {
	opacity: 1;
}

.tip-card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 
		0 20px 60px rgba(13, 148, 136, 0.15),
		0 0 0 1px rgba(13, 148, 136, 0.1);
}

.tip-icon {
	font-size: 64px;
	margin-bottom: 24px;
	display: inline-block;
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
	transition: var(--transition);
	position: relative;
	z-index: 1;
}

.tip-card:hover .tip-icon {
	transform: scale(1.1) rotate(5deg);
}

.tip-card h3 {
	font-size: 22px;
	font-weight: 800;
	margin-bottom: 16px;
	color: var(--text-dark);
	letter-spacing: -0.01em;
	position: relative;
	z-index: 1;
}

.tip-card p {
	color: var(--text-light);
	line-height: 1.8;
	font-size: 15px;
	position: relative;
	z-index: 1;
}

/* Contact Section */
.contact-section {
	background: var(--bg-white);
}

.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	max-width: 1100px;
	margin: 0 auto;
	position: relative;
}

.contact-content::before {
	content: '';
	position: absolute;
	top: -40px;
	left: 50%;
	transform: translateX(-50%);
	width: 200px;
	height: 200px;
	background: radial-gradient(circle, rgba(13, 148, 136, 0.1) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.contact-info h3 {
	font-size: 28px;
	margin-bottom: 24px;
	color: var(--text-dark);
	font-weight: 800;
	letter-spacing: -0.02em;
	position: relative;
	z-index: 1;
}

.contact-info p {
	color: var(--text-light);
	margin-bottom: 24px;
	line-height: 1.8;
	position: relative;
	z-index: 1;
}

.contact-details {
	background: rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(10px);
	padding: 28px;
	border-radius: 16px;
	border: 1px solid rgba(226, 232, 240, 0.8);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
	position: relative;
	z-index: 1;
	margin-top: 24px;
}

.contact-details p {
	margin-bottom: 16px;
	color: var(--text-dark);
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 8px;
}

.contact-details p strong {
	color: var(--primary-color);
	font-weight: 700;
	min-width: 80px;
}

.contact-details p:last-child {
	margin-bottom: 0;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.form-group {
	display: flex;
	flex-direction: column;
}

.form-group label {
	margin-bottom: 8px;
	font-weight: 500;
	color: var(--text-dark);
}

.form-group input,
.form-group textarea {
	padding: 16px 20px;
	border: 2px solid rgba(226, 232, 240, 0.8);
	border-radius: 14px;
	font-size: 16px;
	font-family: inherit;
	transition: var(--transition);
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-color);
	background: rgba(255, 255, 255, 1);
	box-shadow: 
		0 4px 16px rgba(13, 148, 136, 0.15),
		0 0 0 4px rgba(13, 148, 136, 0.1);
	transform: translateY(-2px);
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

/* Footer */
.footer {
	background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
	color: white;
	padding: 80px 0 32px;
	position: relative;
	overflow: hidden;
}

.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 
		radial-gradient(circle at 20% 30%, rgba(13, 148, 136, 0.15) 0%, transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(245, 158, 11, 0.15) 0%, transparent 50%);
	pointer-events: none;
}

.footer::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(13, 148, 136, 0.5), transparent);
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 48px;
	margin-bottom: 48px;
	position: relative;
	z-index: 1;
}

.footer-section h3 {
	font-size: 22px;
	margin-bottom: 24px;
	font-weight: 700;
	background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
}

.footer-section h3::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 40px;
	height: 2px;
	background: linear-gradient(90deg, var(--primary-color), var(--accent-3));
	border-radius: 1px;
}

.footer-section p {
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.7;
	margin-bottom: 12px;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 12px;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.75);
	text-decoration: none;
	transition: var(--transition);
	position: relative;
	display: inline-block;
	padding-left: 0;
}

.footer-links a::before {
	content: '→';
	position: absolute;
	left: -20px;
	opacity: 0;
	transition: var(--transition);
	color: var(--primary-color);
}

.footer-links a:hover {
	color: white;
	padding-left: 20px;
	transform: translateX(4px);
}

.footer-links a:hover::before {
	opacity: 1;
	left: 0;
}

.footer-bottom {
	text-align: center;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.6);
}

/* Policy Pages */
.policy-page {
	padding: 40px 0;
	min-height: 70vh;
}

.policy-content {
	max-width: 800px;
	margin: 0 auto;
	background: var(--bg-white);
	padding: 40px;
	border-radius: 12px;
	box-shadow: var(--shadow-md);
}

.policy-content h1 {
	font-size: 36px;
	margin-bottom: 24px;
	color: var(--text-dark);
}

.policy-content h2 {
	font-size: 28px;
	margin-top: 32px;
	margin-bottom: 16px;
	color: var(--text-dark);
}

.policy-content h3 {
	font-size: 22px;
	margin-top: 24px;
	margin-bottom: 12px;
	color: var(--text-dark);
}

.policy-content p {
	margin-bottom: 16px;
	line-height: 1.7;
	color: var(--text-light);
}

.policy-content ul,
.policy-content ol {
	margin-bottom: 16px;
	padding-left: 24px;
	color: var(--text-light);
}

.policy-content li {
	margin-bottom: 8px;
	line-height: 1.7;
}

/* Thanks Page */
.thanks-page {
	min-height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 80px 20px;
}

.thanks-content {
	text-align: center;
	max-width: 600px;
}

.thanks-content h1 {
	font-size: 42px;
	margin-bottom: 24px;
	color: var(--text-dark);
}

.thanks-content p {
	font-size: 18px;
	color: var(--text-light);
	margin-bottom: 32px;
	line-height: 1.7;
}

/* ==================== */
/* Podcast Detail Pages */
/* ==================== */

.podcast-hero {
	position: relative;
	padding: 120px 0 80px;
	background: #050a0a;
	overflow: hidden;
}

.podcast-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.ph-gradient {
	position: absolute;
	top: -50%;
	right: -20%;
	width: 800px;
	height: 800px;
	background: radial-gradient(circle, rgba(13, 148, 136, 0.3) 0%, transparent 70%);
	filter: blur(60px);
	animation: glowPulse 10s ease-in-out infinite;
}

.ph-gradient--gold {
	background: radial-gradient(circle, rgba(245, 158, 11, 0.3) 0%, transparent 70%);
}

.ph-gradient--blue {
	background: radial-gradient(circle, rgba(6, 182, 212, 0.3) 0%, transparent 70%);
}

.ph-pattern {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: 
		linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
	background-size: 40px 40px;
}

.ph-chart {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100px;
	opacity: 0.5;
}

.ph-chart svg {
	width: 100%;
	height: 100%;
}

.podcast-hero-content {
	position: relative;
	z-index: 10;
}

.back-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 40px;
	transition: all 0.3s ease;
}

.back-link:hover {
	color: white;
}

.back-arrow {
	font-size: 18px;
	transition: transform 0.3s ease;
}

.back-link:hover .back-arrow {
	transform: translateX(-4px);
}

.podcast-hero-grid {
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 60px;
	align-items: start;
}

.podcast-cover {
	position: relative;
}

.cover-wrapper {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
	aspect-ratio: 1;
}

.cover-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.cover-wrapper:hover img {
	transform: scale(1.05);
}

.cover-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.cover-wrapper:hover .cover-overlay {
	opacity: 1;
}

.play-btn {
	width: 70px;
	height: 70px;
	background: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-color);
	cursor: pointer;
	transition: transform 0.3s ease;
}

.play-btn:hover {
	transform: scale(1.1);
}

.cover-badge {
	position: absolute;
	top: 16px;
	left: 16px;
	padding: 8px 16px;
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	color: white;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 30px;
}

.cover-badge--gold {
	background: linear-gradient(135deg, var(--accent-3), #d97706);
}

.cover-badge--blue {
	background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.cover-wrapper--gold {
	box-shadow: 0 20px 60px rgba(245, 158, 11, 0.3);
}

.cover-wrapper--blue {
	box-shadow: 0 20px 60px rgba(6, 182, 212, 0.3);
}

.podcast-info {
	padding-top: 20px;
}

.podcast-category {
	font-size: 13px;
	font-weight: 600;
	color: var(--primary-color);
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 16px;
}

.podcast-title {
	font-size: clamp(36px, 5vw, 56px);
	font-weight: 900;
	color: white;
	line-height: 1.1;
	margin-bottom: 16px;
	letter-spacing: -0.02em;
}

.podcast-tagline {
	font-size: 20px;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 32px;
	line-height: 1.5;
}

.podcast-meta-row {
	display: flex;
	gap: 32px;
	margin-bottom: 24px;
	flex-wrap: wrap;
}

.meta-item {
	display: flex;
	align-items: center;
	gap: 8px;
}

.meta-icon {
	font-size: 20px;
}

.meta-text {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.8);
	font-weight: 500;
}

.podcast-rating {
	display: flex;
	align-items: center;
	gap: 12px;
}

.rating-stars {
	font-size: 20px;
	color: #fbbf24;
	letter-spacing: 2px;
}

.rating-score {
	font-size: 18px;
	font-weight: 800;
	color: white;
}

.rating-count {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
}

/* Podcast Content */
.podcast-content {
	padding: 80px 0;
	background: var(--bg-light);
}

.content-grid {
	display: grid;
	grid-template-columns: 1fr 360px;
	gap: 60px;
	align-items: start;
}

.content-block {
	background: white;
	border-radius: 24px;
	padding: 40px;
	margin-bottom: 32px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.block-title {
	font-size: 24px;
	font-weight: 800;
	color: var(--text-dark);
	margin-bottom: 24px;
	letter-spacing: -0.02em;
}

.block-text p {
	color: var(--text-light);
	line-height: 1.8;
	margin-bottom: 16px;
}

.block-text p:last-child {
	margin-bottom: 0;
}

/* Topics Grid */
.topics-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.topic-card {
	padding: 24px;
	background: var(--bg-light);
	border-radius: 16px;
	transition: all 0.3s ease;
}

.topic-card:hover {
	background: rgba(13, 148, 136, 0.08);
	transform: translateY(-4px);
}

.topic-icon {
	font-size: 32px;
	margin-bottom: 12px;
}

.topic-card h3 {
	font-size: 16px;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 8px;
}

.topic-card p {
	font-size: 14px;
	color: var(--text-light);
	line-height: 1.5;
}

/* Features List */
.features-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.feature-item {
	display: flex;
	gap: 20px;
	padding: 20px;
	background: var(--bg-light);
	border-radius: 16px;
	transition: all 0.3s ease;
}

.feature-item:hover {
	background: rgba(245, 158, 11, 0.08);
}

.feature-icon {
	font-size: 32px;
	flex-shrink: 0;
}

.feature-content h3 {
	font-size: 16px;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 4px;
}

.feature-content p {
	font-size: 14px;
	color: var(--text-light);
	line-height: 1.5;
}

/* Episodes List */
.episodes-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.episode-card {
	display: flex;
	gap: 20px;
	padding: 24px;
	background: var(--bg-light);
	border-radius: 16px;
	transition: all 0.3s ease;
	position: relative;
}

.episode-card:hover {
	background: rgba(13, 148, 136, 0.06);
	transform: translateX(8px);
}

.episode-card--featured {
	background: linear-gradient(135deg, rgba(13, 148, 136, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
	border: 1px solid rgba(13, 148, 136, 0.2);
}

.episode-badge {
	position: absolute;
	top: 12px;
	right: 12px;
	padding: 4px 12px;
	background: var(--primary-color);
	color: white;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	border-radius: 20px;
}

.episode-number {
	font-size: 14px;
	font-weight: 800;
	color: var(--primary-color);
	min-width: 50px;
}

.episode-content h3 {
	font-size: 17px;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 8px;
	line-height: 1.4;
}

.episode-content p {
	font-size: 14px;
	color: var(--text-light);
	line-height: 1.5;
	margin-bottom: 12px;
}

.episode-meta {
	display: flex;
	gap: 8px;
	font-size: 13px;
	color: rgba(100, 116, 139, 0.8);
}

/* Directions Grid */
.directions-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.direction-card {
	padding: 28px;
	background: var(--bg-light);
	border-radius: 20px;
	transition: all 0.3s ease;
	border: 1px solid transparent;
}

.direction-card:hover {
	background: white;
	border-color: rgba(6, 182, 212, 0.3);
	box-shadow: 0 8px 30px rgba(6, 182, 212, 0.1);
}

.direction-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.direction-icon {
	font-size: 28px;
}

.direction-header h3 {
	font-size: 17px;
	font-weight: 700;
	color: var(--text-dark);
}

.direction-card > p {
	font-size: 14px;
	color: var(--text-light);
	line-height: 1.5;
	margin-bottom: 16px;
}

.direction-tags {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.direction-tags span {
	padding: 4px 12px;
	background: rgba(6, 182, 212, 0.1);
	color: #0891b2;
	font-size: 12px;
	font-weight: 600;
	border-radius: 20px;
}

/* Experts Grid */
.experts-grid {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.expert-card {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 20px;
	background: var(--bg-light);
	border-radius: 16px;
}

.expert-avatar {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #06b6d4, #0891b2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 16px;
	font-weight: 700;
}

.expert-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.expert-name {
	font-size: 15px;
	font-weight: 700;
	color: var(--text-dark);
}

.expert-title {
	font-size: 13px;
	color: var(--text-light);
}

/* Testimonials */
.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.testimonial-card {
	padding: 24px;
	background: var(--bg-light);
	border-radius: 16px;
	border-left: 4px solid var(--accent-3);
}

.testimonial-text {
	font-size: 15px;
	color: var(--text-dark);
	line-height: 1.6;
	font-style: italic;
	margin-bottom: 16px;
}

.testimonial-author {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.author-name {
	font-size: 14px;
	font-weight: 600;
	color: var(--text-dark);
}

.author-rating {
	color: #fbbf24;
	font-size: 14px;
}

/* Sidebar */
.content-sidebar {
	position: sticky;
	top: 100px;
}

.sidebar-card {
	background: white;
	border-radius: 20px;
	padding: 28px;
	margin-bottom: 24px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.sidebar-card h3 {
	font-size: 16px;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 20px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--border-color);
}

.info-list {
	list-style: none;
}

.info-list li {
	display: flex;
	justify-content: space-between;
	padding: 12px 0;
	border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.info-list li:last-child {
	border-bottom: none;
}

.info-label {
	font-size: 14px;
	color: var(--text-light);
}

.info-value {
	font-size: 14px;
	font-weight: 600;
	color: var(--text-dark);
}

.hosts-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.host-item {
	display: flex;
	align-items: center;
	gap: 14px;
}

.host-avatar {
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 14px;
	font-weight: 700;
}

.host-avatar--gold {
	background: linear-gradient(135deg, var(--accent-3), #d97706);
}

.host-avatar--blue {
	background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.host-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.host-name {
	font-size: 15px;
	font-weight: 700;
	color: var(--text-dark);
}

.host-role {
	font-size: 13px;
	color: var(--text-light);
}

.sidebar-card--stats .stats-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.stat-box {
	text-align: center;
	padding: 16px;
	background: var(--bg-light);
	border-radius: 12px;
}

.stat-num {
	display: block;
	font-size: 28px;
	font-weight: 900;
	color: var(--primary-color);
	line-height: 1;
	margin-bottom: 4px;
}

.stat-box .stat-label {
	font-size: 12px;
	color: var(--text-light);
}

.sidebar-card--dark {
	background: #0f172a;
}

.sidebar-card--dark h3 {
	color: white;
	border-bottom-color: rgba(255, 255, 255, 0.1);
}

.audience-list {
	list-style: none;
}

.audience-list li {
	padding: 10px 0;
	padding-left: 24px;
	position: relative;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.audience-list li:last-child {
	border-bottom: none;
}

.audience-list li::before {
	content: '→';
	position: absolute;
	left: 0;
	color: #06b6d4;
}

.sidebar-card.highlight {
	background: linear-gradient(135deg, rgba(13, 148, 136, 0.08) 0%, rgba(245, 158, 11, 0.08) 100%);
	border: 1px solid rgba(13, 148, 136, 0.2);
}

.related-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.related-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px;
	background: white;
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.related-item:hover {
	transform: translateX(4px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.related-icon {
	font-size: 24px;
}

.related-title {
	font-size: 14px;
	font-weight: 600;
	color: var(--text-dark);
}

/* Responsive for Podcast Pages */
@media (max-width: 1024px) {
	.podcast-hero-grid {
		grid-template-columns: 240px 1fr;
		gap: 40px;
	}
	
	.content-grid {
		grid-template-columns: 1fr;
	}
	
	.content-sidebar {
		position: static;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}
	
	.sidebar-card {
		margin-bottom: 0;
	}
}

@media (max-width: 768px) {
	.podcast-hero {
		padding: 100px 0 60px;
	}
	
	.podcast-hero-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	
	.podcast-cover {
		max-width: 280px;
		margin: 0 auto;
	}
	
	.podcast-title {
		font-size: 32px;
	}
	
	.podcast-meta-row {
		gap: 20px;
	}
	
	.topics-grid,
	.directions-grid,
	.testimonials-grid {
		grid-template-columns: 1fr;
	}
	
	.content-sidebar {
		grid-template-columns: 1fr;
	}
	
	.content-block {
		padding: 28px;
	}
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes float {
	0%, 100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-20px);
	}
}

@keyframes pulse {
	0%, 100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.8;
		transform: scale(1.05);
	}
}

/* Floating elements */
.about-card:nth-child(1) {
	animation: float 6s ease-in-out infinite;
	animation-delay: 0s;
}

.about-card:nth-child(2) {
	animation: float 6s ease-in-out infinite;
	animation-delay: 2s;
}

.about-card:nth-child(3) {
	animation: float 6s ease-in-out infinite;
	animation-delay: 4s;
}

/* Responsive Design */
@media (max-width: 768px) {
	.mobile-menu-toggle {
		display: flex;
	}

	.nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--bg-white);
		box-shadow: var(--shadow-md);
		padding: 20px;
	}

	.nav.active {
		display: block;
	}

	.nav-list {
		flex-direction: column;
		gap: 0;
		padding: 0;
		margin: 0;
	}

	.nav-list > li {
		width: 100%;
		border-bottom: 1px solid rgba(226, 232, 240, 0.5);
	}

	.nav-list > li:last-child {
		border-bottom: none;
	}

	.nav-list > li > a:not(.nav-dropdown-btn) {
		display: block;
		padding: 14px 16px;
		font-size: 16px;
		font-weight: 600;
		transition: background-color 0.3s ease, color 0.3s ease;
		border-radius: 0;
	}

	.nav-list > li > a:not(.nav-dropdown-btn):hover {
		background-color: rgba(13, 148, 136, 0.05);
		color: var(--primary-color);
	}

	.nav-list > li > a:not(.nav-dropdown-btn)::after {
		display: none;
	}

	.nav-dropdown {
		width: 100%;
	}

	.nav-dropdown-btn {
		width: 100%;
		justify-content: space-between;
		padding: 14px 16px;
		border-bottom: 1px solid rgba(226, 232, 240, 0.5);
		font-size: 16px;
		font-weight: 600;
		cursor: pointer;
		transition: background-color 0.3s ease, color 0.3s ease;
	}

	.nav-dropdown-btn:hover {
		background-color: rgba(13, 148, 136, 0.05);
		color: var(--primary-color);
	}

	.nav-dropdown.active .nav-dropdown-btn {
		background-color: rgba(13, 148, 136, 0.08);
		color: var(--primary-color);
		border-bottom-color: var(--primary-color);
	}

	.nav-dropdown-btn::after {
		display: none;
	}

	.nav-dropdown-arrow {
		opacity: 1;
		font-size: 12px;
		transition: transform 0.3s ease;
	}

	.nav-dropdown.active .nav-dropdown-arrow {
		transform: rotate(180deg);
	}

	.nav-dropdown-menu {
		position: static;
		min-width: 100%;
		max-height: 0;
		box-shadow: none;
		border: none;
		background: rgba(240, 253, 250, 0.6);
		padding: 0;
		margin-top: 0;
		margin-left: 0;
		border-left: 3px solid var(--primary-color);
		transform: none;
		opacity: 1;
		visibility: visible;
		overflow: hidden;
		transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
		border-radius: 0;
		margin-bottom: 8px;
	}

	.nav-dropdown.active .nav-dropdown-menu {
		max-height: 500px;
		padding: 12px 0 12px 16px;
		transform: none;
	}

	.nav-dropdown-menu li {
		margin: 0;
		padding: 0;
		list-style: none;
	}

	.dropdown-link {
		padding: 14px 16px;
		border-radius: 8px;
		margin-bottom: 6px;
		display: flex;
		align-items: center;
		gap: 12px;
		transition: all 0.3s ease;
		font-size: 15px;
	}

	.dropdown-link:hover {
		background: rgba(13, 148, 136, 0.12);
		transform: translateX(4px);
		color: var(--primary-color);
	}

	.dropdown-link .link-icon {
		font-size: 20px;
	}

	.dropdown-link .link-content {
		flex: 1;
	}

	.dropdown-link .link-title {
		font-size: 15px;
		font-weight: 600;
		color: var(--text-dark);
	}

	.dropdown-link .link-desc {
		font-size: 13px;
		color: var(--text-light);
		margin-top: 2px;
	}

	.hero {
		padding: 100px 0 40px;
	}

	.hero-layout {
		grid-template-columns: 1fr;
		gap: 60px;
		min-height: auto;
	}

	.hero-headline {
		font-size: 48px;
	}

	.hero-desc {
		font-size: 16px;
	}

	.hero-actions {
		flex-direction: column;
	}

	.hero-btn-main,
	.hero-btn-ghost {
		width: 100%;
		justify-content: center;
	}

	.hero-visual {
		width: 280px;
		height: 280px;
		margin: 0 auto;
	}

	.floating-tag {
		display: none;
	}

	.hero-bottom {
		flex-direction: column;
		gap: 40px;
		margin-top: 60px;
	}

	.hero-counter {
		gap: 24px;
	}

	.counter-num {
		font-size: 32px;
	}

	.counter-divider {
		height: 40px;
	}

	.hero-marquee {
		display: none;
	}

	.section-title {
		font-size: 32px;
	}

	.benefits-content {
		grid-template-columns: 1fr;
	}

	.contact-content {
		grid-template-columns: 1fr;
	}

	.slider-btn {
		display: none;
	}

	.cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.cookie-btn {
		width: 100%;
	}

	.about-grid,
	.reviews-grid,
	.categories-grid,
	.statistics-grid,
	.tips-grid,
	.updates-grid {
		grid-template-columns: 1fr;
	}

	.policy-content {
		padding: 24px;
	}

	.step-card {
		grid-template-columns: 1fr !important;
		gap: 24px;
	}

	.step-card.reverse {
		grid-template-columns: 1fr !important;
	}

	.step-card.reverse .step-image {
		order: 0;
	}

	.step-number {
		font-size: 48px;
		text-align: center;
	}

	.newsletter-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.newsletter-text h2 {
		font-size: 32px;
	}

	.update-card {
		flex-direction: column;
		text-align: center;
	}

	.update-date {
		align-self: center;
	}
}

@media (max-width: 768px) {
	.podcast-content {
		padding: 28px 24px 28px 24px;
	}

	.podcast-content h3 {
		font-size: 24px;
		margin-bottom: 12px;
	}

	.podcast-content p {
		font-size: 15px;
		margin-bottom: 20px;
	}

	.podcast-meta {
		gap: 8px;
		font-size: 13px;
	}

	.podcast-meta span {
		padding: 0;
	}
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 28px;
	}

	.hero-subtitle {
		font-size: 16px;
	}

	.section-title {
		font-size: 28px;
	}

	section {
		padding: 60px 0;
	}

	.about-card,
	.review-card,
	.category-card {
		padding: 24px;
	}

	.podcast-content {
		padding: 24px 20px 24px 20px;
	}

	.podcast-content h3 {
		font-size: 22px;
		margin-bottom: 12px;
	}

	.podcast-content p {
		font-size: 14px;
		margin-bottom: 16px;
		line-height: 1.7;
	}

	.podcast-meta {
		gap: 6px;
		font-size: 12px;
	}

	.podcast-meta span {
		line-height: 1.5;
	}
}

