/* Custom stylesheet for ShareRaven WordPress Theme */

/* ==========================================================================
   1. VARIABLES & DESIGN TOKENS
   ========================================================================== */
:root {
	/* Color Palette */
	--bg-primary: #0A0B0E;
	--bg-secondary: #12131A;
	--bg-tertiary: #1A1C26;
	
	--accent-purple: #8B5CF6;
	--accent-blue: #3B82F6;
	--accent-gradient: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-blue) 100%);
	--accent-gradient-hover: linear-gradient(135deg, #a78bfa 0%, #60a5fa 100%);
	
	--text-primary: #F8FAFC;
	--text-secondary: #94A3B8;
	--text-muted: #64748B;
	
	--border-light: rgba(255, 255, 255, 0.08);
	--border-focus: rgba(139, 92, 246, 0.5);
	
	--glass-bg: rgba(255, 255, 255, 0.03);
	--glass-border: rgba(255, 255, 255, 0.07);
	--glass-blur: blur(20px);
	
	/* Layout */
	--container-width: 1200px;
	--header-height: 80px;
	
	/* Fonts */
	--font-primary: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--font-headings: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ==========================================================================
   2. RESET & BASE STYLES
   ========================================================================== */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	background-color: var(--bg-primary);
}

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

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-headings);
	color: var(--text-primary);
	font-weight: 700;
	line-height: 1.2;
}

a {
	color: var(--accent-blue);
	text-decoration: none;
	transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
	color: var(--accent-purple);
}

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

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

/* Layout Utilities */
.py-60 { padding-top: 60px; padding-bottom: 60px; }
.py-100 { padding-top: 100px; padding-bottom: 100px; }
.mb-10 { margin-bottom: 10px; }
.mb-15 { margin-bottom: 15px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.small { font-size: 0.875rem; }
.font-outfit { font-family: var(--font-headings); }

/* Glow Effects */
.text-glow {
	background: var(--accent-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-headings);
	font-weight: 600;
	font-size: 1rem;
	padding: 12px 28px;
	border-radius: 30px;
	border: none;
	cursor: pointer;
	transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.btn:active {
	transform: scale(0.97);
}

.btn-primary {
	background: var(--accent-gradient);
	color: #ffffff;
}

.btn-primary:hover {
	background: var(--accent-gradient-hover);
	color: #ffffff;
	box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.btn-secondary {
	background: var(--glass-bg);
	color: var(--text-primary);
	border: 1px solid var(--glass-border);
	backdrop-filter: var(--glass-blur);
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.2);
	color: #ffffff;
}

.btn-sm {
	padding: 8px 18px;
	font-size: 0.875rem;
}

/* Cards */
.card {
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: 18px;
	backdrop-filter: var(--glass-blur);
	padding: 30px;
	transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
	transform: translateY(-5px);
	border-color: rgba(139, 92, 246, 0.3);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   3. HEADER & NAVIGATION
   ========================================================================== */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: var(--header-height);
	background: rgba(10, 11, 14, 0.7);
	backdrop-filter: blur(15px);
	border-bottom: 1px solid var(--border-light);
	z-index: 1000;
	transition: all 0.3s ease;
}

.site-header.scrolled {
	height: 70px;
	background: rgba(10, 11, 14, 0.85);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.header-container {
	max-width: var(--container-width);
	height: 100%;
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.site-branding {
	display: flex;
	align-items: center;
}

.logo-link {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--text-primary);
}

.header-logo {
	width: 40px;
	height: 40px;
	object-fit: contain;
	transition: transform 0.3s ease;
}

.logo-link:hover .header-logo {
	transform: rotate(5deg) scale(1.05);
}

.site-title {
	font-family: var(--font-headings);
	font-weight: 800;
	font-size: 1.4rem;
	letter-spacing: -0.5px;
}

.main-navigation ul {
	display: flex;
	list-style: none;
	gap: 32px;
}

.main-navigation a {
	color: var(--text-secondary);
	font-weight: 500;
	font-size: 0.95rem;
	padding: 8px 0;
	position: relative;
}

.main-navigation a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--accent-gradient);
	transition: width 0.3s ease;
}

.main-navigation a:hover {
	color: var(--text-primary);
}

.main-navigation a:hover::after {
	width: 100%;
}

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

.menu-toggle .icon-bar {
	width: 24px;
	height: 2px;
	background-color: var(--text-primary);
	transition: all 0.3s ease;
}

/* ==========================================================================
   4. HERO SECTION
   ========================================================================== */
.hero-section {
	padding-top: calc(var(--header-height) + 80px);
	padding-bottom: 100px;
	position: relative;
	overflow: hidden;
}

/* Background Glow Spots */
.hero-glow {
	position: absolute;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(59, 130, 246, 0.05) 50%, rgba(0, 0, 0, 0) 100%);
	top: -100px;
	right: -100px;
	z-index: 0;
	pointer-events: none;
}

