:root {
	--gold: #c9a84c;
	--gold-light: #f0d080;
	--dark: #0a0a0f;
	--dark-2: #111118;
	--dark-3: #1a1a26;
	--dark-4: #22222f;
	--text: #e8e8f0;
	--muted: #7070a0;
	--green: #2ecc71;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'DM Sans', sans-serif;
	background: var(--dark);
	color: var(--text);
	overflow-x: hidden;
}

/* ── NOISE TEXTURE ── */
body::before {
	content: '';
	position: fixed;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
	pointer-events: none;
	opacity: 0.6;
	z-index: 0;
}

/* ── NAV ── */
nav {
	position: fixed;
	display: flex;
	top: 0;
	left: 0;
	right: 0;
	justify-content: space-between;
	align-items: center;
	padding: 24px 60px;
	background: linear-gradient(to bottom, rgba(10, 10, 15, 0.95), transparent);
	backdrop-filter: blur(2px);
	z-index: 100;
}

.logo {
	font-family: 'Playfair Display', serif;
	font-size: 1.3rem;
	color: var(--gold);
	letter-spacing: 0.05em;
}

.nav-cta {
	padding: 12px 28px;
	font-family: 'DM Sans', sans-serif;
	font-weight: 500;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	background: var(--gold);
	color: var(--dark);
	border: none;
	transition: all 0.3s ease;
	cursor: pointer;
}

.nav-cta:hover {
	background: var(--gold-light);
	box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
	transform: translateY(-1px);
}

/* ── HERO ── */
.hero {
	position: relative;
	display: flex;
	align-items: center;
	padding: 120px 60px 80px;
	min-height: 100vh;
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 60% 70% at 70% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
		radial-gradient(ellipse 40% 40% at 20% 80%, rgba(46, 204, 113, 0.05) 0%, transparent 50%), var(--dark);
}

.hero-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(201, 168, 76, 0.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(201, 168, 76, 0.06) 1px, transparent 1px);
	background-size: 80px 80px;
	mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.hero-content {
	position: relative;
	max-width: 680px;
	z-index: 2;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 1px solid rgba(201, 168, 76, 0.4);
	margin-bottom: 36px;
	padding: 8px 18px;
	font-size: 0.78rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--gold);
	animation: fadeUp 0.8s ease both;
}

.badge-dot {
	width: 6px;
	height: 6px;
	background: var(--green);
	border-radius: 50%;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.5;
		transform: scale(1.5);
	}
}

h1 {
	margin-bottom: 28px;
	font-family: 'Playfair Display', serif;
	font-size: clamp(2.8rem, 5vw, 4.4rem);
	font-weight: 900;
	line-height: 1.1;
	animation: fadeUp 0.8s 0.15s ease both;
}

h1 span {
	display: inline-block;
	color: var(--gold);
	position: relative;
}

h1 span::after {
	content: '';
	position: absolute;
	bottom: 4px;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-sub {
	margin-bottom: 48px;
	max-width: 520px;
	font-size: 1.15rem;
	font-weight: 300;
	line-height: 1.7;
	color: var(--muted);
	animation: fadeUp 0.8s 0.3s ease both;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 28px;
	animation: fadeUp 0.8s 0.45s ease both;
}

.btn-primary {
	position: relative;
	padding: 18px 44px;
	font-family: 'DM Sans', sans-serif;
	font-weight: 500;
	font-size: 1rem;
	letter-spacing: 0.06em;
	background: linear-gradient(135deg, var(--gold), #a07830);
	color: var(--dark);
	border: none;
	transition: all 0.3s ease;
	cursor: pointer;
	overflow: hidden;
}

.btn-primary::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s ease;
}

.btn-primary:hover::before {
	left: 100%;
}

.btn-primary:hover {
	box-shadow: 0 16px 50px rgba(201, 168, 76, 0.35);
	transform: translateY(-2px);
}

.hero-guarantee {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.82rem;
	color: var(--muted);
}

.hero-guarantee svg {
	color: var(--green);
}

/* ── STATS ── */
.stats-bar {
	position: relative;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 80px;
	padding: 40px 60px;
	background: var(--dark-3);
	border-top: 1px solid rgba(201, 168, 76, 0.15);
	border-bottom: 1px solid rgba(201, 168, 76, 0.15);
	z-index: 2;
}

.stat {
	text-align: center;
}

.stat-num {
	display: block;
	font-family: 'Playfair Display', serif;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1;
	color: var(--gold);
}

.stat-label {
	margin-top: 8px;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--muted);
}

/* ── SECTION ── */
section {
	margin: 0 auto;
	padding: 100px 60px;
	max-width: 1200px;
}

.section-label {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--gold);
}

.section-label::before {
	content: '';
	display: block;
	width: 30px;
	height: 1px;
	background: var(--gold);
}

