﻿
:root {
    --sw-blue: #1466b2;
    --sw-green: #93c318;
    --sw-dark: #0b2545;
    --sw-cream: #f6f3ec;
    --sw-mint: #f1fdf6;
    --sw-mint-border: #d1f2e0;
}

/* ============ Keyframes ============ */
@@keyframes swFloat {
    0%, 100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-18px)
    }
}

@@keyframes swPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(147,195,24,.55)
    }

    50% {
        box-shadow: 0 0 0 18px rgba(147,195,24,0)
    }
}

@@keyframes swSpin {
    to {
        transform: rotate(360deg)
    }
}

@@keyframes swShimmer {
    0% {
        background-position: -200% 0
    }

    100% {
        background-position: 200% 0
    }
}

@@keyframes swSlideInUp {
    from {
        opacity: 0;
        transform: translateY(40px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@@keyframes swKenburns {
    0% {
        transform: scale(1)
    }

    100% {
        transform: scale(1.08)
    }
}

@@keyframes swGradientMove {
    0% {
        background-position: 0 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0 50%
    }
}

/* ============ 1. HERO ============ */
.sw-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: #fff;
    isolation: isolate;
}

    .sw-hero .sw-hero-bg {
        position: absolute;
        inset: 0;
        z-index: -2;
        background-image: url('/assets/img/home-6/hero/hero-bg.png');
        background-size: cover;
        background-position: center;
        animation: swKenburns 18s ease-in-out infinite alternate;
    }

    .sw-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -1;
        background: radial-gradient(ellipse at 20% 30%, rgba(20,102,178,.55), transparent 55%), linear-gradient(120deg, rgba(8,24,48,.85) 0%, rgba(8,24,48,.55) 50%, rgba(8,24,48,.35) 100%);
    }

.sw-hero-shape {
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(147,195,24,.25), transparent 70%);
    filter: blur(20px);
    z-index: -1;
    animation: swFloat 8s ease-in-out infinite;
}

    .sw-hero-shape.s1 {
        top: -120px;
        right: -120px;
    }

    .sw-hero-shape.s2 {
        bottom: -160px;
        left: -120px;
        animation-delay: -4s;
        background: radial-gradient(circle, rgba(20,102,178,.35), transparent 70%);
    }

.sw-hero .sw-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(8px);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: .8rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 24px;
    animation: swSlideInUp .8s ease both;
}

    .sw-hero .sw-eyebrow .sw-dot {
        width: 8px;
        height: 8px;
        background: var(--sw-green);
        border-radius: 50%;
        animation: swPulse 1.8s ease-in-out infinite;
        box-shadow: 0 0 0 0 rgba(147,195,24,.55);
    }

.sw-hero h1 {
    color: #fff;
    font-weight: 800;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: -.02em;
    margin-bottom: 24px;
    animation: swSlideInUp 1s .15s ease both;
}

    .sw-hero h1 .sw-accent {
        background: linear-gradient(120deg, var(--sw-green) 0%, #c8f054 50%, var(--sw-green) 100%);
        background-size: 200% auto;
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        animation: swGradientMove 4s ease infinite;
    }

.sw-hero p.sw-hero-sub {
    color: #e8eef5;
    font-size: 1.2rem;
    max-width: 680px;
    line-height: 1.65;
    margin: 0 0 36px;
    animation: swSlideInUp 1s .3s ease both;
}

.sw-hero .sw-cta-group {
    animation: swSlideInUp 1s .45s ease both;
}

    .sw-hero .sw-cta-group .sw-btn {
        margin-right: 12px;
        margin-bottom: 12px;
    }

/* Buttons (custom — works regardless of theme button state) */
.sw-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    border-radius: 100px;
    font-weight: 600;
    font-size: .95rem;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}

.sw-btn-primary {
    background: var(--sw-green);
    color: #0b2545;
    border: 2px solid var(--sw-green);
}

    .sw-btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 30px rgba(147,195,24,.45);
        color: #0b2545;
        background: #c4f054;
    }

.sw-btn-ghost {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.5);
}

    .sw-btn-ghost:hover {
        background: #fff;
        color: var(--sw-dark);
        transform: translateY(-3px);
    }

.sw-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,.4), transparent);
    transform: translateX(-100%);
    transition: transform .7s ease;
}

.sw-btn:hover::after {
    transform: translateX(100%);
}

