/* ── HERO ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0d1f6e 0%, #1a3494 50%, #2355c9 100%);
}
.hero-blob {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    filter: blur(60px);
    pointer-events: none;
}
.hero-blob-1 {
    width: 500px;
    height: 500px;
    top: -10%;
    right: -5%;
}
.hero-blob-2 {
    width: 400px;
    height: 400px;
    bottom: 40px;
    left: -8%;
}
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 7rem;
    background: #fff;
    clip-path: ellipse(55% 100% at 50% 100%);
    z-index: 2;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    padding-top: 7rem;
    padding-bottom: 10rem;
    position: relative;
    z-index: 3;
}
@media (min-width: 768px) {
    .hero-inner {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}
.hero-highlight {
    color: #bfdbfe;
    position: relative;
}
.hero-highlight::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(191, 219, 254, 0.4);
    border-radius: 4px;
    margin-bottom: 10px;
}
.hide-sm {
    display: none;
}
@media (min-width: 768px) {
    .hide-sm {
        display: block;
    }
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 32rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}
.hero-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}
.hero-checklist li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}
.check-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #93c5fd;
    flex-shrink: 0;
}
.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Hero visual */
.hero-visual {
    display: none;
    position: relative;
    align-items: center;
    justify-content: center;
}
@media (min-width: 768px) {
    .hero-visual {
        display: flex;
    }
}

.hero-img-circle {
    width: 340px;
    height: 340px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 80px rgba(255, 255, 255, 0.12);
    position: relative;
    z-index: 2;
}
@media (min-width: 1024px) {
    .hero-img-circle {
        width: 380px;
        height: 380px;
    }
}
.hero-img-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
}
.hero-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 31, 110, 0.4), transparent);
}
.hero-stat-card {
    position: absolute;
    background: #fff;
    border-radius: 1rem;
    padding: 1rem 1.25rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    z-index: 4;
    animation: fadeUp 0.7s 1s ease both;
}
.hero-stat-tl {
    bottom: 1rem;
    left: -2rem;
}
.hero-stat-br {
    top: 2rem;
    right: -1rem;
}
.stat-val {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}
.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Bottom stats bar */
.hero-stats-bar {
    position: absolute;
    bottom: 2.5rem;
    left: 0;
    right: 0;
    z-index: 4;
}
.hero-stats-inner {
    max-width: 48rem;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: center;
    gap: 3rem;
}
@media (min-width: 768px) {
    .hero-stats-inner {
        gap: 5rem;
    }
}
.hero-stat-item {
    text-align: center;
}
.hero-stat-num {
    font-size: 1.75rem;
    font-weight: 900;
    color: #fff;
}
@media (min-width: 768px) {
    .hero-stat-num {
        font-size: 2rem;
    }
}
.hero-stat-lbl {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    margin-top: 0.125rem;
}

/* ── ABOUT SPLIT ── */
.about-split {
    display: grid;
    grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
    .about-split {
        grid-template-columns: 1fr 1fr;
    }
}

.about-split-left {
    background: linear-gradient(135deg, #0d1f6e, #1a3494, #2355c9);
    color: #fff;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (min-width: 768px) {
    .about-split-left,
    .about-split-right {
        padding: 6rem;
    }
}
.about-split-left h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
}
.about-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.about-checklist li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}
.about-check-circle {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.about-check-circle svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #fff;
}

.about-split-right {
    background: #f9fafb;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-split-right-h {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}
.about-split-right p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}
.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    margin-top: 0.5rem;
    transition: gap 0.2s;
}
.read-more-link:hover {
    gap: 0.75rem;
}
.read-more-link svg {
    width: 1.2rem;
    height: 1.2rem;
    transition: transform 0.2s;
}
.read-more-link:hover svg {
    transform: translateX(4px);
}

/* ── PRODUCTS PREVIEW ── */
.products-preview {
    padding: 6rem 0;
    background: var(--bg-muted);
}
.products-preview-head {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 4rem;
}
@media (min-width: 768px) {
    .products-preview-head {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}
.products-preview-head h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}
.products-preview-head p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 36rem;
}
.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.2s;
}
.view-all-btn:hover {
    background: var(--primary);
    color: #fff;
}

.categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
@media (min-width: 640px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.cat-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    border-top: 4px solid var(--primary);
    transition: all 0.2s;
    cursor: pointer;
}
.cat-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}
.cat-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: rgba(13, 31, 110, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--primary);
    transition: all 0.2s;
}
.cat-card:hover .cat-icon {
    background: var(--primary);
    color: #fff;
}
.cat-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}
.cat-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
    line-height: 1.3;
}
.cat-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ── CTA ── */
.cta-section {
    background: #bfdbfe;
    padding: 6rem 1.5rem;
    position: relative;
    overflow: hidden;
}
.cta-inner {
    text-align: center;
    position: relative;
    z-index: 2;
}
.cta-inner h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.25rem;
}
.cta-inner p {
    font-size: 1.15rem;
    color: rgba(13, 31, 110, 0.75);
    margin-bottom: 2.5rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 500;
}
.cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}
.cta-outline-btn {
    padding: 1rem 2.5rem;
    border-radius: 0.75rem;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
}
.cta-outline-btn:hover {
    background: rgba(13, 31, 110, 0.08);
    transform: translateY(-2px);
}
