.offer_page {
    overflow: hidden;
    background-color: #fff;
    color: var(--primary-color);
}

/*
    HERO
*/

.offer_hero {
    min-height: 72vh;
    position: relative;
    display: flex;

    align-items: center;
    padding: 100px max(7vw, 30px);
    background:
        linear-gradient(90deg, rgba(8, 11, 31, .98) 0%, rgba(8, 11, 31, .86) 46%, rgba(8, 11, 31, .18) 100%),
        var(--bg) center/cover;
}

.offer_hero .content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    width: 100%;
}

.offer_hero .eyebrow {
    color: var(--secondary-color);
    font-weight: 700;
    letter-spacing: 3px;
    font-size: var(--normal-size);
    margin-bottom: 18px;
}

.offer_hero h1 {
    color: #fff;
    font-size: 4rem;
    line-height: 1.05;
    margin-bottom: 25px;
    font-weight: bold;
}

.offer_hero h1 span,
.offer_intro h2 span,
.offer_process h2 span,
.offer_section_heading h2 span,
.offer_cta h2 span {
    color: var(--secondary-color);
}

.offer_hero .lead {
    color: rgba(255, 255, 255, .82);
    max-width: 620px;
    font-size: var(--normal-medium-size);
    line-height: 1.6;
    margin-bottom: 30px;
}

.offer_hero .actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 35px;
}

.offer_hero .button {
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid #fff;

    color: #fff;
    text-align: center;
    font-weight: 700;
    text-decoration: none;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    
    transition: all 0.5s ease;
}

.offer_hero .button img {
    width: 1.5rem;
}