/* Hero stat strip */
.sw-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
    animation: swSlideInUp 1s .6s ease both;
}

.sw-hero-stat {
    color: #fff;
}

    .sw-hero-stat .num {
        font-size: clamp(2rem, 3.5vw, 2.8rem);
        font-weight: 800;
        color: var(--sw-green);
        line-height: 1;
    }

    .sw-hero-stat .lab {
        font-size: .85rem;
        letter-spacing: .1em;
        text-transform: uppercase;
        opacity: .85;
        margin-top: 6px;
    }

/* Scroll cue */
.sw-scroll-cue {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.7);
    font-size: .75rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    text-align: center;
}

    .sw-scroll-cue::after {
        content: "";
        display: block;
        width: 1px;
        height: 36px;
        background: rgba(255,255,255,.5);
        margin: 8px auto 0;
        animation: swFloat 2s ease-in-out infinite;
    }

/* ============ Generic section heading ============ */
.sw-eyebrow-line {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--sw-blue);
    font-size: .8rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 700;
}

    .sw-eyebrow-line::before {
        content: "";
        width: 32px;
        height: 2px;
        background: var(--sw-green);
        display: inline-block;
    }

.sw-h2 {
    font-size: clamp(1.9rem, 3.2vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--sw-dark);
    margin: 14px 0 20px;
    letter-spacing: -.01em;
}

/* ============ 2. SIX SMALL SERVICE CARDS ============ */
.sw-service-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(8,24,48,.05);
    transition: transform .35s ease, box-shadow .35s ease;
    height: 100%;
}

    .sw-service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 24px 50px rgba(20,102,178,.18);
    }

    .sw-service-card .sw-card-img {
        position: relative;
        height: 220px;
        overflow: hidden;
    }

        .sw-service-card .sw-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .6s ease;
        }

    .sw-service-card:hover .sw-card-img img {
        transform: scale(1.08);
    }

    .sw-service-card .sw-card-img::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 40%, rgba(8,24,48,.55));
    }

    .sw-service-card .sw-card-icon {
        position: absolute;
        top: 16px;
        left: 16px;
        width: 48px;
        height: 48px;
        background: var(--sw-green);
        border-radius: 12px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        transition: transform .35s ease;
    }

    .sw-service-card:hover .sw-card-icon {
        transform: rotate(-8deg) scale(1.08);
    }

    .sw-service-card .sw-card-icon i {
        color: #0b2545;
        font-size: 1.2rem;
    }

    .sw-service-card .sw-card-body {
        padding: 22px 22px 24px;
    }

        .sw-service-card .sw-card-body h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--sw-dark);
            margin-bottom: 8px;
            transition: color .25s ease;
        }

    .sw-service-card:hover .sw-card-body h4 {
        color: var(--sw-blue);
    }

    .sw-service-card .sw-card-body p {
        font-size: .9rem;
        color: #5b6b7b;
        margin: 0;
        line-height: 1.55;
    }

    .sw-service-card .sw-card-arrow {
        position: absolute;
        bottom: 22px;
        right: 22px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: var(--sw-cream);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: var(--sw-blue);
        transition: background .25s ease, transform .25s ease, color .25s ease;
    }

    .sw-service-card:hover .sw-card-arrow {
        background: var(--sw-green);
        color: #fff;
        transform: rotate(-45deg);
    }

/* ============ 3. COMMITMENTS (with header image) ============ */
.sw-commit-box {
    position: relative;
    background: #fff;
    border: 1px solid #eef1ee;
    border-radius: 18px;
    height: 100%;
    transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

    .sw-commit-box::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(180deg, var(--sw-green), var(--sw-blue));
        transform: scaleY(0);
        transform-origin: top;
        transition: transform .5s ease;
        z-index: 3;
    }

    .sw-commit-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 24px 50px rgba(20,102,178,.18);
        border-color: transparent;
    }

        .sw-commit-box:hover::before {
            transform: scaleY(1);
        }

.sw-commit-img {
    position: relative;
    height: 210px;
    overflow: hidden;
    background: linear-gradient(135deg, #e8f1fa, #f6f3ec);
}

    .sw-commit-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .8s ease, filter .5s ease;
    }

.sw-commit-box:hover .sw-commit-img img {
    transform: scale(1.12);
    filter: brightness(1.05);
}

.sw-commit-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(11,37,69,.55) 100%);
    transition: opacity .4s ease;
}

