/* ============================================
   ClipItCoach – Landing Page Styles
   ============================================ */

:root {
	--primary: #10b981;
	--primary-hover: #059669;
	--primary-light: rgba(16, 185, 129, 0.1);
	--primary-glow: rgba(16, 185, 129, 0.25);
	--dark: #0a0f1a;
	--dark-soft: #0f1524;
	--dark-card: #141c2e;
	--dark-card-border: rgba(255,255,255,0.06);
	--text: rgba(255,255,255,0.88);
	--text-secondary: rgba(255,255,255,0.55);
	--text-tertiary: rgba(255,255,255,0.35);
	--bg: #0a0f1a;
	--bg-alt: #0f1524;
	--border: rgba(255,255,255,0.08);
	--radius: 12px;
	--radius-lg: 16px;
	--radius-xl: 24px;
	--shadow: 0 1px 3px rgba(0,0,0,0.2);
	--shadow-md: 0 4px 16px rgba(0,0,0,0.3);
	--shadow-lg: 0 16px 48px rgba(0,0,0,0.4);
	--font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 80px;
}

body {
	font-family: var(--font);
	color: var(--text);
	background: var(--bg);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

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

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

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

/* ── Scroll Reveal ── */

.reveal {
	opacity: 0;
	transform: translateY(32px);
	transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
	opacity: 1;
	transform: translateY(0);
}

.reveal-stagger > * {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 100ms; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 200ms; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 300ms; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 400ms; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 500ms; }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: 600ms; }

.reveal-stagger.visible > * {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	.reveal,
	.reveal-stagger > * {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* ── Buttons ── */

.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 600;
	font-size: 0.9rem;
	border-radius: 10px;
	padding: 0.625rem 1.25rem;
	border: 2px solid transparent;
	cursor: pointer;
	transition: all 0.25s var(--ease);
	font-family: inherit;
	white-space: nowrap;
	position: relative;
}

.btn-primary {
	background: var(--primary);
	color: white;
	border-color: var(--primary);
}

.btn-primary:hover {
	background: var(--primary-hover);
	border-color: var(--primary-hover);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
}

.btn-primary:active {
	transform: translateY(0);
}

.btn-outline {
	background: transparent;
	color: var(--text);
	border-color: var(--border);
}

.btn-outline:hover {
	border-color: var(--primary);
	color: var(--primary);
}

.btn-ghost {
	background: transparent;
	color: rgba(255,255,255,0.8);
	border-color: transparent;
}

.btn-ghost:hover {
	background: rgba(255,255,255,0.08);
	color: white;
}

.btn-lg {
	padding: 0.9rem 1.85rem;
	font-size: 1rem;
	border-radius: 12px;
}

.btn-block {
	display: flex;
	justify-content: center;
	width: 100%;
}

/* ── Navbar (stays light/white) ── */

.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(0,0,0,0.06);
	transition: border-color 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
	box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.navbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 72px;
}

.navbar-brand {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 1.25rem;
	font-weight: 800;
	color: #111827;
	letter-spacing: -0.03em;
}

.navbar-brand i {
	font-size: 1.5rem;
	color: var(--primary);
}

.navbar-links {
	display: flex;
	align-items: center;
	gap: 0.125rem;
	list-style: none;
}

.navbar-links a {
	padding: 0.5rem 0.75rem;
	font-size: 0.85rem;
	font-weight: 500;
	color: #6b7280;
	border-radius: 8px;
	transition: color 0.2s, background 0.2s;
}

.navbar-links a:hover {
	color: #111827;
	background: #f3f4f6;
}

.navbar-links .btn {
	margin-left: 0.25rem;
}

.navbar-links .btn-outline {
	color: #111827;
	border-color: #e5e7eb;
}

.navbar-links .btn-outline:hover {
	border-color: var(--primary);
	color: var(--primary);
}

.navbar-links .btn-primary,
.navbar-links .btn-primary:hover {
	color: white;
}

.navbar-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 1.25rem;
	color: #111827;
	cursor: pointer;
	padding: 0.5rem;
}

