/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f5dccd;
    color: #111;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}



/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 74px;

    z-index: 1000;

    background: transparent;

    transition:
        background-color 0.35s ease,
        height 0.35s ease,
        box-shadow 0.35s ease;
}


.nav-inner {
    width: 100%;
    height: 100%;

    padding: 0 4.5%;

    display: flex;
    align-items: center;

    position: relative;
}



/* =========================================================
   BRAND
========================================================= */

.brand {
    display: flex;
    align-items: center;
    gap: 9px;

    position: relative;
    z-index: 5;
}


.brand-eye {
    width: 38px;
    height: 38px;

    object-fit: contain;

    display: block;
}


.brand-name {
    color: #fff;

    font-size: 11px;
    line-height: 0.95;

    font-weight: 800;
    letter-spacing: 0.8px;

    opacity: 0;
    transform: translateX(-8px);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}



/* =========================================================
   INITIAL CENTER BRAND
========================================================= */

.center-brand {
    position: absolute;

     left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    color: #fff;

    text-align: center;

    font-size: 12px;
    line-height: 0.95;

    font-weight: 800;
    letter-spacing: 1px;

    pointer-events: none;
}



/* =========================================================
   NAV LINKS
========================================================= */

.nav-links {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 55px;

    width: max-content;
}

.nav-center-brand {
    font-size: 12px !important;
    font-weight: 800 !important;
    line-height: 0.95;
    letter-spacing: 1px;
    text-align: center;
}

/* =========================================================
   MOBILE NAV — HIDDEN BY DEFAULT
   ========================================================= */

.mobile-menu,
.mobile-menu-btn {
    display: none;
}

.nav-links a {
    color: #fff;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.4px;

    white-space: nowrap;

    transition: opacity 0.2s ease;
}


.nav-links a:hover {
    opacity: 0.65;
}



/* =========================================================
   SCROLLED NAVBAR
========================================================= */

.navbar.scrolled {
    background: #e00000;

    height: 66px;

    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
}


.navbar.scrolled .brand-name {
    opacity: 1;

    transform: translateX(0);
}


.navbar.scrolled .nav-center-brand {
    display: none;
}


.navbar.scrolled .nav-links {
    left: 40%;
    right: 60%;

    transform: translateY(-50%);

    gap: 36px;
}



/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    width: 100%;
    height: 100vh;

    min-height: 650px;

    overflow: hidden;

    background: #111;
}


.hero-video {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 0;
}


.hero-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.56),
            rgba(0, 0, 0, 0.58)
        );
}



/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -42%);

    width: min(900px, 90%);

    text-align: center;

    z-index: 2;

    color: #fff;
}


.hero-eye {
    width: 68px;
    height: 68px;

    object-fit: contain;

    display: block;

    margin: 0 auto 30px;

    animation:
        rotateEye 3.5s linear infinite;
}


.hero-content h1 {
    font-size: clamp(28px, 3.2vw, 48px);

    line-height: 1.28;

    font-weight: 700;

    letter-spacing: 0.2px;

    text-shadow:
        0 2px 12px rgba(0, 0, 0, 0.3);
}


.hero-content h1 span {
    display: inline;
}



/* =========================================================
   EYE ROTATION
========================================================= */

@keyframes rotateEye {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}



/* =========================================================
   SCROLL INDICATOR
========================================================= */

.scroll-indicator {
    position: absolute;

    left: 50%;
    bottom: 25px;

    transform: translateX(-50%);

    width: 19px;
    height: 32px;

    border: 1px solid rgba(255, 255, 255, 0.5);

    border-radius: 12px;

    z-index: 3;

    display: flex;
    justify-content: center;

    padding-top: 6px;
}


.scroll-indicator span {
    width: 3px;
    height: 6px;

    border-radius: 5px;

    background: rgba(255, 255, 255, 0.75);

    animation: scrollMove 1.6s ease-in-out infinite;
}


@keyframes scrollMove {

    0% {
        transform: translateY(0);
        opacity: 1;
    }

    70% {
        transform: translateY(9px);
        opacity: 0.25;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }

}


/* =========================================================
   ABOUT SECTION
========================================================= */

.about-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #242129;
}

/* Main downloaded visual */
.about-image {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}

/* Content placed over the image */
.about-content {
    position: absolute;
    inset: 0;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;

    pointer-events: none;
    
    margin-top: 5.8%;
}


/* =========================
   ABOUT INTRO
========================= */

.about-intro {
    width: 70%;
    max-width: 1150px;
    text-align: center;

    margin-top: 5.8%;
}

.about-intro h2 {
    margin: 0 0 28px;

    font-size: clamp(30px, 2.4vw, 46px);
    line-height: 1.15;
    font-weight: 700;

    letter-spacing: 0.5px;

    color: #46445b;
}

.about-intro p {
    margin: 0 auto;

    max-width: 1050px;

    font-size: clamp(15px, 1.15vw, 23px);
    line-height: 1.65;

    letter-spacing: 1px;

    color: #17151c;
}


/* =========================
   FEATURE CARDS
========================= */

.about-features {
    position: absolute;

    left: 7.2%;
    right: 7.2%;
    bottom: 7.5%;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 0;
}


/* Individual feature */
.about-feature {
    min-height: 260px;

    padding: 0 38px;

    color: #ffffff;

    pointer-events: auto;
}


/* Vertical separators */
.about-feature + .about-feature {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}


