﻿/* =========================
   HOME PAGE
========================= */

.home-hero {
    padding: 70px 0 40px;
    text-align: center;
}

.home-hero-content {
    max-width: 850px;
    margin: 0 auto;
}

.home-hero-title {
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    font-weight: 700;
    letter-spacing: -1px;
}

    .home-hero-title span {
        color: var(--primary);
    }

.home-hero-text {
    max-width: 760px;
    margin: 0 auto;
    color: var(--text-muted);
    line-height: 1.9;
    font-size: 1rem;
}

/* =========================
   SERVICES
========================= */

.home-services {
    padding: 20px 0 70px;
}

.home-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.home-service-card {
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(15,23,42,0.08);
    border-radius: 24px;
    padding: 2rem;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(15,23,42,0.04);
}

    .home-service-card:hover {
        transform: translateY(-4px);
        border-color: rgba(124,92,255,0.18);
        box-shadow: 0 18px 40px rgba(15,23,42,0.08);
    }

.home-service-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.4rem;
    background: linear-gradient(135deg, rgba(124,92,255,.12), rgba(157,135,255,.18));
    color: var(--primary);
}

.home-service-card h3 {
    font-size: 1.2rem;
    margin-bottom: .8rem;
    font-weight: 700;
}

.home-service-card p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: .95rem;
}

/* =========================
   WHY SECTION
========================= */

.home-about {
    padding: 40px 0 70px;
}

.home-about-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 2.5rem;
    align-items: center;
}

.home-about-content h2 {
    font-size: clamp(1.9rem, 4vw, 3rem);
    margin-bottom: 1rem;
    line-height: 1.2;
}

    .home-about-content h2 span {
        color: var(--primary);
    }

.home-about-content p {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 1rem;
}

.home-feature-list {
    display: grid;
    gap: .9rem;
    margin-top: 1.5rem;
}

.home-feature-item {
    display: flex;
    align-items: flex-start;
    gap: .8rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.home-feature-check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20,195,142,.12);
    color: var(--secondary);
    font-size: .85rem;
    margin-top: 2px;
}

/* =========================
   TRUST CARD
========================= */

.home-trust-card {
    background: rgba(255,255,255,0.78);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(15,23,42,0.08);
    border-radius: 28px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(15,23,42,0.06);
}

    .home-trust-card h3 {
        margin-bottom: 1rem;
        font-size: 1.4rem;
    }

    .home-trust-card p {
        color: var(--text-muted);
        line-height: 1.8;
    }

.home-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.8rem;
}

.home-stat-box {
    background: linear-gradient(180deg,#f8f9fd,#f2f5fb);
    border-radius: 18px;
    padding: 1.2rem;
    border: 1px solid rgba(15,23,42,0.06);
}

    .home-stat-box h4 {
        font-size: 1.6rem;
        margin-bottom: .35rem;
        color: var(--primary);
        font-weight: 700;
    }

    .home-stat-box p {
        margin: 0;
        font-size: .85rem;
        color: var(--text-muted);
    }

/* =========================
   CTA
========================= */

.home-cta {
    padding: 30px 0 70px;
}

.home-cta-box {
    background: linear-gradient(135deg,#7c5cff,#9d87ff);
    border-radius: 32px;
    padding: 4rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

    .home-cta-box::before {
        content: '';
        position: absolute;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: rgba(255,255,255,.08);
        top: -120px;
        right: -80px;
    }

.home-cta-content {
    position: relative;
    z-index: 2;
}

.home-cta-box h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.home-cta-box p {
    max-width: 650px;
    margin: 0 auto;
    opacity: .92;
    line-height: 1.8;
}

.home-cta-btn {
    margin-top: 1.8rem;
    min-width: 220px;
    height: 54px;
    border: none;
    border-radius: 16px;
    background: white;
    color: var(--primary);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
}

    .home-cta-btn:hover {
        transform: translateY(-2px);
    }

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

    .home-services-grid,
    .home-about-grid {
        grid-template-columns: 1fr;
    }

    .home-about-content {
        order: 1;
    }

    .home-trust-card {
        order: 2;
    }
}

@media (max-width: 768px) {

    .home-hero {
        padding: 50px 0 30px;
    }

    .home-hero-title {
        font-size: 2.4rem;
    }

    .home-services {
        padding-bottom: 50px;
    }

    .home-service-card {
        padding: 1.5rem;
    }

    .home-about {
        padding: 20px 0 50px;
    }

    .home-trust-card {
        padding: 1.5rem;
    }

    .home-cta-box {
        padding: 3rem 1.5rem;
        border-radius: 24px;
    }

    .home-cta-btn {
        width: 100%;
    }
}

@media (max-width: 520px) {

    .home-stats-grid {
        grid-template-columns: 1fr;
    }

    .home-hero-title {
        font-size: 2rem;
    }

    .home-hero-text {
        font-size: .95rem;
    }
}