.offer_hero .button.red {
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.offer_hero .button:hover {
    transform: scale(1.05);
}

/*
    INTRO
*/

.offer_intro {
    max-width: 1250px;
    margin: auto;
    padding: 110px 30px;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 100px;
    align-items: center;
}

.offer_intro h2,
.offer_process h2,
.offer_section_heading h2,
.offer_cta h2 {
    margin-top: 22px;
    font-size: 2.5rem;
    line-height: 1.1;
}

.offer_intro .text > p:not(.g_title) {
    max-width: 650px;
    margin-top: 22px;

    color: #555;
    font-size: var(--normal-medium-size);
    line-height: 1.8;
}

.offer_intro .stats {
    border-left: 1px solid #ddd;
    padding-left: 45px;
}

.offer_intro .stat_item {
    padding: 25px 0;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
    gap: 25px;
}

.offer_intro .stat_item:last-child {
    border-bottom: 0;
}

.offer_intro .stat_item strong {
    color: var(--secondary-color);
    font-size: var(--small-medium-size);
}

.offer_intro .stat_item span {
    font-weight: 600;
    font-size: var(--normal-medium-size);
}

/*
    SCOPE
*/

.offer_scope {
    padding: 110px max(7vw, 30px);
    background: var(--primary-color);
}

.offer_section_heading {
    text-align: center;
    color: #fff;
}

.offer_section_heading h2.dark {
    color: var(--primary-color);
}

.offer_section_heading h2 {
    margin-bottom: 55px;
}

.offer_cards {
    max-width: 1250px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.offer_cards .card {
    min-height: 340px;
    padding: 28px;

    background: #11152d;
    border: 1px solid rgba(255, 255, 255, .08);

    color: #fff;
    position: relative;
    transition: all 0.3s ease;
}

.offer_cards .card:hover {
    transform: translateY(-8px);
}

.offer_cards .card.accent {
    background: var(--secondary-color);
}

.offer_cards .card .number {
    position: absolute;
    top: 22px;
    right: 25px;

    color: rgba(255, 255, 255, .4);
    font-size: var(--normal-medium-size);
    font-weight: 700;
}

.offer_cards .card svg {
    width: 70px;
    margin-top: 45px;
    margin-bottom: 30px;
}

.offer_cards .card h3 {
    font-size: var(--normal-medium-size);
    margin-bottom: 15px;
}

.offer_cards .card p {
    color: rgba(255, 255, 255, .7);
    font-size: var(--normal-size);
    line-height: 1.7;
}

.offer_cards .card.accent p {
    color: rgba(255, 255, 255, .9);
}

/*
    PROCESS
*/

.offer_process {
    max-width: 1250px;
    margin: auto;
    padding: 110px 30px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.offer_process .picture {
    height: 560px;
    overflow: hidden;
    border-radius: 12px;
}

.offer_process .picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer_process .content > .g_title {
    text-align: left;
}

.offer_process .process_list {
    margin-top: 45px;
}

.offer_process .process_item {
    display: flex;
    gap: 25px;
    padding: 24px 0;
    border-bottom: 1px solid #ddd;
}

.offer_process .process_item.prog {
    padding: 10px 0;
}

.offer_process .process_item > span {
    color: var(--secondary-color);
    font-size: var(--small-medium-size);
    font-weight: 700;
}

.offer_process .process_item h3 {
    margin-bottom: 7px;
    font-size: var(--normal-medium-size);
}

.offer_process .process_item p {
    color: #666;
    font-size: var(--normal-size);
    line-height: 1.6;
}

/*
    EVENT TYPES
*/

.offer_types {
    padding: 110px max(7vw, 30px);
    background: var(--white-sections-color);
}

.offer_types.primary {
    background: var(--primary-color);
}

.offer_types .types_grid {
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

.offer_types .types_grid > * {
    flex: 0 1 calc(25% - 14px); 
    min-width: 250px;
}

.offer_types .type_item {
    padding: 30px;
    min-height: 230px;
    background: #fff;
    border-top: 4px solid var(--primary-color);
    position: relative;
}

.offer_types.primary .type_item {
    border-top: 4px solid var(--white-sections-color);
}

.offer_types .type_item:nth-child(2),
.offer_types .type_item:nth-child(4) {
    border-top-color: var(--secondary-color);
}

.offer_types .type_item span {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: var(--normal-medium-size);
}

.offer_types .type_item h3 {
    margin: 28px 0 14px;
    font-size: var(--normal-medium-size);
}

.offer_types .type_item p {
    color: #666;
    font-size: var(--normal-size);
    line-height: 1.6;
}

.offer_types .type_item .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    padding: 10px 20px;
    
    background-color: var(--primary-color);
    color: #fff;
    font-size: var(--normal-size);
    font-weight: 700;
    text-decoration: none;
    
    border-radius: 6px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.offer_types .type_item .btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.offer_types .type_item .btn img {
    width: 1.5rem;
}

.offer_types .type_item:nth-child(2) .btn,
.offer_types .type_item:nth-child(4) .btn {
    background-color: var(--secondary-color);
}

/*
    CTA
*/

.offer_cta {
    padding: 100px max(7vw, 30px);
    background: #fff;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.offer_cta .content {
    max-width: 750px;
}

.offer_cta .content > p:last-child {
    margin-top: 25px;

    color: #666;
    font-size: var(--normal-medium-size);
    line-height: 1.7;
    max-width: 600px;
}

.offer_cta .button {
    min-height: 50px;
    padding: 14px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: .5px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;

    color: #fff;
    background: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    font-size: var(--normal-medium-size);
}

.offer_cta .button:hover {
    transform: translateY(-3px);
}

/*
    TABLETS
*/

@media (max-width: 1000px) {
    .offer_hero {
        min-height: 600px;
    }

    .offer_hero h1 {
        font-size: 3rem;
        line-height: 1.1;
    }

    .offer_intro,
    .offer_process {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .offer_cards,
    .offer_types .types_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .offer_intro .stats {
        padding-left: 0;
        border-left: 0;
    }

    .offer_process .picture {
        height: 420px;
    }
}

/*
    PHONES
*/

@media (max-width: 600px) {
    .offer_hero {
        min-height: auto;
        padding: 50px 20px 80px 20px;
        background:
            linear-gradient(rgba(8, 11, 31, .92), rgba(8, 11, 31, .96)),
            url('/assets/media/DSC05404.jpg') center/cover;
    }

    .offer_hero h1 {
        font-size: 2.1rem;
        line-height: 1.15;
        letter-spacing: 0;
        margin-bottom: 15px;
    }

    .offer_hero .eyebrow {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
        margin-bottom: 10px;
    }

    .offer_hero .lead {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .offer_hero .actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-top: 20px;
    }

    .offer_hero .button {
        width: 100%;
        font-size: 0.85rem;
        padding: 12px 16px;
        min-height: 44px;
    }

    .offer_intro h2,
    .offer_process h2,
    .offer_section_heading h2,
    .offer_cta h2 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .offer_intro,
    .offer_process,
    .offer_scope,
    .offer_types,
    .offer_cta {
        padding: 40px 20px;
    }

    .offer_cards,
    .offer_types .types_grid {
        grid-template-columns: 1fr;
    }

    .offer_cards .card {
        min-height: auto;
    }

    .offer_process .picture {
        height: 250px;
    }

    .offer_cta {
        flex-direction: column;
        align-items: stretch;
    }
}