.sw-commit-box:hover .sw-commit-img::after {
    background: linear-gradient(180deg, rgba(20,102,178,.15) 0%, rgba(11,37,69,.65) 100%);
}

.sw-commit-img .sw-commit-num {
    position: absolute;
    top: 14px;
    right: 20px;
    font-family: 'Times New Roman', serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: rgba(255,255,255,.92);
    line-height: 1;
    text-shadow: 0 4px 14px rgba(0,0,0,.35);
    z-index: 2;
    transition: transform .4s ease;
}

.sw-commit-box:hover .sw-commit-num {
    transform: scale(1.1) rotate(-4deg);
}

.sw-commit-body {
    position: relative;
    padding: 44px 26px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sw-commit-icon {
    position: absolute;
    top: -32px;
    left: 26px;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, #fff, #fafdfb);
    border: 2px solid #fff;
    box-shadow: 0 10px 24px rgba(20,102,178,.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .45s ease, background .45s ease, box-shadow .45s ease;
    z-index: 2;
}

.sw-commit-box:hover .sw-commit-icon {
    transform: rotate(-12deg) scale(1.08);
    background: linear-gradient(135deg, var(--sw-green), #6fa30b);
    box-shadow: 0 16px 32px rgba(147,195,24,.45);
}

.sw-commit-icon i {
    color: var(--sw-blue);
    font-size: 1.6rem;
    transition: color .35s ease, transform .35s ease;
}

.sw-commit-box:hover .sw-commit-icon i {
    color: #fff;
}

.sw-commit-body h4 {
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--sw-dark);
    margin-bottom: 12px;
    transition: color .3s ease;
}

.sw-commit-box:hover .sw-commit-body h4 {
    color: var(--sw-blue);
}

.sw-commit-body p {
    color: #5b6b7b;
    font-size: .95rem;
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

/* Subtle shimmer band that sweeps across image on hover */
.sw-commit-img::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.25) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform .9s ease;
    pointer-events: none;
}

.sw-commit-box:hover .sw-commit-img::before {
    transform: translateX(100%);
}

/* ============ 4. PROBLEMS / TICK LIST ============ */
.sw-img-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 50px rgba(8,24,48,.18);
}

    .sw-img-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 6s ease;
    }

    .sw-img-frame:hover img {
        transform: scale(1.06);
    }

    .sw-img-frame::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 60%, rgba(20,102,178,.15));
        pointer-events: none;
    }

    .sw-img-frame .sw-img-badge {
        position: absolute;
        left: 22px;
        bottom: 22px;
        z-index: 2;
        background: rgba(255,255,255,.95);
        backdrop-filter: blur(8px);
        padding: 14px 18px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

        .sw-img-frame .sw-img-badge i {
            color: var(--sw-green);
            font-size: 1.4rem;
        }

        .sw-img-frame .sw-img-badge strong {
            color: var(--sw-dark);
            font-size: .95rem;
        }

.sw-tick-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

    .sw-tick-list li {
        position: relative;
        padding-left: 38px;
        margin-bottom: 14px;
        color: #3b4a5a;
        line-height: 1.65;
        font-size: 1rem;
        opacity: 0;
        transform: translateY(10px);
        animation: swSlideInUp .6s ease forwards;
    }

        .sw-tick-list li:nth-child(1) {
            animation-delay: .05s
        }

        .sw-tick-list li:nth-child(2) {
            animation-delay: .15s
        }

        .sw-tick-list li:nth-child(3) {
            animation-delay: .25s
        }

        .sw-tick-list li:nth-child(4) {
            animation-delay: .35s
        }

        .sw-tick-list li:nth-child(5) {
            animation-delay: .45s
        }

        .sw-tick-list li:nth-child(6) {
            animation-delay: .55s
        }

        .sw-tick-list li:nth-child(7) {
            animation-delay: .65s
        }

        .sw-tick-list li::before {
            content: "\2713"; /* unicode check mark – no FA font dependency */
            color: #fff;
            background: linear-gradient(135deg, var(--sw-green), #6fa30b);
            position: absolute;
            left: 0;
            top: 4px;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: .9rem;
            font-weight: 900;
            line-height: 1;
            box-shadow: 0 4px 10px rgba(147,195,24,.35);
        }

/* ============ 5. VIDEO ============ */
.sw-video-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #0b2545;
    box-shadow: 0 30px 60px rgba(8,24,48,.25);
    aspect-ratio: 16 / 9;
    max-width: 1120px;
    margin: 0 auto;
    isolation: isolate;
}

    .sw-video-wrap > video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        background: #000;
        border-radius: 24px;
    }
    /* Soft frame glow */
    .sw-video-wrap::before {
        content: "";
        position: absolute;
        inset: -2px;
        z-index: -1;
        border-radius: 26px;
        background: linear-gradient(135deg, var(--sw-green), var(--sw-blue), var(--sw-green));
        background-size: 200% 200%;
        animation: swGradientMove 6s ease infinite;
        opacity: .55;
        filter: blur(10px);
    }
