﻿/* =========================================
   COMPACT CHANNEL HERO
========================================= */

.channel-hero {
    position: relative;
    width: 100%;
    height: 430px;
    background:
    url('https://images.unsplash.com/photo-1460317442991-0ec209397118?q=80&w=1920&auto=format&fit=crop')
    center center/cover no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* OVERLAY */

.channel-hero-overlay {
    position: absolute;
    inset: 0;
    background:
    linear-gradient(
        90deg,
        rgba(1,10,30,0.95) 0%,
        rgba(1,20,55,0.82) 38%,
        rgba(1,20,55,0.32) 65%,
        rgba(1,20,55,0.06) 100%
    );
}

/* CONTAINER */

.channel-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    margin: auto;
    padding: 0 60px;
}

/* CONTENT */

.channel-hero-content {
    max-width: 520px;
    padding-top: 45px;
}

/* SUBTITLE */

.channel-subtitle {
    display: inline-block;
    color: #d9a441;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

/* HEADING */

.channel-hero-content h1 {
    color: #ffffff;
    font-size: 44px;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 18px;
    font-family: 'Montserrat', sans-serif;
}

/* PARAGRAPH */

.channel-hero-content p {
    color: rgba(255,255,255,0.82);
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 28px;
    max-width: 500px;
}

/* BUTTONS */

.channel-hero-btns {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* BUTTONS */

.channel-btn-primary,
.channel-btn-outline {
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.4s ease;
}

/* PRIMARY */

.channel-btn-primary {
    background: #d9a441;
    color: #ffffff;
}

.channel-btn-primary:hover {
    background: #c5902f;
}

/* OUTLINE */

.channel-btn-outline {
    border: 1px solid rgba(255,255,255,0.35);
    color: #ffffff;
    background: rgba(255,255,255,0.03);
}

.channel-btn-outline:hover {
    background: #ffffff;
    color: #03162f;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .channel-hero {
        height: auto;
        padding: 120px 0 80px;
    }

}

@media (max-width: 767px) {

    .channel-hero {
        padding: 110px 0 70px;
    }

    .channel-hero .container {
        padding: 0 20px;
    }

    .channel-hero-content h1 {
        font-size: 34px;
    }

    .channel-hero-content p {
        font-size: 15px;
    }

    .channel-hero-btns {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .channel-btn-primary,
    .channel-btn-outline {
        width: 100%;
        justify-content: center;
    }

}


/* =========================================
   CHANNEL SERVICES SECTION
========================================= */

.channel-services-section {
    position: relative;
    padding: 45px 0;
    background: #ffffff;
}

.channel-services-section .container {
    max-width: 1280px;
    margin: auto;
    padding: 0 40px;
}

/* =========================================
   TITLE
========================================= */

.channel-services-title {
    text-align: center;
    margin-bottom: 28px;
}

.channel-services-title span {
    display: inline-block;
    color: #0A43B8;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.channel-services-title h2 {
    font-size: 28px;
    line-height: 1.2;
    color: #111111;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.channel-title-line {
    width: 45px;
    height: 3px;
    background: #0A43B8;
    border-radius: 30px;
    margin: auto;
}

/* =========================================
   GRID
========================================= */

.channel-services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

/* =========================================
   CARD
========================================= */

.channel-service-card {
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 10px;
    padding: 20px 14px;
    text-align: center;
    transition: 0.4s ease;
}

.channel-service-card:hover {
    transform: translateY(-4px);
    border-color: #0A43B8;
    box-shadow: 0 8px 22px rgba(0,0,0,0.05);
}

/* ICON */

.channel-service-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(10,67,184,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 14px;
}

.channel-service-icon i {
    font-size: 22px;
    color: #0A43B8;
}

/* TITLE */

.channel-service-card h3 {
    font-size: 16px;
    line-height: 1.5;
    color: #111111;
    margin-bottom: 10px;
    font-weight: 700;
}

/* TEXT */

.channel-service-card p {
    font-size: 13px;
    line-height: 1.7;
    color: #666666;
    margin: 0;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1199px) {

    .channel-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width: 767px) {

    .channel-services-section {
        padding: 40px 0;
    }

    .channel-services-section .container {
        padding: 0 20px;
    }

    .channel-services-title {
        margin-bottom: 24px;
    }

    .channel-services-title h2 {
        font-size: 24px;
    }

    /* 2 x 2 GRID */

    .channel-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .channel-service-card {
        padding: 18px 12px;
    }

    .channel-service-icon {
        width: 46px;
        height: 46px;
        margin-bottom: 12px;
    }

    .channel-service-icon i {
        font-size: 18px;
    }

    .channel-service-card h3 {
        font-size: 14px;
    }

    .channel-service-card p {
        font-size: 12px;
        line-height: 1.6;
    }

}


/* =========================================
   COUNTER SECTION
========================================= */

.channel-counter-section {
    position: relative;
    padding: 28px 0;
    background:
    linear-gradient(
        180deg,
        #03162f 0%,
        #061b38 100%
    );
    overflow: hidden;
}

/* OVERLAY */

.channel-counter-overlay {
    position: absolute;
    inset: 0;
    background:
    url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=1600&auto=format&fit=crop')
    center center/cover no-repeat;
    opacity: 0.08;
}

/* CONTAINER */

.channel-counter-section .container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: auto;
    padding: 0 40px;
}

/* GRID */

.channel-counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

/* ITEM */

.channel-counter-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 10px 20px;
    position: relative;
}

