/* ==========================================================================
   LunaPM Pro — Premium Landing Theme
   ========================================================================== */

:root {
	--color-primary: #f06c36;
	--color-primary-dark: #e24413;
	--color-primary-light: #ff8a4a;
	--color-accent: #2c7da0;
	--color-accent-dark: #1f5f7a;
	--color-accent-muted: rgba(44, 125, 160, 0.08);
	--color-navy: #0f2744;
	--color-navy-dark: #0a1a2e;
	--color-text: #161616;
	--color-text-muted: #6b7280;
	--color-border: #e5e7eb;
	--color-bg: #ffffff;
	--color-surface: #f8fafc;
	--color-surface-alt: #f1f5f9;
	--shadow-sm: 0 1px 2px rgba(15, 39, 68, 0.06);
	--shadow-md: 0 4px 20px rgba(15, 39, 68, 0.08);
	--shadow-lg: 0 12px 40px rgba(15, 39, 68, 0.12);
	--shadow-xl: 0 24px 60px rgba(15, 39, 68, 0.16);
	--radius-sm: 2px;
	--radius-md: 4px;
	--radius-lg: 6px;
	--radius-xl: 8px;
	--font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	--container: 1200px;
	--header-height: 80px;
}

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

html {
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
}

body {
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.6;
	color: var(--color-text);
	background: var(--color-bg);
	overflow-x: hidden;
}

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

a {
	color: var(--color-navy);
	text-decoration: none;
	transition: color var(--transition);
}

a:hover {
	color: var(--color-navy-dark);
}

ul, ol {
	list-style: none;
}

.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 28px;
	font-family: var(--font);
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	border-radius: var(--radius-sm);
	border: 2px solid transparent;
	cursor: pointer;
	transition: all var(--transition);
	white-space: nowrap;
}

.btn-primary {
	background: var(--color-navy);
	color: #fff;
	box-shadow: none;
}

.btn-primary:hover {
	background: var(--color-navy-dark);
	color: #fff;
	transform: none;
	box-shadow: var(--shadow-sm);
}

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

.btn-outline:hover {
	border-color: var(--color-navy);
	color: var(--color-navy);
	background: var(--color-surface);
}

.btn-white {
	background: #fff;
	color: var(--color-navy);
	box-shadow: var(--shadow-md);
}

.btn-white:hover {
	transform: none;
	box-shadow: var(--shadow-md);
	color: var(--color-navy);
}

.btn-ghost {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.25);
	backdrop-filter: blur(8px);
}

.btn-ghost:hover {
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
}

.btn-lg {
	padding: 16px 36px;
	font-size: 16px;
	border-radius: var(--radius-md);
}

/* Section utilities */
.section {
	padding: 100px 0;
}

.section-header {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 64px;
}

.section-label {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--color-text-muted);
	margin-bottom: 16px;
}

.section-title {
	font-size: clamp(1.85rem, 3.5vw, 2.5rem);
	font-weight: 700;
	line-height: 1.2;
	color: var(--color-navy);
	letter-spacing: -0.03em;
	margin-bottom: 16px;
}

.section-desc {
	font-size: 1.125rem;
	color: var(--color-text-muted);
	line-height: 1.7;
}

/* ==========================================================================
   Header — always white (transparent logo)
   ========================================================================== */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	height: var(--header-height);
	background: #ffffff;
	box-shadow: var(--shadow-sm);
	transition: box-shadow var(--transition);
}

.site-header.is-scrolled {
	box-shadow: var(--shadow-md);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--header-height);
}

.site-logo img {
	height: 40px;
	width: auto;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 36px;
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 32px;
}

.nav-link {
	font-size: 15px;
	font-weight: 500;
	color: var(--color-text);
	transition: color var(--transition);
}

.nav-link:hover {
	color: var(--color-navy);
}

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

.menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}

.menu-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--color-navy);
	border-radius: 2px;
	transition: all var(--transition);
}

/* ==========================================================================
   Hero — full-screen cover, copy on the left
   ========================================================================== */
.hero-cover {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.hero-cover__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hero-cover__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(10, 26, 46, 0.93) 0%,
		rgba(10, 26, 46, 0.78) 38%,
		rgba(10, 26, 46, 0.28) 62%,
		rgba(10, 26, 46, 0.06) 100%
	);
}

.hero-cover__inner {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: calc(var(--header-height) + 64px) 24px 80px;
	display: flex;
	align-items: center;
	min-height: 100vh;
	box-sizing: border-box;
}

.hero-cover__content {
	max-width: 580px;
	color: #fff;
}

.hero-cover__content .hero-badge {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.18);
	color: rgba(255, 255, 255, 0.92);
}

.hero-cover__content .hero-title {
	color: #fff;
}