/* Bottom-only gradient for caption readability — pointer-events: none so it doesn't block video controls */
.sw-video-title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    color: #fff;
    padding: 70px 32px 24px;
    background: linear-gradient(180deg, transparent 0%, rgba(8,24,48,.85) 100%);
    pointer-events: none;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
}

    .sw-video-title small {
        display: inline-block;
        letter-spacing: .2em;
        text-transform: uppercase;
        font-size: .75rem;
        opacity: .9;
        background: rgba(147,195,24,.18);
        border: 1px solid rgba(147,195,24,.4);
        padding: 4px 12px;
        border-radius: 100px;
        color: #c8f054;
    }

    .sw-video-title h3 {
        color: #fff;
        margin: 10px 0 0;
        font-size: 1.4rem;
        font-weight: 700;
    }

@@media (max-width: 768px) {
    .sw-video-wrap {
        aspect-ratio: 4 / 3;
    }

    .sw-video-title {
        padding: 50px 20px 18px;
    }

        .sw-video-title h3 {
            font-size: 1.1rem;
        }
}

/* ============ 6. STATS SLIDER ============ */
.sw-stats-wrap {
    position: relative;
    background: linear-gradient(135deg, #0b2545 0%, #133a6e 50%, #0b2545 100%);
    background-size: 200% 200%;
    animation: swGradientMove 14s ease infinite;
    padding: 80px 40px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(8,24,48,.25);
}

    .sw-stats-wrap::before {
        content: "";
        position: absolute;
        top: -150px;
        right: -150px;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(147,195,24,.32), transparent 65%);
        filter: blur(10px);
    }

    .sw-stats-wrap::after {
        content: "";
        position: absolute;
        bottom: -180px;
        left: -180px;
        width: 460px;
        height: 460px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(20,180,255,.22), transparent 65%);
        filter: blur(10px);
    }

.sw-stats-grid-bg {
    position: absolute;
    inset: 0;
    opacity: .08;
    background-image: linear-gradient(rgba(255,255,255,.4) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.4) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.sw-stat-card {
    position: relative;
    z-index: 1;
    background: linear-gradient(145deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.03) 100%);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px;
    padding: 32px 26px;
    height: 100%;
    text-align: left;
    transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
    overflow: hidden;
}

    .sw-stat-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--sw-green), #5fbcff, var(--sw-green));
        background-size: 200% 100%;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .5s ease;
        animation: swGradientMove 3s linear infinite;
    }

    .sw-stat-card:hover {
        transform: translateY(-10px);
        border-color: rgba(147,195,24,.4);
        box-shadow: 0 20px 50px rgba(147,195,24,.18);
    }

        .sw-stat-card:hover::before {
            transform: scaleX(1);
        }

.sw-stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(147,195,24,.25), rgba(95,188,255,.18));
    border: 1px solid rgba(147,195,24,.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: var(--sw-green);
    font-size: 1.25rem;
    transition: transform .35s ease;
}

.sw-stat-card:hover .sw-stat-icon {
    transform: rotate(-12deg) scale(1.08);
}

.sw-stat-big {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 14px;
    display: flex;
    align-items: baseline;
    gap: 6px;
    background: linear-gradient(135deg, #ffffff 0%, #c8f054 60%, #93c318 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -.02em;
}

    .sw-stat-big small {
        font-size: .42em;
        font-weight: 600;
        color: #93c318;
        -webkit-text-fill-color: #93c318;
    }

.sw-stat-caption {
    font-size: .78rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 10px;
}

.sw-stat-sub {
    font-size: .88rem;
    color: rgba(255,255,255,.7);
    line-height: 1.6;
    margin: 0;
}

.sw-stats-wrap .swiper-pagination {
    position: static;
    margin-top: 40px;
}

.sw-stats-wrap .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #fff;
    opacity: .25;
    transition: all .3s ease;
}

