/* COBBLED LIMITED — Premium Creative Platform
   Glassmorphism + Dark theme + Gold accents
   (styles for all pages) */

:root {
	--bg-primary: #0a0a0f;
	--bg-secondary: #12121a;
	--bg-glass: rgba(255, 255, 255, 0.03);
	--bg-glass-hover: rgba(255, 255, 255, 0.06);
	--glass-border: rgba(255, 255, 255, 0.08);
	--text-primary: #ffffff;
	--text-secondary: rgba(255, 255, 255, 0.65);
	--text-muted: rgba(255, 255, 255, 0.4);
	--accent-gold: #d4a857;
	--accent-gold-light: #e8c172;
	--accent-purple: #8b5cf6;
	--accent-blue: #3b82f6;
	--gradient-1: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 50%, #06b6d4 100%);
	--gradient-2: linear-gradient(135deg, #d4a857 0%, #f59e0b 100%);
	--font-display: 'Segoe UI', system-ui, -apple-system, sans-serif;
	--font-body: 'Segoe UI', system-ui, sans-serif;
	--header-h: 80px;
	--container-lg: 1400px;
	--container-md: 1100px;
	--container-sm: 800px;
	--radius-sm: 8px;
	--radius-md: 16px;
	--radius-lg: 24px;
	--radius-xl: 32px;
	--shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.3);
	--shadow-glow: 0 0 60px rgba(139, 92, 246, 0.15);
	--transition-fast: 0.2s ease;
	--transition-normal: 0.35s ease;
	--transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: var(--font-body);
	background: var(--bg-primary);
	color: var(--text-primary);
	line-height: 1.7;
	overflow-x: hidden;
	min-height: 100vh;
}

/* ========== BACKGROUND EFFECTS ========== */
.page-bg {
	position: fixed;
	inset: 0;
	z-index: -1;
	overflow: hidden;
	background: var(--bg-primary);
}

.blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.5;
	animation: blobFloat 20s ease-in-out infinite;
}

.blob-1 {
	width: 600px;
	height: 600px;
	background: var(--accent-purple);
	top: -200px;
	right: -100px;
	animation-delay: 0s;
}

.blob-2 {
	width: 500px;
	height: 500px;
	background: var(--accent-blue);
	bottom: -150px;
	left: -100px;
	animation-delay: -7s;
}

.blob-3 {
	width: 400px;
	height: 400px;
	background: var(--accent-gold);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0.25;
	animation-delay: -14s;
}

@keyframes blobFloat {
	0%, 100% { transform: translate(0, 0) scale(1); }
	25% { transform: translate(30px, -30px) scale(1.05); }
	50% { transform: translate(-20px, 20px) scale(0.95); }
	75% { transform: translate(20px, 10px) scale(1.02); }
}

.blob-3 {
	animation-name: blobFloatCenter;
}

@keyframes blobFloatCenter {
	0%, 100% { transform: translate(-50%, -50%) scale(1); }
	25% { transform: translate(-45%, -55%) scale(1.1); }
	50% { transform: translate(-55%, -45%) scale(0.9); }
	75% { transform: translate(-48%, -52%) scale(1.05); }
}


/* ========== LAYOUT ========== */
.container {
	width: 100%;
	max-width: var(--container-lg);
	margin: 0 auto;
	padding: 0 clamp(20px, 4vw, 60px);
}

.container-md {
	max-width: var(--container-md);
}

.container-sm {
	max-width: var(--container-sm);
}


/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
	color: var(--text-secondary);
}

a {
	color: var(--accent-gold);
	text-decoration: none;
	transition: color var(--transition-fast);
}

a:hover {
	color: var(--accent-gold-light);
}


/* ========== BUTTONS ========== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 600;
	border: none;
	border-radius: var(--radius-md);
	cursor: pointer;
	transition: all var(--transition-normal);
	text-decoration: none;
}

.btn-primary {
	background: var(--gradient-2);
	color: var(--bg-primary);
	box-shadow: 0 4px 24px rgba(212, 168, 87, 0.3);
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 32px rgba(212, 168, 87, 0.4);
	color: var(--bg-primary);
}

.btn-outline {
	background: transparent;
	color: var(--text-primary);
	border: 1px solid var(--glass-border);
	backdrop-filter: blur(10px);
}

.btn-outline:hover {
	background: var(--bg-glass-hover);
	border-color: var(--accent-gold);
	color: var(--accent-gold);
}


/* ========== HEADER ========== */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: var(--header-h);
	z-index: 1000;
	transition: all var(--transition-normal);
}