.hero-cover__content .hero-title span {
	color: #fff;
	-webkit-text-fill-color: #fff;
}

.hero-cover__content .hero-subtitle {
	color: rgba(255, 255, 255, 0.78);
}

.hero-cover__content .hero-actions {
	justify-content: flex-start;
}

.hero-cover__content .hero-stat-value {
	color: #fff;
}

.hero-cover__content .hero-stat-label {
	color: rgba(255, 255, 255, 0.6);
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--radius-sm);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 28px;
}

.screenshots-band {
	background: #fff;
	padding-top: 80px;
	border-top: 1px solid var(--color-border);
}

.screenshots-band__head {
	text-align: center;
	margin-bottom: 48px;
}



.hero-badge-dot {
	width: 6px;
	height: 6px;
	background: rgba(255, 255, 255, 0.85);
	border-radius: 0;
}

.hero-title {
	font-size: clamp(2.5rem, 5vw, 3.75rem);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.03em;
	margin-bottom: 24px;
}

.hero-title span {
	color: var(--color-navy);
}

.hero-subtitle {
	font-size: 1.15rem;
	line-height: 1.7;
	color: var(--color-text-muted);
	margin-bottom: 36px;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 40px;
}

.hero-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
}

.hero-stat-value {
	font-size: 1.35rem;
	font-weight: 800;
	color: var(--color-navy);
	line-height: 1;
	margin-bottom: 4px;
}

.hero-stat-label {
	font-size: 13px;
	color: var(--color-text-muted);
	font-weight: 500;
}

.hero-slider-wrap {
	width: 100%;
	padding: 0 0 72px;
	background: #fff;
}

.hero-carousel {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 32px;
}

.hero-slide {
	flex: 0 0 min(100%, 1040px);
	scroll-snap-align: center;
}

.hero-slide-frame {
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow:
		0 1px 2px rgba(15, 39, 68, 0.04),
		0 8px 24px rgba(15, 39, 68, 0.07);
	border: 1px solid #d8dee6;
	background: #fff;
}

.hero-slide-frame img {
	width: 100%;
	display: block;
}

.hero-slide-caption {
	text-align: center;
	padding: 24px 20px 0;
	max-width: 600px;
	margin: 0 auto;
}

.hero-slide-caption h3 {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--color-navy);
	margin-bottom: 6px;
	letter-spacing: -0.01em;
}

.hero-slide-caption p {
	font-size: 15px;
	color: var(--color-text-muted);
	line-height: 1.65;
}

.hero-slide-tag {
	display: none;
}

/* ==========================================================================
   Trusted By / Logos
   ========================================================================== */
.trusted {
	padding: 48px 0;
	background: var(--color-surface);
	border-bottom: 1px solid var(--color-border);
}

.trusted-label {
	text-align: center;
	font-size: 13px;
	font-weight: 600;
	color: var(--color-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 28px;
}

.trusted-logos {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 48px;
	opacity: 0.5;
}

.trusted-logo {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--color-navy);
	letter-spacing: -0.02em;
}

/* ==========================================================================
   Features
   ========================================================================== */
.features {
	background: var(--color-bg);
}

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

.feature-card {
	position: relative;
	padding: 36px 28px;
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	transition: all var(--transition);
}

.feature-card:hover {
	border-color: #c5cdd6;
	box-shadow: var(--shadow-sm);
	transform: none;
}

.feature-card--lead {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 24px;
	align-items: start;
	padding: 40px 36px;
	background: var(--color-bg);
	border-color: var(--color-border);
}

.feature-card--lead .feature-icon {
	margin-bottom: 0;
}

@media (max-width: 768px) {
	.feature-card--lead {
		grid-template-columns: 1fr;
	}
}

.feature-icon {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-surface-alt);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	font-size: 24px;
	margin-bottom: 20px;
}

.feature-title {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--color-navy);
	margin-bottom: 10px;
}

.feature-desc {
	font-size: 15px;
	color: var(--color-text-muted);
	line-height: 1.65;
}

/* ==========================================================================
   Platform Preview
   ========================================================================== */
.platform-preview {
	padding: 80px 0 100px;
	background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-surface) 100%);
}

.platform-preview-inner {
	text-align: center;
}

.platform-preview-frame {
	margin-top: 48px;
	border-radius: var(--radius-xl);
	overflow: hidden;
	box-shadow: var(--shadow-xl);
	border: 1px solid var(--color-border);
}

.platform-preview-frame img {
	width: 100%;
	display: block;
}

/* ==========================================================================
   How It Works
   ========================================================================== */
.how-it-works {
	background: var(--color-surface);
}

.steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	position: relative;
}

