@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');
body {
    font-family: 'Manrope', sans-serif;
}
.zktor-hero {
    position: relative;
    min-height: 610px;
    overflow: hidden;
    background: #032d46;
    color: #fff;
}
.zktor-hero-inner {
    min-height: 400px !important;
}

/* =====================================================
   HERO IMAGE
===================================================== */

.zktor-hero-image {
    position: absolute;

    top: 0;
    right: 0;
    bottom: 0;

    width: 68%;

    background-image:
        linear-gradient(
            90deg,
            #032d46 0%,
            rgba(3, 45, 70, 0.96) 5%,
            rgba(3, 45, 70, 0.78) 12%,
            rgba(3, 45, 70, 0.40) 21%,
            rgba(3, 45, 70, 0.08) 34%,
            rgba(3, 45, 70, 0) 45%
        ),
        url("../images/hero-social.jpg");

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.image2 {
    background-image:
        linear-gradient(
            90deg,
            #032d46 0%,
            rgba(3, 45, 70, 0.96) 5%,
            rgba(3, 45, 70, 0.78) 12%,
            rgba(3, 45, 70, 0.40) 21%,
            rgba(3, 45, 70, 0.08) 34%,
            rgba(3, 45, 70, 0) 45%
        ),
        url("../images/bg1.jpg");

}

/* subtle dark overlay on far right */

.zktor-hero-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 20, 32, 0.14) 0%,
            rgba(0, 20, 32, 0) 30%,
            rgba(0, 20, 32, 0.08) 100%
        );

    pointer-events: none;
}


/* =====================================================
   NAVBAR
===================================================== */

.zktor-navbar {
    position: relative;
    z-index: 10;

    min-height: 70px;

    padding: 12px 0;

    background: transparent;
}


.zktor-navbar .navbar-brand {
    padding: 0;
    margin-right: 45px;
}


.zktor-navbar .navbar-brand img {
    display: block;
    width: 120px;
    height: auto;
}


.zktor-navbar .navbar-nav {
    gap: 26px;
}


.zktor-navbar .nav-link {
    position: relative;
    padding: 10px 0 !important;
    color: rgba(255, 255, 255, 0.90);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    transition: 0.25s ease;
}


.zktor-navbar .nav-link:hover,
.zktor-navbar .nav-link.active {
    color: #fff;
}


.zktor-nav-actions {
    display: flex;
    align-items: center;

    gap: 12px;
}


.zktor-search {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    padding: 0;

    border: 0;

    background: transparent;
    color: #fff;

    font-size: 14px;
}


.btn-signin,
.btn-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 34px;

    padding: 0 19px;

    border-radius: 30px;

    font-size: 11px;
    font-weight: 600;

    text-decoration: none;

    transition: all 0.25s ease;
}


.btn-signin {
    border: 1px solid rgba(255,255,255,.8);

    color: #fff;

    background: rgba(0,0,0,.08);
}


.btn-signin:hover {
    background: #fff;
    color: #06344e;
}


.btn-download {
    border: 1px solid #38c8f3;

    background: #38c8f3;
    color: #fff;
}


.btn-download:hover {
    background: #19b7e7;
    border-color: #19b7e7;
    color: #fff;
}


/* =====================================================
   HERO CONTENT
===================================================== */

.zktor-hero-container {
    position: relative;
    z-index: 5;
}


.zktor-hero-content {
    max-width: 670px;
    padding-top: 60px;
    padding-bottom: 58px;
}


/* Heading */

.zktor-hero-content h1 {
    margin: 0 0 18px;

    color: #fff;

    font-size: 55px;
    font-weight: 800;

    line-height: 0.98;

    letter-spacing: -2.7px;
}


.zktor-hero-content h1 span {
    color: #37c7f4;
}


/* Paragraph */

.zktor-hero-content > p {
    color: rgba(255,255,255,.93);

    font-size: 13px;
    font-weight: 400;

    line-height: 1.55;
}


/* =====================================================
   STORE BUTTONS
===================================================== */

.zktor-app-buttons {
    display: flex;
    align-items: center;

    gap: 11px;

    margin-bottom: 42px;
}


.zktor-store-btn {
    display: flex;
    align-items: center;

    min-width: 145px;
    height: 48px;

    padding: 6px 13px;

    border: 1px solid rgba(255,255,255,.2);
    border-radius: 7px;

    background: #030303;

    color: #fff;

    text-decoration: none;

    transition: 0.2s ease;
}


.zktor-store-btn:hover {
    transform: translateY(-1px);

    background: #101010;

    color: #fff;
}


.zktor-store-btn > i {
    margin-right: 10px;

    font-size: 25px;
}


.zktor-store-btn span {
    display: flex;
    flex-direction: column;

    line-height: 1;
}


.zktor-store-btn small {
    margin-bottom: 4px;

    color: #fff;

    font-size: 7px;
    font-weight: 500;

    text-transform: uppercase;
}


.zktor-store-btn strong {
    color: #fff;

    font-size: 13px;
    font-weight: 700;
}


/* =====================================================
   HERO STATS
===================================================== */

.zktor-hero-stats {
    display: grid;

    grid-template-columns:
        100px
        145px
        110px
        120px;

    width: max-content;
}


.zktor-stat {
    position: relative;

    min-height: 54px;

    padding: 0 15px;
}


.zktor-stat:first-child {
    padding-left: 0;
}


.zktor-stat:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 2px;
    right: 0;

    width: 1px;
    height: 45px;

    background: rgba(255,255,255,.19);
}


.zktor-stat strong {
    display: block;

    margin-bottom: 8px;

    color: #fff;

    font-size: 23px;
    font-weight: 800;

    line-height: 1;
}


.zktor-stat span {
    display: block;

    color: rgba(255,255,255,.85);

    font-size: 8px;
    font-weight: 500;

    line-height: 1.3;
}


/* =====================================================
   LARGE DESKTOP
===================================================== */

@media (min-width: 1400px) {

    .zktor-hero {
        min-height: 680px;
    }

    .zktor-hero-content {
        padding-top: 127px;
    }

    .zktor-hero-content h1 {
        font-size: 58px;
    }
    .zktor-hero-inner .zktor-hero-content {
        padding-top: 70px;
    }
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1199.98px) {

    .zktor-hero-image {
        width: 64%;
    }

    .zktor-navbar .navbar-nav {
        gap: 16px;
    }

    .zktor-hero-content {
        max-width: 430px;
    }

    .zktor-hero-content h1 {
        font-size: 48px;
    }

}


/* =====================================================
   MOBILE / TABLET COLLAPSED NAV
===================================================== */

