/**
 * Main Stylesheet - Luxury WordPress Theme
 * Complete design system styles
 *
 * @package WaseemNasirLuxury
 * @since 1.0.0
 */

/* ==================================================
   TABLE OF CONTENTS
   ==================================================
   1. CSS Variables & Design Tokens
   2. Global Styles & Resets
   3. Typography
   4. Navigation
   5. Buttons & CTAs
   6. Cards & Components
   7. Sections
   8. Animations & Transitions
   9. Utility Classes
   10. Responsive Design
================================================== */

/* ==================================================
   1. CSS VARIABLES & DESIGN TOKENS
================================================== */
:root {
	/* Colors */
	--color-background: hsl(240, 10%, 4%);
	--color-foreground: hsl(45, 30%, 94%);
	--color-card: hsl(240, 10%, 6%);
	--color-primary: hsl(42, 75%, 55%);
	--color-primary-dark: hsl(38, 60%, 45%);
	--color-secondary: hsl(240, 8%, 12%);
	--color-border: hsl(240, 8%, 15%);
	--color-muted: hsl(240, 5%, 50%);

	/* Typography */
	--font-display: 'Cormorant Garamond', Georgia, serif;
	--font-body: 'Inter', -apple-system, sans-serif;

	/* Spacing */
	--section-padding: clamp(7rem, 15vw, 11rem);
	--container-padding: clamp(1.5rem, 4vw, 4rem);

	/* Transitions */
	--transition-buttery: cubic-bezier(0.22, 1, 0.36, 1);
	--transition-slow: 700ms;
	--transition-medium: 500ms;
	--transition-fast: 300ms;

	/* Shadows */
	--shadow-glow-sm: 0 0 40px hsl(42, 75%, 55%, 0.3);
	--shadow-glow-md: 0 0 60px hsl(42, 75%, 55%, 0.08);
	--shadow-glow-lg: 0 0 80px hsl(42, 75%, 55%, 0.15);
	--shadow-card: 0 0 60px rgba(0, 0, 0, 0.3);

	/* Border Radius */
	--radius-minimal: 0.125rem;
	--radius-subtle: 0.25rem;
}

/* ==================================================
   2. GLOBAL STYLES & RESETS
================================================== */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background-color: var(--color-background);
	color: var(--color-foreground);
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.6;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--color-primary);
	text-decoration: none;
	transition: color var(--transition-medium) var(--transition-buttery);
}

a:hover {
	color: var(--color-primary-dark);
}

::selection {
	background-color: hsl(42, 75%, 55%, 0.3);
	color: var(--color-foreground);
}

/* ==================================================
   3. TYPOGRAPHY
================================================== */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: -0.02em;
	margin: 0;
}

h1 { font-size: clamp(3rem, 8vw, 8rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
	margin: 0 0 1rem;
}

.section-title {
	font-size: clamp(2.5rem, 5vw, 4rem);
	margin-bottom: 1.5rem;
}

.section-subtitle {
	font-size: clamp(1rem, 2vw, 1.25rem);
	color: var(--color-muted);
	max-width: 48rem;
	line-height: 1.6;
}

.divider {
	width: 3rem;
	height: 2px;
	background: linear-gradient(135deg, hsl(42, 75%, 55%) 0%, hsl(38, 60%, 45%) 100%);
	margin: 2rem 0;
}

.divider-center {
	margin-left: auto;
	margin-right: auto;
}

/* ==================================================
   4. NAVIGATION
================================================== */
.main-navigation {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 1.5rem 0;
	background: transparent;
	transform: translateY(0);
	transition: transform var(--transition-medium) var(--transition-buttery),
	            background var(--transition-medium) var(--transition-buttery),
	            backdrop-filter var(--transition-medium) var(--transition-buttery);
}

.main-navigation.scrolled {
	background: hsl(240, 10%, 4%, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--color-border);
}

.nav-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.site-logo {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--color-primary);
}

.nav-menu {
	display: flex;
	gap: 2.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-menu a {
	font-size: 0.875rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--color-foreground);
	opacity: 0.8;
	transition: opacity var(--transition-fast);
}

