﻿.page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px
}
/* HERO */
.sow-hero {
    background: linear-gradient(135deg,#1e40af 0%,#3b82f6 50%,#10b981 100%);
    color: #fff;
    border-radius: 24px;
    padding: 40px 24px 50px;
    box-shadow: 0 30px 80px rgba(0,0,0,.4);
    position: relative;
    overflow: hidden;
    margin-bottom: 40px
}
/* Keep hero targets visible under sticky header */
#dynamicSection,
#gradePicker,
.quick-pick-card {
    scroll-margin-top: 110px; /* adjust to your header height */
}
.sow-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.3);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    backdrop-filter: blur(10px)
}

.sow-hero-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px
}

.sow-hero-desc {
    font-size: 17px;
    line-height: 1.5;
    max-width: 700px;
    color: rgba(255,255,255,.9);
    margin-bottom: 24px;
    font-weight: 500
}

.sow-hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center
}

.sow-main-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #1e40af;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,.4);
    transition: all .25s
}

    .sow-main-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 50px rgba(0,0,0,.5)
    }

/* QUICK PICK / SEARCH CARD */
.quick-pick-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
    border: 1px solid #e2e8f0;
    padding: 24px;
    margin-bottom: 40px
}

.quick-headline {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px
}

    .quick-headline i {
        color: #2563eb
    }

.quick-sub {
    color: #64748b;
    font-size: 15px;
    margin-bottom: 24px;
    line-height: 1.5
}

.quick-grade-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(140px,1fr));
    gap: 12px
}

.quick-grade-btn {
    background: rgba(37,99,235,.05);
    border: 2px solid #2563eb;
    border-radius: 12px;
    padding: 14px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    color: #1e40af;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: all .2s;
    cursor: pointer;
    width: 100%
}

    .quick-grade-btn:hover, .quick-grade-btn.active {
        background: #2563eb;
        color: #fff;
        border-color: #1e40af;
        box-shadow: 0 12px 30px rgba(37,99,235,.4)
    }

/* SECTION HEADERS */
.sow-section {
    margin-bottom: 50px
}

.sow-header-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
    gap: 12px
}

.sow-title {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 10px
}

    .sow-title i {
        color: #2563eb
    }

.sow-view-all {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 6px
}

/* LIST GRID */
.scheme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(320px,1fr));
    gap: 20px
}

/* CARD */
.scheme-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0,0,0,.05);
    padding: 20px 20px 16px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all .2s
}

    .scheme-card:hover {
        box-shadow: 0 12px 36px rgba(0,0,0,.12);
        transform: translateY(-3px)
    }

.scheme-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg,#fbbf24,#f59e0b);
    color: #0f172a;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    padding: 6px 10px;
    box-shadow: 0 8px 20px rgba(245,158,11,.4);
    display: flex;
    align-items: center;
    gap: 6px
}

.scheme-title {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 8px;
    padding-right: 70px;
    word-break: break-word
}

    .scheme-title a {
        color: #1e40af;
        text-decoration: none;
        background-image: linear-gradient(currentColor,currentColor);
        background-size: 0 2px;
        background-repeat: no-repeat;
        background-position: 0 100%;
        transition: color .2s,background-size .2s;
        font-weight: 700
    }

        .scheme-title a:hover {
            color: #1e3a8a;
            background-size: 100% 2px
        }

.scheme-meta {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 12px
}

    .scheme-meta span {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        margin-right: 12px;
        white-space: nowrap
    }

.scheme-price-row {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.scheme-price {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a
}

.purchase-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.btn-wa {
    background: #22c55e;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 14px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 8px 24px rgba(16,185,129,.4);
    transition: all .2s
}

    .btn-wa:hover {
        filter: brightness(1.05);
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(16,185,129,.5)
    }

.btn-email {
    background: #111827;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 14px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 8px 24px rgba(0,0,0,.4);
    transition: all .2s
}

    .btn-email:hover {
        filter: brightness(1.05);
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(0,0,0,.5)
    }

/* TRUST */
.trust-block {
    background: #0f172a;
    color: #fff;
    border-radius: 20px;
    padding: 32px 24px;
    margin: 60px 0 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 32px
}

.trust-col-title {
    font-size: 18px;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 12px
}

.trust-text {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,.8)
}

.trust-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,.8)
}

    .trust-list li {
        display: flex;
        gap: 8px;
        margin-bottom: 10px;
        align-items: flex-start
    }

    .trust-list i {
        color: #4ade80;
        margin-top: 3px;
        flex-shrink: 0
    }

.trust-cta-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 16px;
    padding: 20px;
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    box-shadow: 0 20px 60px rgba(0,0,0,.8)
}

.trust-cta-title {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff
}

.trust-cta-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 12px
}

.trust-wa-btn {
    background: #25d366;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 12px 30px rgba(37,211,102,.5);
    transition: all .2s
}

    .trust-wa-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 36px rgba(37,211,102,.6)
    }

@media(max-width:640px) {
    .sow-hero-title {
        font-size: 28px
    }

    .sow-hero-desc {
        font-size: 15px
    }
}