@media (max-width: 991.98px) {

    .zktor-hero {
        min-height: auto;

        background:
            linear-gradient(
                180deg,
                #032d46 0%,
                #032d46 52%,
                #02283e 100%
            );
    }


    .zktor-navbar {
        background: #032d46;
    }


    .zktor-navbar .navbar-collapse {
        margin-top: 12px;
        padding: 18px;

        border-radius: 10px;

        background: #02283f;
    }


    .zktor-navbar .navbar-nav {
        gap: 0;
    }


    .zktor-nav-actions {
        margin-top: 15px;
    }


    .navbar-toggler-icon {
        filter: brightness(0) invert(1);
    }


    .zktor-hero-image {
        position: absolute;

        top: auto;
        right: 0;
        bottom: 0;
        left: 0;

        width: 100%;
        height: 470px;

        background-image:
            linear-gradient(
                180deg,
                #032d46 0%,
                rgba(3,45,70,.80) 15%,
                rgba(3,45,70,.15) 45%,
                rgba(3,45,70,.08) 100%
            ),
            url("../images/hero-zktor.jpg");

        background-position: center center;
    }


    .zktor-hero-content {
        max-width: 100%;

        padding-top: 55px;
        padding-bottom: 500px;
    }


    .zktor-hero-content h1 {
        max-width: 520px;

        font-size: 52px;
    }


    .zktor-hero-content > p {
        max-width: 500px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 575.98px) {

    .zktor-navbar .navbar-brand img {
        width: 78px;
    }


    .zktor-hero-content {
        padding-top: 40px;
        padding-bottom: 390px;
    }


    .zktor-hero-content h1 {
        font-size: 42px;

        letter-spacing: -2px;
    }


    .zktor-hero-content > p {
        font-size: 12px;
    }


    .zktor-app-buttons {
        flex-wrap: wrap;

        margin-bottom: 32px;
    }


    .zktor-store-btn {
        min-width: 140px;
    }


    .zktor-hero-stats {
        grid-template-columns: 1fr 1fr;

        width: 100%;

        row-gap: 25px;
    }


    .zktor-stat {
        padding-left: 0;
    }


    .zktor-stat:nth-child(2)::after {
        display: none;
    }


    .zktor-hero-image {
        height: 365px;

        background-position: 62% center;
    }

}
/* ======================================================
   PUBLISHING / COMMUNITIES
====================================================== */

.publishing-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0 80px;

    background:
        radial-gradient(
            circle at 75% 35%,
            rgba(42, 194, 239, 0.08),
            transparent 33%
        ),
        linear-gradient(
            120deg,
            #ffffff 0%,
            #f8fdff 55%,
            #eefaff 100%
        );
}


/* subtle decorative glow */

.publishing-section::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -100px;
    bottom: -180px;

    border-radius: 50%;

    background: rgba(45, 194, 239, 0.06);

    filter: blur(10px);

    pointer-events: none;
}


/* ======================================================
   TOP AREA
====================================================== */

.publishing-top {
    position: relative;
    z-index: 2;

    min-height: 180px;
}


/* ======================================================
   CONTENT
====================================================== */

.publishing-content {
    max-width: 470px;
}


.section-kicker {
    display: block;

    margin-bottom: 8px;

    color: #0789c8;

    font-size: 11px;
    font-weight: 800;

    line-height: 1;

    letter-spacing: 0.7px;
}


.publishing-content h2 {
    margin: 0 0 15px;

    color: #062e48;

    font-family: "Manrope", sans-serif;

    font-size: 35px;
    font-weight: 800;

    line-height: 1.2;
}


.publishing-content p {
    max-width: 430px;
    margin-bottom: 25px;
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}


/* ======================================================
   VISUAL COLLAGE
====================================================== */

.publishing-visual {
    position: relative;

    width: 100%;
    height: 205px;
}


/* general image */

.pub-image {
    position: absolute;

    overflow: hidden;

    border-radius: 8px;

    box-shadow:
        0 8px 25px rgba(4, 53, 79, 0.10);
}


.pub-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* small landscape */

.pub-image-left {
    left: 1%;
    top: 54px;

    width: 18%;
    height: 91px;

    z-index: 1;
}


/* large center image */

.pub-image-main {
    left: 21%;
    top: 0;

    width: 46%;
    height: 150px;

    z-index: 2;

    border-radius: 10px;
}


/* city image */

.pub-image-right {
    right:40px;
    top: 42px;

    width: 25%;
    height: 115px;

    z-index: 1;
}


/* bottom community image */

.pub-image-bottom {
    right: 9%;
    bottom: 0;

    width: 25%;
    height: 75px;

    z-index: 4;
}


/* ======================================================
   CREATE POST FLOATING BOX
====================================================== */

.create-post-box {
    position: absolute;

    left: 47%;
    top: 91px;

    z-index: 6;

    display: flex;
    align-items: center;

    width: 205px;
    height: 43px;

    padding: 5px 7px;

    border: 1px solid rgba(6, 79, 115, 0.08);
    border-radius: 30px;

    background: rgba(255,255,255,.96);

    box-shadow:
        0 9px 25px rgba(3, 47, 70, 0.16);
}


.post-avatar {
    flex: 0 0 31px;

    width: 31px;
    height: 31px;

    overflow: hidden;

    border-radius: 50%;
}


.post-avatar img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.create-post-box > span {
    flex: 1;

    padding: 0 9px;

    color: #718692;

    font-size: 9px;
    font-weight: 500;
}


.post-action {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 30px;

    width: 30px;
    height: 30px;

    border-radius: 50%;

    background: #eaf9ff;
    color: #1cb9ed;

    font-size: 12px;
}


/* ======================================================
   AVATAR FLOATING BOX
====================================================== */

.people-box {
    position: absolute;

    left: 45%;
    bottom: 4px;

    z-index: 7;

    display: flex;
    align-items: center;

    height: 43px;

    padding: 5px 6px 5px 8px;

    border-radius: 24px;

    background: rgba(255,255,255,.96);

    box-shadow:
        0 8px 22px rgba(4, 51, 73, 0.15);
}


.people-avatars {
    display: flex;
    align-items: center;
}


.people-avatars img {
    width: 29px;
    height: 29px;

    margin-left: -7px;

    border: 2px solid #fff;
    border-radius: 50%;

    object-fit: cover;
}


.people-avatars img:first-child {
    margin-left: 0;
}


.people-send {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 31px;
    height: 31px;

    margin-left: 7px;

    border-radius: 50%;

    background: #dff6ff;
    color: #19b9ee;

    font-size: 12px;
}


/* ======================================================
   FEATURE CARDS
====================================================== */

.publishing-features {
    position: relative;
    z-index: 5;

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 11px;

    margin-top: 8px;
}


.publishing-card {
    display: flex;
    align-items: flex-start;
    min-height: 80px;
    padding: 15px 14px;
    border: 1px solid #d9eaf2;
    border-radius: 9px;
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.98),
            rgba(248,253,255,.95)
        );

    box-shadow:
        0 7px 18px rgba(3, 55, 82, 0.055);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.publishing-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 26px rgba(3, 55, 82, 0.10);
}


.publishing-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 31px;
    width: 45px;
    height: 45px;

    margin-right: 11px;

    border-radius: 7px;

    background: #e8f8ff;

    color: #057eb9;

    font-size: 18px;
}


.publishing-card h5 {
    margin: 3px 0 6px;
    color: #082f49;
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
}


.publishing-card p {
    margin: 0;
    color: #6c8390;
    font-size: 11px;
    font-weight: 500;

    line-height: 1.3;
}


/* ======================================================
   TABLET
====================================================== */

@media (max-width: 991.98px) {

    .publishing-section {
        padding: 45px 0;
    }


    .publishing-content {
        margin-bottom: 30px;
    }


    .publishing-content h2 {
        font-size: 29px;
    }


    .publishing-visual {
        height: 220px;
    }


    .publishing-features {
        grid-template-columns: repeat(3, 1fr);

        margin-top: 25px;
    }

}


/* ======================================================
   MOBILE
====================================================== */

@media (max-width: 767.98px) {

    .publishing-content {
        max-width: 100%;
    }


    .publishing-content h2 br {
        display: none;
    }


    .publishing-visual {
        height: 250px;

        margin-top: 15px;
    }


    .pub-image-left {
        left: 0;

        width: 24%;
    }


    .pub-image-main {
        left: 20%;

        width: 55%;
    }


    .pub-image-right {
        width: 27%;
    }


    .create-post-box {
        left: 35%;

        width: 190px;
    }


    .people-box {
        left: 30%;
    }


    .publishing-features {
        grid-template-columns: repeat(2, 1fr);

        gap: 10px;
    }

}


/* ======================================================
   SMALL MOBILE
====================================================== */