/* =========================
   ICON
========================= */

.feature-icon {
    width: 64px;
    height: 64px;

    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 9px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 38px;
}

.feature-icon svg {
    width: 32px;
    height: 32px;

    color: #ffffff;
}


/* =========================
   CARD TEXT
========================= */

.about-feature h3 {
    margin: 0 0 28px;

    font-size: clamp(19px, 1.45vw, 29px);
    line-height: 1.25;

    font-weight: 700;

    color: #ffffff;
}

.about-feature p {
    margin: 0;

    max-width: 270px;

    font-size: clamp(13px, 0.95vw, 18px);
    line-height: 1.8;

    color: rgba(255, 255, 255, 0.92);
}



/* =========================================================
   OTHER SECTIONS
========================================================= */

/* =========================================================
   STATS SECTION
========================================================= */

.stats-section {
    width: 100%;

    height: 200px;
    min-height: 82px;

    background: #008f8a;

    display: flex;
    align-items: center;
    justify-content: space-around;

    padding: 0 45px;

    box-sizing: border-box;
}


.stat-item {
    flex: 1;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    color: #fff;
}


.stat-item strong {
    display: block;

    margin: 0;

    font-size: 40px;

    font-weight: 800;

    line-height: 1;
}


.stat-item span {
    display: block;

    margin-top: 6px;

    font-size: 20px;

    font-weight: 500;

    line-height: 1.25;
}

/* =========================================================
   HOW TO USE
========================================================= */

.how-to-use-section {
    position: relative;
    width: 100%;
    overflow: visible;

    padding: 100px 7vw 120px;

    background: linear-gradient(
        to bottom,
        #f9f9f9 0%,
        #fffafa 22%,
        #f9d6d6 55%,
        #f79b9b 100%
    );

    color: #24212a;
}


/* =========================================================
   HEADING
========================================================= */

.how-to-use-heading {
    width: 100%;
    text-align: center;

    margin-bottom: 100px;
}

.how-to-use-heading h2 {
    margin: 0;

    font-size: 46px;
    line-height: 1.1;
    font-weight: 800;

    letter-spacing: 1px;

    color: #24212a;
}

.how-to-use-heading p {
    max-width: 650px;

    margin: 20px auto 0;

    font-size: 17px;
    line-height: 1.7;

    color: #4b4650;
}


/* =========================================================
   STEPS CONTAINER
========================================================= */

.how-to-use-steps {
    width: 100%;
    max-width: 1250px;

    margin: 0 auto;
}


/* =========================================================
   INDIVIDUAL STEP
========================================================= */

.how-step {
    position: relative;

    width: 100%;
    min-height: 100px;

    display: flex;
    align-items: center;

    gap: 100px;
margin-top: 10px;
    margin-bottom: 10px;
}


/* =========================================================
   ALTERNATING LAYOUT
========================================================= */

/* Step 1 + Step 3 */

.step-left {
    flex-direction: row;
}


/* Step 2 + Step 4 */

.step-right {
    flex-direction: row-reverse;
}


/* =========================================================
   PHONE AREA
========================================================= */

.how-phone-wrap {
    position: relative;

    width: 50%;
    height: 570px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}


/* =========================================================
   PHONE IMAGE
========================================================= */

.how-phone {
    position: relative;

    z-index: 5;

    display: block;

    width: 285px;
    max-width: 75%;

    max-height: 540px;

    object-fit: contain;

    filter: drop-shadow(
        0 22px 30px rgba(0, 0, 0, 0.18)
    );
}


/* =========================================================
   STEP CONTENT
========================================================= */

.how-step-content {
    width: 50%;
    max-width: 500px;

    flex-shrink: 0;
}


/* =========================================================
   STEP NUMBER
========================================================= */

.step-number {
    display: block;

    margin-bottom: 16px;

    font-size: 16px;
    line-height: 1;

    font-weight: 800;

    letter-spacing: 2px;

    color: #29252f;
}


/* =========================================================
   STEP TITLE
========================================================= */

.how-step-content h3 {
    margin: 0 0 20px;

    font-size: 34px;
    line-height: 1.2;

    font-weight: 750;

    color: #24212a;
}


/* =========================================================
   STEP DESCRIPTION
========================================================= */

.how-step-content p {
    max-width: 450px;

    margin: 0;

    font-size: 17px;
    line-height: 1.8;

    color: #4b4650;
}


/* =========================================================
   DECORATIVE COLOURED ARCS
========================================================= */

.arc {
    position: absolute;

    z-index: 1;

    display: block;

    border-radius: 50%;

    pointer-events: none;
}


/* =========================================================
   BLUE ARC
========================================================= */

.arc-blue {
    width: 180px;
    height: 180px;

    left: 10%;
    top: 11%;

    border-left: 4px solid #1735ff;
    border-top: 4px solid transparent;

    transform: rotate(-35deg);
}


/* =========================================================
   GREEN ARC
========================================================= */

.arc-green {
    width: 230px;
    height: 230px;

    left: 0;
    top: 34%;

    border-left: 4px solid #00a83b;
    border-bottom: 4px solid transparent;

    transform: rotate(20deg);
}


/* =========================================================
   CYAN ARC
========================================================= */

.arc-cyan {
    width: 190px;
    height: 190px;

    right: 5%;
    top: 19%;

    border-right: 4px solid #00aeea;
    border-top: 4px solid transparent;

    transform: rotate(30deg);
}