.site-header::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(10, 10, 15, 0.8);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--glass-border);
	opacity: 0;
	transition: opacity var(--transition-normal);
}

.site-header.scrolled::before {
	opacity: 1;
}

.header-inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
	z-index: 1;
}

.logo {
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--text-primary);
	letter-spacing: 0.03em;
}

.logo:hover {
	color: var(--accent-gold);
}

.nav-desktop {
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.nav-desktop a {
	position: relative;
	padding: 0.6rem 1rem;
	color: var(--text-secondary);
	font-size: 0.95rem;
	font-weight: 500;
	border-radius: var(--radius-sm);
	transition: all var(--transition-fast);
}

.nav-desktop a:hover {
	color: var(--text-primary);
	background: var(--bg-glass);
}

.nav-desktop a.active {
	color: var(--accent-gold);
}


/* Burger */
.burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 48px;
	height: 48px;
	background: var(--bg-glass);
	border: 1px solid var(--glass-border);
	border-radius: var(--radius-sm);
	cursor: pointer;
	gap: 6px;
	transition: all var(--transition-fast);
}

.burger:hover {
	background: var(--bg-glass-hover);
}

.burger span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--text-primary);
	border-radius: 1px;
	transition: all var(--transition-fast);
}

.burger.open span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 6px);
}

.burger.open span:nth-child(2) {
	opacity: 0;
}

.burger.open span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -6px);
}

.nav-mobile {
	position: fixed;
	top: var(--header-h);
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(10, 10, 15, 0.98);
	backdrop-filter: blur(20px);
	display: flex;
	flex-direction: column;
	padding: 2rem;
	gap: 0.5rem;
	transform: translateX(100%);
	transition: transform var(--transition-normal);
	z-index: 999;
}

.nav-mobile.active {
	transform: translateX(0);
}

.nav-mobile a {
	display: block;
	padding: 1.25rem 1.5rem;
	color: var(--text-primary);
	font-size: 1.1rem;
	font-weight: 500;
	border-radius: var(--radius-md);
	border: 1px solid transparent;
	transition: all var(--transition-fast);
}

.nav-mobile a:hover {
	background: var(--bg-glass);
	border-color: var(--glass-border);
	color: var(--accent-gold);
}


/* ========== HERO SECTION ========== */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: calc(var(--header-h) + 60px) 0 80px;
	position: relative;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr 0.85fr;
	gap: 60px;
	align-items: center;
}

.hero-content {
	max-width: 620px;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	background: var(--bg-glass);
	border: 1px solid var(--glass-border);
	border-radius: 100px;
	font-size: 0.85rem;
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
}

.hero-badge span {
	width: 8px;
	height: 8px;
	background: var(--accent-gold);
	border-radius: 50%;
	animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.5; transform: scale(1.2); }
}

.hero h1 {
	margin-bottom: 1.5rem;
}

.hero h1 .highlight {
	background: var(--gradient-1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-text {
	font-size: 1.15rem;
	margin-bottom: 2.5rem;
	max-width: 520px;
}

.hero-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.hero-visual {
	position: relative;
}

.hero-card-stack {
	position: relative;
	height: 480px;
}

.hero-card {
	position: absolute;
	background: var(--bg-glass);
	border: 1px solid var(--glass-border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-glass);
	transition: all var(--transition-slow);
}

.hero-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.hero-card-1 {
	width: 320px;
	height: 400px;
	top: 40px;
	left: 0;
	z-index: 3;
}

.hero-card-2 {
	width: 280px;
	height: 350px;
	top: 0;
	left: 180px;
	z-index: 2;
	opacity: 0.8;
}

.hero-card-3 {
	width: 240px;
	height: 300px;
	top: 100px;
	left: 320px;
	z-index: 1;
	opacity: 0.6;
}

.hero-card-stack:hover .hero-card-1 {
	transform: translateX(-20px) rotate(-3deg);
}

.hero-card-stack:hover .hero-card-2 {
	transform: translateX(10px) rotate(2deg);
	opacity: 0.9;
}

.hero-card-stack:hover .hero-card-3 {
	transform: translateX(30px) rotate(4deg);
	opacity: 0.8;
}


/* ========== SECTIONS ========== */
section {
	padding: 100px 0;
}

.section-header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 60px;
}

.section-header h2 {
	margin-bottom: 1rem;
}

.section-header p {
	font-size: 1.1rem;
}

.section-label {
	display: inline-block;
	padding: 0.4rem 1rem;
	background: var(--bg-glass);
	border: 1px solid var(--glass-border);
	border-radius: 100px;
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--accent-gold);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 1rem;
}