h2 {
	margin-bottom: 20px;
	font-family: 'Playfair Display', serif;
	font-size: clamp(2rem, 3.5vw, 3rem);
	font-weight: 700;
	line-height: 1.2;
}

.section-desc {
	margin-bottom: 60px;
	max-width: 560px;
	color: var(--muted);
	font-size: 1.05rem;
	font-weight: 300;
	line-height: 1.7;
}

/* ── PROBLEMS ── */
.problems-section {
	background: var(--dark-2);
	padding: 100px 0;
}
.problems-inner {
	margin: 0 auto;
	padding: 0 60px;
	max-width: 1200px;
}

.problems-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2px;
	margin-top: 60px;
}

.problem-card {
	position: relative;
	padding: 40px 36px;
	background: var(--dark-3);
	transition: background 0.3s ease;
	overflow: hidden;
}

.problem-card:hover {
	background: var(--dark-4);
}

.problem-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, var(--gold), transparent);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.problem-card:hover::before {
	transform: scaleX(1);
}

.problem-icon {
	display: block;
	margin-bottom: 20px;
	font-size: 2rem;
	color: var(--gold);
}

.problem-title {
	margin-bottom: 12px;
	font-family: 'Playfair Display', serif;
	font-size: 1.1rem;
	color: var(--text);
}

.problem-text {
	font-size: 0.9rem;
	line-height: 1.6;
	color: var(--muted);
}

/* ── CURRICULUM ── */
.curriculum {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}

@media (max-width: 800px) {
	.curriculum {
		grid-template-columns: 1fr;
	}
}

.week-list {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.week {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding: 24px 28px;
	background: var(--dark-3);
	border-left: 3px solid transparent;
	transition: all 0.3s ease;
	cursor: pointer;
}

.week:hover,
.week.active {
	background: var(--dark-4);
	border-left-color: var(--gold);
}

.week-num {
	margin-top: 3px;
	font-family: 'Playfair Display', serif;
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	white-space: nowrap;
	color: var(--gold);
}

.week-title {
	margin-bottom: 6px;
	font-size: 0.95rem;
	font-weight: 500;
}

.week-topics {
	font-size: 0.82rem;
	line-height: 1.5;
	color: var(--muted);
}

.curriculum-visual {
	position: sticky;
	top: 120px;
	padding: 40px;
	background: var(--dark-3);
	border: 1px solid rgba(201, 168, 76, 0.2);
}

.cv-title {
	margin-bottom: 24px;
	font-family: 'Playfair Display', serif;
	font-size: 1.3rem;
	color: var(--gold);
}

.cv-chart {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.chart-row {
	display: flex;
	align-items: center;
	gap: 14px;
}

.chart-label {
	width: 90px;
	font-size: 0.78rem;
	text-align: right;
	color: var(--muted);
}

.chart-bar-wrap {
	flex: 1;
	height: 8px;
	background: var(--dark-4);
	border-radius: 4px;
	overflow: hidden;
}

.chart-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 4px;
    width: 0;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.chart-val {
	font-size: 0.78rem;
	color: var(--gold);
	width: 36px;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
	padding: 100px 0;
	background: var(--dark-2);
}
.testimonials-inner {
	padding: 0 60px;
	max-width: 1200px;
	margin: 0 auto;
}

.testi-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 24px;
	margin-top: 60px;
}

.testi-card {
	position: relative;
	padding: 36px;
	background: var(--dark-3);
	border: 1px solid rgba(201, 168, 76, 0.1);
	transition:
		border-color 0.3s ease,
		transform 0.3s ease;
}

.testi-card:hover {
	border-color: rgba(201, 168, 76, 0.35);
	transform: translateY(-4px);
}

.testi-stars {
	margin-bottom: 20px;
	font-size: 0.9rem;
	letter-spacing: 3px;
	color: var(--gold);
}

.testi-quote {
	margin-bottom: 28px;
	font-size: 0.95rem;
	font-weight: 300;
	line-height: 1.7;
	color: var(--text);
}

.testi-author {
	display: flex;
	align-items: center;
	gap: 14px;
}

.testi-avatar {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	font-family: 'Playfair Display', serif;
	font-weight: 700;
	font-size: 1rem;
	color: var(--dark);
	background: linear-gradient(135deg, var(--gold), #5a3e10);
	border-radius: 50%;
}

.testi-name {
	font-size: 0.9rem;
	font-weight: 500;
}
.testi-role {
	margin-top: 2px;
	color: var(--muted);
	font-size: 0.78rem;
}

.testi-result {
	position: absolute;
	top: 20px;
	right: 24px;
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	color: var(--green);
}

/* ── PRICING ── */
.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2px;
	margin-top: 60px;
}

.price-card {
	position: relative;
	padding: 48px 40px;
	background: var(--dark-3);
	transition: transform 0.3s ease;
}

.price-card:hover {
	transform: translateY(-6px);
}

.price-card.featured {
	background: linear-gradient(160deg, #1c1a10, #2a2210);
	border: 1px solid rgba(201, 168, 76, 0.5);
}

.price-card.featured::before {
	content: 'NAJPOPULARNIEJSZY';
	position: absolute;
	top: -1px;
	left: 50%;
	padding: 6px 20px;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	white-space: nowrap;
	background: var(--gold);
	transform: translateX(-50%);
	color: var(--dark);
}

.price-tier {
	margin-bottom: 24px;
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--gold);
}

.price-amount {
	margin-bottom: 4px;
	font-family: 'Playfair Display', serif;
	font-size: 3rem;
	font-weight: 700;
	line-height: 1;
}

.price-period {
	margin-bottom: 32px;
	font-size: 0.85rem;
	color: var(--muted);
}

.price-features {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 40px;
	list-style: none;
}

.price-features li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 0.9rem;
	color: var(--text);
}

