﻿/* =========================================================
   IK EDUCATION - BENEFITS PAGE
========================================================= */


/* =========================================================
   HERO
========================================================= */

.benefits-hero {
    position: relative;
    overflow: hidden;
    padding: 40px 0 45px;
    background: radial-gradient(circle at 85% 20%, rgba(8, 124, 196, .35), transparent 32%), radial-gradient(circle at 10% 80%, rgba(245, 130, 32, .16), transparent 28%), #032b43;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

    .benefits-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
        background-size: 38px 38px;
        pointer-events: none;
    }

    .benefits-hero::after {
        content: "";
        position: absolute;
        width: 280px;
        height: 280px;
        right: -80px;
        top: -110px;
        border: 55px solid rgba(255,255,255,.025);
        border-radius: 50%;
        pointer-events: none;
    }

.benefits-hero-content {
    position: relative;
    z-index: 1;
    max-width: 790px;
}

.benefits-kicker,
.section-kicker,
.cta-kicker {
    margin-bottom: 11px;
    color: #f58220;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.benefits-hero h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(42px, 5vw, 66px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -2px;
}

    .benefits-hero h1 span {
        color: #55c7e5;
    }

.benefits-hero p {
    max-width: 680px;
    margin: 20px 0 0;
    color: rgba(255,255,255,.82);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.75;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.benefits-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 26px;
    font-size: 14px;
}

    .benefits-breadcrumb a {
        color: #8edcf0;
        font-weight: 700;
        text-decoration: none;
    }

        .benefits-breadcrumb a:hover {
            color: #fff;
        }

    .benefits-breadcrumb span {
        color: rgba(255,255,255,.45);
    }

        .benefits-breadcrumb span:last-child {
            color: rgba(255,255,255,.75);
        }


/* =========================================================
   INTRO
========================================================= */

.benefits-intro {
    padding: 78px 0;
    background: #fff;
}

.benefits-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    align-items: start;
    gap: 80px;
}

.benefits-intro-heading h2 {
    max-width: 570px;
    margin: 0;
    color: #032b43;
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -1.3px;
}

    .benefits-intro-heading h2 span {
        display: block;
        color: #087cc4;
    }

.benefits-intro-text {
    padding-top: 5px;
}

    .benefits-intro-text p {
        margin: 0 0 16px;
        color: #526a78;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.8;
    }

        .benefits-intro-text p:last-child {
            margin-bottom: 0;
        }


/* =========================================================
   BENEFITS MAIN
========================================================= */

.benefits-main {
    position: relative;
    overflow: hidden;
    padding: 80px 0 90px;
    background: radial-gradient(circle at 90% 10%, rgba(22,180,216,.09), transparent 25%), #f6fbfe;
}

    .benefits-main::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(8,124,196,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(8,124,196,.04) 1px, transparent 1px);
        background-size: 38px 38px;
        pointer-events: none;
    }

    .benefits-main .container {
        position: relative;
        z-index: 1;
    }


/* =========================================================
   BENEFITS HEADING
========================================================= */

.benefits-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    align-items: end;
    gap: 50px;
    margin-bottom: 40px;
}

    .benefits-heading h2 {
        max-width: 650px;
        margin: 0;
        color: #032b43;
        font-size: clamp(34px, 4vw, 46px);
        font-weight: 800;
        line-height: 1.12;
        letter-spacing: -1.2px;
    }

        .benefits-heading h2 span {
            color: #087cc4;
        }

    .benefits-heading > p {
        margin: 0;
        color: #526a78;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.8;
    }


/* =========================================================
   BENEFITS GRID
========================================================= */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}


/* =========================================================
   BENEFIT CARD
========================================================= */

.benefit-card {
    position: relative;
    min-width: 0;
    min-height: 315px;
    padding: 27px 24px;
    overflow: hidden;
    border: 1px solid #dfeaf0;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(3,43,67,.055);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

    .benefit-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #087cc4, #16b4d8);
    }

    .benefit-card::after {
        content: "";
        position: absolute;
        width: 120px;
        height: 120px;
        right: -70px;
        bottom: -70px;
        border-radius: 50%;
        background: #eef8ff;
        pointer-events: none;
    }

    .benefit-card:hover {
        transform: translateY(-5px);
        border-color: #bdddea;
        box-shadow: 0 18px 42px rgba(3,43,67,.10);
    }


    /* Orange accent cards */

    .benefit-card:nth-child(4n + 2)::before,
    .benefit-card:nth-child(4n + 4)::before {
        background: linear-gradient(90deg, #f58220, #ffac64);
    }


/* =========================================================
   BENEFIT CARD TOP
========================================================= */

.benefit-card-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 24px;
}

.benefit-number {
    color: #087cc4;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.2px;
}

.benefit-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 54px;
    border-radius: 14px;
    background: #eef8ff;
    color: #087cc4;
}

    .benefit-icon svg {
        width: 25px;
        height: 25px;
    }


/* Orange icon variation */

.benefit-card:nth-child(4n + 2) .benefit-icon,
.benefit-card:nth-child(4n + 4) .benefit-icon {
    background: #fff3e9;
    color: #f58220;
}

