
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #3d2914;
    background-color: #faf8f5;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

:root {
    --primary: #e8a477;
    --secondary: #f5bfa6;
    --background: #faf8f5;
    --foreground: #000000;
    --muted: #8b7355;
    --border: #e8ddd0;
    --card: #ffffff;
    --shadow-soft: 0 10px 30px -10px rgba(232, 164, 119, 0.2);
    --shadow-glow: 0 0 40px rgba(245, 191, 166, 0.3);
    --gradient-primary: linear-gradient(135deg, #e8a477, #f5bfa6);
    --gradient-hero: linear-gradient(135deg, #faf8f5, #f1e8dc);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px -10px rgba(232, 164, 119, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-disabled {
    background: #d1d5db;
    color: #6b7280;
    cursor: not-allowed;
}

.btn-disabled:hover {
    transform: none;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 245, 0.8);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-logo {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon {
    width: 20px;
    height: 20px;
    color: white;
}

.brand-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--foreground);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--muted);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-cta {
    background: var(--primary);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.nav-cta:hover {
    background: #de9766;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--foreground);
    transition: var(--transition);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.3;
}

.bg-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.bg-decoration-1 {
    top: 80px;
    left: 80px;
    width: 128px;
    height: 128px;
    background: var(--primary);
}

.bg-decoration-2 {
    bottom: 80px;
    right: 80px;
    width: 192px;
    height: 192px;
    background: var(--secondary);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 24px;
    margin-bottom: 24px;
    color: var(--muted);
    font-weight: 600;
    border: 1px solid var(--border);
}

.sparkle-icon {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    margin-bottom: 24px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-description {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    color: var(--muted);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
}

.scroll-indicator {
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
    color: var(--muted);
}

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--foreground);
}

.section-header p {
    font-size: 1.25rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
}

.stats {
    background: var(--card);
}

.stats-header {
    text-align: center;
    margin-bottom: 64px;
}

.stats-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--foreground);
}

.stats-header p {
    font-size: 1.25rem;
    color: var(--muted);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.stat-card {
    text-align: center;
    padding: 32px 24px;
    border-radius: 24px;
    background: rgba(250, 248, 245, 0.5);
    transition: var(--transition);
    animation: fadeInUp 0.6s ease-out;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-soft);
}

.stat-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.stat-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    color: var(--muted);
    font-weight: 600;
}

.process {
    background: var(--gradient-hero);
}

.process-header {
    text-align: center;
    margin-bottom: 64px;
}

.process-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--foreground);
}

.process-header p {
    font-size: 1.25rem;
    color: var(--muted);
    max-width: 700px;
    margin: 0 auto;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.process-step {
    text-align: center;
    position: relative;
    animation: fadeInUp 0.6s ease-out;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-glow);
}

.step-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(232, 164, 119, 0.2);
    margin-bottom: 16px;
}

.process-step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--foreground);
}

.process-step p {
    color: var(--muted);
}

.step-line {
    display: none;
    position: absolute;
    top: 40px;
    left: 100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    transform: translateX(16px);
}

.skills {
    background: var(--card);
}

.skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.skills-content h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--foreground);
}

.skills-content p {
    font-size: 1.25rem;
    color: var(--muted);
    margin-bottom: 32px;
}

.skills-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.skill-item {
    animation: slideInLeft 0.6s ease-out;
}

.skill-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.skill-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skill-icon-1 { background: var(--gradient-primary); }
.skill-icon-2 { background: linear-gradient(135deg, var(--secondary), rgba(232, 164, 119, 0.8)); }
.skill-icon-3 { background: linear-gradient(135deg, rgba(232, 164, 119, 0.8), var(--secondary)); }
.skill-icon-4 { background: linear-gradient(135deg, rgba(245, 191, 166, 0.8), var(--primary)); }

.skill-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.skill-name {
    font-weight: 600;
    color: var(--foreground);
    flex: 1;
}

.skill-percentage {
    color: var(--primary);
    font-weight: 700;
}

.skill-bar {
    width: 100%;
    height: 12px;
    background: #f3f4f6;
    border-radius: 6px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 6px;
    width: 0%;
    transition: width 1s ease-out;
}

.skills-showcase {
    position: relative;
}

.showcase-card {
    background: var(--gradient-primary);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow-glow);
}