.nav-menu a:hover {
	opacity: 1;
	color: var(--color-primary);
}

/* Mobile Navigation */
.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 6px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
}

.hamburger-line {
	width: 24px;
	height: 2px;
	background: var(--color-primary);
	transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.mobile-nav-overlay {
	position: fixed;
	top: 0;
	right: -100%;
	width: 100%;
	max-width: 400px;
	height: 100vh;
	background: var(--color-background);
	padding: 6rem 2rem;
	z-index: 999;
	transition: right var(--transition-medium) var(--transition-buttery);
	border-left: 1px solid var(--color-border);
}

.mobile-nav-overlay.active {
	right: 0;
}

.mobile-nav {
	flex-direction: column;
	gap: 2rem;
}

.mobile-nav a {
	font-size: 1.25rem;
}

@media (max-width: 768px) {
	.desktop-nav,
	.nav-cta {
		display: none;
	}

	.mobile-menu-toggle {
		display: flex;
	}
}

/* ==================================================
   5. BUTTONS & CTAs
================================================== */
.btn-primary,
.btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 2.5rem;
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	border-radius: var(--radius-minimal);
	border: 1px solid;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	transition: all var(--transition-slow) var(--transition-buttery);
}

.btn-primary {
	background: var(--color-primary);
	border-color: var(--color-primary);
	color: var(--color-background);
}

.btn-primary::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left var(--transition-slow);
}

.btn-primary:hover {
	box-shadow: var(--shadow-glow-sm);
	transform: translateY(-2px);
}

.btn-primary:hover::before {
	left: 100%;
}

.btn-secondary {
	background: transparent;
	border-color: hsl(45, 30%, 94%, 0.2);
	color: hsl(45, 30%, 94%, 0.8);
}

.btn-secondary:hover {
	border-color: var(--color-primary);
	color: var(--color-primary);
}

.btn-full {
	width: 100%;
	justify-content: center;
}

.btn-icon {
	width: 16px;
	height: 16px;
}

/* ==================================================
   6. CARDS & COMPONENTS
================================================== */
.card-premium {
	background: hsl(240, 10%, 6%, 0.4);
	backdrop-filter: blur(20px);
	border: 1px solid hsl(240, 8%, 15%, 0.3);
	border-radius: var(--radius-subtle);
	padding: 2.5rem;
	transition: all var(--transition-slow) var(--transition-buttery);
}

.card-premium:hover {
	border-color: hsl(42, 75%, 55%, 0.2);
	box-shadow: var(--shadow-glow-md);
	transform: translateY(-4px);
}

/* ==================================================
   7. SECTIONS
================================================== */
.section {
	padding: var(--section-padding) 0;
	position: relative;
}

.section-glow {
	position: absolute;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, hsl(42, 75%, 55%, 0.08) 0%, transparent 70%);
	filter: blur(100px);
	pointer-events: none;
	bottom: -250px;
	left: -250px;
}

.section-glow-right {
	left: auto;
	right: -250px;
}

/* Section Headers */
.section-header {
	margin-bottom: 4rem;
}

.section-header.text-center {
	text-align: center;
}

.section-header.text-center .section-subtitle {
	margin-left: auto;
	margin-right: auto;
}

/* Hero Metrics */
.hero-metrics {
	display: flex;
	flex-wrap: wrap;
	gap: 3rem 5rem;
	margin-bottom: 4rem;
}

.metric-item {
	text-align: left;
}

.metric-value {
	font-family: var(--font-display);
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	margin-bottom: 0.5rem;
	line-height: 1;
}

.metric-label {
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--color-muted);
}

/* Hero Statement */
.hero-statement {
	font-size: clamp(1.25rem, 2.5vw, 2rem);
	color: hsl(45, 30%, 70%);
	font-weight: 300;
	line-height: 1.5;
	margin-bottom: 4rem;
	max-width: 60rem;
}

/* Hero CTAs */
.hero-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
}

/* Scroll Indicator */
.scroll-indicator {
	position: absolute;
	bottom: 3rem;
	left: 50%;
	transform: translateX(-50%);
}