/* ========== GLASS CARDS ========== */
.glass-card {
	background: var(--bg-glass);
	border: 1px solid var(--glass-border);
	border-radius: var(--radius-lg);
	padding: 2rem;
	transition: all var(--transition-normal);
}

.glass-card:hover {
	background: var(--bg-glass-hover);
	border-color: rgba(255, 255, 255, 0.12);
	transform: translateY(-4px);
	box-shadow: var(--shadow-glow);
}


/* ========== FEATURE CARDS ========== */
.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.feature-card {
	position: relative;
	overflow: hidden;
}

.feature-card-img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: var(--radius-md);
	margin-bottom: 1.5rem;
	transition: transform var(--transition-normal);
}

.feature-card:hover .feature-card-img {
	transform: scale(1.03);
}

.feature-card h3 {
	margin-bottom: 0.75rem;
}

.feature-card p {
	font-size: 0.95rem;
}

.feature-icon {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--gradient-1);
	border-radius: var(--radius-md);
	margin-bottom: 1.25rem;
	font-size: 1.5rem;
}


/* ========== SPLIT SECTION ========== */
.split-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.split-section.reverse {
	direction: rtl;
}

.split-section.reverse > * {
	direction: ltr;
}

.split-content h2 {
	margin-bottom: 1.25rem;
}

.split-content p {
	margin-bottom: 1.5rem;
}

.split-image {
	position: relative;
}

.split-image img {
	width: 100%;
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-glass);
}

.split-image::before {
	content: '';
	position: absolute;
	inset: -20px;
	background: var(--gradient-1);
	border-radius: var(--radius-xl);
	opacity: 0.15;
	z-index: -1;
	filter: blur(40px);
}


/* ========== ACCORDION ========== */
.accordion-wrapper {
	max-width: 800px;
	margin: 0 auto;
}

.accordion-item {
	background: var(--bg-glass);
	border: 1px solid var(--glass-border);
	border-radius: var(--radius-md);
	margin-bottom: 12px;
	overflow: hidden;
	transition: all var(--transition-fast);
}

.accordion-item:hover {
	border-color: rgba(255, 255, 255, 0.12);
}

.accordion-trigger {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.25rem 1.5rem;
	background: transparent;
	border: none;
	color: var(--text-primary);
	font-family: var(--font-body);
	font-size: 1.05rem;
	font-weight: 600;
	text-align: left;
	cursor: pointer;
	transition: all var(--transition-fast);
}

.accordion-trigger:hover {
	color: var(--accent-gold);
}

.accordion-icon {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--bg-glass);
	border-radius: var(--radius-sm);
	font-size: 1.25rem;
	color: var(--accent-gold);
	transition: all var(--transition-fast);
}

.accordion-item.open .accordion-icon {
	transform: rotate(45deg);
}

.accordion-panel {
	max-height: 0;
	overflow: hidden;
	transition: max-height var(--transition-normal);
}

.accordion-item.open .accordion-panel {
	max-height: 300px;
}

.accordion-panel-inner {
	padding: 0 1.5rem 1.5rem;
	color: var(--text-secondary);
	line-height: 1.7;
}


/* ========== SLIDER / SHOWCASE ========== */
.showcase-slider {
	display: flex;
	gap: 24px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding: 20px 0;
	scrollbar-width: none;
}

.showcase-slider::-webkit-scrollbar {
	display: none;
}

.showcase-item {
	flex: 0 0 340px;
	scroll-snap-align: start;
}

.showcase-item .glass-card {
	height: 100%;
}

.showcase-item img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: var(--radius-md);
	margin-bottom: 1.25rem;
}

.showcase-item h3 {
	font-size: 1.15rem;
	margin-bottom: 0.5rem;
}


