/* ==========================================
   INVEST INTELLIGENTLY - LANDING PAGE STYLES
   ========================================== */

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    padding: var(--spacing-xxl) 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 140, 66, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(74, 122, 184, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    color: var(--white);
}

.hero-headline {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtext {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.hero-cta {
    display: inline-block;
    margin-top: var(--spacing-sm);
}

.hero-image {
    position: relative;
}

.hero-img-placeholder {
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-section {
    padding: var(--spacing-xxl) 0;
    background: var(--gradient-light);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.stat-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-medium);
    border-top: 4px solid var(--accent-orange);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.stat-card h3 {
    color: var(--primary-blue);
    margin-top: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.stat-card p {
    color: var(--medium-gray);
    font-size: 1rem;
}

/* ==========================================
   FEATURES SECTION
   ========================================== */
.features-section {
    padding: var(--spacing-xxl) 0;
    background: var(--white);
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    margin-bottom: var(--spacing-xxl);
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-row-reverse {
    direction: rtl;
}

.feature-row-reverse > * {
    direction: ltr;
}

.feature-content h3 {
    color: var(--secondary-blue);
    margin-bottom: var(--spacing-sm);
}

.feature-content p {
    color: var(--dark-gray);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    margin-top: var(--spacing-md);
}

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--dark-gray);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
    font-size: 1.25rem;
}

.feature-image {
    position: relative;
}

.feature-img-placeholder {
    height: 450px;
    border-radius: 12px;
}

/* ==========================================
   WHY US SECTION
   ========================================== */
.why-section {
    padding: var(--spacing-xxl) 0;
    background: var(--light-blue);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    max-width: 900px;
    margin: 0 auto;
    margin-top: var(--spacing-xl);
}

.comparison-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.comparison-card.highlight {
    border: 3px solid var(--accent-orange);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-orange);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: var(--shadow-md);
}

.comparison-card h4 {
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--secondary-blue);
    font-size: 1.5rem;
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    padding: 0.875rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid var(--light-gray);
    color: var(--dark-gray);
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-list.traditional li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: var(--medium-gray);
    font-weight: bold;
    font-size: 1.5rem;
}

.comparison-list.advantage li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
    font-size: 1.25rem;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    background: var(--gradient-primary);
    padding: var(--spacing-xxl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(255, 140, 66, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(74, 122, 184, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.35rem;
    margin-bottom: var(--spacing-lg);
}

/* ==========================================
   RESPONSIVE - TABLET
   ========================================== */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .hero-headline {
        font-size: 3rem;
    }

    .feature-row,
    .feature-row-reverse {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        direction: ltr;
    }

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

    .comparison-card.highlight {
        transform: scale(1);
    }
}

/* ==========================================
   RESPONSIVE - MOBILE
   ========================================== */
@media (max-width: 768px) {
    .hero-section {
        padding: var(--spacing-xl) 0;
    }

    .hero-headline {
        font-size: 2.25rem;
    }

    .hero-subtext {
        font-size: 1.125rem;
    }

    .hero-img-placeholder {
        height: 300px;
    }

    .hero-image {
        max-height: 400px;
        overflow: hidden;
    }

    .hero-image img {
        width: 100%;
        height: auto;
        max-height: 400px;
        object-fit: cover;
    }

    .stats-row {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .feature-img-placeholder {
        height: 300px;
    }

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

    .cta-section p {
        font-size: 1.125rem;
    }
}

/* ==========================================
   RESPONSIVE - SMALL MOBILE (Phones)
   ========================================== */
@media (max-width: 480px) {
    .hero-image {
        max-height: 250px;
    }

    .hero-image img {
        max-height: 250px;
    }

    .hero-headline {
        font-size: 1.75rem;
    }

    .hero-subtext {
        font-size: 1rem;
    }
}

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

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

.hero-image {
    animation-delay: 0.2s;
}
