/* ========================================
Catppuccin Color Variables
======================================== */

:root {
/* Catppuccin Mocha (Dark Theme) */
--mocha-rosewater: #f5e0dc;
--mocha-flamingo: #f2cdcd;
--mocha-pink: #f5c2e7;
--mocha-mauve: #cba6f7;
--mocha-red: #f38ba8;
--mocha-maroon: #eba0ac;
--mocha-peach: #fab387;
--mocha-yellow: #f9e2af;
--mocha-green: #a6e3a1;
--mocha-teal: #94e2d5;
--mocha-sky: #89dceb;
--mocha-sapphire: #74c7ec;
--mocha-blue: #89b4fa;
--mocha-lavender: #b4befe;
--mocha-text: #cdd6f4;
--mocha-subtext1: #bac2de;
--mocha-subtext0: #a6adc8;
--mocha-overlay2: #9399b2;
--mocha-overlay1: #7f849c;
--mocha-overlay0: #6c7086;
--mocha-surface2: #585b70;
--mocha-surface1: #45475a;
--mocha-surface0: #313244;
--mocha-base: #1e1e2e;
--mocha-mantle: #181825;
--mocha-crust: #11111b;

/* Catppuccin Latte (Light Theme) */
--latte-rosewater: #dc8a78;
--latte-flamingo: #dd7878;
--latte-pink: #ea76cb;
--latte-mauve: #8839ef;
--latte-red: #d20f39;
--latte-maroon: #e64553;
--latte-peach: #fe640b;
--latte-yellow: #df8e1d;
--latte-green: #40a02b;
--latte-teal: #179299;
--latte-sky: #04a5e5;
--latte-sapphire: #209fb5;
--latte-blue: #1e66f5;
--latte-lavender: #7287fd;
--latte-text: #4c4f69;
--latte-subtext1: #5c5f77;
--latte-subtext0: #6c6f85;
--latte-overlay2: #7c7f93;
--latte-overlay1: #8c8fa1;
--latte-overlay0: #9ca0b0;
--latte-surface2: #acb0be;
--latte-surface1: #bcc0cc;
--latte-surface0: #ccd0da;
--latte-base: #eff1f5;
--latte-mantle: #e6e9ef;
--latte-crust: #dce0e8;
}

/* ========================================
Base Styles
======================================== */

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

html {
scroll-behavior: smooth;
}

body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
line-height: 1.6;
font-weight: 400;
transition: all 0.3s ease;
overflow-x: hidden;
background: var(--mocha-base);
color: var(--mocha-text);
}

/* Dark Theme */
body.dark {
background: linear-gradient(to bottom, var(--mocha-crust), var(--mocha-base));
color: var(--mocha-text);
}

/* Light Theme */
body.light {
background: linear-gradient(to bottom, var(--latte-crust), var(--latte-base));
color: var(--latte-text);
}

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

section {
padding: 6rem 0;
position: relative;
}

/* ========================================
Typography
======================================== */

h1, h2, h3, h4, h5, h6 {
font-weight: 700;
line-height: 1.2;
margin: 0;
letter-spacing: -0.03em;
}

h1 {
font-size: clamp(3rem, 7vw, 4.5rem);
font-weight: 800;
margin-bottom: 1.5rem;
}

h2 {
font-size: clamp(2.5rem, 5vw, 3.5rem);
margin-bottom: 1.5rem;
}

h3 {
font-size: clamp(1.5rem, 3vw, 2rem);
margin-bottom: 1rem;
}

p {
margin: 0 0 1.5rem 0;
line-height: 1.7;
font-size: 1.1rem;
max-width: 700px;
color: var(--mocha-subtext1);
}

body.light p {
color: var(--latte-subtext1);
}

/* ========================================
Buttons
======================================== */

.btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.75rem;
padding: 1rem 2rem;
border-radius: 12px;
font-weight: 600;
font-size: 1rem;
text-decoration: none;
border: none;
cursor: pointer;
transition: all 0.2s ease;
white-space: nowrap;
font-family: 'Inter', sans-serif;
}

.btn-primary {
color: var(--mocha-crust);
background: var(--mocha-mauve);
box-shadow: 0 4px 20px rgba(203, 166, 247, 0.3);
}

.btn-primary:hover {
background: var(--mocha-lavender);
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(180, 190, 254, 0.4);
}

body.light .btn-primary {
color: var(--latte-base);
background: var(--latte-mauve);
box-shadow: 0 4px 20px rgba(136, 57, 239, 0.2);
}