.sw-stats-wrap .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--sw-green);
    width: 32px;
    border-radius: 5px;
}

/* ============ 7. SUBSIDY ============ */
.sw-subsidy-highlight {
    background: var(--sw-mint);
    border: 1px solid var(--sw-mint-border);
    border-radius: 16px;
    padding: 32px;
    margin-top: 24px;
    position: relative;
    overflow: hidden;
}

    .sw-subsidy-highlight::before {
        content: "";
        position: absolute;
        top: -40px;
        right: -40px;
        width: 140px;
        height: 140px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(147,195,24,.25), transparent 70%);
    }

    .sw-subsidy-highlight h3 {
        color: #1f3d2b;
        margin-bottom: 16px;
        font-weight: 700;
        font-size: 1.45rem;
        line-height: 1.35;
        position: relative;
    }

    .sw-subsidy-highlight em {
        color: var(--sw-blue);
        font-style: italic;
        font-weight: 700;
    }

    .sw-subsidy-highlight p {
        position: relative;
        margin: 0;
        font-size: 1.05rem;
        color: #3b4a5a;
    }

.sw-table-card {
    background: #fff;
    border: 1px solid #eef1ee;
    border-radius: 18px;
    padding: 12px;
    box-shadow: 0 18px 40px rgba(8,24,48,.08);
}

.sw-subsidy-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

    .sw-subsidy-table th, .sw-subsidy-table td {
        padding: 18px 16px;
        text-align: center;
        border-bottom: 1px solid #f0f3f0;
    }

    .sw-subsidy-table th {
        font-size: .8rem;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: var(--sw-dark);
        font-weight: 700;
        background: var(--sw-cream);
    }

        .sw-subsidy-table th:first-child {
            border-top-left-radius: 12px;
        }

        .sw-subsidy-table th:last-child {
            border-top-right-radius: 12px;
        }

    .sw-subsidy-table tr {
        transition: background .25s ease, transform .25s ease;
    }

    .sw-subsidy-table tbody tr:hover {
        background: #fafdfb;
    }

    .sw-subsidy-table tr.sw-best td {
        background: linear-gradient(120deg, #eaf5ec, #d8edda);
        font-weight: 700;
        color: #1f3d2b;
        font-size: 1.05rem;
    }

    .sw-subsidy-table tr.sw-best {
        position: relative;
    }

    .sw-subsidy-table .sw-best-mark {
        display: inline-flex;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: var(--sw-green);
        color: #fff;
        align-items: center;
        justify-content: center;
        font-size: .7rem;
        margin-left: 6px;
        animation: swPulse 2s ease infinite;
    }

/* ============ 9. MONITORING ============ */
.sw-monitor-block {
    background: var(--sw-mint);
    border-left: 4px solid var(--sw-green);
    padding: 20px 24px;
    border-radius: 8px;
    margin-bottom: 16px;
    color: #3b4a5a;
    line-height: 1.65;
    transition: transform .25s ease, box-shadow .25s ease;
}

    .sw-monitor-block:hover {
        transform: translateX(6px);
        box-shadow: 0 10px 24px rgba(147,195,24,.18);
    }

    .sw-monitor-block em {
        color: var(--sw-blue);
        font-style: italic;
        font-weight: 600;
    }

/* ============ 10. FAQ ============ */
.sw-faq .accordion-item {
    border: 1px solid #eef1ee;
    border-radius: 14px !important;
    margin-bottom: 14px;
    overflow: hidden;
    transition: box-shadow .25s ease, border-color .25s ease;
}

    .sw-faq .accordion-item:hover {
        border-color: var(--sw-mint-border);
        box-shadow: 0 10px 24px rgba(20,102,178,.06);
    }

.sw-faq .accordion-button {
    background: var(--sw-cream);
    font-weight: 700;
    color: var(--sw-dark);
    padding: 22px 26px;
    font-size: 1.05rem;
}

    .sw-faq .accordion-button:not(.collapsed) {
        background: linear-gradient(120deg, #eaf5ec, #d8edda);
        color: var(--sw-dark);
        box-shadow: none;
    }

    .sw-faq .accordion-button:focus {
        box-shadow: none;
    }

    .sw-faq .accordion-button::after {
        background-image: none;
        content: "+";
        font-size: 1.6rem;
        font-weight: 300;
        width: 32px;
        height: 32px;
        line-height: 32px;
        text-align: center;
        background: #fff;
        border-radius: 50%;
        transform: none;
        transition: transform .25s ease, background .25s ease, color .25s ease;
        color: var(--sw-blue);
    }

    .sw-faq .accordion-button:not(.collapsed)::after {
        content: "\2212";
        background: var(--sw-green);
        color: #fff;
        transform: rotate(180deg);
    }

.sw-faq .accordion-body {
    padding: 22px 26px;
    color: #5b6b7b;
    line-height: 1.7;
    background: #fff;
}

/* ============ Section padding util ============ */
.sw-section {
    padding: 110px 0;
    position: relative;
}

.sw-section--alt {
    background: linear-gradient(180deg, #fafbfc, #fff);
}

/* ============ Wave divider ============ */
.sw-wave-divider {
    display: block;
    width: 100%;
    height: 60px;
}

/* Responsive tweaks */
@@media (max-width: 768px) {
    .sw-hero {
        min-height: 90vh;
    }

    .sw-hero-stats {
        gap: 24px;
        margin-top: 36px;
    }

    .sw-section {
        padding: 70px 0;
    }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.sw-lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #5b6b7b;
    margin-bottom: 0;
}

.sw-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5b6b7b;
}

/* --- Our story problem list --- */
.sw-problem-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

    .sw-problem-list li {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        padding: 12px 0;
        font-size: 1.05rem;
        line-height: 1.7;
        color: var(--sw-dark);
        border-bottom: 1px dashed #dfe6ee;
    }

        .sw-problem-list li:last-child {
            border-bottom: 0;
        }

        .sw-problem-list li i {
            flex: 0 0 auto;
            margin-top: 6px;
            font-size: .95rem;
            color: #d9822b;
        }

/* --- Page banner (image + readable overlay) --- */
.sw-page-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 190px 0 110px;
    isolation: isolate;
}

    .sw-page-banner::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -1;
        background: linear-gradient(100deg, rgba(11,37,69,.92) 0%, rgba(11,37,69,.78) 45%, rgba(11,37,69,.35) 100%);
    }