.scroll-line {
	width: 1px;
	height: 5rem;
	background: linear-gradient(to bottom, hsl(42, 75%, 55%, 0.5) 0%, transparent 100%);
	animation: scrollBounce 2.5s ease-in-out infinite;
}

@keyframes scrollBounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(12px); }
}

/* Authority Strip */
.authority-strip {
	padding: 2rem 0;
	border-top: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
	background: linear-gradient(90deg, transparent 0%, hsl(42, 75%, 55%, 0.02) 50%, transparent 100%);
}

.authority-strip-inner {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 2rem 3rem;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 clamp(1.5rem, 4vw, 4rem);
}

.authority-tag {
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--color-muted);
}

/* About Section */
.about-grid {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 4rem;
}

.about-content p {
	margin-bottom: 1.5rem;
	line-height: 1.8;
	color: hsl(45, 20%, 80%);
}

.about-content strong {
	color: var(--color-primary);
}

@media (max-width: 1024px) {
	.about-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

/* Expertise Bento Grid */
.expertise-bento {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.expertise-bento .expertise-card:first-child {
	grid-column: span 2;
	grid-row: span 2;
}

.expertise-card {
	padding: 3rem;
	position: relative;
}

.expertise-icon {
	color: var(--color-primary);
	margin-bottom: 1.5rem;
	transition: transform var(--transition-medium);
}

.expertise-card:hover .expertise-icon {
	transform: scale(1.1);
}

.expertise-title {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	transition: color var(--transition-medium);
}

.expertise-card:hover .expertise-title {
	color: var(--color-primary);
}

.expertise-description {
	color: var(--color-muted);
	line-height: 1.6;
}

@media (max-width: 1024px) {
	.expertise-bento {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.expertise-bento {
		grid-template-columns: 1fr;
	}
}

/* Projects Horizontal Scroll */
.projects-horizontal {
	overflow: hidden;
	margin-top: 4rem;
}

.horizontal-scroll-wrapper {
	display: flex;
	gap: 2rem;
	width: max-content;
}

.project-card {
	min-width: 500px;
	padding: 3rem;
	position: relative;
}

.project-stats-badge {
	position: absolute;
	top: 2rem;
	right: 2rem;
	background: var(--color-primary);
	color: var(--color-background);
	padding: 0.5rem 1rem;
	border-radius: var(--radius-minimal);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.05em;
}

.project-icon {
	color: var(--color-primary);
	margin-bottom: 1.5rem;
}

.project-category {
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--color-primary);
	margin-bottom: 0.75rem;
}

.project-title {
	font-size: 1.75rem;
	margin-bottom: 1rem;
}

.project-description {
	color: var(--color-muted);
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.project-technologies {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 2rem;
}

.tech-tag {
	background: hsl(240, 8%, 15%);
	color: var(--color-foreground);
	padding: 0.375rem 0.75rem;
	border-radius: var(--radius-minimal);
	font-size: 0.75rem;
}

.project-arrow {
	position: absolute;
	bottom: 2rem;
	right: 2rem;
	color: var(--color-primary);
	opacity: 0;
	transform: translateX(-10px);
	transition: all var(--transition-medium);
}

.project-card:hover .project-arrow {
	opacity: 1;
	transform: translateX(0);
}

@media (max-width: 768px) {
	.horizontal-scroll-wrapper {
		flex-direction: column;
	}

	.project-card {
		min-width: 100%;
	}
}

/* Insights Grid */
.insights-grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 2rem;
}

.insight-card-featured {
	grid-row: span 2;
}

.featured-label {
	display: inline-block;
	background: var(--color-primary);
	color: var(--color-background);
	padding: 0.25rem 0.75rem;
	border-radius: var(--radius-minimal);
	font-size: 0.625rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 1.5rem;
}

.insight-category {
	font-size: 0.75rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--color-primary);
	margin-bottom: 0.75rem;
}

.insight-title a {
	color: var(--color-foreground);
	transition: color var(--transition-medium);
}

.insight-title a:hover {
	color: var(--color-primary);
}

.insight-excerpt {
	color: var(--color-muted);
	line-height: 1.6;
	margin: 1rem 0;
}

.insight-meta {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: var(--color-muted);
	margin-top: 1rem;
}

.clock-icon {
	color: var(--color-primary);
}

.insight-arrow {
	position: absolute;
	bottom: 2rem;
	right: 2rem;
	color: var(--color-primary);
	opacity: 0;
	transform: translateX(-10px);
	transition: all var(--transition-medium);
}

.insight-card:hover .insight-arrow {
	opacity: 1;
	transform: translateX(0);
}

@media (max-width: 1024px) {
	.insights-grid {
		grid-template-columns: 1fr;
	}
}

/* Services Grid */
.services-grid {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 4rem;
}

.services-col-left {
	position: sticky;
	top: 8rem;
	align-self: start;
}

.service-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 2rem 0;
	border-bottom: 1px solid var(--color-border);
	cursor: pointer;
	transition: padding-left var(--transition-medium);
}