/* ── Hero ── */

.hero {
	position: relative;
	padding: 9rem 0 6rem;
	background: var(--dark);
	color: white;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: -40%;
	left: 50%;
	transform: translateX(-50%);
	width: 900px;
	height: 900px;
	background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
	pointer-events: none;
}

.hero-inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 4rem;
	align-items: center;
}

.hero-badge {
	display: inline-block;
	background: rgba(16, 185, 129, 0.15);
	color: var(--primary);
	font-weight: 600;
	font-size: 0.8rem;
	padding: 0.4rem 1rem;
	border-radius: 100px;
	margin-bottom: 1.75rem;
	border: 1px solid rgba(16, 185, 129, 0.2);
}

.hero h1 {
	font-size: 3.5rem;
	font-weight: 900;
	line-height: 1.08;
	letter-spacing: -0.045em;
	color: white;
	margin-bottom: 1.5rem;
}

.hero-subtitle {
	font-size: 1.15rem;
	color: rgba(255,255,255,0.65);
	line-height: 1.75;
	margin-bottom: 1rem;
	max-width: 520px;
}

.hero-differentiator {
	font-size: 0.95rem;
	color: rgba(255,255,255,0.45);
	font-style: italic;
	margin-bottom: 2.25rem;
	max-width: 520px;
}

.hero-ctas {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
	margin-bottom: 1.25rem;
}

.hero-note {
	font-size: 0.8rem;
	color: rgba(255,255,255,0.35);
}

/* Hero mockup – stationary */
.hero-visual {
	perspective: 1200px;
}

.hero-mockup {
	background: var(--dark-card);
	border-radius: var(--radius-xl);
	box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
	overflow: hidden;
}

.mockup-player {
	padding: 0;
}

.mockup-video {
	background: #000;
	overflow: hidden;
	aspect-ratio: 16 / 9;
}

.mockup-video iframe {
	width: 100%;
	height: 100%;
	display: block;
	border: none;
}

.mockup-clips {
	border-top: 1px solid rgba(255,255,255,0.06);
	padding: 0.75rem 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.375rem;
}

.mockup-clip-label {
	font-size: 0.7rem;
	font-weight: 600;
	color: rgba(255,255,255,0.35);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	display: flex;
	align-items: center;
	gap: 0.375rem;
	padding: 0.25rem 0;
}

.mockup-clip {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.8rem;
	color: rgba(255,255,255,0.6);
	padding: 0.5rem 0.75rem;
	background: rgba(255,255,255,0.04);
	border-radius: 8px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: all 0.2s var(--ease);
	font-family: inherit;
	text-align: left;
	width: 100%;
}

.mockup-clip:hover {
	border-color: rgba(255,255,255,0.1);
	background: rgba(255,255,255,0.07);
}

.mockup-clip.active {
	border-color: var(--primary);
	background: rgba(16, 185, 129, 0.1);
}

.mockup-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	flex-shrink: 0;
}

.mockup-clip-tags {
	display: flex;
	gap: 0.3rem;
	flex: 1;
	flex-wrap: wrap;
}

.mockup-tag {
	display: inline-block;
	padding: 0.125rem 0.5rem;
	border-radius: 4px;
	font-size: 0.7rem;
	font-weight: 600;
	color: white;
}

.mockup-clip-time {
	font-family: monospace;
	font-size: 0.75rem;
	color: rgba(255,255,255,0.3);
	margin-left: auto;
	flex-shrink: 0;
}

/* ── Proof Bar ── */

.proof-bar {
	background: var(--bg-alt);
	border-bottom: 1px solid var(--dark-card-border);
	padding: 1.75rem 0;
}

.proof-bar-inner {
	display: flex;
	justify-content: center;
	gap: 3rem;
	flex-wrap: wrap;
}

.proof-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--text-secondary);
	font-size: 0.85rem;
	font-weight: 500;
}

.proof-item i {
	color: var(--primary);
	font-size: 1rem;
}