/* ========== STATS SECTION ========== */
.stats-section {
	background: var(--bg-secondary);
	border-top: 1px solid var(--glass-border);
	border-bottom: 1px solid var(--glass-border);
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.stat-item {
	text-align: center;
	padding: 2.5rem 1.5rem;
}

.stat-number {
	display: block;
	font-size: clamp(2.5rem, 4vw, 3.5rem);
	font-weight: 700;
	background: var(--gradient-2);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.1;
	margin-bottom: 0.5rem;
}

.stat-label {
	display: block;
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
}

.stat-item p {
	font-size: 0.9rem;
	margin: 0;
}


/* ========== PROCESS SECTION ========== */
.process-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.process-step {
	position: relative;
	padding: 2.5rem 2rem;
	text-align: center;
}

.process-number {
	font-size: 3.5rem;
	font-weight: 800;
	background: var(--gradient-1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	opacity: 0.3;
	line-height: 1;
	margin-bottom: 1rem;
}

.process-step h3 {
	margin-bottom: 0.75rem;
}

.process-step p {
	font-size: 0.95rem;
	margin: 0;
}


/* ========== CTA SECTION ========== */
.cta-section {
	text-align: center;
	position: relative;
}

.cta-box {
	background: var(--bg-glass);
	border: 1px solid var(--glass-border);
	border-radius: var(--radius-xl);
	padding: 80px 40px;
	position: relative;
	overflow: hidden;
}

.cta-box::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle at center, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
	animation: ctaGlow 10s ease-in-out infinite;
}

@keyframes ctaGlow {
	0%, 100% { transform: translate(0, 0); }
	50% { transform: translate(10%, 10%); }
}

.cta-box > * {
	position: relative;
	z-index: 1;
}

.cta-box h2 {
	margin-bottom: 1rem;
}

.cta-box p {
	font-size: 1.1rem;
	margin-bottom: 2rem;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}


/* ========== FOOTER ========== */
.site-footer {
	background: var(--bg-secondary);
	border-top: 1px solid var(--glass-border);
	padding: 80px 0 30px;
	margin-top: 60px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 60px;
	margin-bottom: 60px;
}

.footer-brand p {
	margin-top: 1rem;
	font-size: 0.95rem;
	max-width: 300px;
}

.footer-col h4 {
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--text-muted);
	margin-bottom: 1.25rem;
}

.footer-col a {
	display: block;
	color: var(--text-secondary);
	font-size: 0.95rem;
	padding: 0.35rem 0;
	transition: all var(--transition-fast);
}

.footer-col a:hover {
	color: var(--accent-gold);
	transform: translateX(4px);
}

.footer-col p {
	font-size: 0.95rem;
	line-height: 1.8;
}

.footer-bottom {
	padding-top: 30px;
	border-top: 1px solid var(--glass-border);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	font-size: 0.9rem;
	color: var(--text-muted);
}

.footer-legal {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
}

.footer-legal a {
	color: var(--text-muted);
	font-size: 0.9rem;
}

.footer-legal a:hover {
	color: var(--accent-gold);
}

.business-id {
	font-size: 0.85rem;
}


/* ========== COOKIE BANNER ========== */
.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(18, 18, 26, 0.95);
	backdrop-filter: blur(20px);
	border-top: 1px solid var(--glass-border);
	padding: 1.25rem 1.5rem;
	z-index: 1001;
	display: none;
	box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.4);
}

.cookie-banner.visible {
	display: block;
}

.cookie-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.25rem;
}

.cookie-banner p {
	flex: 1;
	min-width: 280px;
	font-size: 0.95rem;
}

.cookie-banner .btn {
	padding: 0.75rem 1.5rem;
}


/* ========== FORMS ========== */
.form-group {
	margin-bottom: 1.25rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--text-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
	width: 100%;
	padding: 1rem 1.25rem;
	background: var(--bg-glass);
	border: 1px solid var(--glass-border);
	border-radius: var(--radius-md);
	color: var(--text-primary);
	font-family: var(--font-body);
	font-size: 1rem;
	transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
	outline: none;
	border-color: var(--accent-gold);
	box-shadow: 0 0 0 3px rgba(212, 168, 87, 0.15);
}

.form-group textarea {
	min-height: 140px;
	resize: vertical;
}


/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
	padding: calc(var(--header-h) + 80px) 0 60px;
	text-align: center;
	position: relative;
}