body.light .btn-primary:hover {
background: var(--latte-lavender);
box-shadow: 0 8px 25px rgba(114, 135, 253, 0.3);
}

.btn-secondary {
color: var(--mocha-text);
background: transparent;
border: 2px solid var(--mocha-surface2);
}

.btn-secondary:hover {
background: rgba(88, 91, 112, 0.1);
border-color: var(--mocha-mauve);
transform: translateY(-3px);
}

body.light .btn-secondary {
color: var(--latte-text);
border-color: var(--latte-surface2);
}

body.light .btn-secondary:hover {
background: rgba(172, 176, 190, 0.1);
border-color: var(--latte-mauve);
}

.btn-outline {
color: var(--mocha-mauve);
background: transparent;
border: 2px solid var(--mocha-mauve);
}

.btn-outline:hover {
background: var(--mocha-mauve);
color: var(--mocha-crust);
transform: translateY(-3px);
}

body.light .btn-outline {
color: var(--latte-mauve);
border-color: var(--latte-mauve);
}

body.light .btn-outline:hover {
background: var(--latte-mauve);
color: var(--latte-base);
}

/* ========================================
Header
======================================== */

.header {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
padding: 1.5rem 0;
backdrop-filter: blur(20px);
transition: all 0.3s ease;
}

body.dark .header {
background: rgba(30, 30, 46, 0.8);
border-bottom: 1px solid rgba(88, 91, 112, 0.1);
}

body.light .header {
background: rgba(239, 241, 245, 0.8);
border-bottom: 1px solid rgba(220, 224, 232, 0.2);
}

.header.scrolled {
padding: 1rem 0;
box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.header-content {
display: flex;
align-items: center;
justify-content: space-between;
}

.logo {
display: flex;
align-items: center;
gap: 0.75rem;
text-decoration: none;
font-size: 1.5rem;
font-weight: 700;
color: var(--mocha-text);
}

body.light .logo {
color: var(--latte-text);
}

.logo i {
color: var(--mocha-mauve);
font-size: 1.75rem;
transition: all 0.3s ease;
}

body.light .logo i {
color: var(--latte-mauve);
}

.logo:hover i {
transform: rotate(10deg);
}

.nav-list {
display: flex;
list-style: none;
gap: 2.5rem;
margin: 0;
}

.nav-link {
text-decoration: none;
color: var(--mocha-subtext1);
font-weight: 500;
transition: color 0.2s ease;
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 1.05rem;
position: relative;
}

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

.nav-link::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: var(--mocha-mauve);
transition: width 0.3s ease;
}

.nav-link:hover::after {
width: 100%;
}

body.light .nav-link {
color: var(--latte-subtext1);
}

body.light .nav-link:hover {
color: var(--latte-text);
}

body.light .nav-link::after {
background: var(--latte-mauve);
}

.theme-toggle {
background: transparent;
border: none;
color: var(--mocha-text);
font-size: 1.25rem;
cursor: pointer;
padding: 0.5rem;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
width: 42px;
height: 42px;
}

.theme-toggle:hover {
background: rgba(88, 91, 112, 0.1);
transform: scale(1.1);
}

body.light .theme-toggle {
color: var(--latte-text);
}

body.light .theme-toggle:hover {
background: rgba(172, 176, 190, 0.1);
}

/* ========================================
Hero Section
======================================== */

.hero {
padding: 12rem 0 8rem;
position: relative;
overflow: hidden;
}

.hero::before {
content: '';
position: absolute;
top: -100px;
left: -100px;
width: 500px;
height: 500px;
background: radial-gradient(circle, rgba(203, 166, 247, 0.15) 0%, rgba(30, 30, 46, 0) 70%);
border-radius: 50%;
z-index: -1;
}

.hero::after {
content: '';
position: absolute;
bottom: -200px;
right: -200px;
width: 600px;
height: 600px;
background: radial-gradient(circle, rgba(137, 180, 250, 0.1) 0%, rgba(30, 30, 46, 0) 70%);
border-radius: 50%;
z-index: -1;
}

body.light .hero::before {
background: radial-gradient(circle, rgba(136, 57, 239, 0.1) 0%, rgba(239, 241, 245, 0) 70%);
}

body.light .hero::after {
background: radial-gradient(circle, rgba(30, 102, 245, 0.1) 0%, rgba(239, 241, 245, 0) 70%);
}

.hero-content {
max-width: 900px;
margin: 0 auto;
text-align: center;
position: relative;
z-index: 2;
}

