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

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.stats-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    max-width: 1600px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.stat-item {
    padding: 30px 20px;
    text-align: center;
    flex: 1;
    min-width: 180px;
    max-width: 220px;
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1E3D6B;
    line-height: 1;
    white-space: nowrap;
}

.stat-description {
    font-size: 0.75rem;
    font-weight: 400;
    color: #1E3D6B;
    margin: 0;
    line-height: 1.3;
    white-space: nowrap;
}

.stat-hide-mobile {
    display: flex;
}

/* ========================================
   CTA BUTTON SECTION
   ======================================== */
.cta-button-section {
    padding: 30px 0;
    text-align: center;
}

.cta-btn-standalone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #F8606A 0%, #ff7b7b 100%);
    color: white;
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(248, 96, 106, 0.3);
    position: relative;
    overflow: hidden;
    min-width: 250px;
}

.cta-btn-standalone::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-btn-standalone:hover::before {
    left: 100%;
}

.cta-btn-standalone:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(248, 96, 106, 0.4);
    color: white;
    text-decoration: none;
}

.cta-btn-standalone .btn-icon {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.cta-btn-standalone:hover .btn-icon {
    transform: scale(1.2);
}

/* ========================================
   REVIEWS SECTION
   ======================================== */
.reviews-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.reviews-header {
    text-align: center;
    margin-bottom: 4rem;
}

.reviews-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1E3D6B;
    margin-bottom: 2rem;
}

.reviews-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.stars-rating {
    color: #2A558C;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-direction: column;
    background: transparent;
    border: none;
    box-shadow: none;
}

.stars {
    font-size: 1.8rem;
    color: #F8606A;
}

.rating-text {
    font-weight: 600;
    font-size: 1.2rem;
    color: #2A558C;
    text-align: center;
}

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

.review-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(30, 61, 107, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 61, 107, 0.1);
    position: relative;
    overflow: hidden;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(30, 61, 107, 0.12);
    border-color: #F8606A;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F8606A 0%, #ff7b7b 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.review-content {
    margin-bottom: 25px;
}

.review-stars {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.review-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #1E3D6B;
    font-style: italic;
    margin: 0;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #F8606A 0%, #ff7b7b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}

.author-info h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1E3D6B;
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */
.how-it-works-section {
    padding: 80px 0;
    background: white;
}

.how-it-works-header {
    text-align: center;
    margin-bottom: 4rem;
}

.how-it-works-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #2A558C;
    margin-bottom: 0;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.how-it-works-item {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #F8606A 0%, #ff7b7b 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 8px 25px rgba(248, 96, 106, 0.3);
}

.how-it-works-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2A558C;
    margin-bottom: 1rem;
}

.how-it-works-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #2A558C;
    opacity: 0.8;
}

/* ========================================
   FOUNDER SECTION
   ======================================== */
.founder-section {
    padding: 80px 0;
}

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

.founder-text h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1E3D6B;
    margin-bottom: 2rem;
    text-align: left;
}

.founder-text p {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #1E3D6B;
    text-align: left;
}

.founder-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.founder-image img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   PRINCIPLES SECTION
   ======================================== */
.principles-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.principles-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #2A558C;
    margin-bottom: 2rem;
}

.principles-content p {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #2A558C;
    margin-bottom: 2.5rem;
}

.principles-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #2A558C 0%, #1E3D6B 100%);
    color: white;
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(42, 85, 140, 0.3);
}

.principles-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(42, 85, 140, 0.4);
    color: white;
    text-decoration: none;
}

/* ========================================
   CORPORATE SECTION
   ======================================== */
.corporate-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2A558C 0%, #1E3D6B 100%);
    color: white;
}

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

.corporate-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
}

.corporate-content p {
    font-size: 1.4rem;
    line-height: 1.6;
    color: white;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.corporate-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #F8606A 0%, #ff7b7b 100%);
    color: white;
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(248, 96, 106, 0.3);
}

.corporate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(248, 96, 106, 0.4);
    color: white;
    text-decoration: none;
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */
.final-cta-section {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(135deg, #1E3D6B 0%, #2165B2 100%);
    color: white;
}

.final-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 3rem;
    line-height: 1.3;
}

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

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    min-width: 220px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn-primary {
    background: linear-gradient(135deg, #F8606A 0%, #ff7b7b 100%);
    color: white;
    border: 2px solid transparent;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(248, 96, 106, 0.4);
    color: white;
    text-decoration: none;
}

.cta-btn-secondary {
    background: white;
    color: #1E3D6B;
    border: 2px solid white;
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

.btn-icon {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.cta-btn:hover .btn-icon {
    transform: scale(1.2);
}

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

/* Tablet */
@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 0 20px;
    }

    .stat-item {
        max-width: 300px;
        width: 100%;
    }

    .stat-hide-mobile {
        display: none;
    }

    .stat-number {
        font-size: 2rem;
    }

    .reviews-section {
        padding: 50px 20px;
    }

    .reviews-header h2 {
        font-size: 2.2rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .review-card {
        padding: 25px;
    }

    .stars-rating {
        padding: 15px 0;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .rating-text {
        font-size: 1.1rem;
    }

    .how-it-works-section {
        padding: 60px 0;
    }

    .how-it-works-header h2 {
        font-size: 2.5rem;
    }

    .how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .how-it-works-item {
        padding: 20px 15px;
    }

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

    .founder-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .founder-text h2 {
        font-size: 2.5rem;
        text-align: center;
    }

    .founder-text p {
        font-size: 1.2rem;
        text-align: center;
    }

    .founder-image {
        order: -1;
    }

    .principles-section,
    .corporate-section {
        padding: 60px 0;
    }

    .principles-content h2,
    .corporate-content h2 {
        font-size: 2.5rem;
    }

    .principles-content p,
    .corporate-content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .principles-content,
    .corporate-content {
        padding: 0 20px;
    }

    .final-cta-section {
        padding: 50px 20px;
    }

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

    .cta-buttons {
        gap: 20px;
    }

    .cta-btn {
        min-width: 200px;
        padding: 16px 30px;
        font-size: 1rem;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .stats-container {
        gap: 20px;
        padding: 0 15px;
    }

    .stat-item {
        max-width: 280px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .how-it-works-section {
        padding: 40px 0;
    }

    .how-it-works-header h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .how-it-works-grid {
        gap: 25px;
        padding: 0 15px;
    }

    .how-it-works-item h3 {
        font-size: 1.3rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .founder-section {
        padding: 40px 0;
    }

    .founder-content {
        gap: 30px;
        padding: 0 15px;
    }

    .founder-text h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .founder-text p {
        font-size: 1.1rem;
    }

    .principles-section,
    .corporate-section {
        padding: 40px 0;
    }

    .principles-content h2,
    .corporate-content h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .principles-content p,
    .corporate-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .principles-btn,
    .corporate-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .final-cta-section {
        padding: 40px 15px;
    }

    .final-cta-section h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-btn {
        width: 100%;
        max-width: 280px;
        min-width: auto;
        padding: 15px 25px;
        font-size: 0.95rem;
    }
}

/* Large screens */
@media (min-width: 1200px) {
    .stats-container {
        gap: 40px;
        max-width: 1600px;
    }

    .stat-item {
        max-width: 240px;
        padding: 35px 25px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-description {
        font-size: 1rem;
    }
}

/* Medium screens */
@media (max-width: 1199px) and (min-width: 992px) {
    .stats-container {
        gap: 30px;
        max-width: 1100px;
    }

    .stat-item {
        max-width: 220px;
    }

    .stat-number {
        font-size: 2.1rem;
    }
}