/* =========================================================
   PURPLE ARC
========================================================= */

.arc-purple {
    width: 150px;
    height: 150px;

    right: 12%;
    bottom: 14%;

    border-right: 4px solid #8b00ff;
    border-bottom: 4px solid transparent;

    transform: rotate(-30deg);
}


/* =========================================================
   RED ARC
========================================================= */

.arc-red {
    width: 130px;
    height: 130px;

    left: 38%;
    bottom: 4%;

    border-bottom: 4px solid #ff0000;
    border-left: 4px solid transparent;

    transform: rotate(25deg);
}


/* =========================================================
   10% IMAGE
========================================================= */

.ten-percent-wrapper {
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    margin-top: 20px;
}


/* =========================
   10% DIVIDER
========================= */

.ten-percent-image {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
    width: 100vw;
    max-width: none;
    height: auto;
    display: block;
    z-index: 20;
    pointer-events: none;
}

/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-section {
    width: 100%;

    min-height: 650px;

    background: #ffffff;

        padding: 350px 0 170px;



    display: flex;

    align-items: center;
}


/* =========================================================
   INNER CONTAINER
========================================================= */

.contact-inner {
    width: 76%;

    max-width: 1250px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 48% 52%;

    align-items: center;

    gap: 7%;
}


/* =========================================================
   LEFT IMAGE
========================================================= */

.contact-image-wrap {
    width: 100%;

    height: 420px;

    overflow: hidden;

    border-radius: 3px;
}


.contact-image {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}


.contact-image-wrap:hover .contact-image {
    transform: scale(1.02);
}


/* =========================================================
   RIGHT CONTENT
========================================================= */

.contact-content {
    position: relative;

    padding-left: 35px;
}


/* RED ACCENT */

.contact-content::before {
    content: "";

    position: absolute;

    left: 0;

    top: 4px;

    width: 3px;

    height: 78px;

    background: #d90000;
}


/* =========================================================
   MAIN HEADING
========================================================= */

.contact-content h2 {
    margin: 0 0 48px;

    font-family: Arial, sans-serif;

    font-size: 56px;

    line-height: 1;

    font-weight: 700;

    letter-spacing: -1.5px;

    color: #24232d;
}


/* =========================================================
   CONTACT DETAILS
========================================================= */

.contact-details {
    width: 100%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 45px;
}


/* =========================================================
   INDIVIDUAL DETAIL
========================================================= */

.contact-detail {
    padding-top: 20px;

    border-top: 1px solid #dddddd;
}


/* DETAIL HEADING */

.contact-detail h3 {
    margin: 0 0 18px;

    font-family: Arial, sans-serif;

    font-size: 19px;

    line-height: 1;

    font-weight: 700;

    letter-spacing: 0.5px;

    color: #24232d;
}


/* DETAIL TEXT */

.contact-detail p {
    margin: 0;

    font-family: Arial, sans-serif;

    font-size: 15px;

    line-height: 1.75;

    color: #5d5d66;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .contact-inner {
        width: 86%;

        grid-template-columns: 1fr 1fr;

        gap: 5%;
    }

    .contact-image-wrap {
        height: 380px;
    }

    .contact-content h2 {
        font-size: 46px;
    }

    .contact-details {
        gap: 25px;
    }

}


@media (max-width: 750px) {

    .contact-section {
        padding: 70px 0;
    }

    .contact-inner {
        width: 86%;

        grid-template-columns: 1fr;

        gap: 55px;
    }

    .contact-image-wrap {
        height: 400px;
    }

    .contact-content {
        padding-left: 28px;
    }

    .contact-content h2 {
        font-size: 46px;
    }

}


