
/* =============================================================
   RESET
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { font-size: 16px; }
body { margin: 0; padding: 0; font-family: 'DM Sans', sans-serif; background: #fff; color: #0B2C4D; }
p, h1, h2, h3, h4, h5, h6, ul, li { margin: 0; padding: 0; list-style: none; }
img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* =============================================================
   CONTAINER
   ============================================================= */
.container {
    max-width: 1920px;
    width: 100%;
    padding-left: 75px;
    padding-right: 75px;
    margin: 0 auto;
}
@media (max-width: 1200px) { .container { padding-left: 48px; padding-right: 48px; } }
@media (max-width: 767px)  { .container { padding-left: 24px; padding-right: 24px; } }

/* =============================================================
   HEADER — matches site-wide CSS
   ============================================================= */
.custom-navbar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    background-color: white;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 75px;
    box-shadow: 0 2px 10px rgb(24 37 78 / 5%);
}
.logo { display: block; height: 22px; width: auto; }

/* Centre nav — absolutely centred */
.navbar-centre {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0; padding: 0;
}
.navbar-centre li { padding: 0 1.375rem; }

/* Right nav */
.navbar-right {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0; padding: 0;
    gap: 8px;
}
.navbar-right li { padding: 0; }

.nav-link {
    color: black;
    font-weight: 500;
    font-size: 18px;
    display: inline-block;
    position: relative;
    white-space: nowrap;
    text-decoration: none;
    opacity: 0.8;
    padding: 0 !important;
}
.nav-link:hover { color: #258CF2; opacity: 1; }
.nav-link.active { color: #258CF2; opacity: 1; }
.nav-link.active::after {
    content: '';
    position: absolute;
    left: 50%; bottom: -2px;
    width: 4px; height: 4px;
    background-color: #258CF2;
    transform: translateX(-50%);
    border-radius: 50%;
}

/* "Refer your employer" blue pill button */
.signup-btn-header {
    background-color: #258CF2 !important;
    color: #ffffff !important;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    display: inline-block;
    text-decoration: none;
    white-space: nowrap;
}
.signup-btn-header:hover { background-color: #1a7de0 !important; color: #fff !important; }

/* Login dropdown */
.login-dropdown { position: relative; }
.login-dropdown-menu {
    display: none;
    position: absolute; top: calc(100% + 8px); left: 0;
    background-color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    padding: 0; margin: 0; list-style: none;
    border-radius: 6px; min-width: 200px; z-index: 999;
}
.login-dropdown:hover .login-dropdown-menu { display: block; }
.login-dropdown-menu li { border-bottom: 1px solid #eee; }
.login-dropdown-menu li:last-child { border-bottom: none; }
.login-dropdown-menu li a {
    display: block; padding: 10px 16px;
    text-decoration: none; color: #333; font-weight: 500; font-size: 14px;
}
.login-dropdown-menu li a:hover { background-color: #f8f9fa; color: #258CF2; }

/* Mobile hamburger */
.menu-icon {
    display: none;
    position: fixed; top: 13px; right: 20px;
    z-index: 9999; width: 25px;
    cursor: pointer; background: none; border: none; padding: 0;
}
/* Mobile slide-in menu */
.menu-toggle {
    display: none;
    position: fixed; z-index: 998;
    top: 0; left: calc(100% + 100px);
    width: 100%; height: 100%;
    background-color: #ffffff;
    padding-top: 150px;
    transition: left ease-in-out 500ms 50ms;
    overflow-y: auto;
}
.menu-toggle.show { left: 0; }
.menu-toggle ul {
    list-style: none; margin: 0;
    display: flex; flex-direction: column;
    align-items: flex-start; padding: 0 28px;
}
.menu-toggle ul li { width: 100%; margin-bottom: 25px; padding: 0; }
.menu-toggle ul li:last-child { padding-right: 37px; }
.menu-toggle ul li a { display: inline-block; border-bottom: 2px solid #F4F4F4; width: 100%; padding-bottom: 8px; }

@media (max-width: 1400px) and (min-width: 1281px) {
    .custom-navbar { padding: 18px 40px; }
    .nav-link { font-size: 15px; }
    .navbar-centre li { padding: 0 0.8rem; }
    .signup-btn-header { padding: 10px 18px; font-size: 13px; }
}
@media (max-width: 1280px) {
    .custom-navbar { padding: 18px 24px; }
    .navbar-centre { display: none; }
    .navbar-right { display: none; }
    .menu-icon { display: block; }
    .menu-toggle { display: block; }
    .nav-link.active::after { content: unset; }
    .signup-btn-header { width: auto !important; }
    .logo { width: 76.53px; height: 14.22px; }
}

/* =============================================================
   HERO
   ============================================================= */
.hero {
    background-color: #258CF2;
    position: relative;
    overflow: hidden;
    padding-top: 62px;
    display: flex;
    align-items: stretch;
}
.hero::before {
    content: '';
    position: absolute;
    top: -5%; right: -8%;
    width: 65%; height: 130%;
    border: 1.5px solid rgba(255,255,255,0.2);
    transform: rotate(45deg);
    pointer-events: none; z-index: 0;
}
.hero::after {
    content: '';
    position: absolute;
    top: -15%; right: 8%;
    width: 75%; height: 150%;
    border: 1.5px solid rgba(255,255,255,0.10);
    transform: rotate(45deg);
    pointer-events: none; z-index: 0;
}
.hero-inner {
    width: 100%;
    padding: 60px 85px 0;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    position: relative; z-index: 1;
    min-height: 500px;
}
.hero-text {
    display: flex; flex-direction: column;
    justify-content: space-between;
    padding-bottom: 60px;
    width: 42%; flex-shrink: 0;
}
.hero-text h1 {
    font-size: clamp(36px, 4.5vw, 72px);
    font-weight: 400; line-height: 1.0;
    color: #fff; letter-spacing: -0.02em; margin: 0;
}
.hero-text h1 b { font-weight: 800; }
.hero-desc {
    font-size: clamp(15px, 1.2vw, 18px);
    font-weight: 400; line-height: 1.65;
    color: rgba(255,255,255,0.93);
    max-width: 420px;
}
.hero-img { flex: 1; display: flex; align-items: flex-end; justify-content: flex-end; }
.hero-img img { width: 100%; max-width: 600px; height: auto; display: block; mix-blend-mode: screen; }

/* Tablet */
@media (max-width: 1024px) {
    .hero-inner { padding: 50px 48px 0; min-height: 420px; }
    .hero-text { width: 48%; }
}
/* Mobile */
@media (max-width: 767px) {
    .hero-inner { flex-direction: column; padding: 36px 24px 0; min-height: auto; }
    .hero-text { width: 100%; padding-bottom: 0; }
    .hero-desc { font-size: 15px; margin-top: 16px; max-width: 100%; }
    .hero-img { justify-content: center; margin-top: 24px; }
    .hero-img img { max-width: 240px; }
}

/* =============================================================
   BANNER
   ============================================================= */
.banner { display: flex; width: 100%; min-height: 480px; }
.banner-left {
    background: #0B2C4D;
    width: 38%; flex-shrink: 0;
    padding: 60px 50px 60px 85px;
    display: flex; align-items: center;
}
.banner-left h2 { font-size: clamp(28px, 3vw, 48px); font-weight: 700; line-height: 1.15; color: #fff; margin-bottom: 20px; }
.banner-left p { font-size: clamp(15px, 1.2vw, 20px); font-weight: 400; line-height: 1.6; color: rgba(255,255,255,0.92); }
.banner-left .banner-em { font-style: italic; color: rgba(255,255,255,0.6); font-size: 17px; margin-top: 14px; display: block; }
.banner-right { flex: 1; overflow: hidden; background: #1b3e60; }
.banner-right img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 1024px) {
    .banner-left { width: 45%; padding: 48px 36px 48px 48px; }
    .banner { min-height: 380px; }
}
@media (max-width: 767px) {
    .banner { flex-direction: column; min-height: auto; }
    .banner-left { width: 100%; padding: 48px 24px; }
    .banner-right { min-height: 220px; }
}

/* =============================================================
   SERVICES
   ============================================================= */
.services { padding: 100px 85px 0; }
.services-row { display: flex; justify-content: space-between; gap: 40px; padding-bottom: 100px; }
.service-card { flex: 1; }
.service-icon { width: 72px; height: 72px; margin-bottom: 24px; }
.service-icon img { width: 100%; height: 100%; object-fit: contain; }
.service-card h3 { font-size: clamp(18px, 1.6vw, 26px); font-weight: 700; line-height: 1.15; color: #0B2C4D; margin-bottom: 14px; }
.service-card p { font-size: clamp(14px, 1vw, 17px); font-weight: 400; line-height: 1.6; color: #0B2C4D; }

@media (max-width: 1024px) {
    .services { padding: 80px 48px 0; }
    .services-row { gap: 28px; padding-bottom: 80px; }
    .service-icon { width: 58px; height: 58px; }
}
@media (max-width: 767px) {
    .services { padding: 60px 24px 0; }
    .services-row { flex-direction: column; padding-bottom: 60px; gap: 40px; }
    .service-icon { width: 52px; height: 52px; }
}

/* =============================================================
   HOW IT WORKS
   ============================================================= */
.how { background: #F4F5F7; padding: 80px 0 0 85px; overflow: hidden; position: relative; }
.how-inner { display: flex; align-items: stretch; }
.how-left {
    width: 50%; flex-shrink: 0;
    display: flex; flex-direction: column;
    justify-content: space-between;
    padding-bottom: 80px;
}
.how-heading {
    font-size: clamp(30px, 3.6vw, 58px);
    font-weight: 400; line-height: 1.07;
    letter-spacing: -0.02em; color: #258CF2; margin-bottom: 20px;
}
.how-heading .dark-bold { font-weight: 800; color: #0B2C4D; }
.how-desc-text { font-size: clamp(14px, 1vw, 17px); font-weight: 400; line-height: 1.7; color: #555; max-width: 440px; }
.how-features { display: flex; gap: 36px; flex-wrap: wrap; align-items: flex-start; }
.how-feat { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.how-feat-circle {
    width: 56px; height: 56px; border-radius: 50%;
    border: 1.5px solid #aaa;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; background: transparent;
}
.how-feat-circle svg { width: 22px; height: 22px; }
.how-feat span { font-size: 13px; font-weight: 500; color: #333; line-height: 1.4; display: block; }

.how-right { flex: 1; position: relative; overflow: hidden; align-self: stretch; }
.how-right img {
    position: absolute; top: 0; left: 50%;
    transform: translateX(-50%);
    width: auto; height: 168%;
    max-width: none; display: block;
    mix-blend-mode: multiply;
}

@media (max-width: 1024px) {
    .how { padding: 60px 0 0 48px; }
    .how-left { width: 52%; padding-bottom: 60px; }
    .how-features { gap: 24px; }
}
@media (max-width: 767px) {
    .how { padding: 60px 24px; }
    .how-inner { flex-direction: column; gap: 0; }
    .how-left { width: 100%; padding-bottom: 0; gap: 24px; }
    .how-right {
        width: 100%; height: auto;
        overflow: visible; text-align: center;
        order: -1; margin-bottom: 16px;
    }
    .how-right img {
        position: static; transform: none;
        height: auto; width: 75%;
        max-width: 280px; display: inline-block;
        mix-blend-mode: normal;
    }
    .how-features { gap: 20px; }
    .how-feat-circle { width: 48px; height: 48px; }
}

/* =============================================================
   BENEFITS
   ============================================================= */
.benefits { background-color: #258CF2; position: relative; overflow: hidden; padding: 0 85px 0 0; }
.benefits::before {
    content: ''; position: absolute; inset: 0;
    background-image: repeating-linear-gradient(90deg, rgba(255,255,255,0.065) 0px, rgba(255,255,255,0.065) 1px, transparent 1px, transparent 38px);
    pointer-events: none;
}
.benefits-inner { display: flex; align-items: stretch; position: relative; z-index: 1; }
.benefits-phone { flex-shrink: 0; width: 46%; position: relative; overflow: hidden; }
.benefits-phone img {
    position: absolute; top: 0; left: 50%;
    transform: translateX(-50%);
    width: auto; height: 168%;
    max-width: none; display: block;
    mix-blend-mode: screen;
}
.benefits-text { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 80px 0 80px 60px; }
.benefits-heading { font-size: clamp(30px, 3.8vw, 62px); font-weight: 400; line-height: 1.05; color: #fff; letter-spacing: -0.02em; margin-bottom: 24px; }
.benefits-heading b { font-weight: 800; }
.benefits-desc { font-size: clamp(14px, 1.1vw, 18px); font-weight: 400; line-height: 1.65; color: rgba(255,255,255,0.92); max-width: 420px; margin-bottom: 48px; }
.benefits-icons { display: flex; gap: 36px; flex-wrap: wrap; align-items: flex-start; }
.benefit-feat { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.benefit-circle { width: 56px; height: 56px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.55); display: flex; align-items: center; justify-content: center; background: transparent; }
.benefit-circle svg { width: 22px; height: 22px; }
.benefit-feat span { font-size: 13px; font-weight: 500; color: #fff; line-height: 1.4; display: block; }

@media (max-width: 1024px) {
    .benefits { padding: 0 48px 0 0; }
    .benefits-phone { width: 42%; }
    .benefits-text { padding: 60px 0 60px 40px; }
    .benefits-icons { gap: 24px; }
}
@media (max-width: 767px) {
    .benefits { padding: 60px 24px; }
    .benefits-inner { flex-direction: column; gap: 36px; align-items: center; }
    .benefits-phone { width: 100%; height: auto; overflow: visible; text-align: center; }
    .benefits-phone img { position: static; transform: none; height: auto; width: 75%; max-width: 280px; display: inline-block; }
    .benefits-text { text-align: center; padding: 0; }
    .benefits-desc { font-size: 15px; margin-bottom: 32px; margin-left: auto; margin-right: auto; }
    .benefits-icons { gap: 20px; justify-content: center; }
    .benefit-feat { align-items: center; }
    .benefit-circle { width: 48px; height: 48px; }
}

/* =============================================================
   PARTNERS
   ============================================================= */
.partners { padding: 100px 75px 0; }
.partners-title { text-align: center; font-size: clamp(22px, 2.4vw, 38px); font-weight: 700; line-height: 1.1; color: #0B2C4D; max-width: 660px; margin: 0 auto 56px; }
.partners-grid { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-start; }
.partner-item { width: 16.6666%; height: 80px; margin-bottom: 60px; display: flex; align-items: center; justify-content: center; padding: 0 20px; }
.partner-item img { max-height: 100%; max-width: 100%; object-fit: contain; width: auto; }

@media (max-width: 1024px) {
    .partners { padding: 80px 48px 0; }
    .partner-item { height: 60px; margin-bottom: 40px; }
}
@media (max-width: 767px) {
    .partners { padding: 60px 24px 0; }
    .partner-item { width: 33.333%; margin-bottom: 24px; height: 50px; padding: 0 12px; }
}

/* =============================================================
   TESTIMONIALS
   ============================================================= */
.testimonials { background: #0B2C4D; padding: 80px 75px 120px; }
.testimonials-title { text-align: center; font-size: clamp(22px, 2.4vw, 38px); font-weight: 700; line-height: 1.1; color: #fff; margin-bottom: 56px; }
.testi-grid { display: flex; gap: 20px; flex-wrap: wrap; }
.testi-card { background: rgba(255,255,255,0.1); border-radius: 15px; padding: 40px; flex: 1; min-width: 260px; }
.testi-card h4 { font-size: clamp(18px, 1.6vw, 28px); font-weight: 700; color: #fff; margin-bottom: 16px; }
.testi-card p { font-size: clamp(14px, 1.1vw, 18px); color: #fff; line-height: 1.6; margin-bottom: 16px; }
.testi-card .testi-attr { font-size: 15px; color: #97A7B8; }

@media (max-width: 1024px) {
    .testimonials { padding: 60px 48px 80px; }
    .testi-card { padding: 28px; min-width: 220px; }
}
@media (max-width: 767px) {
    .testimonials { padding: 60px 24px 80px; }
    .testimonials-title { font-size: 22px; margin-bottom: 36px; }
    .testi-card { min-width: 100%; padding: 24px; }
}

/* =============================================================
   WHY ON-DEMAND PAY
   ============================================================= */
.why { background: #0B2C4D; padding-top: 100px; padding-left: 75px; overflow: hidden; position: relative; }
.why-top { text-align: center; max-width: 760px; margin: 0 auto; padding-bottom: 100px; }
.why-top h2 { font-size: clamp(26px, 3.2vw, 52px); font-weight: 700; line-height: 1.1; color: #fff; margin-bottom: 24px; }
.why-top p { font-size: clamp(14px, 1.2vw, 20px); font-weight: 400; line-height: 1.65; color: rgba(255,255,255,0.88); }
.why-bottom { display: flex; align-items: flex-end; justify-content: space-between; }
.why-phone { width: 600px; height: 600px; flex-shrink: 0; }
.why-phone img { width: 100%; height: 100%; object-fit: contain; object-position: bottom; }
.why-cards { flex: 1; display: flex; flex-wrap: wrap; justify-content: space-between; padding: 0 75px 160px 80px; position: relative; }
.why-card { width: calc(50% - 48px); margin-bottom: 80px; }
.why-card-icon { width: 100px; height: 100px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.why-card-icon img { width: 60%; height: auto; }
.why-card p { font-size: clamp(14px, 1.2vw, 20px); font-weight: 500; color: #fff; line-height: 1.5; }

@media (max-width: 1200px) {
    .why { padding-left: 48px; }
    .why-phone { width: 420px; height: 420px; }
    .why-cards { padding: 0 48px 120px 60px; }
    .why-card { width: calc(50% - 32px); margin-bottom: 60px; }
    .why-card-icon { width: 80px; height: 80px; }
}
@media (max-width: 1024px) {
    .why { padding-left: 48px; padding-top: 80px; }
    .why-top { padding-bottom: 60px; }
    .why-phone { width: 320px; height: 320px; }
    .why-cards { padding: 0 36px 80px 48px; }
}
@media (max-width: 767px) {
    .why { padding: 60px 24px; }
    .why-top { padding-bottom: 40px; }
    .why-bottom { flex-direction: column; align-items: center; gap: 0; }
    .why-phone { display: none; }
    .why-cards { padding: 0; width: 100%; justify-content: center; gap: 0; }
    .why-card { width: 50%; margin-bottom: 36px; display: flex; flex-direction: column; align-items: center; text-align: center; }
    .why-card-icon { width: 60px; height: 60px; margin-bottom: 12px; }
}

/* =============================================================
   CTA
   ============================================================= */
.cta { background: #0B2C4D; padding: 100px 75px; text-align: center; border-top: 1px solid rgba(255,255,255,0.08); }
.cta h2 { font-size: clamp(26px, 3.2vw, 52px); font-weight: 700; color: #fff; line-height: 1.1; max-width: 580px; margin: 0 auto 24px; }
.cta p { font-size: clamp(14px, 1.2vw, 20px); font-weight: 400; color: rgba(255,255,255,0.85); max-width: 480px; margin: 0 auto 8px; line-height: 1.6; }
.cta .cta-em { font-style: italic; color: rgba(255,255,255,0.5); font-size: 17px; margin-bottom: 36px; display: block; }
.cta-btn { display: inline-block; background: #258CF2; color: #fff; font-size: clamp(16px, 1.4vw, 22px); font-weight: 700; padding: 24px 40px; border-radius: 14px; }
.cta-btn:hover { background: #1a7de0; }

@media (max-width: 1024px) { .cta { padding: 80px 48px; } }
@media (max-width: 767px) {
    .cta { padding: 60px 24px; }
    .cta-btn { display: block; padding: 14px 24px; }
}

/* =============================================================
   FAQ
   ============================================================= */
.faq { max-width: 1100px; margin: 0 auto; padding: 100px 75px; }
.faq-title { text-align: center; font-size: clamp(22px, 2.4vw, 38px); font-weight: 700; color: #0B2C4D; margin-bottom: 80px; }
.faq-list {}
.faq-item { border-bottom: 1px solid #ddd; margin-bottom: 32px; padding-bottom: 12px; }
.faq-q { display: flex; justify-content: space-between; align-items: flex-start; cursor: pointer; gap: 16px; margin-bottom: 20px; }
.faq-q h3 { font-size: clamp(15px, 1.4vw, 22px); font-weight: 500; color: #0B2C4D; line-height: 1.3; }
.faq-tog { flex-shrink: 0; width: 32px; height: 32px; border: 1.5px solid #258CF2; border-radius: 50%; color: #258CF2; display: flex; align-items: center; justify-content: center; transition: transform .25s; user-select: none; margin-top: 2px; }
.faq-tog svg { width: 14px; height: 14px; stroke: #258CF2; transition: transform .25s; }
.faq-item.open .faq-tog { transform: rotate(180deg); }
.faq-a { display: none; padding: 24px; background: #F7FBFF; border-radius: 4px; }
.faq-a p { font-size: clamp(14px, 1.1vw, 18px); color: #0B2C4D; line-height: 1.65; }
.faq-item.open .faq-a { display: block; }
.faq-foot { text-align: center; padding: 20px 0 80px; }
.faq-foot p { font-size: 17px; color: #0B2C4D; margin-bottom: 12px; }
.faq-foot a { font-size: 17px; font-weight: 700; color: #258CF2; }
.faq-foot-row { display: flex; align-items: center; justify-content: center; gap: 10px; }
.faq-foot-row svg { width: 22px; height: 22px; flex-shrink: 0; }

@media (max-width: 1024px) { .faq { padding: 80px 48px; } }
@media (max-width: 767px) {
    .faq { padding: 60px 24px; }
    .faq-title { font-size: 22px; margin-bottom: 48px; display: none; }
    .faq-foot { padding-bottom: 40px; }
}

/* =============================================================
   FOOTER
   ============================================================= */
.footer { background: #0B2C4D; padding: 120px 0; position: relative; overflow: hidden; }
.footer-coin-l { position: absolute; left: 0; top: 180px; pointer-events: none; }
.footer-coin-r { position: absolute; right: 0; top: 60px; pointer-events: none; }
.footer-cta { text-align: center; padding: 0 75px; position: relative; z-index: 1; }
.footer-cta h2 { font-size: clamp(28px, 3.2vw, 52px); font-weight: 700; color: #fff; max-width: 580px; margin: 0 auto 10px; line-height: 1.1; }
.footer-cta > p { font-size: clamp(14px, 1.2vw, 20px); color: #fff; max-width: 500px; margin: 0 auto 64px; line-height: 1.65; }
.footer-signup { display: inline-block; background: #258CF2; color: #fff; font-size: clamp(15px, 1.2vw, 20px); font-weight: 700; padding: 22px 48px; border-radius: 14px; }
.footer-signup:hover { background: #1a7de0; }
.footer-menus { display: flex; justify-content: space-between; padding: 100px 75px 120px 120px; position: relative; z-index: 1; }
.footer-menus-left { display: flex; gap: 60px; width: 55%; }
.footer-col h4 { font-size: 16px; font-weight: 700; color: #97A7B8; margin-bottom: 28px; }
.footer-col a { display: block; font-size: 16px; color: #fff; margin-bottom: 18px; font-weight: 400; }
.footer-col a:hover { color: #258CF2; }
.footer-reach { padding-right: 40px; }
.footer-reach h4 { font-size: 16px; font-weight: 700; color: #97A7B8; margin-bottom: 28px; }
.footer-reach p { font-size: 16px; color: #fff; line-height: 1.65; margin-bottom: 18px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: flex-start; padding: 0 75px 0 120px; position: relative; z-index: 1; }
.footer-bottom-left { max-width: 520px; }
.footer-logo { height: 28px; width: auto; margin-bottom: 40px; }
.footer-para { font-size: 15px; color: #97A7B8; line-height: 1.65; margin-bottom: 14px; }
.footer-copy { font-size: 15px; font-weight: 700; color: #97A7B8; }
.footer-apps { display: flex; flex-direction: column; gap: 12px; padding-top: 4px; }
.footer-apps a img { width: 180px; height: 52px; object-fit: contain; object-position: left; }

@media (max-width: 1200px) {
    .footer-menus { padding: 80px 48px 100px 80px; }
    .footer-menus-left { gap: 40px; }
    .footer-bottom { padding: 0 48px 0 80px; }
}
@media (max-width: 1024px) {
    .footer-menus { flex-direction: column; gap: 48px; padding: 60px 48px; }
    .footer-menus-left { width: 100%; }
    .footer-reach { padding-right: 0; }
    .footer-bottom { padding: 0 48px 60px; flex-direction: column; gap: 40px; }
    .footer-bottom-left { max-width: 100%; }
}
@media (max-width: 767px) {
    .footer { padding: 80px 0; }
    .footer-coin-l, .footer-coin-r { display: none; }
    .footer-cta { padding: 0 24px; }
    .footer-cta > p { margin-bottom: 36px; }
    .footer-signup { font-size: 15px; padding: 14px 28px; }
    .footer-menus { padding: 48px 24px; flex-direction: column; gap: 32px; }
    .footer-menus-left { flex-direction: column; width: 100%; gap: 28px; }
    .footer-reach { padding-right: 0; }
    .footer-bottom { padding: 0 24px 48px; flex-direction: column; gap: 32px; }
    .footer-apps a img { width: 140px; height: 42px; }
}