.hero {
    position: relative;
    min-height: 20vh;
    display: flex;
    align-items: center;
    overflow: hidden;


    background:
        linear-gradient(135deg,
            rgba(0, 20, 60, 0.82) 0%,
            rgba(0, 74, 153, 0.72) 60%,
            rgba(0, 97, 194, 0.65) 100%),
        url('https://images.unsplash.com/photo-1589519160732-57fc498494f8?auto=format&fit=crop&w=1200&q=80') center / cover no-repeat;
}


.hero-h1 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
    max-width: 680px;
}


@media (max-width: 767px) {
    .hero {
        min-height: auto;
    }

    .hero-inner {
        padding: 80px 0 60px;
    }
}









.itco-section {
    padding: 88px 0;
    background: var(--white);
}

/* Two-column layout */
.itco-section .itco-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

/* ── LEFT ────────────────────────────────────────── */
.itco-section .itco-heading {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.5rem, 2.6vw, 2.1rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.25;
    margin-bottom: 18px;
}

.itco-section .itco-desc {
    font-size: .95rem;
    color: var(--mid);
    line-height: 1.8;
    margin-bottom: 28px;
}

/* CTA nudge block */
.itco-section .itco-cta-text {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--blue-pale);
    border-left: 3px solid var(--blue);
    border-radius: 0 8px 8px 0;
    padding: 16px 20px;
    margin-bottom: 28px;
}

.itco-section .itco-cta-text i {
    font-size: 1.1rem;
    color: var(--blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.itco-section .itco-cta-text p {
    font-family: 'Manrope', sans-serif;
    font-size: .9rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    line-height: 1.55;
}

.itco-section .itco-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* ── RIGHT ───────────────────────────────────────── */
.itco-section .itco-right-label {
    font-family: 'Manrope', sans-serif;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
}

.itco-section .itco-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Each item row */
.itco-section .itco-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 20px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r);
    transition: box-shadow .22s, transform .22s, border-color .22s, background .22s;
    position: relative;
    overflow: hidden;
}

.itco-section .itco-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--blue), var(--blue-mid));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .25s ease;
    border-radius: 3px 0 0 3px;
}

.itco-section .itco-item:hover {
    box-shadow: var(--sh-md);
    transform: translateX(4px);
    border-color: transparent;
    background: var(--white);
}

.itco-section .itco-item:hover::before {
    transform: scaleY(1);
}

/* Icon */
.itco-section .itco-item-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--blue-light);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
    transition: background .22s, color .22s;
}

.itco-section .itco-item:hover .itco-item-icon {
    background: var(--blue);
    color: var(--white);
}

/* Text */
.itco-section .itco-item-body h6 {
    font-family: 'Manrope', sans-serif;
    font-size: .9rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 4px;
    line-height: 1.3;
}

.itco-section .itco-item-body p {
    font-size: .83rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 991px) {
    .itco-section .itco-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 575px) {
    .itco-section {
        padding: 56px 0;
    }

    .itco-section .itco-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}













.ics-section {
    padding: 88px 0;
    background: var(--bg);
}

/* Header */
.ics-section .ics-header {
    margin-bottom: 48px;
}

/* 3-column grid */
.ics-section .ics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ── Card ────────────────────────────────────────── */
.ics-section .ics-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 32px 28px 26px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: box-shadow .25s, transform .25s, border-color .25s;
}

/* Top accent line on hover */
.ics-section .ics-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--blue-mid));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}

.ics-section .ics-card:hover {
    box-shadow: var(--sh-lg);
    transform: translateY(-4px);
    border-color: transparent;
}

.ics-section .ics-card:hover::before {
    transform: scaleX(1);
}

/* Icon */
.ics-section .ics-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    background: var(--blue-light);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
    flex-shrink: 0;
    transition: background .25s, color .25s;
}

.ics-section .ics-card-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
}

.ics-section .ics-card:hover .ics-card-icon {
    background: var(--blue);
    color: var(--white);
}

/* Body */
.ics-section .ics-card-body {
    flex: 1;
}

.ics-section .ics-card-body h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.ics-section .ics-card-body p {
    font-size: .875rem;
    color: var(--muted);
    line-height: 1.75;
    margin: 0;
}

/* Bottom link */
.ics-section .ics-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Manrope', sans-serif;
    font-size: .83rem;
    font-weight: 700;
    color: var(--blue);
    text-decoration: none;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    transition: gap .18s, color .18s;
}

.ics-section .ics-link:hover {
    gap: 10px;
    color: var(--blue-mid);
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1199px) {
    .ics-section .ics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .ics-section {
        padding: 56px 0;
    }

    .ics-section .ics-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 575px) {
    .ics-section .ics-card {
        padding: 26px 22px 22px;
    }
}










.icb-section {
    padding: 88px 0;
    background: var(--white);
}

/* Header */
.icb-section .icb-header {
    margin-bottom: 48px;
}

/* Two-column layout */
.icb-section .icb-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
}