.hero-badge {
display: inline-flex;
align-items: center;
gap: 0.5rem;
background: rgba(88, 91, 112, 0.2);
color: var(--mocha-text);
padding: 0.5rem 1rem;
border-radius: 50px;
font-size: 0.9rem;
font-weight: 500;
margin-bottom: 2rem;
backdrop-filter: blur(10px);
}

body.light .hero-badge {
background: rgba(172, 176, 190, 0.2);
color: var(--latte-text);
}

.hero-title {
margin-bottom: 1.5rem;
background: linear-gradient(to right, var(--mocha-mauve), var(--mocha-blue));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

body.light .hero-title {
background: linear-gradient(to right, var(--latte-mauve), var(--latte-blue));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.hero-description {
font-size: 1.25rem;
margin: 0 auto 3rem;
max-width: 700px;
}

.hero-actions {
display: flex;
justify-content: center;
gap: 1.5rem;
margin-bottom: 4rem;
}

.hero-stats {
display: flex;
justify-content: center;
gap: 3rem;
margin-top: 4rem;
flex-wrap: wrap;
}

.stat {
text-align: center;
padding: 1.5rem;
border-radius: 16px;
background: rgba(88, 91, 112, 0.1);
backdrop-filter: blur(10px);
min-width: 160px;
transition: transform 0.3s ease;
}

.stat:hover {
transform: translateY(-10px);
}

body.light .stat {
background: rgba(172, 176, 190, 0.1);
}

.stat-number {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 0.5rem;
background: linear-gradient(to right, var(--mocha-green), var(--mocha-sky));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

body.light .stat-number {
background: linear-gradient(to right, var(--latte-green), var(--latte-sky));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.stat-label {
font-size: 1rem;
color: var(--mocha-subtext1);
font-weight: 500;
}

body.light .stat-label {
color: var(--latte-subtext1);
}

/* ========================================
Features Section
======================================== */

.features {
position: relative;
}

.features::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(circle at top left, rgba(203, 166, 247, 0.05) 0%, transparent 50%);
z-index: -1;
}

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

.section-title {
position: relative;
display: inline-block;
margin-bottom: 1rem;
}

.section-title::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 60px;
height: 4px;
background: var(--mocha-mauve);
border-radius: 2px;
}

body.light .section-title::after {
background: var(--latte-mauve);
}

.section-description {
font-size: 1.25rem;
margin: 0 auto;
}

.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
max-width: 1200px;
margin: 0 auto;
}

.feature-card {
background: rgba(49, 50, 68, 0.4);
border-radius: 20px;
padding: 2.5rem;
transition: all 0.3s ease;
backdrop-filter: blur(10px);
border: 1px solid rgba(88, 91, 112, 0.2);
}

.feature-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
border-color: rgba(203, 166, 247, 0.3);
}

body.light .feature-card {
background: rgba(204, 208, 218, 0.3);
border: 1px solid rgba(140, 143, 161, 0.2);
}

body.light .feature-card:hover {
border-color: rgba(136, 57, 239, 0.3);
}

.feature-icon {
width: 70px;
height: 70px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
background: rgba(203, 166, 247, 0.1);
margin-bottom: 1.5rem;
font-size: 1.75rem;
color: var(--mocha-mauve);
}

body.light .feature-icon {
background: rgba(136, 57, 239, 0.1);
color: var(--latte-mauve);
}

.feature-title {
margin-bottom: 1rem;
font-size: 1.75rem;
}

.feature-description {
font-size: 1.05rem;
line-height: 1.7;
}

/* ========================================
Developer Section
======================================== */

.developer {
position: relative;
}

.developer::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(circle at bottom right, rgba(137, 180, 250, 0.05) 0%, transparent 50%);
z-index: -1;
}

/* ========================================
Sponsors Section
======================================== */

.sponsors {
position: relative;
}

.sponsor-options {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 2rem;
margin-bottom: 4rem;
}

.sponsor-card {
background: rgba(49, 50, 68, 0.4);
border-radius: 20px;
padding: 2.5rem;
text-align: center;
backdrop-filter: blur(10px);
border: 1px solid rgba(88, 91, 112, 0.2);
transition: all 0.3s ease;
}

.sponsor-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

body.light .sponsor-card {
background: rgba(204, 208, 218, 0.3);
border: 1px solid rgba(140, 143, 161, 0.2);
}

.sponsor-icon {
width: 70px;
height: 70px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1.5rem;
font-size: 1.75rem;
color: var(--mocha-mauve);
}