@media (max-width: 480px) {

    .publishing-section {
        padding: 38px 0;
    }


    .publishing-content h2 {
        font-size: 26px;
    }


    .publishing-visual {
        height: 225px;
    }


    .pub-image-main {
        left: 13%;

        width: 65%;
    }


    .pub-image-left {
        display: none;
    }


    .pub-image-right {
        width: 30%;
    }


    .pub-image-bottom {
        right: 4%;

        width: 34%;
    }


    .create-post-box {
        left: 25%;

        top: 95px;

        width: 185px;
    }


    .people-box {
        left: 19%;
    }


    .publishing-features {
        grid-template-columns: 1fr 1fr;
    }


    .publishing-card {
        min-height: 82px;

        padding: 12px 10px;
    }

}

/* =====================================================
   PRIVATE MESSAGING SECTION
===================================================== */

.private-messaging-section {
    position: relative;

    min-height: 380px;

    overflow: hidden;

    background: #031c2d;

    color: #ffffff;
}


/* =====================================================
   BACKGROUND
===================================================== */

.private-bg {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            90deg,
            rgba(2, 25, 41, 1) 0%,
            rgba(2, 25, 41, .98) 27%,
            rgba(2, 25, 41, .84) 45%,
            rgba(2, 25, 41, .32) 68%,
            rgba(10, 18, 24, .15) 100%
        ),
        url("../images/private-bg.jpg");

    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}


/* subtle bottom darkness */

.private-bg::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.06),
            rgba(0,0,0,.12)
        );
}


/* =====================================================
   ROW
===================================================== */

.private-messaging-row {
    position: relative;

    z-index: 2;

    min-height: 380px;
}


/* =====================================================
   LEFT CONTENT
===================================================== */

.private-content {
    position: relative;

    z-index: 5;

    max-width: 560px;

    padding: 50px 0 38px;
}


.private-content .section-kicker {
    display: block;

    margin-bottom: 9px;

    color: #38c8f4;

    font-family: "Manrope", sans-serif;

    font-size: 10px;
    font-weight: 800;

    line-height: 1;

    letter-spacing: .8px;
}


.private-content h2 {
    margin: 0 0 14px;

    color: #ffffff;

    font-family: "Manrope", sans-serif;

    font-size: 35px;
    font-weight: 800;

    line-height: 1.2;

    letter-spacing: -1.5px;
}


.private-content > p {
    max-width: 535px;

    margin: 0;

    color: rgba(255,255,255,.91);

    font-family: "Manrope", sans-serif;

    font-size: 16px;
    font-weight: 500;

    line-height: 1.55;
}


/* =====================================================
   FEATURE ICONS
===================================================== */

.private-features {
    display: grid;

    grid-template-columns:
        1.25fr
        1fr
        .85fr
        1fr;

    gap: 10px;
    margin-bottom: 20px;
    margin-top: 26px;
}


.private-feature {
    position: relative;
    text-align: center;
    min-width: 0;
}


.private-feature:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 7px;
    right: 3px;

    width: 1px;
    height: 30px;

    background: rgba(255,255,255,.13);
}


.private-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    margin:0 auto 8px;

    border: 1px solid rgba(255,255,255,.14);

    border-radius: 50%;

    background: rgba(3, 25, 39, .55);

    color: #ffb800;

    box-shadow:
        0 4px 15px rgba(0,0,0,.16);
}


.private-icon i {
    font-size: 16px;
}


.private-feature span {
    display: block;

    color: rgba(255,255,255,.92);

    font-family: "Manrope", sans-serif;

    font-size: 12px;
    font-weight: 600;

    line-height: 1.25;
}


/* =====================================================
   LEARN MORE
===================================================== */

.private-more {
    display: inline-flex;
    align-items: center;

    gap: 5px;

    margin-top: 10px;

    color: #ffffff;

    font-family: "Manrope", sans-serif;

    font-size: 9px;
    font-weight: 700;

    text-decoration: none;
}


.private-more i {
    font-size: 10px;

    transition: transform .2s ease;
}


.private-more:hover {
    color: #38c8f4;
}


.private-more:hover i {
    transform: translateX(3px);
}


/* =====================================================
   CENTER PHONE
===================================================== */

.private-phone {
    position: relative;

    height: 380px;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    z-index: 4;
}


.private-phone img {
    display: block;

    width: auto;
    max-width: 100%;

    height: 355px;

    object-fit: contain;
    object-position: center bottom;
}


/* =====================================================
   RIGHT TAGLINE
===================================================== */

.private-tagline {
    position: relative;

    z-index: 5;

    padding-left: 10px;
}


.private-tagline h3 {
    margin: 0;

    color: #ffffff;

    font-family: "Manrope", sans-serif;

    font-size: 21px;
    font-weight: 700;

    line-height: 1.15;

    letter-spacing: -.7px;
}


.tagline-line {
    display: block;

    width: 33px;
    height: 2px;

    margin-top: 17px;

    background: #35bce9;
}


/* =====================================================
   DESKTOP
===================================================== */