.benefit-card:nth-child(4n + 2) .benefit-number,
.benefit-card:nth-child(4n + 4) .benefit-number {
    color: #f58220;
}


/* =========================================================
   BENEFIT CARD TEXT
========================================================= */

.benefit-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 13px;
    color: #032b43;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.35;
}

.benefit-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #526a78;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
}


/* =========================================================
   RIPPLE SECTION
========================================================= */

.benefits-ripple {
    padding: 90px 0;
    background: #fff;
}

.ripple-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(460px, .85fr);
    align-items: center;
    gap: 75px;
}

.ripple-main h2 {
    max-width: 650px;
    margin: 0 0 20px;
    color: #032b43;
    font-size: clamp(34px, 4vw, 47px);
    font-weight: 800;
    line-height: 1.13;
    letter-spacing: -1.2px;
}

    .ripple-main h2 span {
        display: block;
        color: #087cc4;
    }

.ripple-main p {
    max-width: 650px;
    margin: 0 0 15px;
    color: #526a78;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
}


/* =========================================================
   RIPPLE VISUAL
========================================================= */

.ripple-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 320px;
    padding: 35px 20px;
    border-radius: 24px;
    background: radial-gradient(circle at center, rgba(22,180,216,.14), transparent 58%), #f6fbfe;
}

.ripple-circle {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 0 0 120px;
    border: 1px solid #cce4ef;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 12px 30px rgba(3,43,67,.08);
}

    .ripple-circle span {
        margin-bottom: 4px;
        color: #f58220;
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 1px;
    }

    .ripple-circle strong {
        color: #032b43;
        font-size: 16px;
        font-weight: 800;
    }

.ripple-circle-two {
    width: 135px;
    height: 135px;
    flex-basis: 135px;
    border-color: #99d4e7;
}

.ripple-circle-three {
    border-color: #f5c89f;
}

.ripple-arrow {
    color: #8fb1c1;
    font-size: 23px;
    font-weight: 700;
}


/* =========================================================
   QUOTE SECTION
========================================================= */

.benefits-quote-section {
    padding: 0 0 90px;
    background: #fff;
}

.benefits-quote {
    position: relative;
    max-width: 950px;
    margin: 0 auto;
    padding: 34px 40px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    border-left: 4px solid #f58220;
    border-radius: 0 15px 15px 0;
    background: #f6fbfe;
}

.quote-symbol {
    flex: 0 0 auto;
    height: 45px;
    color: #087cc4;
    font-family: Georgia, serif;
    font-size: 65px;
    font-weight: 700;
    line-height: .9;
}

.benefits-quote p {
    margin: 0 0 10px;
    color: #032b43;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
}

.benefits-quote span {
    color: #718792;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* =========================================================
   CTA
========================================================= */

.benefits-cta {
    padding: 0 0 95px;
    background: #fff;
}

.benefits-cta-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 50px;
    padding: 45px 48px;
    border-radius: 22px;
    background: radial-gradient(circle at 90% 20%, rgba(8,124,196,.35), transparent 35%), #032b43;
}

    .benefits-cta-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
        background-size: 38px 38px;
        pointer-events: none;
    }

.benefits-cta-content,
.benefits-cta-actions {
    position: relative;
    z-index: 1;
}

.benefits-cta-content {
    max-width: 700px;
}

    .benefits-cta-content h2 {
        margin: 0;
        color: #fff;
        font-size: clamp(30px, 4vw, 42px);
        font-weight: 800;
        line-height: 1.15;
        letter-spacing: -1px;
    }

        .benefits-cta-content h2 span {
            color: #55c7e5;
        }

    .benefits-cta-content p {
        max-width: 650px;
        margin: 15px 0 0;
        color: rgba(255,255,255,.78);
        font-size: 16px;
        font-weight: 400;
        line-height: 1.75;
    }


/* =========================================================
   CTA BUTTONS
========================================================= */

.benefits-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 200px;
}