.page-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 800px;
	height: 400px;
	background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
	pointer-events: none;
}

.page-hero h1 {
	margin-bottom: 1rem;
	position: relative;
}

.page-hero p {
	font-size: 1.15rem;
	max-width: 600px;
	margin: 0 auto;
	position: relative;
}


/* ========== MAIN CONTENT (policies, etc) ========== */
.main-content {
	padding: 60px 0 100px;
}

.main-content h2 {
	font-size: 1.75rem;
	margin: 3rem 0 1rem;
}

.main-content h3 {
	font-size: 1.35rem;
	margin: 2rem 0 0.75rem;
}

.main-content h4 {
	font-size: 1.1rem;
	margin: 1.5rem 0 0.5rem;
}

.main-content p,
.main-content li {
	margin-bottom: 1rem;
}

.main-content ul,
.main-content ol {
	padding-left: 1.5rem;
	margin-bottom: 1.5rem;
}

.main-content ul li {
	list-style: disc;
}

.main-content strong {
	color: var(--text-primary);
}


/* ========== THANKS PAGE ========== */
.thanks-section {
	min-height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: var(--header-h) 20px 40px;
}

.thanks-content h1 {
	margin-bottom: 1rem;
}

.thanks-content p {
	font-size: 1.15rem;
	margin-bottom: 2rem;
}


/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
	.hero-grid {
		grid-template-columns: 1fr;
		gap: 60px;
	}
	
	.hero-content {
		text-align: center;
		max-width: 100%;
	}
	
	.hero-text {
		margin-left: auto;
		margin-right: auto;
	}
	
	.hero-buttons {
		justify-content: center;
	}
	
	.hero-visual {
		order: -1;
	}
	
	.hero-card-stack {
		height: 380px;
		max-width: 500px;
		margin: 0 auto;
	}
	
	.hero-card-1 {
		width: 260px;
		height: 320px;
		left: 50%;
		transform: translateX(-70%);
	}
	
	.hero-card-2 {
		width: 220px;
		height: 280px;
		left: 50%;
		transform: translateX(-30%);
	}
	
	.hero-card-3 {
		width: 180px;
		height: 240px;
		left: 50%;
		transform: translateX(10%);
	}
	
	.features-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.process-grid {
		grid-template-columns: 1fr;
		max-width: 500px;
		margin: 0 auto;
	}
	
	.split-section {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.split-section.reverse {
		direction: ltr;
	}
	
	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}
}

@media (max-width: 900px) {
	.nav-desktop {
		display: none;
	}
	
	.burger {
		display: flex;
	}
}

@media (max-width: 700px) {
	:root {
		--header-h: 70px;
	}
	
	section {
		padding: 70px 0;
	}
	
	.features-grid {
		grid-template-columns: 1fr;
	}
	
	.stats-grid {
		grid-template-columns: 1fr;
	}
	
	.stat-item {
		padding: 2rem 1.5rem;
	}
	
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 30px;
		text-align: center;
	}
	
	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}
	
	.footer-legal {
		justify-content: center;
	}
	
	.showcase-item {
		flex: 0 0 300px;
	}
	
	.hero-card-stack {
		height: 320px;
	}
	
	.hero-card-1 {
		width: 220px;
		height: 270px;
	}
	
	.hero-card-2 {
		width: 180px;
		height: 230px;
	}
	
	.hero-card-3 {
		width: 150px;
		height: 200px;
	}
	
	.cta-box {
		padding: 50px 25px;
	}
	
	.cookie-inner {
		flex-direction: column;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.hero-card-stack {
		height: 280px;
	}
	
	.hero-card-1 {
		width: 180px;
		height: 220px;
	}
	
	.hero-card-2 {
		width: 150px;
		height: 190px;
	}
	
	.hero-card-3 {
		width: 120px;
		height: 160px;
	}
}


/* small human quirks - extra spacing before footer col headers 
   just spacing consitency check  */
.footer-brand .logo {
	font-size: 1.25rem;
}


/* Contact page grid responsive */
@media (max-width: 900px) {
	.main-content > .container > div[style*="grid-template-columns: 1fr 1.2fr"] {
		display: block !important;
	}
	
	.main-content > .container > div[style*="grid-template-columns: 1fr 1.2fr"] > div:first-child {
		margin-bottom: 2rem;
	}
}