@media (min-width: 1400px) {

    .private-messaging-section,
    .private-messaging-row {
        min-height: 400px;
    }


    .private-content h2 {
        font-size: 38px;
    }


    .private-phone {
        height: 400px;
    }


    .private-phone img {
        height: 380px;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1199.98px) {

    .private-content h2 {
        font-size: 32px;
    }


    .private-features {
        grid-template-columns: repeat(2, 1fr);

        max-width: 320px;

        row-gap: 18px;
    }


    .private-feature::after {
        display: none;
    }


    .private-phone img {
        height: 325px;
    }


    .private-tagline h3 {
        font-size: 18px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 991.98px) {

    .private-messaging-section {
        min-height: auto;
    }


    .private-bg {
        background-image:
            linear-gradient(
                180deg,
                rgba(2,25,41,1) 0%,
                rgba(2,25,41,.96) 40%,
                rgba(2,25,41,.62) 70%,
                rgba(2,25,41,.35) 100%
            ),
            url("../images/private-bg.jpg");

        background-position: center;
    }


    .private-messaging-row {
        min-height: auto;
    }


    .private-content {
        max-width: 540px;

        padding: 45px 0 15px;
    }


    .private-phone {
        height: 350px;

        justify-content: flex-start;
    }


    .private-phone img {
        height: 340px;
    }


    .private-tagline {
        padding: 20px 0 45px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 575.98px) {

    .private-content h2 {
        font-size: 29px;
    }


    .private-content > p {
        font-size: 11px;
    }


    .private-features {
        grid-template-columns: repeat(2, 1fr);

        max-width: 100%;
    }


    .private-phone {
        height: 300px;

        justify-content: center;
    }


    .private-phone img {
        height: 290px;
    }


    .private-tagline {
        padding-top: 5px;
    }


    .private-tagline h3 {
        font-size: 20px;
    }

}
/* ======================================================
   PRIVACY & DATA SAFETY
====================================================== */

.privacy-safety-section {
    position: relative;

    padding: 80px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 88% 50%,
            rgba(31, 181, 235, 0.11),
            transparent 24%
        ),
        linear-gradient(
            110deg,
            #ffffff 0%,
            #f8fdff 45%,
            #edf9fe 100%
        );
}


/* subtle decorative texture */

.privacy-safety-section::before {
    content: "";

    position: absolute;

    top: -120px;
    right: -80px;

    width: 400px;
    height: 400px;

    border-radius: 50%;

    background: rgba(40, 190, 240, 0.035);

    pointer-events: none;
}


/* ======================================================
   LEFT CONTENT
====================================================== */

.privacy-content {
    position: relative;
    z-index: 2;

    max-width: 560px;
}


.privacy-kicker {
    display: block;

    margin-bottom: 8px;

    color: #078bc8;

    font-family: "Manrope", sans-serif;

    font-size: 10px;
    font-weight: 800;

    line-height: 1;

    letter-spacing: 0.7px;
}


.privacy-content h2 {
    margin: 0 0 13px;

    color: #062e48;

    font-family: "Manrope", sans-serif;

    font-size: 35px;
    font-weight: 800;

    line-height: 1.2;
}


.privacy-content p {
    max-width: 560px;
    margin: 0;
    color: #000000;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}
.privacy-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 11px;
}


.privacy-card {
    display: flex;
    align-items: center;

    min-height: 67px;

    padding: 11px 14px;

    border: 1px solid #dcecf3;
    border-radius: 9px;

    background: rgba(255, 255, 255, 0.90);

    box-shadow:
        0 6px 18px rgba(5, 64, 92, 0.06);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.privacy-card:hover {
    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(5, 64, 92, 0.10);
}


/* ICON */

.privacy-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
    margin-right: 11px;

    border-radius: 8px;

    background: #e9f8ff;

    color: #087eb8;

    font-size: 21px;
}


/* CARD TEXT */

.privacy-card-content {
    min-width: 0;
}


.privacy-card-content h5 {
    margin: 0 0 3px;

    color: #082f49;

    font-family: "Manrope", sans-serif;

    font-size: 14px;
    font-weight: 800;

    line-height: 1.2;
}


.privacy-card-content p {
    margin: 0;

    color: #637d8b;

    font-family: "Manrope", sans-serif;

    font-size: 12px;
    font-weight: 500;

    line-height: 1.3;
}


/* ======================================================
   SHIELD
====================================================== */

.privacy-shield {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}


.privacy-shield img {
    display: block;
    border-radius: 20px;
    width: 100%;
    object-fit: contain;

    filter:
        drop-shadow(0 12px 15px rgba(0, 126, 190, 0.18));
}


.privacy-shield a {
    display: inline-flex;
    align-items: center;

    gap: 5px;

    margin-top: 2px;

    color: #0879b7;

    font-family: "Manrope", sans-serif;

    font-size: 9px;
    font-weight: 800;

    text-decoration: none;
}


.privacy-shield a i {
    font-size: 10px;

    transition: transform .2s ease;
}


.privacy-shield a:hover i {
    transform: translateX(3px);
}


/* ======================================================
   TABLET
====================================================== */

@media (max-width: 991.98px) {

    .privacy-safety-section {
        padding: 45px 0;
    }


    .privacy-content {
        max-width: 520px;
    }


    .privacy-content h2 {
        font-size: 29px;
    }


    .privacy-features {
        margin-top: 5px;
    }


    .privacy-shield {
        margin-top: 5px;
    }


    .privacy-shield img {
        width: 115px;
        height: 115px;
    }

}


/* ======================================================
   MOBILE
====================================================== */

@media (max-width: 575.98px) {

    .privacy-safety-section {
        padding: 38px 0;
    }


    .privacy-content h2 {
        font-size: 27px;
    }


    .privacy-content h2 br {
        display: none;
    }


    .privacy-features {
        grid-template-columns: 1fr;

        gap: 9px;
    }


    .privacy-card {
        min-height: 62px;
    }


    .privacy-shield {
        margin-top: 12px;
    }


    .privacy-shield img {
        width: 105px;
        height: 105px;
    }

}
/* =====================================================
   CREATOR INCOME SECTION
===================================================== */

.creator-income-section {
    position: relative;
    overflow: hidden;

    padding: 80px 0 80px;
    border-top: 1px dashed #cccccc;
    border-bottom: 1px dashed #cccccc;
    background:
        radial-gradient(
            circle at 82% 25%,
            rgba(49, 192, 239, 0.09),
            transparent 30%
        ),
        linear-gradient(
            110deg,
            #ffffff 0%,
            #f7fcff 50%,
            #edf9fe 100%
        );
}


/* =====================================================
   TOP ROW
===================================================== */

.creator-income-top {
    position: relative;
    z-index: 2;
}


/* =====================================================
   LEFT CONTENT
===================================================== */

.creator-income-content {
    max-width: 560px;
}


.creator-kicker {
    display: block;

    margin-bottom: 8px;

    color: #078bc8;

    font-family: "Manrope", sans-serif;

    font-size: 10px;
    font-weight: 800;

    line-height: 1;

    letter-spacing: .7px;
}


.creator-income-content h2 {
    margin: 0 0 12px;

    color: #062e48;

    font-family: "Manrope", sans-serif;

    font-size: 35px;
    font-weight: 800;

    line-height: 1.2;
}


.creator-income-content p {
    max-width: 500px;

    margin: 0 0 9px;

    color: #000000;

    font-family: "Manrope", sans-serif;

    font-size: 16px;
    font-weight: 500;

    line-height: 1.55;
}




/* =====================================================
   RIGHT IMAGE
===================================================== */

.creator-income-image {
    position: relative;

    width: 100%;
    height: 190px;

    overflow: hidden;

    border-radius: 10px;

    box-shadow:
        0 8px 25px rgba(3, 52, 78, 0.08);
}


.creator-income-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}


/* =====================================================
   BOTTOM CARDS
===================================================== */

.creator-income-features {
    position: relative;
    z-index: 3;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 12px;

    margin-top: 10px;
}


.creator-income-card {
    display: flex;
    align-items: center;

    min-height: 76px;

    padding: 13px 17px;

    border: 1px solid #d8eaf2;
    border-radius: 9px;

    background: rgba(255, 255, 255, .94);

    box-shadow:
        0 7px 18px rgba(4, 55, 82, .06);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.creator-income-card:hover {
    transform: translateY(-2px);

    box-shadow:
        0 11px 24px rgba(4, 55, 82, .10);
}


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

.creator-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 45px;

    width: 45px;
    height: 45px;

    margin-right: 12px;

    border-radius: 8px;

    background: #e8f8ff;

    color: #087eb8;

    font-size: 16px;
}


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

.creator-card-text {
    min-width: 0;
}


.creator-card-text h5 {
    margin: 0 0 3px;

    color: #082f49;

    font-family: "Manrope", sans-serif;

    font-size: 14px;
    font-weight: 800;

    line-height: 1.2;
}


.creator-card-text p {
    margin: 0;

    color: #69808d;

    font-family: "Manrope", sans-serif;

    font-size: 12px;
    font-weight: 500;

    line-height: 1.3;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991.98px) {

    .creator-income-section {
        padding: 42px 0;
    }


    .creator-income-content {
        max-width: 600px;
    }


    .creator-income-content h2 {
        font-size: 30px;
    }


    .creator-income-image {
        height: 230px;
    }


    .creator-income-features {
        grid-template-columns: repeat(2, 1fr);

        margin-top: 20px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 575.98px) {

    .creator-income-section {
        padding: 36px 0;
    }


    .creator-income-content h2 {
        font-size: 27px;
    }


    .creator-income-content h2 br {
        display: none;
    }


    .creator-income-content p {
        font-size: 11px;
    }


    .creator-income-image {
        height: 190px;
    }


    .creator-income-features {
        grid-template-columns: 1fr;

        gap: 9px;
    }


    .creator-income-card {
        min-height: 65px;

        padding: 11px 14px;
    }

}
/* =========================================================
   ZKTOR - LOCAL / BUSINESS / ADVERTISING SECTIONS
========================================================= */

.z-local-world *,
.z-business *,
.z-advertising * {
    box-sizing: border-box;
}


.z-local-world,
.z-business,
.z-advertising {
    font-family: "Manrope", sans-serif;
}


/* =========================================================
   COMMON TYPOGRAPHY
========================================================= */

.z-section-label {
    display: block;

    margin: 0 0 7px;

    color: #0789c7;

    font-size: 10px;
    font-weight: 800;

    line-height: 1;

    letter-spacing: .7px;
}


.z-section-title {
    margin: 0 0 11px;

    color: #062e48;

    font-size: 32px;
    font-weight: 800;

    line-height: 1.2;
}


.z-section-text {
    margin: 0;

    color: #000000;

    font-size: 16px;
    font-weight: 500;

    line-height: 1.55;
}


.z-section-link {
    display: inline-flex;
    align-items: center;

    gap: 5px;

    margin-top: 9px;

    color: #0785c2;

    font-size: 9px;
    font-weight: 800;

    text-decoration: none;
}


.z-section-link i {
    font-size: 10px;

    transition: transform .2s ease;
}


.z-section-link:hover {
    color: #056d9f;
}


.z-section-link:hover i {
    transform: translateX(3px);
}


/* =========================================================
   COMMON FEATURE ICON
========================================================= */

.z-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: #e8f8ff;
    color: #087eb8;
    font-size: 24px;
}


/* =========================================================
   01. YOUR DIGITAL WORLD
========================================================= */

.z-local-world {
    position: relative;

    padding: 80px 0;

    overflow: hidden;

    background:
        linear-gradient(
            110deg,
            #ffffff 0%,
            #f8fdff 48%,
            #edf9fe 100%
        );
}


.z-local-world-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 38%)
        minmax(0, 62%);

    align-items: center;

    gap: 28px;
}


