/* Cultioo Main - Modern Light Design inspired by Business Create */
/* Trade Republic / Uber minimalist style */

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Light.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
}

/* Hide all scrollbars globally */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

*::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

html, body {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #000000;
    overflow-x: hidden;
}

/* ==================== NAVIGATION ==================== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 3px solid #000;
    z-index: 1000;
    padding: 24px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: #000000;
    text-decoration: none;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 65px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: rgba(0, 0, 0, 0.8);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    font-weight: 400;
}

.nav-links a:hover {
    color: #000000;
}

.nav-btn {
    padding: 12px 28px;
    background: #000000;
    color: #ffffff;
    border: none;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
}

.nav-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-btn-login {
    padding: 12px 28px;
    background: rgba(0, 0, 0, 0.05);
    color: #000000;
    border: none;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
}

.nav-btn-login:hover {
    background: rgba(0, 0, 0, 0.08);
}

/* ==================== HERO SECTION ==================== */
.hero {
    padding: 140px 40px 140px;
    background: #ffffff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    min-height: 100vh;
}

.hero-content {
    padding-right: 40px;
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 4s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 25px;
    font-size: 0.85rem;
    margin-bottom: 24px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 4.2s forwards;
}

.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: #000000;
    opacity: 0;
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 4.4s forwards;
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 4.6s forwards;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    opacity: 0;
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 4.8s forwards;
}

.btn-primary {
    padding: 18px 40px;
    background: #000000;
    color: #ffffff;
    border: none;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    padding: 18px 40px;
    background: rgba(0, 0, 0, 0.05);
    color: #000000;
    border: none;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: rgba(0, 0, 0, 0.08);
}