.service-item:hover {
	padding-left: 1rem;
}

.service-name {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
	transition: color var(--transition-medium);
}

.service-item:hover .service-name {
	color: var(--color-primary);
}

.service-description {
	font-size: 0.875rem;
	color: var(--color-muted);
}

.service-arrow {
	color: var(--color-primary);
	opacity: 0;
	transform: translateX(-10px);
	transition: all var(--transition-medium);
}

.service-item:hover .service-arrow {
	opacity: 1;
	transform: translateX(0);
}

@media (max-width: 1024px) {
	.services-grid {
		grid-template-columns: 1fr;
	}

	.services-col-left {
		position: static;
	}
}

/* Testimonials Grid */
.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.quote-icon {
	color: var(--color-primary);
	margin-bottom: 1.5rem;
}

.testimonial-quote {
	font-size: 1.125rem;
	line-height: 1.6;
	color: hsl(45, 20%, 85%);
	margin-bottom: 2rem;
}

.testimonial-divider {
	width: 3rem;
	height: 1px;
	background: var(--color-border);
	margin: 2rem 0;
}

.author-name {
	font-family: var(--font-display);
	font-size: 1.25rem;
	margin-bottom: 0.25rem;
}

.author-role {
	font-size: 0.875rem;
	color: var(--color-muted);
	margin-bottom: 0.125rem;
}

.author-company {
	font-size: 0.875rem;
	color: var(--color-primary);
}

@media (max-width: 1024px) {
	.testimonials-grid {
		grid-template-columns: 1fr;
	}
}

/* SkynetLabs Section */
.skynetlabs-section {
	background: linear-gradient(180deg, transparent 0%, hsl(42, 75%, 55%, 0.02) 50%, transparent 100%);
	position: relative;
	overflow: hidden;
}

.skynetlabs-gradient {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at center, hsl(42, 75%, 55%, 0.03) 0%, transparent 70%);
}

.skynetlabs-glow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 800px;
	height: 800px;
	background: radial-gradient(circle, hsl(42, 75%, 55%, 0.08) 0%, transparent 70%);
	filter: blur(100px);
}

.skynetlabs-content {
	position: relative;
	z-index: 2;
	max-width: 50rem;
	margin: 0 auto;
}

.skynetlabs-label {
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--color-primary);
	margin-bottom: 1rem;
}

.skynetlabs-title {
	font-size: clamp(3rem, 6vw, 5rem);
	margin-bottom: 1.5rem;
}

.skynetlabs-description {
	font-size: 1.25rem;
	line-height: 1.6;
	color: hsl(45, 20%, 75%);
	margin-bottom: 3rem;
}

/* FAQs */
.faqs-container {
	max-width: 56rem;
	margin: 0 auto;
}

.faq-item {
	border-bottom: 1px solid var(--color-border);
}

.faq-question {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
	padding: 2rem 0;
	background: none;
	border: none;
	text-align: left;
	font-family: var(--font-display);
	font-size: 1.25rem;
	color: var(--color-foreground);
	cursor: pointer;
	transition: color var(--transition-medium);
}

.faq-question:hover {
	color: var(--color-primary);
}

.faq-category {
	display: inline-block;
	background: hsl(240, 8%, 15%);
	padding: 0.25rem 0.75rem;
	border-radius: var(--radius-minimal);
	font-size: 0.75rem;
	letter-spacing: 0.05em;
	margin-right: 1rem;
}