.steps::before {
	content: '';
	position: absolute;
	top: 40px;
	left: 16.66%;
	right: 16.66%;
	height: 1px;
	background: var(--color-border);
}

.step {
	text-align: center;
	position: relative;
}

.step-number {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--color-navy);
	position: relative;
	z-index: 1;
}

.step-title {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--color-navy);
	margin-bottom: 10px;
}

.step-desc {
	font-size: 15px;
	color: var(--color-text-muted);
	max-width: 280px;
	margin: 0 auto;
}

/* ==========================================================================
   Planning showcase — paired panels
   ========================================================================== */
.showcase--planning {
	background: var(--color-surface);
}

.showcase-pair {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.showcase-panel {
	display: flex;
	flex-direction: column;
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}

.showcase-panel__screen {
	aspect-ratio: 16 / 10;
	background: var(--color-surface-alt);
	border-bottom: 1px solid var(--color-border);
	overflow: hidden;
}

.showcase-panel__screen img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	display: block;
}

.showcase-panel__body {
	padding: 24px 24px 28px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.showcase-panel__label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-text-muted);
	margin-bottom: 10px;
}

.showcase-panel__title {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--color-navy);
	margin-bottom: 10px;
	letter-spacing: -0.01em;
}

.showcase-panel__text {
	font-size: 15px;
	color: var(--color-text-muted);
	line-height: 1.65;
	margin: 0;
}

.showcase-points {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px 40px;
	margin-top: 48px;
	padding-top: 48px;
	border-top: 1px solid var(--color-border);
}

.showcase-point__title {
	font-size: 15px;
	font-weight: 700;
	color: var(--color-navy);
	margin-bottom: 6px;
	letter-spacing: -0.01em;
}

.showcase-point__text {
	font-size: 14px;
	color: var(--color-text-muted);
	line-height: 1.65;
	margin: 0;
}

/* ==========================================================================
   Screenshots Carousel
   ========================================================================== */
.screenshots-section {
	background: var(--color-surface);
}

.carousel {
	position: relative;
	display: flex;
	align-items: center;
	gap: 16px;
}

.carousel-track {
	display: flex;
	gap: 24px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	padding: 8px 4px 24px;
	scrollbar-width: none;
	flex: 1;
}

.carousel-track::-webkit-scrollbar {
	display: none;
}

.showcase-slide {
	flex: 0 0 min(100%, 720px);
	scroll-snap-align: start;
}

.showcase-slide.tall .shot-frame img {
	max-height: 520px;
	object-fit: contain;
	object-position: top center;
	background: #f1f5f9;
}

.shot-frame {
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow:
		0 1px 2px rgba(15, 39, 68, 0.04),
		0 8px 24px rgba(15, 39, 68, 0.07);
	border: 1px solid #d8dee6;
	background: #fff;
}

.shot-frame img {
	width: 100%;
	display: block;
}

.showcase-caption {
	margin-top: 16px;
	font-size: 15px;
	color: var(--color-text-muted);
	line-height: 1.6;
}

.showcase-caption b {
	color: var(--color-navy);
}

.carousel-arrow {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid #d8dee6;
	background: #fff;
	color: var(--color-navy);
	font-size: 18px;
	cursor: pointer;
	transition: all var(--transition);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow-sm);
}

.carousel-arrow:hover {
	background: var(--color-navy);
	color: #fff;
	border-color: var(--color-navy);
	box-shadow: var(--shadow-md);
}

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

.carousel-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: none;
	background: var(--color-border);
	cursor: pointer;
	padding: 0;
	transition: all var(--transition);
}

.carousel-dot.is-active {
	background: var(--color-navy);
	width: 24px;
	border-radius: 4px;
}

/* ==========================================================================
   Contact / Quote
   ========================================================================== */
.contact-section {
	background: var(--color-bg);
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

.contact-points {
	margin-top: 28px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.contact-points li {
	position: relative;
	padding-left: 24px;
	font-size: 15px;
	color: var(--color-text-muted);
}

.contact-points li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--color-navy);
	font-weight: 700;
}

.contact-card {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-xl);
	padding: 40px 36px;
	box-shadow: var(--shadow-md);
}

.contact-card h3 {
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--color-navy);
	margin-bottom: 12px;
}

.contact-card > p {
	color: var(--color-text-muted);
	margin-bottom: 28px;
}

.contact-actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.contact-actions .btn {
	width: 100%;
}

.contact-note {
	margin-top: 20px;
	font-size: 13px;
	color: var(--color-text-muted);
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials {
	background: var(--color-bg);
}

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

.testimonial-card {
	padding: 32px;
	background: var(--color-surface);
	border-radius: var(--radius-lg);
	border: 1px solid var(--color-border);
}

.testimonial-stars {
	color: #f59e0b;
	font-size: 14px;
	margin-bottom: 16px;
	letter-spacing: 2px;
}

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

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 12px;
}