/* LEFT */

.z-local-world-content {
    max-width: 560px;
}


.z-local-world-content .z-section-text {
    max-width: 505px;
}


/* =========================================================
   LOCAL IMAGE CARDS
========================================================= */

.z-local-world-cards {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 9px;

    width: 100%;
}


.z-local-card {
    position: relative;

    display: block;

    width: 100%;
    height: 165px;

    overflow: hidden;

    border-radius: 9px;

    background: #dce8ed;

    text-decoration: none;

    box-shadow:
        0 6px 18px rgba(4, 55, 82, .07);
}


.z-local-card > img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform .4s ease;
}


.z-local-card:hover > img {
    transform: scale(1.045);
}


/* GRADIENT */

.z-local-card-shade {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 22, 34, 0) 35%,
            rgba(0, 22, 34, .10) 52%,
            rgba(0, 22, 34, .90) 100%
        );

    pointer-events: none;
}


/* CAPTION */

.z-local-card-caption {
    position: absolute;

    left: 11px;
    right: 9px;
    bottom: 9px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 6px;

    color: #ffffff;

    font-size: 12px;
    font-weight: 700;

    line-height: 1.2;
}


.z-local-arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 18px;

    width: 18px;
    height: 18px;

    border: 1px solid rgba(255, 255, 255, .38);

    border-radius: 50%;

    color: #ffffff;

    font-size: 12px;
}


/* =========================================================
   02. BUSINESS IDENTITY
========================================================= */

.z-business {
    position: relative;

    padding: 80px 0;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            #eef9fd 0%,
            #f4fbfe 50%,
            #eef9fd 100%
        );
}


.z-business-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 27%)
        minmax(0, 27%)
        minmax(0, 46%);

    align-items: center;

    gap: 24px;
}


/* =========================================================
   BUSINESS IMAGE
========================================================= */

.z-business-image {
    width: 100%;
    height: 160px;

    overflow: hidden;

    border-radius: 9px;
}


.z-business-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}


/* =========================================================
   BUSINESS CONTENT
========================================================= */

.z-business-content {
    max-width: 320px;
}


.z-business-content .z-section-text {
    max-width: 300px;
}


/* =========================================================
   BUSINESS FEATURE CARDS
========================================================= */

.z-business-features {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 9px;

    width: 100%;
}


.z-business-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-width: 0;
    height: 160px;

    padding: 12px;

    background: #ffffff;
    text-align: center;
    border: 1px solid #dcecf3;

    border-radius: 9px;

    box-shadow:
        0 6px 18px rgba(4, 55, 82, .07);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.z-business-card:hover {
    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(4, 55, 82, .11);
}


.z-business-card .z-feature-icon {
    margin-bottom: 10px;
}


.z-business-card-text {
    min-width: 0;
}


.z-business-card h5 {
    margin: 0 0 3px;

    color: #082f49;

    font-size: 12px;
    font-weight: 800;

    line-height: 1.2;
}


.z-business-card p {
    margin: 0;

    color: #718590;

    font-size: 10px;
    font-weight: 500;

    line-height: 1.3;
}


/* =========================================================
   03. ADVERTISING
========================================================= */

.z-advertising {
    position: relative;

    padding: 80px 0;

    overflow: hidden;

    background:
        linear-gradient(
            110deg,
            #ffffff 0%,
            #f8fdff 52%,
            #eefaff 100%
        );
}


.z-advertising-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 52%)
        minmax(0, 48%);

    align-items: center;

    gap: 24px;
}


/* =========================================================
   ADVERTISING LEFT
========================================================= */

.z-advertising-content {
    width: 100%;
}


.z-advertising-content .z-section-title {
    font-size: 30px;
}


.z-advertising-content .z-section-text {
    max-width: 520px;
}


/* =========================================================
   ADVERTISING CARDS
========================================================= */

.z-advertising-features {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 10px;

    width: 100%;

    margin-top: 20px;
}


.z-advertising-card {
    display: flex;
    align-items: center;

    width: 100%;
    min-width: 0;
    height: 68px;

    padding: 10px 12px;

    background: #ffffff;

    border: 1px solid #dcecf3;

    border-radius: 9px;

    box-shadow:
        0 6px 18px rgba(4, 55, 82, .07);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.z-advertising-card:hover {
    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(4, 55, 82, .11);
}


.z-advertising-card .z-feature-icon {
    margin-right: 10px;
}


.z-ad-card-content {
    min-width: 0;
}


.z-advertising-card h5 {
    margin: 0 0 3px;

    color: #082f49;

    font-size: 11px;
    font-weight: 800;

    line-height: 1.2;
}


.z-advertising-card p {
    margin: 0;

    color: #718590;

    font-size: 9px;
    font-weight: 500;

    line-height: 1.3;
}


/* =========================================================
   ADVERTISING IMAGE
========================================================= */

.z-advertising-visual {
    position: relative;

    width: 100%;
    height: 205px;

    overflow: hidden;

    border-radius: 9px;

    box-shadow:
        0 7px 22px rgba(4, 55, 82, .08);
}


.z-advertising-visual > img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}


/* =========================================================
   GROW TOGETHER FLOATING CARD
========================================================= */

.z-grow-card {
    position: absolute;

    top: 27px;
    left: 28px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 170px;
    height: 92px;

    padding: 14px;

    border-radius: 8px;

    background: rgba(255, 255, 255, .97);

    box-shadow:
        0 10px 28px rgba(3, 42, 62, .17);
}


.z-grow-text {
    display: flex;
    flex-direction: column;

    color: #07334d;

    line-height: 1;
}


.z-grow-text span {
    font-size: 14px;
    font-weight: 700;
}


.z-grow-text strong {
    font-size: 16px;
    font-weight: 800;
}