.sw-page-banner-inner {
    max-width: 760px;
}

.sw-page-banner-eyebrow {
    display: inline-block;
    font-size: .78rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--sw-green);
    padding: 7px 16px;
    border: 1px solid rgba(147,195,24,.45);
    border-radius: 100px;
    margin-bottom: 22px;
}

.sw-page-banner h1 {
    color: #fff;
    font-size: clamp(2rem, 4.6vw, 3.4rem);
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 18px;
}

.sw-page-banner p {
    color: rgba(255,255,255,.82);
    font-size: 1.08rem;
    line-height: 1.75;
    max-width: 620px;
    margin-bottom: 32px;
}

.sw-page-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

    .sw-page-banner-actions .sw-btn-ghost {
        color: #fff;
        border-color: rgba(255,255,255,.45);
    }

        .sw-page-banner-actions .sw-btn-ghost:hover {
            background: #fff;
            border-color: #fff;
            color: var(--sw-dark);
        }

/* --- Quick facts strip --- */
.sw-facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 54px;
}

.sw-fact {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid #e6ecf3;
    border-radius: 16px;
    padding: 22px 20px;
    transition: transform .3s ease, box-shadow .3s ease;
}

    .sw-fact:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 34px rgba(11,37,69,.09);
    }

.sw-fact-icon {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20,102,178,.08);
    color: var(--sw-blue);
    font-size: 1.05rem;
}

.sw-fact strong {
    display: block;
    font-size: 1.35rem;
    line-height: 1.2;
    color: var(--sw-dark);
}

.sw-fact span {
    display: block;
    font-size: .86rem;
    line-height: 1.5;
    color: #7a8896;
    margin-top: 3px;
}

/* --- Story answer card --- */
.sw-answer-card {
    position: relative;
    background: #fff;
    border-left: 4px solid var(--sw-green);
    border-radius: 12px;
    padding: 26px 28px 26px 30px;
    box-shadow: 0 12px 30px rgba(11,37,69,.07);
}

    .sw-answer-card i {
        color: var(--sw-green);
        opacity: .35;
        font-size: 1.4rem;
        margin-bottom: 10px;
        display: block;
    }

    .sw-answer-card p {
        margin: 0;
        font-size: 1.05rem;
        line-height: 1.8;
        color: var(--sw-dark);
        font-weight: 500;
    }

