/* Why Invest Page */

/* Hero Banner */
.invest-hero {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.invest-hero-image {
    position: absolute;
    inset: 0;
}

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

.invest-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.55) 100%);
}

.invest-hero-content {
    position: absolute;
    bottom: 60px;
    left: 75px;
    right: 75px;
    z-index: 2;
}

.invest-hero-title {
    font-family: 'Syne', sans-serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}

.invest-hero-subtitle {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.03em;
}

/* Page Content */
.invest-page {
    max-width: 1650px;
    margin: 0 auto;
    padding: 0 75px 80px;
    background: #F5F5FF;
}

/* Sections */
.invest-section {
    padding: 80px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.invest-section:last-of-type {
    border-bottom: none;
}

.invest-section-title {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.invest-section-body {
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
    max-width: 720px;
}

/* Stat Cards */
.stat-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.stat-card {
    background: white;
    border-radius: 24px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.stat-value {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #8295A6;
    margin-bottom: 10px;
}

.stat-label {
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

/* Split Layout */
.invest-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.invest-split-reverse {
    flex-direction: row-reverse;
}

.invest-split-content {
    flex: 1;
}

.invest-split-image {
    flex: 1;
    border-radius: 44px;
    overflow: hidden;
    height: 450px;
}

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

/* List */
.invest-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.invest-list li {
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    color: #1a1a1a;
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.invest-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #8295A6;
    border-radius: 50%;
}

/* Development Cards */
.dev-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.dev-card {
    background: white;
    border-radius: 44px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.25s ease;
}

.dev-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
}

.dev-card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

.dev-card-title {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 24px 28px 8px;
}

.dev-card-desc {
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0 28px;
}

.dev-card-units {
    display: inline-block;
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    color: #8295A6;
    font-weight: 600;
    margin: 16px 28px 28px;
}

/* ROI Section */
.invest-roi-section {
    background: white;
    margin: 0 -75px;
    padding: 80px 75px;
    border-bottom: none;
}

.roi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.roi-card {
    background: #F5F5FF;
    border-radius: 24px;
    padding: 40px;
}

.roi-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 16px;
    margin-bottom: 20px;
}

.roi-title {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.roi-desc {
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

/* Financing */
.invest-financing-btn {
    display: inline-block;
    background: #8295A6;
    color: white;
    text-decoration: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 500;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.invest-financing-btn:hover {
    background: #6b7f8f;
    transform: translateY(-2px);
}

.invest-financing-section .invest-split-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 44px;
}

.invest-financing-section .invest-split-image img {
    max-height: 120px;
    width: auto;
    object-fit: contain;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.process-step {
    background: white;
    border-radius: 24px;
    padding: 36px 28px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.process-number {
    font-family: 'Syne', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #8295A6;
    margin-bottom: 16px;
}

.process-title {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.process-desc {
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* CTA Section */
.invest-cta-section {
    text-align: center;
    padding: 100px 0 40px;
}

.invest-cta-title {
    font-family: 'Syne', sans-serif;
    font-size: 2.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.invest-cta-body {
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 40px;
}

.invest-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.invest-cta-btn {
    background: #8295A6;
    color: white;
    border: none;
    padding: 16px 48px;
    border-radius: 50px;
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.invest-cta-btn:hover {
    background: #6b7f8f;
    transform: translateY(-2px);
}

.invest-cta-whatsapp {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.invest-cta-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
    .invest-page {
        padding: 0 40px 60px;
    }

    .invest-hero-content {
        left: 40px;
        right: 40px;
    }

    .stat-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .dev-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .invest-roi-section {
        margin: 0 -40px;
        padding: 80px 40px;
    }
}

@media (max-width: 768px) {
    .invest-hero {
        height: 400px;
    }

    .invest-hero-content {
        left: 20px;
        right: 20px;
        bottom: 40px;
    }

    .invest-hero-title {
        font-size: 2rem;
    }

    .invest-page {
        padding: 0 20px 40px;
    }

    .invest-section {
        padding: 60px 0;
    }

    .invest-split {
        flex-direction: column;
        gap: 32px;
    }

    .invest-split-reverse {
        flex-direction: column;
    }

    .invest-split-image {
        width: 100%;
        height: 300px;
    }

    .stat-cards {
        grid-template-columns: 1fr 1fr;
    }

    .dev-cards {
        grid-template-columns: 1fr;
    }

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

    .process-steps {
        grid-template-columns: 1fr 1fr;
    }

    .invest-roi-section {
        margin: 0 -20px;
        padding: 60px 20px;
    }

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

@media (max-width: 480px) {
    .invest-hero {
        height: 350px;
    }

    .invest-hero-title {
        font-size: 1.6rem;
    }

    .invest-hero-subtitle {
        font-size: 0.95rem;
    }

    .invest-page {
        padding: 0 16px 30px;
    }

    .invest-section {
        padding: 48px 0;
    }

    .stat-cards {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .invest-roi-section {
        margin: 0 -16px;
        padding: 48px 16px;
    }

    .invest-cta-title {
        font-size: 1.8rem;
    }
}