.z-grow-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    border-radius: 7px;

    background: #e9f9ff;

    color: #1cb9ed;

    font-size: 23px;
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1199.98px) {

    /* LOCAL */

    .z-local-world-grid {
        grid-template-columns: 35% 65%;
        gap: 20px;
    }

    .z-local-card {
        height: 150px;
    }


    /* BUSINESS */

    .z-business-grid {
        grid-template-columns: 25% 28% 47%;
        gap: 17px;
    }

    .z-business-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .z-business-card {
        height: 78px;

        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
    }

    .z-business-card .z-feature-icon {
        margin: 0 9px 0 0;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .z-local-world,
    .z-business,
    .z-advertising {
        padding: 40px 0;
    }


    /* LOCAL */

    .z-local-world-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .z-local-world-content {
        max-width: 520px;
    }

    .z-local-world-cards {
        grid-template-columns: repeat(4, 1fr);
    }

    .z-local-card {
        height: 180px;
    }


    /* BUSINESS */

    .z-business-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .z-business-image {
        height: 230px;
    }

    .z-business-content {
        max-width: 100%;
    }

    .z-business-features {
        grid-column: 1 / -1;

        grid-template-columns: repeat(4, 1fr);
    }

    .z-business-card {
        height: 100px;

        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .z-business-card .z-feature-icon {
        margin: 0 0 9px;
    }


    /* ADVERTISING */

    .z-advertising-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .z-advertising-visual {
        height: 280px;
    }

}


/* =========================================================
   SMALL TABLET
========================================================= */

@media (max-width: 767.98px) {

    .z-local-world-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .z-local-card {
        height: 210px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .z-section-title,
    .z-advertising-content .z-section-title,
    .z-local-world-content .z-section-title {
        font-size: 26px;
    }


    .z-section-title br {
        display: none;
    }


    /* LOCAL */

    .z-local-world {
        padding: 35px 0;
    }

    .z-local-world-cards {
        grid-template-columns: repeat(2, 1fr);

        gap: 8px;
    }

    .z-local-card {
        height: 165px;
    }


    /* BUSINESS */

    .z-business-grid {
        grid-template-columns: 1fr;
    }

    .z-business-image {
        height: 220px;
    }

    .z-business-features {
        grid-column: auto;

        grid-template-columns: repeat(2, 1fr);

        gap: 9px;
    }

    .z-business-card {
        height: 105px;
    }


    /* ADVERTISING */

    .z-advertising-features {
        grid-template-columns: 1fr;
    }

    .z-advertising-card {
        height: 65px;
    }

    .z-advertising-visual {
        height: 225px;
    }

    .z-grow-card {
        top: 18px;
        left: 18px;

        width: 155px;
        height: 82px;

        padding: 12px;
    }

    .z-grow-icon {
        width: 43px;
        height: 43px;

        font-size: 20px;
    }

}
/* =========================================================
   REGIONAL OPERATIONS
========================================================= */

.z-regional-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    border-bottom:1px dashed #cccccc;
    border-top:1px dashed #cccccc;
    font-family: "Manrope", sans-serif;

    background:
        linear-gradient(
            110deg,
            #ffffff 0%,
            #f7fcff 52%,
            #edf9fe 100%
        );
}


/* ---------------------------------------------------------
   LEFT CONTENT
--------------------------------------------------------- */

.z-regional-content {
    max-width:460px;
}


.z-regional-label {
    display: block;

    margin-bottom: 8px;

    color: #078ac7;

    font-size: 11px;
    font-weight: 800;

    line-height: 1;

    letter-spacing: .8px;
}


.z-regional-title {
    margin: 0 0 12px;

    color: #062e48;

    font-size: 32px;
    font-weight: 800;

    line-height: 1.2;
}


.z-regional-text {
    max-width: 440px;

    margin: 0;

    color: #000000;

    font-size: 16px;
    font-weight: 500;

    line-height: 1.55;
}


.z-regional-link {
    display: inline-flex;
    align-items: center;

    gap: 5px;

    margin-top: 11px;

    color: #0785c2;

    font-size: 10px;
    font-weight: 800;

    text-decoration: none;
}


.z-regional-link i {
    font-size: 11px;

    transition: transform .2s ease;
}


.z-regional-link:hover {
    color: #056d9f;
}


.z-regional-link:hover i {
    transform: translateX(3px);
}


/* =========================================================
   MAP
========================================================= */

.z-regional-map {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
}


.z-regional-map img {
    display: block;

    width: 100%;
    height: auto;

    object-fit: contain;
}


/* =========================================================
   RIGHT AREA
========================================================= */

.z-regional-right {
    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 35px;
}


/* STATS */

.z-regional-stats {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;
}


.z-region-stat {
    display: flex;
    flex-direction: column;
}


.z-region-stat strong {
    margin-bottom: 4px;

    color: #062e48;

    font-size: 30px;
    font-weight: 800;

    line-height: 1;
}


.z-region-stat span {
    color: #486271;

    font-size: 9px;
    font-weight: 600;

    line-height: 1.3;
}


/* POINTS */

.z-regional-points {
    display: flex;
    flex-direction: column;

    gap: 20px;
}


.z-region-point {
    display: flex;
    align-items: center;

    gap: 9px;
}


.z-region-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 40px;

    width: 40px;
    height: 40px;

    border-radius: 50%;

    background: #e7f7fd;

    color: #087eb8;

    font-size: 15px;
}


.z-region-point span {
    color: #082f49;

    font-size: 12px;
    font-weight: 800;

    white-space: nowrap;
}



/* =========================================================
   1M+ COMMUNITY SECTION
========================================================= */

.z-million-section {
    position: relative;

    padding: 80px 0;

    overflow: hidden;

    font-family: "Manrope", sans-serif;

    background: #022f49;
}


/* =========================================================
   RIGHT BACKGROUND IMAGE
========================================================= */

.z-million-bg {
    position: absolute;

    top: 0;
    right: 0;
    bottom: 0;

    width: 48%;

    overflow: hidden;
}


.z-million-bg img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;
}


/* =========================================================
   IMAGE/DARK BLEND
========================================================= */

.z-million-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,

            #022f49 0%,
            #022f49 46%,

            rgba(2,47,73,.97) 52%,
            rgba(2,47,73,.65) 62%,

            rgba(2,47,73,.12) 78%,
            rgba(2,47,73,.05) 100%
        );
}


/* =========================================================
   1M STAT
========================================================= */

.z-million-stat {
    position: relative;

    z-index: 2;
}


.z-million-label {
    display: block;

    margin-bottom: 8px;

    color: #58c8ee;

    font-size: 9px;
    font-weight: 800;

    line-height: 1;

    letter-spacing: .8px;
}


.z-million-stat strong {
    display: block;

    margin: 0;

    color: #ffffff;

    font-size: 58px;
    font-weight: 800;

    line-height: .9;

    letter-spacing: -3px;
}


.z-million-stat p {
    margin: 9px 0 0;

    color: #ffffff;

    font-size: 14px;
    font-weight: 500;
}


/* =========================================================
   MAIN TEXT
========================================================= */

.z-million-content {
    position: relative;

    z-index: 2;

    max-width: 490px;
}


.z-million-content h2 {
    margin: 0 0 13px;

    color: #ffffff;

    font-size: 32px;
    font-weight: 800;

    line-height: 1.2;
}


.z-million-content p {
    max-width: 465px;

    margin: 0;

    color: rgba(255,255,255,.82);

    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
}


.z-million-content a {
    display: inline-flex;
    align-items: center;

    gap: 5px;

    margin-top: 30px;

    color: #ffffff;

    font-size: 16px;
    font-weight: 800;

    text-decoration: none;
}


.z-million-content a i {
    font-size: 15px;

    transition: transform .2s ease;
}


.z-million-content a:hover i {
    transform: translateX(3px);
}


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

@media (max-width: 1199.98px) {

    .z-regional-right {
        gap: 20px;
    }


    .z-region-stat strong {
        font-size: 26px;
    }


    .z-regional-stats {
        gap: 15px;
    }

}


