﻿/* =========================================================
   IK EDUCATION - HOW SPONSORSHIP WORKS
========================================================= */


/* =========================================================
   HERO
========================================================= */

.sponsorship-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);
}

    .sponsorship-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;
    }

    .sponsorship-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;
    }

.sponsorship-hero-content {
    position: relative;
    z-index: 1;
    max-width: 790px;
}

.sponsorship-kicker {
    margin-bottom: 13px;
    color: #f58220;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.6px;
}

.sponsorship-hero h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(42px, 5vw, 66px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -2px;
}

    .sponsorship-hero h1 span {
        color: #55c7e5;
    }

.sponsorship-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
========================================================= */

.sponsorship-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 26px;
    font-size: 14px;
}

    .sponsorship-breadcrumb a {
        color: #8edcf0;
        font-weight: 700;
        text-decoration: none;
        transition: color .2s ease;
    }

        .sponsorship-breadcrumb a:hover {
            color: #fff;
        }

    .sponsorship-breadcrumb span {
        color: rgba(255,255,255,.45);
    }

        .sponsorship-breadcrumb span:last-child {
            color: rgba(255,255,255,.75);
        }


/* =========================================================
   COMMON
========================================================= */

.section-kicker {
    margin-bottom: 10px;
    color: #f58220;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}


/* =========================================================
   INTRODUCTION
========================================================= */

.sponsorship-intro {
    padding: 80px 0 90px;
    background: #fff;
}

.sponsorship-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: 70px;
}


/* =========================================================
   INTRO CONTENT
========================================================= */

.sponsorship-intro-content {
    max-width: 560px;
}

    .sponsorship-intro-content h2 {
        margin: 0 0 20px;
        color: #032b43;
        font-size: clamp(34px, 4vw, 48px);
        font-weight: 800;
        line-height: 1.12;
        letter-spacing: -1.3px;
    }

        .sponsorship-intro-content h2 span {
            display: block;
            color: #087cc4;
        }

    .sponsorship-intro-content p {
        margin: 0 0 16px;
        color: #526a78;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.8;
    }


/* =========================================================
   PRIMARY BUTTON
========================================================= */

.sponsorship-primary-btn {
    min-height: 50px;
    margin-top: 15px;
    padding: 0 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    border-radius: 9px;
    background: #f58220;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease;
}

    .sponsorship-primary-btn:hover {
        background: #d96809;
        color: #fff;
        transform: translateY(-2px);
        text-decoration: none;
    }

.btn-arrow {
    font-size: 19px;
}


/* =========================================================
   INTRO IMAGE
========================================================= */

.sponsorship-image-wrap {
    position: relative;
    padding: 0 0 38px 38px;
}

.sponsorship-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #eef4f7;
    box-shadow: 0 18px 50px rgba(3,43,67,.11);
}

    .sponsorship-image img {
        width: 100%;
        display: block;
        object-fit: cover;
    }

    .sponsorship-image::after {
        content: "";
        position: absolute;
        inset: 0;
        border: 1px solid rgba(255,255,255,.25);
        border-radius: inherit;
        pointer-events: none;
    }


/* =========================================================
   IMAGE NOTE
========================================================= */

.image-note {
    position: absolute;
    left: 0;
    bottom: 0;
    max-width: 330px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid #e1eaf0;
    border-radius: 13px;
    background: #fff;
    color: #526a78;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.55;
    box-shadow: 0 12px 35px rgba(3,43,67,.12);
}

.image-note-number {
    flex: 0 0 49px;
    width: 49px;
    height: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: #eef8ff;
    color: #087cc4;
    font-size: 23px;
    font-weight: 900;
}


/* =========================================================
   PROCESS SECTION
========================================================= */

.sponsorship-process {
    position: relative;
    padding: 85px 0 90px;
    overflow: hidden;
    background: radial-gradient(circle at 90% 15%, rgba(22,180,216,.10), transparent 28%), #f6fbfe;
}

    .sponsorship-process::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;
    }

    .sponsorship-process .container {
        position: relative;
        z-index: 1;
    }


/* =========================================================
   PROCESS HEADING
========================================================= */

.process-heading {
    max-width: 720px;
    margin: 0 auto 42px;
    text-align: center;
}

    .process-heading h2 {
        margin: 0;
        color: #032b43;
        font-size: clamp(34px, 4vw, 46px);
        font-weight: 800;
        line-height: 1.12;
        letter-spacing: -1.2px;
    }

        .process-heading h2 span {
            color: #087cc4;
        }

    .process-heading p {
        max-width: 660px;
        margin: 16px auto 0;
        color: #526a78;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.8;
    }


/* =========================================================
   PROCESS GRID
========================================================= */

