.hero-section {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(180deg, #FEFDFB 0%, #FFF8F3 100%);
    padding: 2rem;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 900px;
    animation: fadeInUp 1.2s ease-out;
}

.hero-badge {
    display: inline-block;
    background: #FFE8D6;
    color: #D97757;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2C2C2C;
    line-height: 1.1;
    letter-spacing: -3px;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: #6B6B6B;
    font-weight: 400;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn-primary, .btn-secondary {
    padding: 1.1rem 2.8rem;
    font-size: 1rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: #2C2C2C;
    color: #FEFDFB;
    box-shadow: 0 4px 20px rgba(44, 44, 44, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(44, 44, 44, 0.25);
    background: #1a1a1a;
}

.btn-secondary {
    background: white;
    color: #2C2C2C;
    border: 2px solid #E8E8E8;
}

.btn-secondary:hover {
    border-color: #2C2C2C;
    transform: translateY(-2px);
}

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

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2C2C2C;
    display: block;
}

.hero-stat-label {
    font-size: 0.95rem;
    color: #8B8B8B;
    margin-top: 0.3rem;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    animation: float 25s infinite ease-in-out;
    opacity: 0.6;
}

.shape:nth-child(1) {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #FFE8D6 0%, transparent 70%);
    top: -10%;
    right: -5%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #E8F3FF 0%, transparent 70%);
    bottom: -10%;
    left: -5%;
    animation-delay: 3s;
}

.shape:nth-child(3) {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #FFE8F0 0%, transparent 70%);
    top: 40%;
    left: 10%;
    animation-delay: 6s;
}

.features-section {
    padding: 7rem 2rem;
    background: white;
}

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

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

.section-subtitle {
    color: #D97757;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    color: #2C2C2C;
    font-weight: 700;
    letter-spacing: -1px;
}

.section-description {
    font-size: 1.2rem;
    color: #6B6B6B;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #FEFDFB;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    border: 1px solid #F0F0F0;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFE8D6, #E8F3FF);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: #E0E0E0;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #2C2C2C;
}

.feature-card p {
    font-size: 1.05rem;
    color: #6B6B6B;
    line-height: 1.7;
}

.categories-section {
    padding: 7rem 2rem;
    background: linear-gradient(180deg, #FFF8F3 0%, #FEFDFB 100%);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.category-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #F0F0F0;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.category-card h4 {
    font-size: 1.2rem;
    color: #2C2C2C;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.category-count {
    font-size: 0.9rem;
    color: #8B8B8B;
}

.cta-section {
    padding: 7rem 2rem;
    background: white;
    text-align: center;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #2C2C2C 0%, #1a1a1a 100%);
    padding: 5rem 3rem;
    border-radius: 30px;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 232, 214, 0.1) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.cta-box h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.cta-box p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.cta-box .btn-primary {
    background: white;
    color: #2C2C2C;
    position: relative;
    z-index: 1;
}

.cta-box .btn-primary:hover {
    background: #FEFDFB;
}

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

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.05);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
        letter-spacing: -2px;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

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

    .hero-stats {
        gap: 2rem;
    }

    .cta-box {
        padding: 3rem 2rem;
    }

    .cta-box h2 {
        font-size: 2rem;
    }
}