.testimonial-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: 700;
	font-size: 16px;
	flex-shrink: 0;
}

.testimonial-name {
	font-size: 14px;
	font-weight: 700;
	color: var(--color-navy);
}

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

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
	background: var(--color-surface);
}

.faq-list {
	max-width: 760px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.faq-item {
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	overflow: hidden;
}

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

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

.faq-icon {
	font-size: 20px;
	color: var(--color-text-muted);
	transition: transform var(--transition);
	flex-shrink: 0;
	margin-left: 16px;
}

.faq-item.is-open .faq-icon {
	transform: rotate(45deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.is-open .faq-answer {
	max-height: 300px;
}

.faq-answer-inner {
	padding: 0 24px 20px;
	font-size: 15px;
	color: var(--color-text-muted);
	line-height: 1.7;
}

/* ==========================================================================
   CTA
   ========================================================================== */
.cta {
	padding: 100px 0;
}

.cta-box {
	position: relative;
	background: var(--color-navy);
	border-radius: var(--radius-md);
	padding: 80px 60px;
	text-align: center;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.cta-title {
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 800;
	color: #fff;
	margin-bottom: 16px;
	letter-spacing: -0.02em;
}

.cta-desc {
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 36px;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
	background: var(--color-navy-dark);
	color: rgba(255, 255, 255, 0.7);
	padding: 80px 0 32px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 48px;
	margin-bottom: 60px;
}

.footer-brand img {
	height: 36px;
	margin-bottom: 16px;
	filter: brightness(0) invert(1);
}

.footer-brand p {
	font-size: 14px;
	line-height: 1.7;
	max-width: 280px;
}

.footer-heading {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 20px;
}

.footer-links {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer-links a {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
	transition: color var(--transition);
}

.footer-links a:hover {
	color: #fff;
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 32px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 13px;
}

.footer-social {
	display: flex;
	gap: 16px;
}

.footer-social a {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	transition: all var(--transition);
}

.footer-social a:hover {
	background: rgba(255, 255, 255, 0.16);
	color: #fff;
}

/* ==========================================================================
   Blog / Inner pages
   ========================================================================== */
.page-header {
	padding: 140px 0 60px;
	background: var(--color-surface);
	text-align: center;
}

.page-title {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--color-navy);
}

.content-area {
	padding: 60px 0 100px;
}

.entry-content {
	max-width: 760px;
	margin: 0 auto;
	font-size: 1.05rem;
	line-height: 1.8;
}

.entry-content h2, .entry-content h3 {
	color: var(--color-navy);
	margin: 2em 0 0.75em;
}

.entry-content p {
	margin-bottom: 1.25em;
	color: var(--color-text-muted);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
	.hero-cover__inner {
		padding: calc(var(--header-height) + 40px) 20px 56px;
		min-height: auto;
	}

	.hero-cover__content {
		max-width: none;
	}

	.hero-cover__shade {
		background: linear-gradient(
			180deg,
			rgba(10, 26, 46, 0.9) 0%,
			rgba(10, 26, 46, 0.72) 55%,
			rgba(10, 26, 46, 0.45) 100%
		);
	}

	.showcase-pair {
		grid-template-columns: 1fr;
	}

	.showcase-points {
		grid-template-columns: 1fr;
		gap: 24px;
	}

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

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

	.steps::before {
		display: none;
	}

}

@media (max-width: 768px) {
	.section {
		padding: 72px 0;
	}

	.site-nav {
		position: fixed;
		top: var(--header-height);
		left: 0;
		right: 0;
		background: #fff;
		flex-direction: column;
		padding: 24px;
		gap: 0;
		box-shadow: var(--shadow-lg);
		transform: translateY(-120%);
		opacity: 0;
		pointer-events: none;
		transition: all var(--transition);
	}

	.site-nav.is-open {
		transform: translateY(0);
		opacity: 1;
		pointer-events: all;
	}

	.nav-menu {
		flex-direction: column;
		width: 100%;
		gap: 0;
	}

	.nav-link {
		color: var(--color-text) !important;
		padding: 14px 0;
		border-bottom: 1px solid var(--color-border);
		width: 100%;
	}

	.header-actions {
		width: 100%;
		margin-top: 16px;
		flex-direction: column;
	}

	.header-actions .btn {
		width: 100%;
	}

	.menu-toggle {
		display: flex;
	}

	.hero-stats {
		flex-wrap: wrap;
		gap: 24px;
	}

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

	.carousel-arrow {
		display: none;
	}

	.showcase-slide {
		flex-basis: 100%;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 16px;
		text-align: center;
	}

	.cta-box {
		padding: 48px 28px;
	}
}