/* ── LEFT: benefit list ──────────────────────────── */
.icb-section .icb-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.icb-section .icb-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 24px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r);
    position: relative;
    overflow: hidden;
    transition: box-shadow .22s, transform .22s, background .22s, border-color .22s;
}

/* Left bar reveal on hover */
.icb-section .icb-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--blue), var(--blue-mid));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .25s ease;
    border-radius: 3px 0 0 3px;
}

.icb-section .icb-item:hover {
    background: var(--white);
    box-shadow: var(--sh-md);
    transform: translateX(4px);
    border-color: transparent;
}

.icb-section .icb-item:hover::before {
    transform: scaleY(1);
}

/* Icon */
.icb-section .icb-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: var(--blue-light);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: background .22s, color .22s;
}

.icb-section .icb-item-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
}

.icb-section .icb-item:hover .icb-item-icon {
    background: var(--blue);
    color: var(--white);
}

/* Text */
.icb-section .icb-item-body h5 {
    font-family: 'Manrope', sans-serif;
    font-size: .95rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 5px;
    line-height: 1.3;
}

.icb-section .icb-item-body p {
    font-size: .875rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

/* ── RIGHT: CTA card ─────────────────────────────── */
.icb-section .icb-cta-card {
    background: linear-gradient(140deg, #001e4a 0%, #004a99 60%, #0061c2 100%);
    border-radius: var(--r-lg);
    padding: 40px 32px;
    position: sticky;
    top: 88px;
    overflow: hidden;
}

/* Dot grid texture */
.icb-section .icb-cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .07) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

/* Faint watermark icon */
.icb-section .icb-cta-card::after {
    content: '\F62A';
    font-family: 'Bootstrap-icons';
    position: absolute;
    bottom: -24px;
    right: -10px;
    font-size: 10rem;
    color: rgba(255, 255, 255, .04);
    line-height: 1;
    pointer-events: none;
}

.icb-section .icb-cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Rocket icon */
.icb-section .icb-cta-icon {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 24px;
}

.icb-section .icb-cta-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
}

.icb-section .icb-cta-inner h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.35;
    margin-bottom: 14px;
}

.icb-section .icb-cta-inner p {
    font-size: .875rem;
    color: rgba(255, 255, 255, .65);
    line-height: 1.7;
    margin-bottom: 28px;
    font-weight: 300;
}

/* Buttons stacked */
.icb-section .icb-cta-inner .btn-white {
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
}

.icb-section .icb-cta-inner .btn-outline-white {
    width: 100%;
    justify-content: center;
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1199px) {
    .icb-section .icb-layout {
        grid-template-columns: 1fr 320px;
    }
}

@media (max-width: 991px) {
    .icb-section .icb-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .icb-section .icb-cta-card {
        position: static;
    }
}

@media (max-width: 767px) {
    .icb-section {
        padding: 56px 0;
    }
}

@media (max-width: 575px) {
    .icb-section .icb-item {
        padding: 18px 18px;
    }

    .icb-section .icb-cta-card {
        padding: 30px 24px;
    }
}











.tst-section {
    padding: 88px 0;
    background: var(--bg);
}

.tst-section .tst-wrap {
    max-width: 760px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 56px 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--sh-md);
    position: relative;
    overflow: hidden;
}

.tst-section .tst-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--blue), var(--blue-mid));
    border-radius: 4px 0 0 4px;
}

.tst-section .tst-wrap::after {
    content: '\F6B0';
    font-family: 'Bootstrap-icons';
    position: absolute;
    bottom: -20px;
    right: 24px;
    font-size: 11rem;
    color: var(--blue-light);
    line-height: 1;
    pointer-events: none;
    opacity: .6;
}

.tst-section .tst-quote-mark {
    font-size: 2.8rem;
    line-height: 1;
    margin-bottom: 18px;
    color: var(--blue);
    opacity: .25;
    position: relative;
    z-index: 2;
}

.tst-section .tst-quote {
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.75;
    font-style: normal;
    border: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.tst-section .tst-divider {
    width: 48px;
    height: 2px;
    background: var(--blue-light);
    border-radius: 2px;
    margin: 32px 0;
    position: relative;
    z-index: 2;
}

.tst-section .tst-author {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.tst-section .tst-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--blue-mid));
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: .85rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tst-section .tst-author-info {
    flex: 1;
    min-width: 0;
}

.tst-section .tst-author-info strong {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: .92rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 2px;
}

.tst-section .tst-author-info span {
    font-size: .78rem;
    color: var(--muted);
}

.tst-section .tst-stars {
    display: flex;
    gap: 3px;
    margin-left: auto;
}

.tst-section .tst-stars i {
    font-size: .88rem;
    color: #f59e0b;
}

@media (max-width: 767px) {
    .tst-section .tst-wrap {
        padding: 40px 32px;
    }

    .tst-section .tst-quote {
        font-size: 1.05rem;
    }
}

@media (max-width: 575px) {
    .tst-section {
        padding: 56px 0;
    }

    .tst-section .tst-wrap {
        padding: 32px 24px;
    }

    .tst-section .tst-quote {
        font-size: .97rem;
    }

    .tst-section .tst-stars {
        margin-left: 0;
    }
}