.faq-icon {
	flex-shrink: 0;
	color: var(--color-primary);
	transition: transform var(--transition-medium);
}

.faq-answer {
	padding: 0 0 2rem;
	color: var(--color-muted);
	line-height: 1.6;
}

/* Pricing */
.pricing-container {
	max-width: 36rem;
	margin: 0 auto;
}

.pricing-card {
	text-align: center;
	padding: 4rem 3rem;
}

.pricing-icon {
	color: var(--color-primary);
	margin: 0 auto 2rem;
}

.pricing-title {
	font-size: 2rem;
	margin-bottom: 1rem;
}

.pricing-description {
	font-size: 1.125rem;
	line-height: 1.6;
	color: var(--color-muted);
	margin-bottom: 3rem;
}

.pricing-features {
	list-style: none;
	text-align: left;
	margin: 0 0 3rem;
	padding: 0;
}

.pricing-features li {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 0.75rem 0;
	color: hsl(45, 20%, 80%);
}

.pricing-features svg {
	color: var(--color-primary);
	flex-shrink: 0;
}

.pricing-note {
	font-size: 0.875rem;
	color: var(--color-muted);
	margin-top: 1.5rem;
}

/* Contact Grid */
.contact-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	max-width: 64rem;
	margin: 0 auto;
}

.contact-card {
	position: relative;
	padding: 3rem;
	text-align: center;
	transition: all var(--transition-slow);
}

.contact-icon {
	color: var(--color-primary);
	margin: 0 auto 1.5rem;
	transition: transform var(--transition-medium);
}

.contact-card:hover .contact-icon {
	transform: scale(1.1);
}

.contact-title {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: var(--color-foreground);
}

.contact-description {
	color: var(--color-muted);
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.contact-label {
	display: inline-block;
	background: hsl(240, 8%, 15%);
	color: var(--color-primary);
	padding: 0.5rem 1rem;
	border-radius: var(--radius-minimal);
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.contact-arrow {
	position: absolute;
	bottom: 2rem;
	right: 2rem;
	color: var(--color-primary);
	opacity: 0;
	transform: translateX(-10px);
	transition: all var(--transition-medium);
}

.contact-card:hover .contact-arrow {
	opacity: 1;
	transform: translateX(0);
}

.contact-note {
	font-size: 0.875rem;
	color: var(--color-muted);
	margin-top: 2rem;
}

@media (max-width: 768px) {
	.contact-grid {
		grid-template-columns: 1fr;
	}
}

/* Footer */
.site-footer {
	border-top: 1px solid var(--color-border);
	padding: 4rem 0 2rem;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 3rem;
}

.footer-name {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

.footer-tagline {
	font-size: 0.75rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--color-muted);
	margin-bottom: 0.5rem;
}

.footer-founder {
	font-size: 0.875rem;
	color: var(--color-primary);
}

.footer-links {
	display: flex;
	gap: 2rem;
}

.footer-link {
	font-size: 0.875rem;
	color: var(--color-muted);
	transition: color var(--transition-fast);
}

.footer-link:hover {
	color: var(--color-primary);
}

.footer-copyright {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid var(--color-border);
	font-size: 0.75rem;
	color: var(--color-muted);
}

@media (max-width: 768px) {
	.footer-content {
		flex-direction: column;
		gap: 2rem;
	}
}

/* ==================================================
   8. ANIMATIONS & TRANSITIONS
================================================== */
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

/* ==================================================
   9. UTILITY CLASSES
================================================== */
.text-center {
	text-align: center;
}

.text-primary {
	color: var(--color-primary);
}

/* ==================================================
   10. RESPONSIVE DESIGN
================================================== */
@media (max-width: 768px) {
	:root {
		--section-padding: clamp(4rem, 10vw, 6rem);
	}

	.section-title {
		font-size: 2rem;
	}

	.hero-ctas {
		flex-direction: column;
		align-items: stretch;
	}

	.btn-primary,
	.btn-secondary {
		width: 100%;
		justify-content: center;
	}
}