/* ── Sections ── */

.section {
	padding: 5.5rem 0;
}

.section-header {
	text-align: center;
	margin-bottom: 3.5rem;
}

.section-label {
	display: inline-block;
	background: rgba(16, 185, 129, 0.15);
	color: var(--primary);
	font-weight: 600;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	padding: 0.35rem 0.85rem;
	border-radius: 100px;
	margin-bottom: 1.25rem;
	border: 1px solid rgba(16, 185, 129, 0.2);
}

.section-header h2 {
	font-size: 2.5rem;
	font-weight: 800;
	letter-spacing: -0.04em;
	margin-bottom: 0.875rem;
	color: white;
	line-height: 1.15;
}

.section-desc {
	font-size: 1.1rem;
	color: var(--text-secondary);
	max-width: 580px;
	margin: 0 auto;
	line-height: 1.7;
}

/* ── Problem / Card Grids ── */

.problem {
	background: var(--bg-alt);
}

.problem-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.problem-card {
	background: var(--dark-card);
	border: 1px solid var(--dark-card-border);
	border-radius: var(--radius-lg);
	padding: 2.25rem;
	text-align: center;
}

.problem-icon {
	width: 60px;
	height: 60px;
	border-radius: 16px;
	background: rgba(16, 185, 129, 0.12);
	color: var(--primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	margin: 0 auto 1.5rem;
}

.problem-card h3 {
	font-size: 1.15rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
	color: white;
}

.problem-card p {
	color: var(--text-secondary);
	font-size: 0.9rem;
	line-height: 1.7;
}

/* ── Features ── */

.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.feature-card {
	background: var(--dark-card);
	border: 1px solid var(--dark-card-border);
	border-radius: var(--radius-lg);
	padding: 2rem;
}

.feature-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: rgba(16, 185, 129, 0.12);
	color: var(--primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.15rem;
	margin-bottom: 1.25rem;
}

.feature-card h3 {
	font-size: 1.05rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: white;
}

.feature-card p {
	color: var(--text-secondary);
	font-size: 0.875rem;
	line-height: 1.65;
}

/* ── How It Works ── */

.how-it-works {
	background: var(--bg);
}

.steps-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.step-card {
	text-align: center;
	position: relative;
	padding: 2.25rem 1.5rem;
	background: var(--dark-card);
	border: 1px solid var(--dark-card-border);
	border-radius: var(--radius-lg);
}

.step-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--primary);
	color: white;
	font-weight: 800;
	font-size: 0.95rem;
	margin-bottom: 1.25rem;
}

.step-icon {
	width: 64px;
	height: 64px;
	border-radius: 16px;
	background: rgba(16, 185, 129, 0.12);
	color: var(--primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	margin: 0 auto 1.25rem;
}

.step-card h3 {
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 0.625rem;
	color: white;
}

.step-card p {
	color: var(--text-secondary);
	font-size: 0.9rem;
	max-width: 280px;
	margin: 0 auto;
	line-height: 1.7;
}

/* ── Product Showcase ── */

.showcase {
	background: var(--bg-alt);
}

.showcase-row {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 4rem;
	align-items: center;
	margin-bottom: 6rem;
}

.showcase-row:last-child {
	margin-bottom: 0;
}

.showcase-row.reverse {
	grid-template-columns: 1.2fr 1fr;
}

.showcase-row.reverse .showcase-copy {
	order: 2;
}

.showcase-row.reverse .showcase-image {
	order: 1;
}

.showcase-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	background: rgba(16, 185, 129, 0.15);
	color: var(--primary);
	font-weight: 600;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 0.35rem 0.85rem;
	border-radius: 100px;
	margin-bottom: 1.25rem;
	border: 1px solid rgba(16, 185, 129, 0.2);
}

.showcase-copy h3 {
	font-size: 1.75rem;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: white;
	margin-bottom: 1rem;
	line-height: 1.2;
}

.showcase-copy p {
	color: var(--text-secondary);
	font-size: 1rem;
	line-height: 1.75;
	margin-bottom: 1.5rem;
}