@media (max-width: 500px) {

    .contact-section {
        padding: 55px 0;
    }

    .contact-inner {
        width: 88%;
    }

    .contact-image-wrap {
        height: 320px;
    }

    .contact-content h2 {
        font-size: 38px;

        margin-bottom: 35px;
    }

    .contact-details {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .contact-detail p {
        font-size: 12px;
    }

}

/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonials-section {
    width: 100%;
    min-height: 670px;

    background: #056461;

    padding: 55px 0 45px;

    overflow: hidden;

    color: #ffffff;
}


/* =========================================================
   HEADING
========================================================= */

.testimonials-heading {
    text-align: center;

    margin-bottom: 75px;

    padding: 0 20px;
}

.testimonials-heading h2 {
    margin: 0 0 22px;

    font-family: Arial, sans-serif;

    font-size: 38px;

    line-height: 1.1;

    font-weight: 700;

    letter-spacing: 1px;
}

.testimonials-heading p {
    margin: 0;

    font-family: Arial, sans-serif;

    font-size: 20px;

    line-height: 1.4;

    letter-spacing: 1px;
}


/* =========================================================
   SLIDER
========================================================= */

.testimonial-slider {
    position: relative;

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* =========================================================
   VIEWPORT
========================================================= */

.testimonial-viewport {
    width: calc(100% - 180px);

    max-width: 1500px;

    overflow: hidden;
}


/* =========================================================
   TRACK
========================================================= */

.testimonial-track {
    display: flex;

    width: 100%;

    transition: transform 0.55s ease;
}


/* =========================================================
   EACH SLIDE
========================================================= */

.testimonial-slide {
    flex: 0 0 33.333333%;

    width: 33.333333%;

    padding: 0 20px;

    display: flex;

    flex-direction: column;

    box-sizing: border-box;
}


/* =========================================================
   TESTIMONIAL CARD
========================================================= */

.testimonial-card {
    position: relative;

    width: 100%;

    height: 205px;

    padding: 34px 32px;

    border: 1px solid rgba(255, 255, 255, 0.85);

    border-radius: 28px;

    box-sizing: border-box;

    display: flex;

    align-items: center;

    background: transparent;
}


/* Speech bubble bottom */

.testimonial-card::after {
    content: "";

    position: absolute;

    left: 48px;

    bottom: -20px;

    width: 28px;

    height: 28px;

    background: #056461;

    border-right: 1px solid rgba(255, 255, 255, 0.85);

    border-bottom: 1px solid rgba(255, 255, 255, 0.85);

    transform: rotate(45deg);
}


/* =========================================================
   REVIEW TEXT
========================================================= */

.testimonial-card p {
    margin: 0;

    font-family: Arial, sans-serif;

    font-size: 16px;

    line-height: 1.5;

    font-weight: 400;

    color: #ffffff;
}


/* =========================================================
   PERSON
========================================================= */

.testimonial-person {
    min-height: 58px;

    margin-top: 32px;

    padding-left: 48px;

    display: flex;

    flex-direction: column;

    justify-content: flex-start;
}

.testimonial-person strong {
    margin: 0 0 5px;

    font-family: Arial, sans-serif;

    font-size: 17px;

    line-height: 1.2;

    font-weight: 700;
}

.testimonial-person span {
    font-family: Arial, sans-serif;

    font-size: 14px;

    line-height: 1.3;

    color: rgba(255, 255, 255, 0.9);
}


/* =========================================================
   ARROWS
========================================================= */

.testimonial-arrow {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 50px;

    height: 50px;

    border: none;

    background: transparent;

    color: #ffffff;

    font-size: 35px;

    line-height: 1;

    cursor: pointer;

    z-index: 5;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.testimonial-arrow:hover {
    opacity: 0.65;

    transform: translateY(-50%) scale(1.08);
}

.testimonial-arrow.prev {
    left: 30px;
}

.testimonial-arrow.next {
    right: 30px;
}


/* =========================================================
   CONTROLS
========================================================= */

.testimonial-controls {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 13px;

    margin-top: 65px;
}

.testimonial-dot {
    width: 9px;

    height: 9px;

    padding: 0;

    border: none;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.45);

    cursor: pointer;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.testimonial-dot.active {
    background: #ffffff;

    transform: scale(1.25);
}
/* =========================================================
   APPROVED / DOWNLOAD SECTION
========================================================= */

.approved-section {
    width: 100%;
    height: 540px;

    background: #ffffff;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 0;
}

.approved-card {
    position: relative;

    width: 80%;
    max-width: 1300px;

    height: 320px;

    border-radius: 14px;

    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;
}


/* ================= VIDEO ================= */

.approved-video {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 0;
}


/* ================= OVERLAY ================= */

.approved-overlay {
    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.48);

    z-index: 1;
}


/* ================= CONTENT ================= */

.approved-content {
    position: relative;

    z-index: 2;

    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    color: #ffffff;
}


/* ================= MAIN HEADING ================= */

.approved-content h2 {
    margin: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    font-family: Arial, sans-serif;

    font-size: 42px;
    line-height: 1.1;

    font-weight: 700;

    white-space: nowrap;
}


/* KENYA FLAG */

.kenya-flag {
    width: 36px;
    height: auto;

    display: inline-block;

    object-fit: contain;
}


/* ================= ACCOUNTS ================= */

.approved-accounts {
    margin: 18px 0 0;

    font-family: Arial, sans-serif;

    font-size: 25px;

    line-height: 1.2;

    font-weight: 400;
}

.approved-accounts span {
    font-size: 34px;

    font-weight: 500;
}


/* ================= DESCRIPTION ================= */

.approved-description {
    margin: 12px 0 12px;

    width: 600px;

    font-family: Arial, sans-serif;

    font-size: 15px;

    line-height: 1.45;

    color: #eeeeee;
}


/* ================= AVAILABLE ON ================= */

.download-label {
    margin: 0 0 10px;

    font-family: Arial, sans-serif;

    font-size: 14px;

    line-height: 1;

    font-weight: 600;

    color: #ffffff;
}


/* ================= STORE BUTTONS ================= */

.store-buttons {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;
}


/* Complete badge */

.store-btn {
    display: block;

    width: 155px;

    height: auto;

    padding: 0;

    margin: 0;

    line-height: 0;

    text-decoration: none;
}


/* Badge image */

.store-btn img {
    display: block;

    width: 100%;
    height: auto;
}


/* =========================================================
   FOOTER
========================================================= */

.main-footer {
    width: 100%;

    min-height: 365px;

    background: #d90000;

    color: #ffffff;

    padding: 70px 0 35px;

    box-sizing: border-box;
}


.footer-container {
    width: 78%;
    max-width: 1250px;

    min-height: 260px;

    margin: auto;

    display: flex;

    justify-content: space-between;
    align-items: flex-start;
}


/* ================= LEFT ================= */

.footer-left h2 {
    margin: 0 0 28px;

    font-family: Arial, sans-serif;

    font-size: 54px;

    line-height: 1;

    font-weight: 700;

    color: #ffffff;
}


/* ================= FOOTER STORE BUTTONS ================= */

.footer-store-buttons {
    display: flex;

    align-items: center;

    gap: 14px;
}


.footer-store {
    display: block;

    width: 195px;

    height: auto;

    padding: 0;

    margin: 0;

    line-height: 0;

    text-decoration: none;
}


.footer-store img {
    display: block;

    width: 100%;
    height: auto;
}


/* ================= RIGHT ================= */

.footer-right {
    text-align: right;

    padding-top: 3px;
}


.footer-right h4 {
    margin: 0 0 25px;

    font-family: Arial, sans-serif;

    font-size: 28px;

    line-height: 1;

    font-weight: 700;
}


.footer-right p {
    margin: 0;

    font-family: Arial, sans-serif;

    font-size: 16px;

    line-height: 1.6;

    color: #ffffff;
}


/* ================= SOCIAL ================= */

.footer-social {
    display: flex;

    justify-content: flex-end;

    gap: 12px;

    margin-top: 35px;
}


.footer-social a {
    width: 55px;
    height: 55px;

    border: 1px solid rgba(255, 255, 255, 0.45);

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #ffffff;

    text-decoration: none;

    font-family: Arial, sans-serif;

    font-size: 17px;

    font-weight: 700;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .approved-card {
        width: 90%;
    }

    .approved-content h2 {
        font-size: 30px;
    }

    .approved-description {
        width: 80%;
    }

    .footer-container {
        width: 88%;
    }

    .footer-left h2 {
        font-size: 42px;
    }

    .footer-store {
        width: 160px;
    }
}


@media (max-width: 700px) {

    .approved-section {
        height: auto;

        padding: 60px 0;
    }

    .approved-card {
        width: 90%;

        height: 350px;
    }

    .approved-content h2 {
        font-size: 25px;

        white-space: normal;

        padding: 0 20px;
    }

    .approved-accounts {
        font-size: 20px;
    }

    .approved-accounts span {
        font-size: 27px;
    }

    .store-btn {
        width: 135px;
    }


    .main-footer {
        padding: 55px 0 30px;
    }

    .footer-container {
        width: 85%;

        flex-direction: column;

        gap: 55px;
    }

    .footer-left h2 {
        font-size: 38px;
    }

    .footer-right {
        text-align: left;
    }

    .footer-social {
        justify-content: flex-start;
    }
}

/* =========================================================
   RESPONSIVE — TABLET + MOBILE
   TRAFFIC EYE
========================================================= */


/* =========================================================
   TABLET — 1024px AND BELOW
========================================================= */

@media (max-width: 1024px) {

    /* =========================================================
   RESPONSIVE NAVBAR
========================================================= */


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .navbar {
        height: 70px;
    }

    .nav-inner {
        padding: 0 28px;
    }

    .brand-eye {
        width: 36px;
        height: 36px;
    }

    .nav-links {
        gap: 30px;
    }

    .nav-links a {
        font-size: 12px;
    }

    .nav-center-brand {
        font-size: 11px !important;
    }

    /* Scrolled navbar */

    .navbar.scrolled {
        height: 64px;
    }

    .navbar.scrolled .nav-links {
        right: 28px;
        gap: 25px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    /* -------------------------
       NAVBAR
    ------------------------- */

    .navbar {
        height: 64px;
    }

    .nav-inner {
        padding: 0 18px;
        justify-content: space-between;
    }


    /* -------------------------
       LEFT LOGO
    ------------------------- */

    .brand {
        gap: 7px;
    }

    .brand-eye {
        width: 34px;
        height: 34px;
    }

    /*
       On mobile the left logo should
       always be visible.
    */

    .brand-name {
        opacity: 1;
        transform: translateX(0);

        font-size: 10px;
        line-height: 0.9;
        letter-spacing: 0.7px;
    }


    /* -------------------------
       DESKTOP NAV HIDDEN
    ------------------------- */

    .nav-links {
        display: none;
    }


    /* -------------------------
       HAMBURGER
    ------------------------- */

    .mobile-menu-btn {
        width: 42px;
        height: 42px;

        padding: 0;
        margin: 0;

        border: none;
        background: transparent;

        display: flex;
        flex-direction: column;

        align-items: flex-end;
        justify-content: center;

        gap: 5px;

        cursor: pointer;

        z-index: 1100;
    }


    .mobile-menu-btn span {
        display: block;

        height: 2px;

        background: #ffffff;

        border-radius: 5px;

        transition:
            transform 0.3s ease,
            opacity 0.25s ease,
            width 0.3s ease;
    }


    .mobile-menu-btn span:nth-child(1) {
        width: 23px;
    }

    .mobile-menu-btn span:nth-child(2) {
        width: 18px;
    }

    .mobile-menu-btn span:nth-child(3) {
        width: 23px;
    }


    /* -------------------------
       OPEN MENU ICON
    ------------------------- */

    .mobile-menu-btn.active span:nth-child(1) {
        width: 23px;
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        width: 23px;
        transform: translateY(-7px) rotate(-45deg);
    }


    /* -------------------------
       MOBILE DROPDOWN
    ------------------------- */

    .mobile-menu {
        position: absolute;

        top: 64px;
        left: 0;

        width: 100%;

        padding: 10px 18px 18px;

        background: rgba(224, 0, 0, 0.97);

        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);

        display: flex;
        flex-direction: column;

        gap: 0;

        opacity: 0;
        visibility: hidden;

        transform: translateY(-10px);

        transition:
            opacity 0.25s ease,
            transform 0.25s ease,
            visibility 0.25s ease;

        z-index: 1050;
    }


    .mobile-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }


    .mobile-menu a {
        display: block;

        width: 100%;

        padding: 15px 5px;

        color: #ffffff;

        font-size: 11px;
        font-weight: 700;

        letter-spacing: 0.8px;

        border-bottom: 1px solid rgba(255,255,255,0.18);
    }


    .mobile-menu a:last-child {
        border-bottom: none;
    }


    /* -------------------------
       SCROLLED MOBILE NAVBAR
    ------------------------- */

    .navbar.scrolled {
        height: 64px;
    }


    .navbar.scrolled .brand-name {
        opacity: 1;
        transform: translateX(0);
    }


    .navbar.scrolled .nav-links {
        display: none;
    }

}


    /* =====================================================
       HERO
    ===================================================== */

    .hero {
        min-height: 620px;
    }

    .hero-content {
        width: 88%;
    }

    .hero-eye {
        width: 62px;
        height: 62px;
        margin-bottom: 25px;
    }

    .hero-content h1 {
        font-size: clamp(30px, 4vw, 42px);
    }


    /* =====================================================
       ABOUT
    ===================================================== */

    .about-content {
        margin-top: 0;
    }

    .about-intro {
        width: 76%;
        margin-top: 5%;
    }

    .about-intro h2 {
        margin-bottom: 18px;
        font-size: clamp(28px, 3vw, 38px);
    }

    .about-intro p {
        font-size: clamp(13px, 1.5vw, 17px);
        line-height: 1.5;
        letter-spacing: 0.4px;
    }

    .about-features {
        left: 5%;
        right: 5%;
        bottom: 5%;
    }

    .about-feature {
        min-height: 210px;
        padding: 0 20px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 22px;
    }

    .feature-icon svg {
        width: 25px;
        height: 25px;
    }

    .about-feature h3 {
        margin-bottom: 15px;
        font-size: clamp(16px, 1.8vw, 21px);
    }

    .about-feature p {
        font-size: clamp(11px, 1.25vw, 15px);
        line-height: 1.55;
    }


    /* =====================================================
       STATS
    ===================================================== */

    .stats-section {
        height: 170px;
        padding: 0 25px;
    }

    .stat-item strong {
        font-size: 32px;
    }

    .stat-item span {
        font-size: 16px;
    }


    /* =====================================================
       HOW TO USE
    ===================================================== */

    .how-to-use-section {
        padding: 80px 5vw 110px;
    }

    .how-to-use-heading {
        margin-bottom: 70px;
    }

    .how-to-use-heading h2 {
        font-size: 40px;
    }

    .how-to-use-heading p {
        font-size: 16px;
    }

    .how-step {
        gap: 50px;
        min-height: 520px;
    }

    .how-phone-wrap {
        width: 48%;
        height: 500px;
    }

    .how-phone {
        width: 250px;
        max-width: 80%;
        max-height: 470px;
    }

    .how-step-content {
        width: 52%;
        max-width: 430px;
    }

    .step-number {
        font-size: 14px;
    }

    .how-step-content h3 {
        font-size: 28px;
    }

    .how-step-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    /* reduce decorative arcs */
    .arc-blue {
        width: 150px;
        height: 150px;
    }

    .arc-green {
        width: 190px;
        height: 190px;
    }

    .arc-cyan {
        width: 160px;
        height: 160px;
    }

    .arc-purple {
        width: 125px;
        height: 125px;
    }

    .arc-red {
        width: 110px;
        height: 110px;
    }


    /* =====================================================
       10% DIVIDER
    ===================================================== */

    .ten-percent-image {
        width: 100vw;
        max-width: none;
    }




    /* =====================================================
       TESTIMONIALS
    ===================================================== */

    .testimonials-section {
        min-height: 620px;
        padding: 50px 0 40px;
    }

    .testimonials-heading {
        margin-bottom: 55px;
    }

    .testimonials-heading h2 {
        font-size: 34px;
    }

    .testimonials-heading p {
        font-size: 17px;
    }

    .testimonial-viewport {
        width: calc(100% - 130px);
    }

    .testimonial-slide {
        flex: 0 0 50%;
        width: 50%;
        padding: 0 14px;
    }

    .testimonial-card {
        height: 220px;
        padding: 28px 25px;
        border-radius: 24px;
    }

    .testimonial-card p {
        font-size: 14px;
        line-height: 1.55;
    }

    .testimonial-person {
        padding-left: 35px;
        margin-top: 28px;
    }

    .testimonial-person strong {
        font-size: 15px;
    }

    .testimonial-person span {
        font-size: 12px;
    }

    .testimonial-arrow {
        width: 42px;
        height: 42px;
        font-size: 30px;
    }

    .testimonial-arrow.prev {
        left: 12px;
    }

    .testimonial-arrow.next {
        right: 12px;
    }


    
/* =========================================================
   MOBILE — 767px AND BELOW
========================================================= */

@media (max-width: 767px) {

    /* =====================================================
       HERO
    ===================================================== */

    .hero {
        height: 100svh;
        min-height: 560px;
    }

    .hero-content {
        width: 92%;
        top: 50%;
        transform: translate(-50%, -45%);
    }

    .hero-eye {
        width: 52px;
        height: 52px;
        margin-bottom: 22px;
    }

    .hero-content h1 {
        font-size: clamp(25px, 7vw, 34px);
        line-height: 1.3;
        letter-spacing: 0;
    }

    .scroll-indicator {
        bottom: 18px;
    }


    /* =====================================================
       ABOUT
    ===================================================== */

    /*
       IMPORTANT:
       The background image and HTML content must scale
       together. We therefore give the section a little
       more natural height on mobile.
    */

    .about-section {
        min-height: 900px;
    }

    .about-image {
        width: 100%;
        height: 100%;
        min-height: 900px;
        object-fit: cover;
        object-position: center;
    }

    .about-content {
        position: absolute;
        inset: 0;
        margin: 0;
        padding: 65px 20px 35px;
        justify-content: flex-start;
    }

    .about-intro {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    .about-intro h2 {
        margin-bottom: 16px;
        font-size: 30px;
        line-height: 1.15;
    }

    .about-intro p {
        max-width: 560px;
        font-size: 14px;
        line-height: 1.55;
        letter-spacing: 0.2px;
    }

    /* ABOUT CARDS */

    .about-features {
        position: absolute;

        left: 20px;
        right: 20px;
        bottom: 35px;

        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 0;
    }

    .about-feature {
        min-height: 220px;
        padding: 20px 17px;
    }

    .about-feature:nth-child(3) {
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.08);
    }

    .about-feature:nth-child(4) {
        border-top: 1px solid rgba(255,255,255,0.08);
    }

    .about-feature:nth-child(2) {
        border-left: 1px solid rgba(255,255,255,0.08);
    }

    .feature-icon {
        width: 46px;
        height: 46px;
        border-radius: 8px;
        margin-bottom: 18px;
    }

    .feature-icon svg {
        width: 23px;
        height: 23px;
    }

    .about-feature h3 {
        margin-bottom: 12px;
        font-size: 16px;
        line-height: 1.25;
    }

    .about-feature p {
        max-width: none;
        font-size: 12px;
        line-height: 1.55;
    }


    /* =====================================================
       STATS
    ===================================================== */

    .stats-section {
        height: auto;
        min-height: 150px;

        padding: 25px 12px;

        display: grid;
        grid-template-columns: repeat(2, 1fr);

        row-gap: 25px;
        column-gap: 10px;
    }

    .stat-item {
        min-width: 0;
    }

    .stat-item strong {
        font-size: 27px;
    }

    .stat-item span {
        margin-top: 5px;
        font-size: 12px;
        line-height: 1.25;
    }


    /* =====================================================
       HOW TO USE
    ===================================================== */

    .how-to-use-section {
        padding: 65px 20px 100px;
    }

    .how-to-use-heading {
        margin-bottom: 55px;
    }

    .how-to-use-heading h2 {
        font-size: 32px;
    }

    .how-to-use-heading p {
        max-width: 330px;
        margin-top: 14px;
        font-size: 14px;
        line-height: 1.55;
    }

    .how-to-use-steps {
        width: 100%;
    }

    /*
       Every step becomes:
       PHONE
       TEXT
       PHONE
       TEXT
    */

    .how-step,
    .step-left,
    .step-right {
        width: 100%;

        min-height: auto;

        display: flex;
        flex-direction: column;

        gap: 0;

        margin-top: 0;
        margin-bottom: 85px;
    }

    .how-phone-wrap {
        width: 100%;
        height: 390px;

        margin-bottom: 35px;

        display: flex;
        align-items: center;
        justify-content: center;
    }

    .how-phone {
        width: 220px;
        max-width: 72%;
        max-height: 370px;
    }

    .how-step-content {
        width: 100%;
        max-width: 500px;

        text-align: center;

        margin: 0 auto;
    }

    .step-number {
        margin-bottom: 12px;
        font-size: 13px;
        letter-spacing: 1.7px;
    }

    .how-step-content h3 {
        margin-bottom: 14px;
        font-size: 25px;
        line-height: 1.25;
    }

    .how-step-content p {
        max-width: 480px;
        margin: 0 auto;

        font-size: 14px;
        line-height: 1.7;
    }


    /* MOBILE ARCS */

    .arc-blue {
        width: 125px;
        height: 125px;

        left: 15%;
        top: 10%;
    }

    .arc-green {
        width: 160px;
        height: 160px;

        left: 2%;
        top: 34%;
    }

    .arc-cyan {
        width: 135px;
        height: 135px;

        right: 5%;
        top: 17%;
    }

    .arc-purple {
        width: 110px;
        height: 110px;

        right: 10%;
        bottom: 12%;
    }

    .arc-red {
        width: 90px;
        height: 90px;

        left: 35%;
        bottom: 3%;
    }


    /* =====================================================
       10% DIVIDER
    ===================================================== */

    .ten-percent-wrapper {
        width: 100%;
        margin-top: 0;
    }

    .ten-percent-image {
        width: 100vw;
        max-width: none;

        left: 50%;
        bottom: 0;

        transform: translate(-50%, 50%);
    }



    /* =====================================================
       TESTIMONIALS
    ===================================================== */

    .testimonials-section {
        min-height: auto;

        padding: 45px 0 35px;
    }

    .testimonials-heading {
        margin-bottom: 42px;
        padding: 0 20px;
    }

    .testimonials-heading h2 {
        margin-bottom: 14px;
        font-size: 30px;
    }

    .testimonials-heading p {
        font-size: 14px;
        line-height: 1.5;
    }

    .testimonial-slider {
        width: 100%;
    }

    .testimonial-viewport {
        width: calc(100% - 70px);
    }

    .testimonial-track {
        width: 100%;
    }

    /*
       ONE CARD AT A TIME ON MOBILE
    */

    .testimonial-slide {
        flex: 0 0 100%;
        width: 100%;

        padding: 0 8px;
    }

    .testimonial-card {
        width: 100%;
        height: auto;
        min-height: 230px;

        padding: 27px 23px;

        border-radius: 22px;
    }

    .testimonial-card p {
        font-size: 14px;
        line-height: 1.6;
    }

    .testimonial-card::after {
        left: 38px;
        bottom: -15px;

        width: 21px;
        height: 21px;
    }

    .testimonial-person {
        min-height: 50px;

        margin-top: 25px;
        padding-left: 30px;
    }

    .testimonial-person strong {
        font-size: 14px;
    }

    .testimonial-person span {
        font-size: 11px;
        line-height: 1.4;
    }

    .testimonial-arrow {
        width: 35px;
        height: 35px;

        font-size: 26px;
    }

    .testimonial-arrow.prev {
        left: 4px;
    }

    .testimonial-arrow.next {
        right: 4px;
    }

    .testimonial-controls {
        margin-top: 40px;
        gap: 10px;
    }

    .testimonial-dot {
        width: 8px;
        height: 8px;
    }


    


/* =========================================================
   SMALL MOBILE — 480px AND BELOW
========================================================= */

@media (max-width: 480px) {

    /* =====================================================
       HERO
    ===================================================== */

    .hero {
        min-height: 540px;
    }

    .hero-content {
        width: 94%;
    }

    .hero-eye {
        width: 47px;
        height: 47px;
        margin-bottom: 19px;
    }

    .hero-content h1 {
        font-size: 23px;
        line-height: 1.3;
    }


    /* =====================================================
       ABOUT
    ===================================================== */

    .about-section {
        min-height: 1050px;
    }

    .about-image {
        min-height: 1050px;
        object-fit: cover;
    }

    .about-content {
        padding: 55px 16px 25px;
    }

    .about-intro h2 {
        font-size: 26px;
    }

    .about-intro p {
        font-size: 12px;
        line-height: 1.5;
    }

    .about-features {
        left: 14px;
        right: 14px;
        bottom: 20px;
    }

    .about-feature {
        min-height: 245px;
        padding: 18px 12px;
    }

    .feature-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 15px;
    }

    .feature-icon svg {
        width: 21px;
        height: 21px;
    }

    .about-feature h3 {
        font-size: 14px;
    }

    .about-feature p {
        font-size: 11px;
        line-height: 1.5;
    }


    /* =====================================================
       STATS
    ===================================================== */

    .stats-section {
        padding: 22px 8px;
        row-gap: 20px;
    }

    .stat-item strong {
        font-size: 23px;
    }

    .stat-item span {
        font-size: 10px;
    }


    /* =====================================================
       HOW TO USE
    ===================================================== */

    .how-to-use-section {
        padding: 55px 15px 90px;
    }

    .how-to-use-heading {
        margin-bottom: 45px;
    }

    .how-to-use-heading h2 {
        font-size: 28px;
    }

    .how-to-use-heading p {
        font-size: 13px;
    }

    .how-step {
        margin-bottom: 70px;
    }

    .how-phone-wrap {
        height: 330px;
        margin-bottom: 28px;
    }

    .how-phone {
        width: 190px;
        max-width: 68%;
        max-height: 320px;
    }

    .how-step-content h3 {
        font-size: 22px;
    }

    .how-step-content p {
        font-size: 13px;
        line-height: 1.65;
    }

    .step-number {
        font-size: 12px;
    }


    /* smaller arcs */

    .arc-blue {
        width: 105px;
        height: 105px;
    }

    .arc-green {
        width: 135px;
        height: 135px;
    }

    .arc-cyan {
        width: 115px;
        height: 115px;
    }

    .arc-purple {
        width: 90px;
        height: 90px;
    }

    .arc-red {
        width: 75px;
        height: 75px;
    }


   


    /* =====================================================
       TESTIMONIALS
    ===================================================== */

    .testimonials-section {
        padding: 38px 0 30px;
    }

    .testimonials-heading {
        margin-bottom: 35px;
    }

    .testimonials-heading h2 {
        font-size: 27px;
    }

    .testimonials-heading p {
        font-size: 12px;
    }

    .testimonial-viewport {
        width: calc(100% - 58px);
    }

    .testimonial-slide {
        padding: 0 5px;
    }

    .testimonial-card {
        min-height: 240px;
        padding: 23px 18px;
    }

    .testimonial-card p {
        font-size: 12px;
        line-height: 1.6;
    }

    .testimonial-person {
        padding-left: 24px;
        margin-top: 22px;
    }

    .testimonial-person strong {
        font-size: 13px;
    }

    .testimonial-person span {
        font-size: 10px;
    }

    .testimonial-arrow {
        font-size: 23px;
    }

    .testimonial-arrow.prev {
        left: 1px;
    }

    .testimonial-arrow.next {
        right: 1px;
    }


}}}