/* BORDER */

.channel-counter-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 55px;
    background: rgba(255,255,255,0.18);
    transform: translateY(-50%);
}

/* ICON */

.channel-counter-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
}

.channel-counter-icon i {
    color: #ffffff;
    font-size: 22px;
}

/* CONTENT */

.channel-counter-content h3 {
    color: #ffffff;
    font-size: 34px;
    line-height: 1;
    margin-bottom: 6px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.channel-counter-content p {
    color: rgba(255,255,255,0.72);
    font-size: 13px;
    margin: 0;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .channel-counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .channel-counter-item:not(:last-child)::after {
        display: none;
    }

}

@media (max-width: 767px) {

    .channel-counter-section {
        padding: 24px 0;
    }

    .channel-counter-section .container {
        padding: 0 20px;
    }

    .channel-counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .channel-counter-item {
        justify-content: flex-start;
        padding: 12px;
        border: 1px solid rgba(255,255,255,0.10);
        border-radius: 10px;
    }

    .channel-counter-icon {
        width: 42px;
        height: 42px;
    }

    .channel-counter-icon i {
        font-size: 18px;
    }

    .channel-counter-content h3 {
        font-size: 24px;
    }

    .channel-counter-content p {
        font-size: 12px;
    }

}

/* =========================================
   WHY INVEST SECTION
========================================= */

.channel-invest-section {
    position: relative;
    padding: 45px 0;
    background: #ffffff;
}

.channel-invest-section .container {
    max-width: 1280px;
    margin: auto;
    padding: 0 40px;
}

/* =========================================
   TITLE
========================================= */

.channel-invest-title {
    text-align: center;
    margin-bottom: 28px;
}

.channel-invest-title span {
    display: inline-block;
    color: #0A43B8;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.channel-invest-title h2 {
    font-size: 30px;
    line-height: 1.2;
    color: #111111;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.channel-invest-line {
    width: 50px;
    height: 3px;
    background: #0A43B8;
    border-radius: 30px;
    margin: auto;
}

/* =========================================
   GRID
========================================= */

.channel-invest-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

/* =========================================
   CARD
========================================= */

.channel-invest-card {
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 10px;
    padding: 20px 14px;
    text-align: center;
    transition: 0.4s ease;
}

.channel-invest-card:hover {
    transform: translateY(-4px);
    border-color: #0A43B8;
    box-shadow: 0 8px 22px rgba(0,0,0,0.05);
}

/* ICON */

.channel-invest-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(10,67,184,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 14px;
}

.channel-invest-icon i {
    font-size: 20px;
    color: #0A43B8;
}

/* TITLE */

.channel-invest-card h3 {
    font-size: 16px;
    line-height: 1.5;
    color: #111111;
    margin-bottom: 10px;
    font-weight: 700;
}

/* TEXT */

.channel-invest-card p {
    font-size: 13px;
    line-height: 1.7;
    color: #666666;
    margin: 0;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1199px) {

    .channel-invest-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width: 767px) {

    .channel-invest-section {
        padding: 40px 0;
    }

    .channel-invest-section .container {
        padding: 0 20px;
    }

    .channel-invest-title {
        margin-bottom: 24px;
    }

    .channel-invest-title h2 {
        font-size: 24px;
    }

    /* 2 x 2 GRID */

    .channel-invest-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .channel-invest-card {
        padding: 18px 12px;
    }

    .channel-invest-icon {
        width: 46px;
        height: 46px;
        margin-bottom: 12px;
    }

    .channel-invest-icon i {
        font-size: 18px;
    }

    .channel-invest-card h3 {
        font-size: 14px;
    }

    .channel-invest-card p {
        font-size: 12px;
        line-height: 1.6;
    }

}

/* =========================================
   PROCESS SECTION
========================================= */

.channel-process-section {
    position: relative;
    padding: 45px 0;
    background:
    linear-gradient(
        180deg,
        #03162f 0%,
        #061b38 100%
    );
    overflow: hidden;
}

/* OVERLAY */

.channel-process-overlay {
    position: absolute;
    inset: 0;
    background:
    url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=1600&auto=format&fit=crop')
    center center/cover no-repeat;
    opacity: 0.05;
}

/* CONTAINER */

.channel-process-section .container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: auto;
    padding: 0 40px;
}