/* --- Four ideas --- */
.sw-idea-box {
    height: 100%;
    display: flex;
    gap: 22px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #e6ecf3;
    border-radius: 18px;
    padding: 30px;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

    .sw-idea-box:hover {
        transform: translateY(-6px);
        border-color: var(--sw-blue);
        box-shadow: 0 22px 44px rgba(11,37,69,.10);
    }

.sw-idea-photo {
    position: relative;
    flex: 0 0 auto;
    width: 84px;
    height: 84px;
    border-radius: 14px;
    overflow: hidden;
    background: var(--sw-cream);
    border: 1px solid #e6ecf3;
}

    .sw-idea-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.sw-idea-num {
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--sw-blue);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
    padding: 3px 9px;
    border-top-right-radius: 8px;
}

.sw-idea-body h3 {
    font-size: 1.2rem;
    line-height: 1.45;
    color: var(--sw-dark);
    margin-bottom: 12px;
}

.sw-idea-body p {
    font-size: .98rem;
    line-height: 1.75;
    color: #5b6b7b;
    margin-bottom: 0;
}

/* --- Comparison table --- */
.sw-compare-table {
    width: 100%;
    border-collapse: collapse;
}

    .sw-compare-table th {
        padding: 18px 24px;
        font-size: .82rem;
        letter-spacing: .09em;
        text-transform: uppercase;
        font-weight: 700;
    }

        .sw-compare-table th:first-child {
            background: #eef2f7;
            color: #6b7b8c;
        }

        .sw-compare-table th:last-child {
            background: var(--sw-blue);
            color: #fff;
        }

    .sw-compare-table td {
        padding: 20px 24px;
        vertical-align: top;
        border-top: 1px solid #e6ecf3;
        font-size: .98rem;
        line-height: 1.7;
    }

        /* Floated icon + block text so the copy wraps alongside, not beneath */
        .sw-compare-table td i {
            float: left;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            font-size: .68rem;
            margin: 4px 12px 0 0;
        }

    .sw-compare-table .sw-col-common {
        width: 38%;
        color: #7a8896;
        background: #fafbfc;
    }

        .sw-compare-table .sw-col-common i {
            background: #fdecec;
            color: #d0454c;
        }

    .sw-compare-table .sw-col-ours {
        color: #5b6b7b;
    }

        .sw-compare-table .sw-col-ours i {
            background: rgba(147,195,24,.16);
            color: #6f9412;
        }

    .sw-compare-table td span {
        display: block;
        overflow: hidden; /* new block formatting context, sits beside the floated icon */
    }

    .sw-compare-table .sw-col-ours strong {
        display: block;
        color: var(--sw-dark);
        font-size: 1.03rem;
        margin-bottom: 4px;
    }

/* --- Quote band --- */
.sw-quote-section {
    background: var(--sw-dark);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

    .sw-quote-section::after {
        content: "";
        position: absolute;
        right: -120px;
        top: -120px;
        width: 380px;
        height: 380px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(147,195,24,.18), transparent 68%);
    }

    .sw-quote-section .container {
        position: relative;
        z-index: 2;
    }

.sw-quote-eyebrow {
    display: inline-block;
    font-size: .82rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--sw-green);
    margin-bottom: 26px;
}