.hero-glow-left {
	position: absolute;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0) 70%);
	bottom: -100px;
	left: -200px;
	z-index: 0;
	pointer-events: none;
}

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

.hero-tag {
	display: inline-block;
	background: rgba(139, 92, 246, 0.1);
	border: 1px solid rgba(139, 92, 246, 0.25);
	color: #c084fc;
	font-family: var(--font-headings);
	font-weight: 600;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 6px 14px;
	border-radius: 20px;
	margin-bottom: 24px;
}

.hero-text h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	line-height: 1.1;
	margin-bottom: 24px;
	letter-spacing: -1.5px;
}

.hero-text p {
	font-size: 1.2rem;
	color: var(--text-secondary);
	margin-bottom: 40px;
	max-width: 580px;
}

.hero-actions {
	display: flex;
	gap: 16px;
	align-items: center;
}

.app-meta-text {
	font-size: 0.85rem;
	color: var(--text-muted);
	margin-top: 15px;
}

/* macOS Window Shell for Screenshot */
.macos-window-shell {
	background: #1e1e1e;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6), 0 0 1px 1px rgba(255,255,255,0.2) inset;
	overflow: hidden;
	position: relative;
	transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.macos-window-shell:hover {
	transform: perspective(1000px) rotateY(-3deg) rotateX(2deg) translateY(-5px);
}

.macos-titlebar {
	height: 32px;
	background: #2d2d2d;
	border-bottom: 1px solid rgba(0,0,0,0.3);
	display: flex;
	align-items: center;
	padding: 0 16px;
	position: relative;
}

.macos-dots {
	display: flex;
	gap: 8px;
}

.macos-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
}