@media (max-width: 991.98px) {

    .z-regional-section,
    .z-million-section {
        padding: 80px 0;
    }


    /* REGIONAL */

    .z-regional-content {
        max-width: 500px;
    }


    .z-regional-map {
        justify-content: flex-start;
    }


    .z-regional-map img {
        max-width: 400px;
    }


    .z-regional-right {
        max-width: 550px;
    }


    /* MILLION */

    .z-million-bg {
        width: 50%;
    }


    .z-million-stat strong {
        font-size: 50px;
    }


    .z-million-content h2 {
        font-size: 26px;
    }

}


@media (max-width: 767.98px) {

    /* MILLION IMAGE MOVES TO BOTTOM */

    .z-million-section {
        padding: 80px 0 300px;
    }


    .z-million-bg {
        top: auto;

        width: 100%;
        height: 270px;
    }


    .z-million-overlay {
        background:
            linear-gradient(
                180deg,
                #022f49 0%,
                #022f49 54%,
                rgba(2,47,73,.85) 68%,
                rgba(2,47,73,.05) 100%
            );
    }


    .z-million-content {
        margin-top: 35px;
    }

}


@media (max-width: 575.98px) {

    .z-regional-title {
        font-size: 28px;
    }


    .z-regional-right {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .z-regional-stats {
        max-width: 300px;
    }


    .z-region-stat strong {
        font-size: 28px;
    }


    .z-million-stat strong {
        font-size: 54px;
    }


    .z-million-content h2 {
        font-size: 27px;
    }

}
/* =========================================================
   DOWNLOAD CTA
========================================================= */

.z-download-cta {
    position: relative;

    padding: 80px 0;

    overflow: hidden;

    font-family: "Manrope", sans-serif;

    background:
        url("../images/download-cta-bg.jpg")
        center center / cover no-repeat;
}


/* DARK IMAGE OVERLAY */

.z-download-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(1, 31, 47, .66) 0%,
            rgba(1, 31, 47, .36) 50%,
            rgba(1, 31, 47, .66) 100%
        );
}


/* CONTENT */

.z-download-content {
    position: relative;

    z-index: 2;

    color: #ffffff;
}


.z-download-content h2 {
    margin: 0 0 5px;

    color: #ffffff;

    font-size: 32px;
    font-weight: 800;

    line-height: 1;

    letter-spacing: -1.2px;
}


.z-download-content p {
    margin: 0;

    color: rgba(255,255,255,.92);

    font-size: 11px;
    font-weight: 500;

    line-height: 1.5;
}


/* STORE BUTTONS */

.z-download-buttons {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-top: 12px;
}


.z-store-btn {
    display: block;

    text-decoration: none;

    transition: transform .2s ease;
}


.z-store-btn:hover {
    transform: translateY(-2px);
}


.z-store-btn img {
    display: block;

    width: auto;
    height: 40px;
}


/* =========================================================
   FOOTER
========================================================= */

.z-footer {
    position: relative;

    padding: 80px 0;

    overflow: hidden;

    font-family: "Manrope", sans-serif;

    background:
        linear-gradient(
            135deg,
            #032f49 0%,
            #01283f 50%,
            #01243a 100%
        );

    color: #ffffff;
}

/* =========================================================
   FOOTER CENTER LOGO + HORIZONTAL LINKS
========================================================= */

.z-footer-mini-nav {
    width: 100%;
    text-align: center;

    margin-top: 0px;
    padding-top: 0px;
}


/* LOGO */

.z-footer-mini-logo {
    display: flex;
    justify-content: center;

    margin-bottom: 22px;
}

.z-footer-mini-logo a {
    display: inline-block;
}

.z-footer-mini-logo img {
    display: block;

    width: auto;
    height: 50px;
}


/* LINKS */

.z-footer-mini-links {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 8px 0;
}

.navbar-collapse {
    flex-grow: 0;
}
.z-footer-mini-links a {
    position: relative;

    display: inline-flex;
    align-items: center;

    padding: 0 16px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 15px;
    font-weight: 500;
    line-height: 1;

    text-decoration: none;

    transition: color 0.2s ease;
}


/* separator */

.z-footer-mini-links a:not(:last-child)::after {
    content: "";

    position: absolute;

    right: 0;
    top: 50%;

    width: 1px;
    height: 11px;

    transform: translateY(-50%);

    background: rgba(255, 255, 255, 0.20);
}


.z-footer-mini-links a:hover {
    color: #35c5f4;
}


/* MOBILE */

@media (max-width: 767.98px) {

    .z-footer-mini-nav {
        margin-top: 35px;
        padding-top: 30px;
    }

    .z-footer-mini-links {
        gap: 14px 0;
    }

    .z-footer-mini-links a {
        padding: 0 10px;

        font-size: 9px;
    }

}


@media (max-width: 575.98px) {

    .z-footer-mini-logo img {
        height: 27px;
    }

    .z-footer-mini-links {
        row-gap: 15px;
    }

}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.z-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: 55px;
    padding-top: 22px;

    border-top: 1px solid rgba(255,255,255,.12);
}


.z-footer-bottom p {
    margin: 0;

    color: rgba(255,255,255,.62);

    font-size: 8px;
    font-weight: 500;
}


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

@media (max-width: 991.98px) {

    .z-download-cta,
    .z-footer {
        padding: 80px 0;
    }


    .z-footer-newsletter {
        max-width: 400px;
    }

}


@media (max-width: 767.98px) {

    .z-download-content h2 {
        font-size: 29px;
    }


    .z-footer-bottom {
        flex-direction: column;
        align-items: flex-start;

        margin-top: 40px;
    }

}


@media (max-width: 575.98px) {

    .z-download-cta,
    .z-footer {
        padding: 80px 0;
    }


    .z-download-content h2 {
        font-size: 27px;
    }


    .z-download-buttons {
        flex-wrap: wrap;
    }


    .z-store-btn img {
        height: 38px;
    }


    .z-newsletter-form {
        max-width: 100%;
    }

}







/* =========================================================
   ZKTOR HELP CENTER — PREMIUM CONTENT STYLING
   Existing Bootstrap HTML ke saath use karein
========================================================= */

main {
    --zktor-navy: #062f49;
    --zktor-dark: #03283e;
    --zktor-blue: #149fd7;
    --zktor-cyan: #28c4f3;
    --zktor-soft: #f3faff;
    --zktor-border: #dcecf5;
    --zktor-text: #102c3d;
    --zktor-muted: #637886;

    color: var(--zktor-text);
    background: #fff;
}


/* ---------------------------------------------------------
   GENERAL SECTION
--------------------------------------------------------- */

