/* ============================================================
   HOME PAGE STYLES — home.css
   ============================================================ */

/* ── HERO: two-column layout ── */
.hero-home {
    min-height: 92vh;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-img-wrap img {
    max-width: 100%;
    max-height: 480px;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.4));
    border-radius: 12px;
}

/* ── WHY RJK ── */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.why-img {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(10, 22, 40, 0.12);
    min-height: 100%;
}

.why-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.6s ease;
}

.why-img:hover img {
    transform: scale(1.04);
}

.why-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
    margin: 14px 0 20px;
}

.why-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.why-point {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--muted);
}

.why-point-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
    flex-shrink: 0;
}

.why-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

.why-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px 18px;
    border-left: 3px solid var(--blue);
    box-shadow: 0 2px 12px rgba(7, 16, 32, 0.08);
    transition: transform 0.25s, box-shadow 0.25s;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(26, 86, 219, 0.1);
}

.why-card h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
}

.why-card p {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.6;
}

/* ── SOLUTIONS SECTION ── */
.solutions-section {
    background: var(--navy);
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
}

.solutions-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(26, 86, 219, 0.15);
    pointer-events: none;
}

.solutions-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
    pointer-events: none;
}

.solutions-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.sol-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 36px;
}

.sol-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 28px 24px;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.sol-card[data-anim].visible {
    opacity: 1;
    transform: translateY(0);
}

.sol-card:hover {
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.sol-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--blue), var(--blue2));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.sol-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sol-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.sol-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: 18px;
}

.sol-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s;
}

.sol-link:hover {
    color: #fff;
}

.sol-cta-wrap {
    text-align: center;
}

.sol-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    background: var(--blue2);
    border-radius: 4px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.sol-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
}

.sol-cta svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
}

/* ── ADVANTAGE ── */
.adv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.adv-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
    margin: 14px 0 0;
}

.adv-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 20px 0 28px;
}

.adv-point {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
}

.adv-check {
    width: 22px;
    height: 22px;
    background: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.adv-check svg {
    width: 12px;
    height: 12px;
}

.adv-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    background: var(--blue);
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s;
}

.adv-link:hover {
    background: var(--navy);
    transform: translateX(4px);
}

.adv-img {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(10, 22, 40, 0.1);
}

.adv-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.adv-img:hover img {
    transform: scale(1.04);
}

/* ── STATS BAND ── */
.stats-band {
    background: var(--navy);
    border-radius: 16px;
    padding: 56px 40px;
    position: relative;
    overflow: hidden;
    margin-bottom: 80px;
}

.stats-band::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(26, 86, 219, 0.18);
}

.stats-band::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.12);
}

.stats-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    position: relative;
}

.stat-box {
    text-align: center;
    padding: 24px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: background 0.3s, transform 0.3s;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-4px);
}

.stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.stat-unit {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--accent);
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 8px;
    line-height: 1.4;
}

/* ── TESTIMONIALS ── */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
    margin-bottom: 0;
}

.testi-card {
    background: var(--card);
    border-radius: 14px;
    padding: 30px 28px;
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
}

.testi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(26, 86, 219, 0.1);
}

.testi-quote {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 22px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
}

.testi-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
}

.testi-role {
    font-size: 12px;
    color: var(--muted);
}

/* ── RESPONSIVE ── */
@media(max-width:768px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid .hero-img-wrap {
        display: none;
    }

    .why-grid,
    .adv-grid {
        grid-template-columns: 1fr;
    }

    .why-cards {
        grid-template-columns: 1fr;
    }

    .stats-band {
        padding: 40px 20px;
    }
}

@media(max-width:680px) {
    .testi-grid {
        grid-template-columns: 1fr;
    }
}