.showcase-copy kbd {
	display: inline-block;
	font-family: 'SFMono-Regular', Consolas, monospace;
	font-size: 0.78rem;
	font-weight: 700;
	color: white;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.15);
	border-bottom-width: 2px;
	border-radius: 5px;
	padding: 0.05rem 0.4rem;
	line-height: 1;
}

.showcase-bullets {
	list-style: none;
	padding: 0;
	margin: 0;
}

.showcase-bullets li {
	display: flex;
	align-items: flex-start;
	gap: 0.625rem;
	font-size: 0.92rem;
	color: var(--text);
	padding: 0.4rem 0;
}

.showcase-bullets li i {
	color: var(--primary);
	margin-top: 0.25rem;
	font-size: 0.85rem;
	flex-shrink: 0;
}

.showcase-image {
	border-radius: var(--radius-xl);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	border: 1px solid var(--dark-card-border);
	background: var(--dark-card);
}

.showcase-image img {
	width: 100%;
	height: auto;
}

.showcase-image-phone {
	max-width: 320px;
	margin: 0 auto;
	border-radius: 28px;
	border: unset;
}

/* ── Testimonials ── */

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.testimonial-card {
	background: var(--dark-card);
	border: 1px solid var(--dark-card-border);
	border-radius: var(--radius-lg);
	padding: 2rem;
}

.testimonial-stars {
	color: #f59e0b;
	font-size: 0.85rem;
	margin-bottom: 1rem;
	display: flex;
	gap: 0.2rem;
}

.testimonial-text {
	font-size: 0.95rem;
	line-height: 1.7;
	color: var(--text);
	margin-bottom: 1.5rem;
	font-style: italic;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.author-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(16, 185, 129, 0.12);
	color: var(--primary);
	display: flex;
	align-items: center;
	justify-content: center;
}

.testimonial-author strong {
	display: block;
	font-size: 0.85rem;
	color: white;
}

.testimonial-author span {
	font-size: 0.75rem;
	color: var(--text-tertiary);
}

/* ── Pricing ── */

.pricing {
	background: var(--bg-alt);
}

.billing-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	margin-bottom: 2.5rem;
}

.toggle-label {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--text-secondary);
	transition: color 0.2s;
}

.toggle-label.active {
	color: white;
	font-weight: 600;
}

.toggle-switch {
	position: relative;
	display: inline-block;
	width: 48px;
	height: 26px;
	cursor: pointer;
}

.toggle-switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.toggle-slider {
	position: absolute;
	inset: 0;
	background: rgba(255,255,255,0.15);
	border-radius: 100px;
	transition: background 0.2s;
}

.toggle-slider::before {
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	left: 3px;
	bottom: 3px;
	background: white;
	border-radius: 50%;
	transition: transform 0.2s;
	box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.toggle-switch input:checked + .toggle-slider {
	background: var(--primary);
}

.toggle-switch input:checked + .toggle-slider::before {
	transform: translateX(22px);
}

.savings-badge {
	display: inline-block;
	background: rgba(16, 185, 129, 0.15);
	color: var(--primary);
	font-size: 0.7rem;
	font-weight: 700;
	padding: 0.15rem 0.5rem;
	border-radius: 100px;
	margin-left: 0.25rem;
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	align-items: start;
}

.price-card {
	background: var(--dark-card);
	border: 1px solid var(--dark-card-border);
	border-radius: var(--radius-xl);
	padding: 2.25rem;
	position: relative;
}

.price-card.featured {
	border-color: var(--primary);
	box-shadow: 0 0 0 1px var(--primary), var(--shadow-lg);
	transform: scale(1.03);
}

.featured-ribbon {
	position: absolute;
	top: -1px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--primary);
	color: white;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 0.3rem 1rem;
	border-radius: 0 0 8px 8px;
}

.price-card-header h3 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.25rem;
	color: white;
}

.price-card-header p {
	color: var(--text-secondary);
	font-size: 0.85rem;
	margin-bottom: 1.25rem;
}