.process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 50px;
}

    .process-grid::before {
        content: "";
        position: absolute;
        top: 48px;
        left: 9%;
        right: 9%;
        height: 2px;
        background: linear-gradient( 90deg, #087cc4, #16b4d8, #f58220 );
        opacity: .28;
    }


/* =========================================================
   PROCESS CARD
========================================================= */

.process-card {
    position: relative;
    z-index: 1;
    min-width: 0;
    min-height: 390px;
    padding: 29px 24px 27px;
    overflow: hidden;
    border: 1px solid #dce9ef;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(3,43,67,.07);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

    .process-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient( 90deg, #087cc4, #16b4d8 );
    }

    .process-card::after {
        content: "";
        position: absolute;
        width: 130px;
        height: 130px;
        right: -65px;
        bottom: -65px;
        border-radius: 50%;
        background: #eef8ff;
        opacity: .8;
        pointer-events: none;
    }

    .process-card:hover {
        transform: translateY(-7px);
        border-color: #b9dce9;
        box-shadow: 0 20px 48px rgba(3,43,67,.12);
    }


/* =========================================================
   PROCESS CARD TOP
========================================================= */

.process-card-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}


/* =========================================================
   STEP NUMBER
========================================================= */

.process-number {
    display: inline-flex;
    align-items: center;
    color: #087cc4;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.3px;
}

    .process-number::before {
        content: "STEP";
        margin-right: 6px;
        color: #8a9ca6;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 1px;
    }


/* =========================================================
   PROCESS ICON
========================================================= */

.process-icon {
    position: relative;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 58px;
    border: 6px solid #fff;
    border-radius: 17px;
    background: linear-gradient( 135deg, #087cc4, #16b4d8 );
    color: #fff;
    box-shadow: 0 7px 20px rgba(8,124,196,.22);
}

    .process-icon svg {
        width: 25px;
        height: 25px;
    }


/* =========================================================
   PROCESS TEXT
========================================================= */

.process-card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 17px;
    color: #032b43;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.35;
}

    .process-card h3::after {
        content: "";
        display: block;
        width: 34px;
        height: 3px;
        margin-top: 11px;
        border-radius: 20px;
        background: #f58220;
    }

.process-card ul {
    position: relative;
    z-index: 2;
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-card li {
    position: relative;
    margin-bottom: 14px;
    padding-left: 25px;
    color: #526a78;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
}

    .process-card li:last-child {
        margin-bottom: 0;
    }

    .process-card li::before {
        content: "✓";
        position: absolute;
        top: 3px;
        left: 0;
        width: 17px;
        height: 17px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #e9f7fb;
        color: #087cc4;
        font-family: Arial, sans-serif;
        font-size: 10px;
        font-weight: 900;
    }


/* =========================================================
   FINAL STEP
========================================================= */

.process-card:nth-child(4)::before {
    background: linear-gradient( 90deg, #f58220, #ffab60 );
}

.process-card:nth-child(4) .process-icon {
    background: linear-gradient( 135deg, #f58220, #dc6808 );
    box-shadow: 0 7px 20px rgba(245,130,32,.24);
}

.process-card:nth-child(4) .process-number {
    color: #f58220;
}


/* =========================================================
   IMPACT SECTION
========================================================= */

.sponsorship-impact {
    padding: 85px 0 95px;
    background: #fff;
}

.impact-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
    gap: 55px;
    padding: 48px;
    border-radius: 22px;
    background: radial-gradient( circle at 90% 20%, rgba(8,124,196,.30), transparent 35% ), #032b43;
}

    .impact-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;
    }

.impact-content,
.impact-quote {
    position: relative;
    z-index: 1;
}


/* =========================================================
   IMPACT CONTENT
========================================================= */

.impact-kicker {
    margin-bottom: 11px;
    color: #f58220;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

.impact-content h2 {
    max-width: 650px;
    margin: 0;
    color: #fff;
    font-size: clamp(30px, 4vw, 43px);
    font-weight: 800;
    line-height: 1.14;
    letter-spacing: -1px;
}

    .impact-content h2 span {
        color: #55c7e5;
    }

.impact-content p {
    max-width: 680px;
    margin: 17px 0 0;
    color: rgba(255,255,255,.78);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
}


/* =========================================================
   IMPACT BUTTON
========================================================= */

.impact-btn {
    min-height: 49px;
    margin-top: 23px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border-radius: 9px;
    background: #f58220;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease;
}

    .impact-btn:hover {
        background: #d96809;
        color: #fff;
        transform: translateY(-2px);
        text-decoration: none;
    }

    .impact-btn span {
        font-size: 18px;
    }


/* =========================================================
   QUOTE
========================================================= */

.impact-quote {
    align-self: center;
    padding: 28px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    background: rgba(255,255,255,.075);
    backdrop-filter: blur(5px);
}

.quote-mark {
    height: 35px;
    margin-bottom: 9px;
    color: #f58220;
    font-family: Georgia, serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
}

.impact-quote p {
    margin: 0 0 15px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.7;
}

.impact-quote strong {
    display: block;
    color: rgba(255,255,255,.68);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1199px) {

    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

        .process-grid::before {
            display: none;
        }

    .process-card {
        min-height: 330px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .sponsorship-intro-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .sponsorship-intro-content {
        max-width: 700px;
    }

    .sponsorship-image-wrap {
        max-width: 700px;
    }

    .impact-card {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .impact-quote {
        max-width: 650px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .sponsorship-hero .container,
    .sponsorship-intro .container,
    .sponsorship-process .container,
    .sponsorship-impact .container {
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }


    /* HERO */

    .sponsorship-hero {
        padding: 45px 0 50px;
    }

    .sponsorship-kicker,
    .section-kicker,
    .impact-kicker {
        margin-bottom: 10px;
        font-size: 12px;
    }

    .sponsorship-hero h1 {
        font-size: 38px;
        line-height: 1.08;
        letter-spacing: -1px;
    }

    .sponsorship-hero p {
        margin-top: 15px;
        font-size: 15px;
        line-height: 1.7;
    }

    .sponsorship-breadcrumb {
        margin-top: 20px;
        font-size: 13px;
    }


    /* INTRO */

    .sponsorship-intro {
        padding: 50px 0 60px;
    }

    .sponsorship-intro-grid {
        gap: 35px;
    }

    .sponsorship-intro-content h2 {
        margin-bottom: 16px;
        font-size: 30px;
    }

    .sponsorship-intro-content p {
        font-size: 15px;
        line-height: 1.75;
    }

    .sponsorship-primary-btn {
        min-height: 48px;
        font-size: 14px;
    }


    /* IMAGE */

    .sponsorship-image-wrap {
        padding: 0 0 45px;
    }

    .sponsorship-image {
        border-radius: 15px;
    }

        .sponsorship-image img {
            height: auto;
            max-height: 400px;
            object-fit: contain;
        }

    .image-note {
        left: 15px;
        right: 15px;
        max-width: none;
        padding: 15px;
        font-size: 13px;
    }

    .image-note-number {
        flex-basis: 44px;
        width: 44px;
        height: 44px;
        font-size: 20px;
    }


    /* PROCESS */

    .sponsorship-process {
        padding: 55px 0 60px;
    }

    .process-heading {
        margin-bottom: 30px;
        text-align: left;
    }

        .process-heading h2 {
            font-size: 30px;
        }

        .process-heading p {
            margin-left: 0;
            font-size: 15px;
            line-height: 1.75;
        }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 30px;
    }

    .process-card {
        min-height: auto;
        padding: 22px 20px;
        border-radius: 16px;
    }

        .process-card:hover {
            transform: none;
        }

    .process-card-top {
        margin-bottom: 19px;
    }

    .process-number {
        font-size: 12px;
    }

        .process-number::before {
            font-size: 10px;
        }

    .process-icon {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
        border-width: 5px;
        border-radius: 14px;
    }

        .process-icon svg {
            width: 22px;
            height: 22px;
        }

    .process-card h3 {
        margin-bottom: 14px;
        font-size: 19px;
    }

        .process-card h3::after {
            margin-top: 9px;
        }

    .process-card li {
        margin-bottom: 11px;
        font-size: 15px;
        line-height: 1.7;
    }


    /* IMPACT */

    .sponsorship-impact {
        padding: 55px 0 65px;
    }

    .impact-card {
        gap: 28px;
        padding: 28px 22px;
        border-radius: 17px;
    }

    .impact-content h2 {
        font-size: 29px;
    }

    .impact-content p {
        font-size: 15px;
        line-height: 1.75;
    }

    .impact-btn {
        font-size: 14px;
    }

    .impact-quote {
        padding: 22px;
    }

        .impact-quote p {
            font-size: 15px;
        }

        .impact-quote strong {
            font-size: 13px;
        }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

    .sponsorship-hero {
        padding: 38px 0 43px;
    }

        .sponsorship-hero h1 {
            font-size: 32px;
        }

        .sponsorship-hero p {
            font-size: 15px;
        }

    .sponsorship-intro-content h2,
    .process-heading h2 {
        font-size: 27px;
    }

    .sponsorship-intro-content p,
    .process-heading p,
    .process-card li,
    .impact-content p {
        font-size: 15px;
    }

    .sponsorship-primary-btn,
    .impact-btn {
        width: 100%;
    }

    .process-card {
        padding: 20px 18px;
    }

        .process-card h3 {
            font-size: 18px;
        }

    .impact-card {
        padding: 25px 18px;
    }

    .impact-content h2 {
        font-size: 26px;
    }

    .impact-quote p {
        font-size: 15px;
    }

    .impact-quote strong {
        font-size: 13px;
    }
}