.check {
	flex-shrink: 0;
	margin-top: 2px;
	font-size: 0.9rem;
	color: var(--green);
}
.cross {
	flex-shrink: 0;
	margin-top: 2px;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.2);
}

.price-features li.disabled {
	color: var(--muted);
}

.btn-price {
	width: 100%;
	padding: 16px;
	border: none;
	cursor: pointer;
	font-family: 'DM Sans', sans-serif;
	font-size: 0.9rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: all 0.3s ease;
}

.btn-price.outline {
	color: var(--gold);
	background: transparent;
	border: 1px solid rgba(201, 168, 76, 0.4);
}

.btn-price.outline:hover {
	border-color: var(--gold);
	background: rgba(201, 168, 76, 0.08);
}

.btn-price.solid {
	color: var(--dark);
	background: linear-gradient(135deg, var(--gold), #a07830);
}

.btn-price.solid:hover {
	box-shadow: 0 12px 40px rgba(201, 168, 76, 0.35);
	transform: translateY(-2px);
}

/* ── FAQ ── */
.faq-list {
	max-width: 760px;
	margin: 60px auto 0;
}

.faq-item {
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.faq-q {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	padding: 28px 0;
	width: 100%;
	text-align: left;
	font-family: 'DM Sans', sans-serif;
	font-size: 1rem;
	font-weight: 500;
	color: var(--text);
	background: none;
	border: none;
	transition: color 0.3s ease;
	cursor: pointer;
}

.faq-q:hover {
	color: var(--gold);
}
.faq-icon {
	flex-shrink: 0;
	font-size: 1.3rem;
	color: var(--gold);
	transition: transform 0.3s ease;
}
.faq-item.open .faq-icon {
	transform: rotate(45deg);
}

.faq-a {
	max-height: 0;
	font-size: 0.95rem;
	line-height: 1.7;
	font-weight: 300;
	color: var(--muted);
	transition:
		max-height 0.4s ease,
		padding 0.3s ease;
	overflow: hidden;
}

.faq-item.open .faq-a {
	max-height: 300px;
	padding-bottom: 28px;
}

/* ── CTA SECTION ── */
.cta-section {
	position: relative;
	padding: 120px 60px;
	text-align: center;
	background: linear-gradient(160deg, #16140a, #0e0d06);
	border-top: 1px solid rgba(201, 168, 76, 0.2);
	border-bottom: 1px solid rgba(201, 168, 76, 0.2);
	overflow: hidden;
}

.cta-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201, 168, 76, 0.08), transparent);
	pointer-events: none;
}

.cta-section h2 {
	margin: 0 auto 20px;
	max-width: 700px;
	font-size: clamp(2rem, 4vw, 3.2rem);
}

.cta-section p {
	margin-bottom: 48px;
	font-size: 1.05rem;
	font-weight: 300;
	color: var(--muted);
}

.cta-meta {
	display: flex;
	justify-content: center;
	gap: 28px;
	flex-wrap: wrap;
	margin-top: 24px;
	font-size: 0.82rem;
	color: var(--muted);
}

.cta-meta span {
	display: flex;
	align-items: center;
	gap: 6px;
}

/* ── FOOTER ── */
footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	padding: 40px 60px;
	background: var(--dark);
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
	font-family: 'Playfair Display', serif;
	color: var(--gold);
}

.footer-text {
	font-size: 0.8rem;
	color: var(--muted);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(24px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition:
		opacity 0.7s ease,
		transform 0.7s ease;
}
.reveal.visible {
	opacity: 1;
	transform: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
	nav {
		padding: 20px 24px;
	}
	.hero {
		padding: 100px 24px 60px;
	}
	.stats-bar {
		padding: 40px 24px;
		gap: 40px;
	}
	section {
		padding: 80px 24px;
	}
	.problems-inner,
	.testimonials-inner {
		padding: 80px 24px;
	}
	.cta-section {
		padding: 80px 24px;
	}
	footer {
		padding: 40px 24px;
	}
}