.sw-quote {
    font-size: clamp(1.6rem, 3.4vw, 2.6rem);
    line-height: 1.45;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

    .sw-quote em {
        font-style: normal;
        color: var(--sw-green);
    }

.sw-quote-rule {
    width: 64px;
    height: 3px;
    background: var(--sw-green);
    margin: 34px auto 22px;
    border-radius: 2px;
}

.sw-quote-sign {
    color: rgba(255,255,255,.72);
    letter-spacing: .06em;
    margin-bottom: 0;
}

    .sw-quote-sign span {
        color: var(--sw-green);
        margin: 0 6px;
    }

/* --- About CTA --- */
.sw-about-cta {
    background: var(--sw-blue);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

    .sw-about-cta::before {
        content: "";
        position: absolute;
        left: -80px;
        bottom: -140px;
        width: 340px;
        height: 340px;
        border-radius: 50%;
        background: rgba(255,255,255,.06);
    }

    .sw-about-cta .container {
        position: relative;
        z-index: 2;
    }

    .sw-about-cta h2 {
        color: #fff;
        font-size: clamp(1.7rem, 3.2vw, 2.5rem);
        line-height: 1.35;
        margin-bottom: 20px;
    }

    .sw-about-cta p {
        color: rgba(255,255,255,.85);
        font-size: 1.05rem;
        line-height: 1.8;
        max-width: 760px;
        margin: 0 auto 34px;
    }

    .sw-about-cta .sw-btn-primary {
        background: var(--sw-green);
        border-color: var(--sw-green);
        color: var(--sw-dark);
    }

        .sw-about-cta .sw-btn-primary:hover {
            background: #fff;
            border-color: #fff;
            color: var(--sw-blue);
        }

.sw-cta-points {
    list-style: none;
    padding: 0;
    margin: 34px 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 28px;
}

    .sw-cta-points li {
        display: flex;
        align-items: center;
        gap: 9px;
        color: rgba(255,255,255,.9);
        font-size: .95rem;
    }

    .sw-cta-points i {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: var(--sw-green);
        color: var(--sw-dark);
        font-size: .6rem;
    }

/* Footer backdrop is a dark solar-panel photo, so the theme's 0.9 navy wash
   hid it almost entirely. Ease it slightly to let the array read. */
.footer-section::before {
    opacity: .82;
}

/* ============================================================
   SHARED CTA BAND (rendered by _Layout)
   ============================================================ */

.sw-cta-band {
    background: var(--sw-green);
    padding: 56px 0;
}

.sw-cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.sw-cta-band-eyebrow {
    display: inline-block;
    font-size: .76rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(11,37,69,.62);
    margin-bottom: 10px;
}

.sw-cta-band-text h3 {
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    line-height: 1.3;
    font-weight: 700;
    color: var(--sw-dark);
    margin: 0 0 10px;
}

.sw-cta-band-text p {
    margin: 0;
    color: rgba(11,37,69,.72);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 620px;
}

.sw-cta-band-btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--sw-dark);
    color: #fff;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 100px;
    text-decoration: none;
    transition: background .3s ease, color .3s ease, transform .3s ease;
}

    .sw-cta-band-btn:hover {
        background: #fff;
        color: var(--sw-dark);
        transform: translateY(-2px);
    }

    .sw-cta-band-btn i {
        transition: transform .3s ease;
    }

    .sw-cta-band-btn:hover i {
        transform: translateX(4px);
    }

@media (max-width: 991.98px) {
    .sw-facts {
        grid-template-columns: repeat(2, 1fr);
    }

    .sw-cta-band-inner {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 767.98px) {
    .sw-page-banner {
        padding: 150px 0 80px;
    }

        .sw-page-banner::before {
            background: linear-gradient(180deg, rgba(11,37,69,.9) 0%, rgba(11,37,69,.82) 100%);
        }

    .sw-page-banner-actions .sw-btn {
        width: 100%;
        justify-content: center;
    }

    .sw-facts {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }

    .sw-idea-box {
        flex-direction: column;
        padding: 24px;
    }

    /* Stack the comparison table into labelled cards */
    .sw-compare-table thead {
        display: none;
    }

    .sw-compare-table,
    .sw-compare-table tbody,
    .sw-compare-table tr,
    .sw-compare-table td {
        display: block;
        width: 100%;
    }

    .sw-compare-table tr {
        border-top: 1px solid #e6ecf3;
    }

        .sw-compare-table tr:first-child {
            border-top: 0;
        }

    .sw-compare-table td {
        border-top: 0;
        padding: 16px 20px;
    }

        .sw-compare-table td::before {
            content: attr(data-label);
            display: block;
            font-size: .72rem;
            letter-spacing: .1em;
            text-transform: uppercase;
            font-weight: 700;
            color: #93a2b1;
            margin-bottom: 8px;
        }

        .sw-compare-table td.sw-col-ours::before {
            color: var(--sw-blue);
        }

    .sw-compare-table .sw-col-common {
        width: 100%;
    }

    .sw-quote-section,
    .sw-about-cta {
        padding: 70px 0;
    }

    .sw-cta-band {
        padding: 44px 0;
    }

    .sw-cta-band-btn {
        width: 100%;
        justify-content: center;
    }

    .sw-cta-points {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