.individual .sponsor-icon {
background: rgba(247, 194, 231, 0.1);
}

.corporate .sponsor-icon {
background: rgba(137, 180, 250, 0.1);
}

body.light .individual .sponsor-icon {
background: rgba(234, 118, 203, 0.1);
}

body.light .corporate .sponsor-icon {
background: rgba(30, 102, 245, 0.1);
}

.sponsor-title {
margin-bottom: 1rem;
}

.sponsor-description {
margin-bottom: 1.5rem;
font-size: 1.05rem;
}

.sponsor-tiers {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-bottom: 4rem;
}

.tier-card {
background: rgba(49, 50, 68, 0.4);
border-radius: 20px;
padding: 2.5rem;
text-align: center;
backdrop-filter: blur(10px);
border: 1px solid rgba(88, 91, 112, 0.2);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}

.tier-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

body.light .tier-card {
background: rgba(204, 208, 218, 0.3);
border: 1px solid rgba(140, 143, 161, 0.2);
}

.tier-card.popular::before {
content: 'MOST POPULAR';
position: absolute;
top: 15px;
right: -30px;
background: var(--mocha-mauve);
color: var(--mocha-crust);
padding: 0.25rem 2rem;
font-size: 0.8rem;
font-weight: 600;
transform: rotate(45deg);
}

body.light .tier-card.popular::before {
background: var(--latte-mauve);
color: var(--latte-base);
}

.tier-header {
margin-bottom: 1.5rem;
}

.tier-icon {
font-size: 2.5rem;
margin-bottom: 1rem;
}

.tier-name {
margin-bottom: 0.5rem;
}

.tier-price {
font-size: 2rem;
font-weight: 700;
margin-bottom: 1.5rem;
background: linear-gradient(to right, var(--mocha-green), var(--mocha-sky));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

body.light .tier-price {
background: linear-gradient(to right, var(--latte-green), var(--latte-sky));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.tier-price span {
font-size: 1rem;
font-weight: 400;
}

.tier-description {
margin-bottom: 1.5rem;
font-size: 1.05rem;
}

.tier-badge {
display: inline-block;
padding: 0.5rem 1rem;
border-radius: 50px;
font-weight: 600;
margin-bottom: 1.5rem;
}

.bronze-badge {
background: rgba(155, 111, 70, 0.2);
color: #9b6b46;
}

.silver-badge {
background: rgba(192, 192, 192, 0.2);
color: #c0c0c0;
}

.gold-badge {
background: rgba(255, 215, 0, 0.2);
color: #ffd700;
}

.platinum-badge {
background: rgba(229, 228, 226, 0.2);
color: #e5e4e2;
}

.tier-btn {
width: 100%;
}

.current-sponsors {
text-align: center;
margin-top: 4rem;
}

.sponsors-title {
margin-bottom: 2rem;
}

.sponsor-showcase {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 2rem;
}

.sponsor-item {
display: flex;
align-items: center;
gap: 1rem;
padding: 1.5rem;
background: rgba(49, 50, 68, 0.4);
border-radius: 16px;
backdrop-filter: blur(10px);
border: 1px solid rgba(88, 91, 112, 0.2);
transition: all 0.3s ease;
}

.sponsor-item:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body.light .sponsor-item {
background: rgba(204, 208, 218, 0.3);
border: 1px solid rgba(140, 143, 161, 0.2);
}

.sponsor-logo {
width: 80px;
height: 80px;
object-fit: contain;
}

.sponsor-info {
text-align: left;
}

.sponsor-name {
margin-bottom: 0.5rem;
}

/* ========================================
FAQ Section
======================================== */

.faq {
position: relative;
}

.faq::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(circle at center, rgba(137, 180, 250, 0.05) 0%, transparent 70%);
z-index: -1;
}

.faq-container {
max-width: 900px;
margin: 0 auto;
}

.faq-item {
border-radius: 16px;
background: rgba(49, 50, 68, 0.4);
backdrop-filter: blur(10px);
border: 1px solid rgba(88, 91, 112, 0.2);
margin-bottom: 1.5rem;
overflow: hidden;
transition: all 0.3s ease;
}

.faq-item:hover {
border-color: rgba(203, 166, 247, 0.3);
}

body.light .faq-item {
background: rgba(204, 208, 218, 0.3);
border: 1px solid rgba(140, 143, 161, 0.2);
}

body.light .faq-item:hover {
border-color: rgba(136, 57, 239, 0.3);
}

.faq-question {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
padding: 1.5rem;
background: transparent;
border: none;
text-align: left;
font-size: 1.1rem;
font-weight: 600;
color: var(--mocha-text);
cursor: pointer;
transition: all 0.3s ease;
}

body.light .faq-question {
color: var(--latte-text);
}

.faq-question i {
transition: transform 0.3s ease;
}

.faq-question i.rotate {
transform: rotate(180deg);
}

.faq-answer {
padding: 0 1.5rem 1.5rem;
color: var(--mocha-subtext1);
}

body.light .faq-answer {
color: var(--latte-subtext1);
}

/* ========================================
CTA Section
======================================== */

.cta {
position: relative;
padding: 8rem 0;
text-align: center;
}

.cta::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(circle at center, rgba(203, 166, 247, 0.1) 0%, transparent 70%);
z-index: -1;
}