.price-card-price {
	margin-bottom: 1.75rem;
}

.price-amount {
	font-size: 2.75rem;
	font-weight: 900;
	letter-spacing: -0.04em;
	color: white;
}

.price-period {
	font-size: 0.9rem;
	color: var(--text-tertiary);
	font-weight: 500;
}

.price-billed {
	display: block;
	font-size: 0.8rem;
	color: var(--text-tertiary);
	margin-top: 0.25rem;
	min-height: 1.2em;
}

.price-features {
	list-style: none;
	margin-bottom: 2rem;
}

.price-features li {
	padding: 0.5rem 0;
	font-size: 0.875rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	border-bottom: 1px solid rgba(255,255,255,0.04);
	color: var(--text);
}

.price-features li.yes i {
	color: var(--primary);
}

.price-features li.no {
	color: var(--text-tertiary);
}

.price-features li.no i {
	color: var(--text-tertiary);
}

.pricing-note {
	text-align: center;
	color: var(--text-tertiary);
	font-size: 0.8rem;
	margin-top: 2rem;
}

/* ── Roadmap ── */

.roadmap {
	background: var(--bg);
}

.roadmap-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.roadmap-card {
	background: var(--dark-card);
	border: 1px solid var(--dark-card-border);
	border-radius: var(--radius-lg);
	padding: 2rem;
}

.roadmap-status {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 0.25rem 0.625rem;
	border-radius: 100px;
	margin-bottom: 1rem;
}

.roadmap-status.in-progress {
	background: rgba(245, 158, 11, 0.15);
	color: #fbbf24;
}

.roadmap-status.planned {
	background: rgba(16, 185, 129, 0.15);
	color: var(--primary);
}

.roadmap-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: rgba(255,255,255,0.05);
	color: var(--text);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.15rem;
	margin-bottom: 1rem;
}

.roadmap-card h3 {
	font-size: 1.05rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: white;
}

.roadmap-card p {
	color: var(--text-secondary);
	font-size: 0.9rem;
	line-height: 1.65;
}

/* ── FAQ ── */

.faq {
	background: var(--bg-alt);
}