main section {
    position: relative;
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

main section.bg-light {
    background: linear-gradient(
        135deg,
        #f7fcff 0%,
        #eef8fd 100%
    ) !important;
}


/* ---------------------------------------------------------
   EYEBROW / SMALL LABEL
--------------------------------------------------------- */

main .text-primary.fw-bold.small.text-uppercase {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: var(--zktor-blue) !important;

    font-size: 11px;
    font-weight: 800 !important;

    letter-spacing: 1.5px;
}

main .text-primary.fw-bold.small.text-uppercase::before {
    content: "";

    width: 22px;
    height: 2px;

    border-radius: 10px;

    background: var(--zktor-cyan);
}


/* ---------------------------------------------------------
   HEADINGS
--------------------------------------------------------- */

main h2,
main h3,
main h4,
main h5 {
    color: var(--zktor-dark);
}

main .display-5,
main .display-6 {
    letter-spacing: -1.7px;
    line-height: 1.08;
}

main .display-5 {
    font-size: 35px;
}

main .display-6 {
    font-size: 32px;
}


/* ---------------------------------------------------------
   PARAGRAPH
--------------------------------------------------------- */

main .text-secondary {
    color: #000000 !important;
    line-height: 1.75;
}

main .lead {
    font-size: 15px;
    line-height: 1.75;
}


/* ---------------------------------------------------------
   CARDS
--------------------------------------------------------- */

main .card {
    overflow: hidden;

    border: 1px solid var(--zktor-border) !important;

    box-shadow:
        0 8px 30px rgba(5, 57, 85, 0.055) !important;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

main .card:hover {
    transform: translateY(-5px);

    border-color: rgba(31, 183, 231, .32) !important;

    box-shadow:
        0 18px 45px rgba(5, 57, 85, .11) !important;
}


/* ---------------------------------------------------------
   ICONS INSIDE CARDS
--------------------------------------------------------- */

main .card-body > i.fs-2,
main .card-body > i.display-6 {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    border-radius: 14px;

    background: linear-gradient(
        135deg,
        #e8f8ff,
        #f5fcff
    );

    color: var(--zktor-blue) !important;

    box-shadow:
        inset 0 0 0 1px rgba(20, 159, 215, .10);
}


/* ---------------------------------------------------------
   CARD TITLES
--------------------------------------------------------- */

main .card h3 {
    line-height: 1.3;
}

main .card .h5 {
    font-size: 17px;
}


/* ---------------------------------------------------------
   BUTTONS
--------------------------------------------------------- */

main .btn-primary {
    border: 0;

    background: linear-gradient(
        135deg,
        #119ed8,
        #25c5f3
    );

    box-shadow:
        0 8px 22px rgba(22, 172, 224, .22);

    font-weight: 700;

    padding-top: 11px;
    padding-bottom: 11px;

    transition: all .25s ease;
}

main .btn-primary:hover {
    transform: translateY(-2px);

    background: linear-gradient(
        135deg,
        #0c91ca,
        #1db9e8
    );

    box-shadow:
        0 12px 28px rgba(22, 172, 224, .30);
}


main .btn-outline-primary {
    color: var(--zktor-blue);

    border-color: #b8dfef;

    background: #fff;

    font-weight: 700;

    padding-top: 10px;
    padding-bottom: 10px;
}

main .btn-outline-primary:hover {
    color: #fff;

    border-color: var(--zktor-blue);

    background: var(--zktor-blue);
}


/* ---------------------------------------------------------
   QUICK LINKS
--------------------------------------------------------- */

main .list-group {
    border: 1px solid var(--zktor-border);
    padding: 25px;
    box-shadow:
        0 12px 35px rgba(4, 57, 84, .06) !important;
}

main .list-group-item {
    border-color: #e8f1f6;

    color: var(--zktor-text);

    background: #fff;

    transition:
        background .25s ease,
        padding-left .25s ease,
        color .25s ease;
}

main .list-group-item:hover {
    padding-left: 1.75rem !important;

    color: var(--zktor-blue);

    background: #f3fbff;
}

main .list-group-item .bi-chevron-right {
    color: var(--zktor-blue);
}


/* ---------------------------------------------------------
   GETTING STARTED FEATURE BOX
--------------------------------------------------------- */

main section:first-child .card.bg-light {
    position: relative;

    border: 1px solid #ccebf8 !important;

    background:
        linear-gradient(
            135deg,
            #edfaff 0%,
            #f8fdff 100%
        ) !important;
}

main section:first-child .card.bg-light::after {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    right: -60px;
    top: -70px;

    border-radius: 50%;

    background: rgba(37, 196, 243, .08);
}


/* ---------------------------------------------------------
   ACCOUNT / FEATURE CARDS
--------------------------------------------------------- */

#account .card,
#privacy .card,
#messaging .card {
    background: rgba(255, 255, 255, .94) !important;
}


/* ---------------------------------------------------------
   PRIVACY SECTION
--------------------------------------------------------- */

#privacy .card {
    min-height: 190px;
}


/* ---------------------------------------------------------
   COMMUNITY LIST
--------------------------------------------------------- */

#communities .list-group-item {
    padding: 24px !important;
}

#communities .list-group-item:hover {
    padding-left: 29px !important;
}

#communities .list-group-item > .d-flex > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 45px;

    width: 45px;
    height: 45px;

    border-radius: 12px;

    background: #ebf9ff;

    color: var(--zktor-blue) !important;
}


/* ---------------------------------------------------------
   CREATOR / BUSINESS LARGE CARDS
--------------------------------------------------------- */

main .col-lg-6 > .card > .card-body.p-lg-5 {
    position: relative;
}

main .col-lg-6 > .card > .card-body.p-lg-5::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: linear-gradient(
        90deg,
        var(--zktor-blue),
        var(--zktor-cyan),
        transparent
    );
}


/* creator/business inner icons */

main .d-grid.gap-3 > .d-flex > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 38px;

    width: 38px;
    height: 38px;

    border-radius: 10px;

    background: #edf9fe;

    color: var(--zktor-blue) !important;
}


/* ---------------------------------------------------------
   WOMEN / SUPPORT ICON ITEMS
--------------------------------------------------------- */

main .text-center.p-4 {
    height: 100%;

    border: 1px solid transparent;

    border-radius: 18px;

    transition: all .3s ease;
}

main .text-center.p-4:hover {
    border-color: var(--zktor-border);

    background: #fff;

    box-shadow:
        0 12px 35px rgba(5, 57, 85, .07);

    transform: translateY(-4px);
}


/* ---------------------------------------------------------
   ACCORDION
--------------------------------------------------------- */

main .accordion {
    --bs-accordion-border-color: #dfedf4;
    --bs-accordion-border-radius: 16px;
    --bs-accordion-inner-border-radius: 15px;

    display: flex;
    flex-direction: column;

    gap: 12px;
}

main .accordion-item {
    overflow: hidden;

    border: 1px solid var(--zktor-border) !important;

    border-radius: 14px !important;

    background: #fff;

    box-shadow:
        0 5px 18px rgba(5, 57, 85, .035);
}

main .accordion-button {
    padding: 20px 22px;

    color: var(--zktor-dark);

    background: #fff;

    font-size: 15px;
    font-weight: 700;

    box-shadow: none !important;
}

main .accordion-button:not(.collapsed) {
    color: var(--zktor-blue);

    background: #f2fbff;
}

main .accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}

main .accordion-body {
    padding: 5px 22px 22px;

    font-size: 14px;
    line-height: 1.8;
}


/* ---------------------------------------------------------
   FINAL SUPPORT CTA
--------------------------------------------------------- */

main section:last-child .card.bg-dark {
    position: relative;

    overflow: hidden;

    border: 0 !important;

    background:
        radial-gradient(
            circle at 85% 10%,
            rgba(38, 196, 243, .22),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #03283e 0%,
            #063c59 100%
        ) !important;

    box-shadow:
        0 25px 65px rgba(3, 40, 62, .20) !important;
}

main section:last-child .card.bg-dark:hover {
    transform: none;
}

main section:last-child .card.bg-dark::before {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    left: -130px;
    bottom: -170px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.08);
}

main section:last-child .btn-info {
    border: 0;

    background: var(--zktor-cyan);

    color: #03283e;

    font-weight: 800;
}


/* ---------------------------------------------------------
   HORIZONTAL RULE
--------------------------------------------------------- */

main hr {
    opacity: 1;

    border-color: #e3edf2;
}


/* ---------------------------------------------------------
   RESPONSIVE
--------------------------------------------------------- */

@media (max-width: 991.98px) {

    main section {
        padding-top: 65px !important;
        padding-bottom: 65px !important;
    }

    main .display-5,
    main .display-6 {
        letter-spacing: -1.2px;
    }

}


@media (max-width: 767.98px) {

    main section {
        padding-top: 55px !important;
        padding-bottom: 55px !important;
    }

    main .lead {
        font-size: 15px;
    }

    main .card-body {
        padding: 22px !important;
    }

    main .display-5,
    main .display-6 {
        line-height: 1.15;
    }

}