/* ==========================================
   HOME PAGE STYLES
   ========================================== */

body {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    padding: 80px 40px;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
}

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

.hero-text {
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 800;
    color: var(--dark-text);
    line-height: 1.1;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-subtitle {
    font-size: clamp(18px, 2vw, 24px);
    color: var(--medium-text);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-green));
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary-green);
    border-color: var(--primary-green);
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 20px 40px;
    font-size: 20px;
}

/* Hero Floating Cards */
.hero-image {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card {
    position: absolute;
    width: 140px;
    height: 140px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

.card-letter {
    font-size: 72px;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-1 {
    top: 50px;
    left: 50px;
    animation-delay: 0s;
}

.card-2 {
    top: 200px;
    right: 80px;
    animation-delay: 0.5s;
    width: 160px;
    height: 160px;
}

.card-2 .card-letter {
    font-size: 84px;
}

.card-3 {
    bottom: 80px;
    left: 120px;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

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

/* ==========================================
   FEATURES SECTION
   ========================================== */

.features {
    padding: 100px 40px;
    background: white;
}

.section-title {
    text-align: center;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 60px;
}

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

.feature-card {
    background: linear-gradient(135deg, #f0fdf4 0%, white 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-green));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

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

.feature-coming-soon {
    opacity: 0.7;
    background: linear-gradient(135deg, #f3f4f6 0%, white 100%);
}

.feature-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 16px;
}

.feature-card p {
    font-size: 16px;
    color: var(--medium-text);
    line-height: 1.6;
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
    margin-bottom: 24px;
}

.feature-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--medium-text);
    font-size: 14px;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.feature-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-green));
    color: white;
}

.feature-badge.coming-soon {
    background: #94a3b8;
}

/* ==========================================
   STATS SECTION
   ========================================== */

.stats {
    padding: 80px 40px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-green));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-label {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 500;
    opacity: 0.9;
}

/* ==========================================
   CTA SECTION
   ========================================== */

.cta {
    padding: 100px 40px;
    background: white;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--medium-text);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background: var(--dark-text);
    color: white;
    padding: 30px 40px;
    text-align: center;
}

.footer p {
    margin: 0;
    opacity: 0.8;
    font-size: 14px;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image {
        height: 400px;
    }

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

@media (max-width: 768px) {
    .hero {
        padding: 60px 25px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .hero-image {
        height: 300px;
    }

    .floating-card {
        width: 100px;
        height: 100px;
    }

    .card-letter {
        font-size: 48px;
    }

    .card-2 {
        width: 120px;
        height: 120px;
    }

    .card-2 .card-letter {
        font-size: 60px;
    }

    .features {
        padding: 60px 25px;
    }

    .stats {
        padding: 60px 25px;
    }

    .cta {
        padding: 60px 25px;
    }

    .footer {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 15px;
    }

    .hero-image {
        height: 250px;
    }

    .floating-card {
        width: 80px;
        height: 80px;
    }

    .card-letter {
        font-size: 36px;
    }

    .card-1 {
        top: 20px;
        left: 20px;
    }

    .card-2 {
        width: 100px;
        height: 100px;
        top: 150px;
        right: 30px;
    }

    .card-2 .card-letter {
        font-size: 48px;
    }

    .card-3 {
        bottom: 30px;
        left: 40px;
    }

    .features {
        padding: 40px 15px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .stats {
        padding: 40px 15px;
    }

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

    .cta {
        padding: 40px 15px;
    }

    .cta-buttons {
        flex-direction: column;
    }
}