.cta-content {
max-width: 700px;
margin: 0 auto;
position: relative;
z-index: 2;
}

.cta-title {
margin-bottom: 1.5rem;
}

.cta-description {
margin: 0 auto 3rem;
}

.cta-actions {
display: flex;
justify-content: center;
gap: 1.5rem;
}

/* ========================================
Footer
======================================== */

.footer {
padding: 5rem 0 2rem;
position: relative;
}

.footer::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 1px;
background: linear-gradient(to right, transparent, var(--mocha-surface1), transparent);
}

body.light .footer::before {
background: linear-gradient(to right, transparent, var(--latte-surface1), transparent);
}

.footer-content {
display: grid;
grid-template-columns: 2fr 3fr;
gap: 4rem;
margin-bottom: 4rem;
}

.footer-brand {
display: flex;
flex-direction: column;
gap: 1.5rem;
}

.footer-logo {
display: flex;
align-items: center;
gap: 0.75rem;
text-decoration: none;
font-size: 1.5rem;
font-weight: 700;
color: var(--mocha-text);
}

body.light .footer-logo {
color: var(--latte-text);
}

.footer-logo i {
color: var(--mocha-mauve);
font-size: 1.75rem;
}

body.light .footer-logo i {
color: var(--latte-mauve);
}

.footer-tagline {
font-size: 1.1rem;
max-width: 400px;
}

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

.footer-section h4 {
font-size: 1.1rem;
margin-bottom: 1.5rem;
color: var(--mocha-text);
}

body.light .footer-section h4 {
color: var(--latte-text);
}

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

.footer-section li {
margin-bottom: 0.75rem;
}

.footer-section a {
text-decoration: none;
color: var(--mocha-subtext1);
transition: color 0.2s ease;
}

.footer-section a:hover {
color: var(--mocha-text);
}

body.light .footer-section a {
color: var(--latte-subtext1);
}

body.light .footer-section a:hover {
color: var(--latte-text);
}

.footer-bottom {
display: flex;
justify-content: space-between;
align-items: center;
padding-top: 2rem;
border-top: 1px solid var(--mocha-surface1);
}

body.light .footer-bottom {
border-top: 1px solid var(--latte-surface1);
}

.footer-copyright {
color: var(--mocha-subtext1);
font-size: 0.9rem;
}

body.light .footer-copyright {
color: var(--latte-subtext1);
}

.footer-social {
display: flex;
gap: 1rem;
}

.social-link {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border-radius: 50%;
background: rgba(88, 91, 112, 0.2);
color: var(--mocha-text);
transition: all 0.3s ease;
}

.social-link:hover {
background: var(--mocha-mauve);
transform: translateY(-3px);
}

body.light .social-link {
background: rgba(172, 176, 190, 0.2);
color: var(--latte-text);
}

body.light .social-link:hover {
background: var(--latte-mauve);
color: var(--latte-base);
}

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

@media (max-width: 992px) {
.hero {
padding: 10rem 0 6rem;
}

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

.sponsor-options {
grid-template-columns: 1fr;
}

.cta-actions {
flex-direction: column;
align-items: center;
}

.hero-actions {
flex-direction: column;
align-items: center;
}
}

@media (max-width: 768px) {
.header {
padding: 1rem 0;
}

.nav-list {
display: none;
}

.hero-stats {
flex-direction: column;
gap: 1.5rem;
}

.stat {
min-width: auto;
width: 100%;
max-width: 300px;
margin: 0 auto;
}

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

.footer-bottom {
flex-direction: column;
gap: 1.5rem;
}
}

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

h2 {
font-size: 2rem;
}

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

.section-header {
margin-bottom: 2rem;
}
}