.faq-container {
	max-width: 720px;
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.faq-item {
	background: var(--dark-card);
	border: 1px solid var(--dark-card-border);
	border-radius: var(--radius);
	overflow: hidden;
}

.faq-item summary {
	padding: 1.25rem 1.5rem;
	font-weight: 600;
	font-size: 0.95rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	list-style: none;
	color: white;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary::after {
	content: '\f078';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	font-size: 0.75rem;
	color: var(--text-tertiary);
	transition: transform 0.25s var(--ease);
}

.faq-item[open] summary::after {
	transform: rotate(180deg);
}

.faq-item p {
	padding: 0 1.5rem 1.25rem;
	color: var(--text-secondary);
	font-size: 0.9rem;
	line-height: 1.7;
}

/* ── CTA Section ── */

.cta-section {
	background: var(--bg);
	color: white;
	text-align: center;
}

.cta-inner {
	position: relative;
	z-index: 1;
}

.cta-inner h2 {
	font-size: 2.5rem;
	font-weight: 800;
	letter-spacing: -0.04em;
	margin-bottom: 0.875rem;
	color: white;
}

.cta-inner p {
	color: var(--text-secondary);
	font-size: 1.1rem;
	margin-bottom: 2rem;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.7;
}

.cta-subtext {
	display: block;
	margin-top: 0.75rem;
	font-size: 0.8rem;
	color: var(--text-tertiary);
}

/* ── Contact ── */

.contact {
	background: var(--bg-alt);
}

.contact-form {
	max-width: 640px;
	margin: 0 auto;
}

.contact-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-bottom: 1rem;
}

.contact-field {
	display: flex;
	flex-direction: column;
	margin-bottom: 1rem;
}

.contact-field label {
	font-weight: 600;
	font-size: 0.85rem;
	color: var(--text);
	margin-bottom: 0.375rem;
}

.contact-field input,
.contact-field textarea {
	font-family: inherit;
	font-size: 0.9rem;
	padding: 0.8rem 1rem;
	border: 1px solid var(--dark-card-border);
	border-radius: var(--radius);
	background: var(--dark-card);
	color: var(--text);
	transition: border-color 0.2s, box-shadow 0.2s;
	resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.contact-form-footer {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.contact-status {
	font-size: 0.85rem;
	font-weight: 500;
}

.contact-status.success {
	color: var(--primary);
}

.contact-status.error {
	color: #ef4444;
}

/* ── Footer ── */

.footer {
	background: var(--dark);
	color: rgba(255,255,255,0.6);
	border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 3rem;
	padding: 4rem 0 3rem;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 1.1rem;
	font-weight: 800;
	color: white;
	margin-bottom: 0.75rem;
}

.footer-logo i {
	color: var(--primary);
}

.footer-brand p {
	font-size: 0.85rem;
	line-height: 1.6;
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.footer-col h4 {
	color: white;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-weight: 600;
	margin-bottom: 1rem;
}

.footer-col ul {
	list-style: none;
}

.footer-col li {
	margin-bottom: 0.5rem;
}

.footer-col a {
	font-size: 0.85rem;
	transition: color 0.2s;
}

.footer-col a:hover {
	color: white;
}

.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.06);
	padding: 1.5rem 0;
	text-align: center;
	font-size: 0.8rem;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
	.hero-inner {
		grid-template-columns: 1fr;
		gap: 3rem;
		text-align: center;
	}

	.hero-subtitle,
	.hero-differentiator {
		margin-left: auto;
		margin-right: auto;
	}

	.hero-ctas {
		justify-content: center;
	}

	.hero-visual {
		max-width: 520px;
		margin: 0 auto;
		width: 100%;
	}
}

@media (max-width: 768px) {
	.navbar-toggle {
		display: block;
	}

	.navbar-links {
		display: none;
		position: absolute;
		top: 72px;
		left: 0;
		right: 0;
		background: white;
		border-bottom: 1px solid #e5e7eb;
		flex-direction: column;
		padding: 1rem 1.5rem;
		gap: 0.25rem;
		box-shadow: 0 4px 16px rgba(0,0,0,0.08);
	}

	.navbar-links.open {
		display: flex;
	}

	.navbar-links .btn {
		margin-left: 0;
		width: 100%;
		justify-content: center;
	}

	.hero {
		padding: 7rem 0 4rem;
	}

	.hero h1 {
		font-size: 2.25rem;
	}

	.hero-subtitle {
		font-size: 1rem;
	}

	.section {
		padding: 2.5rem 0;
	}

	.problem-grid,
	.features-grid,
	.steps-grid,
	.testimonials-grid,
	.pricing-grid {
		grid-template-columns: 1fr;
	}

	.price-card.featured {
		transform: none;
		order: -1;
	}

	.section-header h2 {
		font-size: 1.85rem;
	}

	.section-desc {
		font-size: 1rem;
	}

	.footer-inner {
		grid-template-columns: 1fr;
		gap: 2rem;
		padding-left: 1em;
	}

	.footer-links {
		grid-template-columns: repeat(3, 1fr);
	}

	.proof-bar-inner {
		flex-direction: column;
		gap: 0.75rem;
		align-items: center;
	}

	.cta-inner h2 {
		font-size: 1.85rem;
	}

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

@media (max-width: 900px) {
	.showcase-row,
	.showcase-row.reverse {
		grid-template-columns: 1fr;
		gap: 2rem;
		margin-bottom: 4rem;
	}

	.showcase-row.reverse .showcase-copy { order: 1; }
	.showcase-row.reverse .showcase-image { order: 2; }

	.roadmap-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.hero h1 {
		font-size: 1.85rem;
	}

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

	.hero-ctas .btn {
		width: 100%;
		justify-content: center;
	}

	.footer-links {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.section-header h2 {
		font-size: 1.5rem;
	}
}