.hero-visual {
    height: 500px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: none;
    opacity: 0;
    animation: fadeInScale 0.8s cubic-bezier(0.4, 0, 0.2, 1) 4.3s forwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==================== FEATURES SECTION ==================== */
.features {
    padding: 120px 40px;
    background: #000000;
    max-width: 100%;
    margin: 0 auto;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    color: #ffffff;
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.section-title.reveal-on-scroll {
    opacity: 0;
    animation: none;
}

.section-title.reveal-on-scroll.revealed {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.section-subtitle {
    font-size: 1.3rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

.section-subtitle.reveal-on-scroll {
    opacity: 0;
    animation: none;
}

.section-subtitle.reveal-on-scroll.revealed {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

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

.feature-card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: none;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.3s; }
.feature-card:nth-child(2) { animation-delay: 0.45s; }
.feature-card:nth-child(3) { animation-delay: 0.6s; }
.feature-card:nth-child(4) { animation-delay: 0.75s; }
.feature-card:nth-child(5) { animation-delay: 0.9s; }
.feature-card:nth-child(6) { animation-delay: 1.05s; }

.feature-card.reveal-on-scroll {
    opacity: 0;
    animation: none;
}

.feature-card.reveal-on-scroll.revealed {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.5rem;
    border: none;
}

.feature-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    color: #ffffff;
}

.feature-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

/* ==================== STATS SECTION ==================== */
.stats {
    padding: 120px 40px;
    background: #ffffff;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 25px;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
}

.stat-card.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
}

.stat-card.reveal-on-scroll.revealed {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.stat-card.revealed:nth-child(1) { animation-delay: 0.1s; }
.stat-card.revealed:nth-child(2) { animation-delay: 0.2s; }
.stat-card.revealed:nth-child(3) { animation-delay: 0.3s; }
.stat-card.revealed:nth-child(4) { animation-delay: 0.4s; }

.stat-card:hover {
    transform: translateY(-4px);
    background: rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    color: #000000;
}

.stat-label {
    font-size: 1.2rem;
    color: rgba(0, 0, 0, 0.6);
}

/* ==================== IMAGE SECTION ==================== */
.image-section {
    padding: 120px 40px;
    background: #ffffff;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.image-content {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.image-content.reveal-on-scroll {
    opacity: 0;
    animation: none;
}

.image-content.reveal-on-scroll.revealed {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.image-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #000000;
    opacity: 0;
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

.image-content.reveal-on-scroll h2 {
    opacity: 0;
    animation: none;
}

.image-content.reveal-on-scroll.revealed h2 {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

.image-content p {
    font-size: 1.3rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}

.image-content.reveal-on-scroll p {
    opacity: 0;
    animation: none;
}

.image-content.reveal-on-scroll.revealed p {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}

.image-placeholder {
    height: 400px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 25px;
    overflow: hidden;
    border: none;
    opacity: 0;
    animation: fadeInScale 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

.image-placeholder.reveal-on-scroll {
    opacity: 0;
    animation: none;
}

.image-placeholder.reveal-on-scroll.revealed {
    animation: fadeInScale 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==================== MARKETPLACE SECTION ==================== */
.marketplace {
    padding: 120px 40px;
    background: #000000;
    max-width: 100%;
    margin: 0 auto;
}

.marketplace-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.marketplace-text {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.marketplace-text.reveal-on-scroll {
    opacity: 0;
    animation: none;
}

.marketplace-text.reveal-on-scroll.revealed {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.marketplace-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #ffffff;
    opacity: 0;
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

.marketplace-text.reveal-on-scroll h2 {
    opacity: 0;
    animation: none;
}

.marketplace-text.reveal-on-scroll.revealed h2 {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

.marketplace-text p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}

.marketplace-text.reveal-on-scroll p {
    opacity: 0;
    animation: none;
}

.marketplace-text.reveal-on-scroll.revealed p {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}

.marketplace-features {
    list-style: none;
    padding: 0;
    opacity: 0;
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}

.marketplace-text.reveal-on-scroll .marketplace-features {
    opacity: 0;
    animation: none;
}

.marketplace-text.reveal-on-scroll.revealed .marketplace-features {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}

.marketplace-features li {
    padding: 12px 0;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 12px;
}

.marketplace-features li::before {
    content: '✓';
    background: #ffffff;
    color: #000000;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.commission-highlight {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 25px;
    margin: 24px 0;
    border: none;
}

.commission-highlight strong {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.marketplace-visual {
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 25px;
    overflow: hidden;
    border: none;
    opacity: 0;
    animation: fadeInScale 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

.marketplace-visual.reveal-on-scroll {
    opacity: 0;
    animation: none;
}

.marketplace-visual.reveal-on-scroll.revealed {
    animation: fadeInScale 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

.marketplace-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==================== SCROLL BUTTON ==================== */
.scroll-next {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    animation: bounce 2s infinite;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.scroll-next:hover {
    opacity: 0.7;
}

.scroll-next svg {
    color: rgba(0, 0, 0, 0.6);
}

.scroll-next.dark svg {
    color: rgba(255, 255, 255, 0.6);
}

.scroll-next span {
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.scroll-next.dark span {
    color: rgba(255, 255, 255, 0.4);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-8px);
    }
}

/* ==================== CTA SECTION ==================== */
.cta {
    padding: 120px 40px;
    background: #ffffff;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.cta.reveal-on-scroll {
    opacity: 0;
    animation: none;
}

.cta.reveal-on-scroll.revealed {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.cta-container {
    background: rgba(0, 0, 0, 0.03);
    padding: 80px 60px;
    border-radius: 25px;
    text-align: center;
    border: none;
    max-width: 1400px;
    margin: 0 auto;
}

.cta h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: #000000;
    opacity: 0;
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

.cta.reveal-on-scroll h2 {
    opacity: 0;
    animation: none;
}

.cta.reveal-on-scroll.revealed h2 {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

.cta p {
    font-size: 1.3rem;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}

.cta.reveal-on-scroll p {
    opacity: 0;
    animation: none;
}

.cta.reveal-on-scroll.revealed p {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}

/* ==================== FOOTER ==================== */
.site-footer {
    background: #fff;
    color: #000;
    padding: 48px 0 24px 0;
    text-align: center;
    border-top: 1px solid #f0f0f0;
    margin-top: 48px;
    font-family: 'Poppins', sans-serif;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 24px;
}

.footer-links a {
    font-family: 'Poppins', sans-serif;
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s ease;
    margin: 0;
}

.footer-links a:hover {
    color: #000;
}

.footer-links a::after {
    content: none;
}

.footer-lang {
    margin: 24px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-lang label {
    font-family: 'Poppins', sans-serif;
    margin-right: 12px;
    font-weight: 500;
    color: #000;
    font-size: 0.875rem;
}

#lang-select {
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 8px 36px 8px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    background: #f5f5f5 url('data:image/svg+xml;utf8,<svg fill="black" height="16" viewBox="0 0 24 24" width="16" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 12px center/16px 16px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    color: #000;
    cursor: pointer;
    min-width: 140px;
    transition: all 0.2s ease;
}

#lang-select:hover {
    background-color: #e0e0e0;
}

#lang-select:focus {
    border-color: #000;
    background-color: #fff;
}

#lang-select::-ms-expand {
    display: none;
}

#lang-select option {
    background: #fff;
    color: #000;
}

.lang-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 36px 8px 16px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    transition: all 0.2s ease;
    position: relative;
    overflow: visible;
    min-width: 140px;
}

.lang-button:hover {
    background-color: #e0e0e0;
}

.lang-button:active {
    transform: none;
}

.lang-icon {
    font-size: 1rem;
    line-height: 1;
}

.lang-text {
    font-weight: 500;
}

.footer-copy {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.4);
    margin-top: 24px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hero,
    .image-grid,
    .marketplace-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-content {
        padding-right: 0;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 16px 0;
    }

    .nav-content {
        padding: 0 24px;
    }

    .hero {
        padding: 100px 24px 80px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .features,
    .stats,
    .image-section,
    .marketplace,
    .cta {
        padding: 80px 24px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}
