/* ========================================
       HERO SECTION
       ======================================== */
.hero {
    background: #000000;
    position: relative;
    overflow: hidden;
    padding: 120px 0 0px;
    text-align: center;
    color: #ffffff;
}

.hero-graphic {
    width: 100%;
    position: absolute;
    bottom: 0;
}

/* CSS-only futuristic grid */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -60%;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(230, 57, 70, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 1;
}
.partner-img{width:100%;}

.hero__subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.hero__title {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.15;
    max-width: 800px;
    margin: 0 auto 16px;
}

.gradient-text {
    background: linear-gradient(90deg, rgba(143, 195, 255, 1) 0%, rgba(169, 132, 255, 1) 50%, rgba(230, 50, 58, 1) 100%);
    ;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-line {
    margin-top: 60px;
    border-width: 1px;
    border-style: solid;
    border-image: linear-gradient(to right, darkblue, darkorchid) 1;
}

.hero__desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 520px;
    margin: 0 auto 40px;
}

.hero__buttons {
    display: flex;
    gap: 34px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

/* ========================================
       PARTNERS SECTION
       ======================================== */
.partners {
    background: #FFFFFF;
}

.partners-card {
    background: linear-gradient(5deg, rgba(255, 255, 255, 1) 0%, rgba(245, 250, 255, 1) 100%);    
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
    display: grid;
    grid-template-columns: 1fr 1fr;

    overflow: hidden;
    margin-top: -60px;
    z-index: 9;
    position: relative;
    padding: 60px 20px;

    @media screen and (max-width: 768px) {
        grid-template-columns: 1fr;
    }

    @media screen and (min-width: 601px ) and (max-width: 1024px) {
        & {
            display: flex;
            flex-direction: column;
        }

    }
}

.partners-card__image {
    background: transparent;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1rem;
}

.partners-card__image img {
    @media screen and (max-width: 768px) {
        width: 100%;
    }
}

.partners-card__content {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.partners-card__label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #e63946;
    margin-bottom: 12px;
    font-weight: 600;
}

.partners-card__title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.partners-card__text {
    font-size: 1rem;
    color: #555;
    line-height: 1.75;
    margin-bottom: 32px;
}

.partners-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #000000;
    font-size: 1rem;
    transition: gap 0.2s;
}

.partners-card__cta:hover {
    gap: 14px;
}

 .highlight {
            background: linear-gradient(90deg, rgba(143, 195, 255, 1) 0%, rgba(169, 132, 255, 1) 0%, rgba(230, 50, 58, 1) 31%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 36px;
            font-weight: 400;
            font-weight: 500;
        }

/* latest insights - Section 4  */
.latest-insights {
    position: relative;
    height: auto;
    padding: 60px 100px;
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 50px;
    border: var(--border-light-blue);
    border-radius: 20px;
    background: var(--section-gradient);
    margin-block: var(--spacer-120);

    .triangle_graphic {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0;
    }

    .left-content {
        max-width: 390px;
        width: 100%;
        height: auto;

        .para-primary {
            margin-top: 8px;
        }
    }

    .right-content {
        max-width: 625px;
        width: 100%;
        height: auto;
    }

    @media screen and (max-width: 1024px) {
        & {
            flex-direction: column;
            gap: 32px;
            padding: 40px 20px;
            margin-block: var(--spacer-60);
        }
    }
}

/* Form CSS */
.form {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    width: 100%;
    max-width: 625px;
    height: auto;

    .screen-reader-response {
        display: none;
    }

    .form-row {
        width: 100%;
        display: flex;
        gap: 24px;
        justify-content: start;
        align-items: start;
        margin-top: 20px;

        p {
            width: 50%;
        }

    }

    .form-row-inner {
        p {
            width: 100%;
            display: flex;
            justify-content: start;
            align-items: start;
        }
    }

    input,
    select {
        padding: 15px;
        border-radius: 8px;
        border: 1px solid #D8E5F4;
        background: #FFF;
        width: 100%;
        font-family: "Sora", sans-serif;
        color: var(--text-black-primary);
        font-size: 14px;
        font-weight: 400;
        line-height: normal;
    }

    select:focus-visible,
    input:focus-visible {
        outline: 0;
    }

    input::placeholder,
    select::placeholder {
        color: var(--text-grey2);
        font-size: 14px;
        font-weight: 400;
        line-height: normal;
    }

    input[type='submit'] {
        border-radius: 8px;
        background: #E6323A;
        padding: 16px 32px;
        border: none;
        color: #fff;
        margin-top: 40px;
        width: fit-content;
        color: var(--text-white);
        font-size: 16px;
        font-weight: 400;
        line-height: 22px;
        letter-spacing: 0;
    }

    select[name="country-code"] {
        width: fit-content;
        padding-right: 0;
        border-right: 0;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        font-family: "Sora", sans-serif;
        color: var(--text-black-primary);
        font-size: 14px;
        font-weight: 400;
        line-height: normal;
        padding: 14px;
        padding-right: 0;
    }

    input[type='tel'] {
        width: 185px;
        padding-left: 15px;
        border-left: 0;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    .wpcf7-not-valid-tip {
        font-size: 14px;
    }

    .wpcf7-response-output {
        margin-top: 20px;
        font-size: 14px;
    }

    &:last-child {
        .form-row {
            p {
                width: 100%;
            }

        }
    }

    @media screen and (max-width: 1024px) {
        & {

            .form-row {
                flex-direction: column;
            }

            input[type='tel'] {
                width: 100%;
            }

            input[type='submit'] {
                width: 100%;
                font-size: 14px;
                line-height: 20px;
            }
            
        }
    }
}

.cta-primary__texts {
    color: #ffffff !important;
}

.cta-primary__icons {
    background: #ffffff !important;
}

.cta-primary-containers {
    background-color: transparent !important;
}

.red-icon {
    width: 14px !important;
}

@media screen and (max-width: 768px) {
    .partners-card__content {
        padding: 0 15px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
   .partners-card__content {
    padding: 40px 10px;}
    
    .partners-card__image img {
    width: 100%; height:500px;
}
}