.showcase-content {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.showcase-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.showcase-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.showcase-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--foreground);
}

.showcase-content p {
    color: var(--muted);
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    animation: bounce 3s infinite;
}

.floating-1 {
    top: -16px;
    right: -16px;
    width: 64px;
    height: 64px;
    background: var(--secondary);
    animation-delay: 0.5s;
}

.floating-2 {
    bottom: -16px;
    left: -16px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    animation-delay: 1s;
}

.about {
    background: var(--gradient-hero);
}

.about-header {
    text-align: center;
    margin-bottom: 64px;
}

.about-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--foreground);
}

.about-header p {
    font-size: 1.25rem;
    color: var(--muted);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
}

.about-story h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--foreground);
}

.story-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.story-text p {
    color: var(--muted);
    line-height: 1.7;
}

.about-quote {
    position: relative;
}

.quote-card {
    background: var(--gradient-primary);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow-glow);
}

.quote-content {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}

.quote-icon {
    width: 96px;
    height: 96px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.quote-icon svg {
    width: 48px;
    height: 48px;
    color: white;
}

.quote-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--foreground);
}

.quote-content p {
    color: var(--muted);
    font-size: 0.875rem;
}

.about-hobbies h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--foreground);
    text-align: center;
}

.hobbies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.hobby-card {
    text-align: center;
    padding: 24px;
    background: var(--card);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.hobby-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.hobby-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.hobby-icon-1 { background: linear-gradient(135deg, #ec4899, #be185d); }
.hobby-icon-2 { background: linear-gradient(135deg, #f59e0b, #dc2626); }
.hobby-icon-3 { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }

.hobby-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.hobby-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--foreground);
}

.hobby-card p {
    color: var(--muted);
}

.services {
    background: var(--card);
}

.services-header {
    text-align: center;
    margin-bottom: 64px;
}

.services-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--foreground);
}

.services-header p {
    font-size: 1.25rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.service-card {
    position: relative;
    background: var(--background);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(232, 164, 119, 0.1);
    transition: var(--transition);
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
    position: relative;
    z-index: 10;
}

.service-icon-1 { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.service-icon-2 { background: var(--gradient-primary); }
.service-icon-3 { background: linear-gradient(135deg, var(--secondary), rgba(232, 164, 119, 0.8)); }
.service-icon-4 { background: linear-gradient(135deg, rgba(232, 164, 119, 0.8), var(--secondary)); }

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--foreground);
    transition: var(--transition);
    position: relative;
    z-index: 10;
}

.service-card:hover h3 {
    color: var(--primary);
}

.service-card p {
    color: var(--muted);
    line-height: 1.6;
    position: relative;
    z-index: 10;
}

.services-cta {
    text-align: center;
}

.contact {
    background: var(--gradient-hero);
}

.contact-header {
    text-align: center;
    margin-bottom: 64px;
}

.contact-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--foreground);
}

.contact-header p {
    font-size: 1.25rem;
    color: var(--muted);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-form-wrapper {
    background: var(--card);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow-glow);
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--foreground);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 16px;
    background: rgba(243, 244, 246, 0.5);
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:disabled,
.form-group textarea:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(232, 164, 119, 0.1);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-methods,
.quick-info {
    background: var(--card);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow-soft);
}

.contact-methods h3,
.quick-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--foreground);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 16px;
    margin-bottom: 16px;
    color: white;
}

.contact-discord {
    background: var(--gradient-primary);
}

.contact-instagram {
    background: linear-gradient(135deg, #ec4899, #be185d);
}

.method-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-icon svg {
    width: 24px;
    height: 24px;
}

.method-title {
    font-weight: 600;
    font-size: 1.1rem;
}

.method-value {
    opacity: 0.8;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.info-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.info-item span {
    color: var(--muted);
}

.footer {
    background: var(--foreground);
    color: white;
    padding: 64px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.footer-logo .brand-text {
    color: white;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-column h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--secondary);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--secondary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@media (max-width: 1024px) {
    .skills-grid,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--background);
        border-top: 1px solid var(--border);
        flex-direction: column;
        padding: 16px 24px;
        gap: 16px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-cta {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .hobbies-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-contrast: high) {
    :root {
        --primary: #b8860b;
        --secondary: #cd853f;
        --foreground: #000000;
        --muted: #4a4a4a;
    }
}