.macos-dot.red { background-color: #ff5f56; }
.macos-dot.yellow { background-color: #ffbd2e; }
.macos-dot.green { background-color: #27c93f; }

.macos-window-title {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	font-size: 0.75rem;
	color: #8c8c8c;
	font-weight: 500;
}

.macos-window-content img {
	width: 100%;
	height: auto;
	display: block;
}

/* ==========================================================================
   5. VALUE PROPOSITION SECTION
   ========================================================================== */
.value-section {
	background: var(--bg-secondary);
	position: relative;
	border-top: 1px solid var(--border-light);
	border-bottom: 1px solid var(--border-light);
}

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

.value-graphic {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.comparison-box {
	background: rgba(255,255,255,0.02);
	border: 1px solid var(--glass-border);
	border-radius: 20px;
	padding: 30px;
	width: 100%;
	max-width: 440px;
	box-shadow: 0 20px 40px rgba(0,0,0,0.4);
	position: relative;
	z-index: 1;
}

.comparison-row {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 16px 0;
}

.comparison-row:not(:last-child) {
	border-bottom: 1px solid rgba(255,255,255,0.05);
}

.comparison-icon {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	flex-shrink: 0;
	font-size: 0.8rem;
}

.comparison-icon.bad {
	background-color: rgba(239, 68, 68, 0.15);
	color: #ef4444;
}

.comparison-icon.good {
	background-color: rgba(34, 197, 94, 0.15);
	color: #22c55e;
}

.comparison-row p {
	font-size: 0.95rem;
}

.comparison-row strong {
	color: var(--text-primary);
	display: block;
	margin-bottom: 2px;
}

.value-graphic-glow {
	position: absolute;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(0,0,0,0) 70%);
	z-index: 0;
}

/* ==========================================================================
   6. FEATURES SECTION
   ========================================================================== */
.section-header {
	max-width: 650px;
	margin: 0 auto 60px auto;
}

.section-header h2 {
	font-size: 2.5rem;
	margin-bottom: 16px;
	letter-spacing: -1px;
}

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

.feature-card {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.feature-icon-wrapper {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: var(--accent-gradient);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 8px;
}

.feature-icon-wrapper svg {
	width: 24px;
	height: 24px;
	color: #ffffff;
}

.feature-card h3 {
	font-size: 1.25rem;
}

.feature-card p {
	font-size: 0.95rem;
	line-height: 1.6;
}

/* ==========================================================================
   7. INTERACTIVE DEMO (SHARE TO X)
   ========================================================================== */
.demo-section {
	background: var(--bg-secondary);
	border-top: 1px solid var(--border-light);
	border-bottom: 1px solid var(--border-light);
}

.demo-container {
	max-width: 800px;
	margin: 0 auto;
	background: rgba(20, 21, 28, 0.6);
	border: 1px solid var(--glass-border);
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 30px 60px rgba(0,0,0,0.5);
	position: relative;
}

.demo-title {
	text-align: center;
	margin-bottom: 30px;
}

.demo-mac-desktop {
	background: #141416;
	border-radius: 12px;
	border: 1px solid rgba(255,255,255,0.08);
	overflow: hidden;
	height: 440px;
	position: relative;
	box-shadow: inset 0 0 20px rgba(0,0,0,0.8);
}

/* File image inside mockup */
.demo-file-preview {
	width: 200px;
	height: 140px;
	background: #252630;
	border-radius: 8px;
	border: 1px solid rgba(255,255,255,0.15);
	position: absolute;
	top: 50px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 12px;
}

.demo-file-image {
	max-width: 100%;
	max-height: 80px;
	object-fit: contain;
	margin-bottom: 10px;
	border-radius: 4px;
}

.demo-file-name {
	font-size: 0.8rem;
	color: var(--text-primary);
	font-weight: 500;
}

/* Share menu trigger */
.demo-share-trigger {
	position: absolute;
	top: 210px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 25;
}

/* Dropdown Menu */
.demo-share-dropdown {
	position: absolute;
	top: 255px;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(45, 45, 48, 0.95);
	border: 1px solid rgba(255,255,255,0.15);
	border-radius: 8px;
	width: 220px;
	box-shadow: 0 10px 25px rgba(0,0,0,0.5);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateX(-50%) translateY(-10px);
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	z-index: 20;
	backdrop-filter: blur(10px);
}

.demo-share-dropdown.active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateX(-50%) translateY(0);
}

.demo-dropdown-item {
	padding: 10px 14px;
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--text-primary);
	font-size: 0.85rem;
	cursor: pointer;
	transition: background-color 0.2s;
}

.demo-dropdown-item:hover {
	background-color: var(--accent-blue);
}

.demo-dropdown-item img {
	width: 16px;
	height: 16px;
	object-fit: contain;
}

/* Composer Modal */
.demo-composer {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.9);
	width: 320px;
	background: #1e1e24;
	border: 1px solid rgba(255,255,255,0.15);
	border-radius: 12px;
	box-shadow: 0 20px 50px rgba(0,0,0,0.6);
	z-index: 30;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.demo-composer.active {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, -50%) scale(1);
}

.demo-composer-header {
	padding: 12px 16px;
	border-bottom: 1px solid rgba(255,255,255,0.08);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.demo-composer-title {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--text-primary);
	display: flex;
	align-items: center;
	gap: 8px;
}

.demo-composer-title img {
	width: 16px;
	height: 16px;
}

.demo-composer-body {
	padding: 16px;
}

.demo-composer-textarea {
	width: 100%;
	height: 70px;
	background: none;
	border: none;
	outline: none;
	color: var(--text-primary);
	font-size: 0.9rem;
	resize: none;
	font-family: inherit;
}

.demo-composer-attachment {
	margin-top: 10px;
	background: rgba(0,0,0,0.2);
	border-radius: 6px;
	padding: 8px;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.75rem;
}

img.demo-composer-attachment-img {
	width: 30px;
	height: 30px;
	background: #252630;
	border-radius: 4px;
	object-fit: contain;
	border: 1px solid rgba(255,255,255,0.1);
}

.demo-composer-footer {
	padding: 12px 16px;
	border-top: 1px solid rgba(255,255,255,0.08);
	display: flex;
	justify-content: flex-end;
	gap: 10px;
}

/* Success State overlay */
.demo-success-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(10,11,14,0.9);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 40;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.demo-success-overlay.active {
	opacity: 1;
	visibility: visible;
}

.demo-success-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: rgba(34, 197, 94, 0.2);
	color: #22c55e;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	margin-bottom: 15px;
	transform: scale(0.5);
	transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.demo-success-overlay.active .demo-success-icon {
	transform: scale(1);
}

/* ==========================================================================
   8. DOWNLOAD SECTION (CTA)
   ========================================================================== */
.download-section {
	position: relative;
	overflow: hidden;
}

.download-glow {
	position: absolute;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, rgba(0,0,0,0) 70%);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 0;
	pointer-events: none;
}

.download-card {
	background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 24px;
	padding: 60px 40px;
	text-align: center;
	max-width: 900px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	box-shadow: 0 20px 50px rgba(0,0,0,0.4);
	backdrop-filter: var(--glass-blur);
}

.download-card-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 24px auto;
	filter: drop-shadow(0 10px 20px rgba(139, 92, 246, 0.3));
}

.download-card h2 {
	font-size: 2.5rem;
	margin-bottom: 16px;
}