/* =========================================
   TITLE
========================================= */

.channel-process-title {
    text-align: center;
    margin-bottom: 28px;
}

.channel-process-title span {
    display: inline-block;
    color: #4d7fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.channel-process-title h2 {
    font-size: 30px;
    line-height: 1.2;
    color: #ffffff;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

/* =========================================
   PROCESS GRID
========================================= */

.channel-process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-bottom: 35px;
}

/* LINE */

.channel-process-grid::before {
    content: "";
    position: absolute;
    top: 32px;
    left: 10%;
    width: 80%;
    height: 1px;
    background: rgba(255,255,255,0.18);
}

/* ITEM */

.channel-process-item {
    position: relative;
    text-align: center;
    z-index: 2;
}

/* ICON */

.channel-process-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #0A43B8;
    border: 4px solid #061b38;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 14px;
}

.channel-process-icon i {
    color: #ffffff;
    font-size: 22px;
}

/* NUMBER */

.channel-process-item span {
    display: block;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

/* TITLE */

.channel-process-item h3 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 700;
}

/* TEXT */

.channel-process-item p {
    color: rgba(255,255,255,0.72);
    font-size: 13px;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 180px;
}

/* =========================================
   CTA BOX
========================================= */

.channel-process-cta {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 14px;
    padding: 28px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

/* CONTENT */

.channel-process-cta-content h3 {
    font-size: 34px;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 10px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    max-width: 520px;
}

.channel-process-cta-content p {
    color: rgba(255,255,255,0.72);
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
    max-width: 500px;
}

/* BUTTONS */

.channel-process-cta-btns {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* PRIMARY */

.channel-cta-primary {
    background: #d9a441;
    color: #ffffff;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.4s ease;
}

.channel-cta-primary:hover {
    background: #c5902f;
}

/* OUTLINE */

.channel-cta-outline {
    border: 1px solid rgba(255,255,255,0.20);
    color: #ffffff;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.4s ease;
}

.channel-cta-outline:hover {
    background: #ffffff;
    color: #03162f;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1199px) {

    .channel-process-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 28px;
    }

    .channel-process-grid::before {
        display: none;
    }

}

@media (max-width: 767px) {

    .channel-process-section {
        padding: 40px 0;
    }

    .channel-process-section .container {
        padding: 0 20px;
    }

    .channel-process-title h2 {
        font-size: 24px;
    }

    .channel-process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 28px;
    }

    .channel-process-icon {
        width: 54px;
        height: 54px;
    }

    .channel-process-icon i {
        font-size: 18px;
    }

    .channel-process-item h3 {
        font-size: 15px;
    }

    .channel-process-item p {
        font-size: 12px;
    }

    .channel-process-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 22px;
    }

    .channel-process-cta-content h3 {
        font-size: 24px;
    }

    .channel-process-cta-btns {
        width: 100%;
        flex-direction: column;
    }

    .channel-cta-primary,
    .channel-cta-outline {
        width: 100%;
        justify-content: center;
    }

}