:root {
    --primary: #f59e0b;
    --primary-hover: #d97706;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --border: #e2e8f0;
}

.landing-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    overflow-x: hidden;
}

.hero {
    text-align: center;
    padding: 8rem 1rem;
    background: radial-gradient(circle at top, #fff7ed 0%, #ffffff 100%);
    border-radius: 3rem;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: 0;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.hero-title span {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.cta-section {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 6rem;
}

.feature-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.2);
    transition: box-shadow 0.4s ease;
}

.feature-card:hover::after {
    box-shadow: 0 0 0 8px rgba(245, 158, 11, 0.05);
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: #fff7ed;
    color: var(--primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-text {
    color: var(--text-muted);
    line-height: 1.6;
}

.opportunity-section {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 5rem;
    background: #1e293b;
    border-radius: 3rem;
    color: white;
    margin-bottom: 6rem;
}

.opp-content {
    flex: 1;
}

.opp-content span {
    color: var(--primary);
}

.opp-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.opp-image svg {
    color: #334155;
    opacity: 0.5;
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.75rem;
    }

    .opportunity-section {
        padding: 3rem;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .landing-page {
        padding: 0 1rem;
    }

    .hero {
        padding: 4rem 1rem;
        border-radius: 2rem;
        margin-bottom: 2rem;
    }

    .hero-title {
        font-size: 1.85rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }

    .cta-section {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .btn-large {
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .opportunity-section {
        flex-direction: column;
        padding: 2.5rem 1.5rem;
        text-align: center;
        gap: 2rem;
    }

    .opp-content h2 {
        font-size: 1.75rem !important;
    }

    .opp-image {
        display: none;
    }

    footer div {
        flex-direction: column;
        gap: 1.5rem !important;
    }
}