.download-card p {
	font-size: 1.1rem;
	max-width: 600px;
	margin: 0 auto 32px auto;
}

/* ==========================================================================
   9. FAQ SECTION
   ========================================================================== */
.faq-section {
	background: var(--bg-secondary);
	border-top: 1px solid var(--border-light);
}

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

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

.faq-item summary {
	padding: 20px 24px;
	font-family: var(--font-headings);
	font-weight: 600;
	font-size: 1.05rem;
	color: var(--text-primary);
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

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

.faq-item summary::after {
	content: '+';
	font-size: 1.4rem;
	color: var(--text-muted);
	transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
	content: '−';
}

.faq-answer {
	padding: 0 24px 20px 24px;
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--text-secondary);
	border-top: 1px solid rgba(255,255,255,0.03);
	margin-top: -1px;
}

/* ==========================================================================
   10. FOOTER STYLES
   ========================================================================== */
.site-footer {
	background: var(--bg-primary);
	padding: 80px 0 40px 0;
	border-top: 1px solid var(--border-light);
}

.footer-widgets {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 60px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(255,255,255,0.05);
	margin-bottom: 30px;
}

.footer-brand-column {
	max-width: 480px;
}

.footer-branding {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
}

.footer-logo {
	width: 32px;
	height: 32px;
}

.footer-site-title {
	font-family: var(--font-headings);
	font-weight: 800;
	font-size: 1.25rem;
	color: var(--text-primary);
}

.footer-description {
	font-size: 0.9rem;
	line-height: 1.6;
}

.footer-links-column h4 {
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 16px;
	color: var(--text-primary);
}

.footer-links-column ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-links-column a {
	color: var(--text-secondary);
	font-size: 0.9rem;
}

.footer-links-column a:hover {
	color: var(--text-primary);
}

.site-info {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.8rem;
	color: var(--text-muted);
}

.site-info a {
	color: var(--text-secondary);
}

.site-info a:hover {
	color: var(--text-primary);
}

/* ==========================================================================
   11. BLOG & SINGLE POST FALLBACK STYLING
   ========================================================================== */
.posts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.post-card {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.post-card h2 a {
	color: var(--text-primary);
}

.post-card h2 a:hover {
	color: var(--accent-blue);
}

.single-post-wrapper, .page-wrapper {
	max-width: 800px;
	margin: 0 auto;
}

.single-post-content, .static-page-content {
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: 20px;
	padding: 40px;
	backdrop-filter: var(--glass-blur);
}

.entry-content {
	color: var(--text-primary);
	font-size: 1.05rem;
	line-height: 1.8;
}

.entry-content p {
	margin-bottom: 24px;
}

.entry-content h2, .entry-content h3 {
	margin-top: 40px;
	margin-bottom: 16px;
}

.entry-content ul, .entry-content ol {
	margin-bottom: 24px;
	padding-left: 20px;
}

.entry-content li {
	margin-bottom: 8px;
}

/* ==========================================================================
   12. RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 991px) {
	.hero-content-grid {
		grid-template-columns: 1fr;
		gap: 50px;
		text-align: center;
	}
	
	.hero-text p {
		margin-left: auto;
		margin-right: auto;
	}
	
	.hero-actions {
		justify-content: center;
	}
	
	.value-grid {
		grid-template-columns: 1fr;
		gap: 50px;
	}
	
	.value-graphic {
		order: -1;
	}
	
	.footer-widgets {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

@media (max-width: 767px) {
	:root {
		--header-height: 70px;
	}
	
	.main-navigation {
		position: fixed;
		top: var(--header-height);
		left: 0;
		right: 0;
		background: rgba(10, 11, 14, 0.95);
		backdrop-filter: blur(20px);
		border-bottom: 1px solid var(--border-light);
		padding: 20px 24px;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease;
	}
	
	.main-navigation.active {
		max-height: 300px;
	}
	
	.main-navigation ul {
		flex-direction: column;
		gap: 20px;
	}
	
	.menu-toggle {
		display: flex;
	}
	
	.menu-toggle.open .icon-bar:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}
	
	.menu-toggle.open .icon-bar:nth-child(2) {
		opacity: 0;
	}
	
	.menu-toggle.open .icon-bar:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}
	
	.header-cta {
		display: none; /* Hide download button in mobile nav */
	}
	
	.hero-text h1 {
		font-size: 2.2rem;
	}
	
	.section-header h2 {
		font-size: 2rem;
	}
	
	.download-card {
		padding: 40px 20px;
	}
	
	.download-card h2 {
		font-size: 2rem;
	}
	
	.site-info {
		flex-direction: column;
		gap: 15px;
		text-align: center;
	}
	
	.single-post-content, .static-page-content {
		padding: 20px;
	}
}