.benefits-btn {
    min-height: 49px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    border: 1px solid transparent;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

    .benefits-btn:hover {
        transform: translateY(-2px);
        text-decoration: none;
    }

.benefits-btn-primary {
    background: #f58220;
    color: #fff;
}

    .benefits-btn-primary:hover {
        background: #d96809;
        color: #fff;
    }

.benefits-btn-secondary {
    border-color: rgba(255,255,255,.25);
    background: rgba(255,255,255,.08);
    color: #fff;
}

    .benefits-btn-secondary:hover {
        border-color: rgba(255,255,255,.45);
        background: rgba(255,255,255,.14);
        color: #fff;
    }


/* =========================================================
   TABLET - LARGE
========================================================= */

@media (max-width: 1199px) {

    .benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .benefit-card {
        min-height: 280px;
    }

    .ripple-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .ripple-visual {
        max-width: 650px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .benefits-intro-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .benefits-heading {
        grid-template-columns: 1fr;
        gap: 16px;
    }

        .benefits-heading > p {
            max-width: 700px;
        }

    .benefits-cta-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .benefits-cta-actions {
        max-width: 240px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .benefits-hero .container,
    .benefits-intro .container,
    .benefits-main .container,
    .benefits-ripple .container,
    .benefits-quote-section .container,
    .benefits-cta .container {
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }


    /* HERO */

    .benefits-hero {
        padding: 45px 0 50px;
    }

    .benefits-kicker,
    .section-kicker,
    .cta-kicker {
        margin-bottom: 10px;
        font-size: 12px;
    }

    .benefits-hero h1 {
        font-size: 38px;
        line-height: 1.08;
        letter-spacing: -1px;
    }

    .benefits-hero p {
        margin-top: 15px;
        font-size: 15px;
        line-height: 1.7;
    }

    .benefits-breadcrumb {
        margin-top: 20px;
        font-size: 13px;
    }


    /* INTRO */

    .benefits-intro {
        padding: 50px 0 55px;
    }

    .benefits-intro-grid {
        gap: 25px;
    }

    .benefits-intro-heading h2 {
        font-size: 30px;
    }

    .benefits-intro-text p {
        font-size: 15px;
        line-height: 1.75;
    }


    /* BENEFITS */

    .benefits-main {
        padding: 55px 0 60px;
    }

    .benefits-heading {
        margin-bottom: 28px;
    }

        .benefits-heading h2 {
            font-size: 30px;
        }

        .benefits-heading > p {
            font-size: 15px;
            line-height: 1.75;
        }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .benefit-card {
        min-height: 0;
        padding: 22px 20px;
        border-radius: 15px;
    }

        .benefit-card:hover {
            transform: none;
        }

    .benefit-card-top {
        margin-bottom: 18px;
    }

    .benefit-number {
        font-size: 12px;
    }

    .benefit-icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
    }

        .benefit-icon svg {
            width: 23px;
            height: 23px;
        }

    .benefit-card h3 {
        margin-bottom: 10px;
        font-size: 19px;
    }

    .benefit-card p {
        font-size: 15px;
        line-height: 1.7;
    }


    /* RIPPLE */

    .benefits-ripple {
        padding: 55px 0;
    }

    .ripple-layout {
        gap: 30px;
    }

    .ripple-main h2 {
        font-size: 30px;
    }

    .ripple-main p {
        font-size: 15px;
        line-height: 1.75;
    }

    .ripple-visual {
        min-height: auto;
        padding: 30px 15px;
        gap: 7px;
        border-radius: 18px;
    }

    .ripple-circle {
        width: 90px;
        height: 90px;
        flex-basis: 90px;
    }

    .ripple-circle-two {
        width: 100px;
        height: 100px;
        flex-basis: 100px;
    }

    .ripple-circle span {
        font-size: 9px;
    }

    .ripple-circle strong {
        font-size: 14px;
    }

    .ripple-arrow {
        font-size: 18px;
    }


    /* QUOTE */

    .benefits-quote-section {
        padding-bottom: 55px;
    }

    .benefits-quote {
        padding: 25px 20px;
        gap: 15px;
    }

    .quote-symbol {
        font-size: 48px;
    }

    .benefits-quote p {
        font-size: 17px;
        line-height: 1.6;
    }

    .benefits-quote span {
        font-size: 12px;
    }


    /* CTA */

    .benefits-cta {
        padding-bottom: 65px;
    }

    .benefits-cta-card {
        padding: 28px 22px;
        border-radius: 17px;
    }

    .benefits-cta-content h2 {
        font-size: 29px;
    }

    .benefits-cta-content p {
        font-size: 15px;
        line-height: 1.75;
    }

    .benefits-cta-actions {
        width: 100%;
        max-width: none;
    }

    .benefits-btn {
        min-height: 48px;
        font-size: 14px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .benefits-hero {
        padding: 38px 0 43px;
    }

        .benefits-hero h1 {
            font-size: 32px;
        }

        .benefits-hero p {
            font-size: 15px;
        }

    .benefits-intro-heading h2,
    .benefits-heading h2,
    .ripple-main h2 {
        font-size: 27px;
    }

    .benefit-card {
        padding: 20px 18px;
    }

        .benefit-card h3 {
            font-size: 18px;
        }

        .benefit-card p {
            font-size: 15px;
        }

    .ripple-visual {
        flex-direction: column;
        gap: 8px;
    }

    .ripple-circle,
    .ripple-circle-two {
        width: 105px;
        height: 105px;
        flex-basis: 105px;
    }

        .ripple-circle strong {
            font-size: 14px;
        }

    .ripple-arrow {
        transform: rotate(90deg);
    }

    .benefits-quote {
        display: block;
    }

    .quote-symbol {
        margin-bottom: 8px;
    }

    .benefits-quote p {
        font-size: 16px;
    }

    .benefits-cta-card {
        padding: 25px 18px;
    }

    .benefits-cta-content h2 {
        font-size: 26px;
    }

    .benefits-cta-content p {
        font-size: 15px;
    }

    .benefits-btn {
        width: 100%;
    }
}
