/* Reset & Variables */
:root {
    /* Mono Nav Colors */
    --nav-bg: #FFFFFF;
    --nav-text: #0A0A0A;
    --nav-link-hover: #08836a;
    /* Xenfa Green */
    --nav-btn-primary: #08836a;
    --nav-btn-text: #FFFFFF;
    --nav-height: 80px;

    /* Grey Hero Colors */
    --hero-bg: #F9FAFC;
    /* Light clean grey/blue tint */
    --hero-text-main: #1A1D1F;
    --hero-text-sub: #5F6D7E;
    --hero-accent: #08836a;
    /* Xenfa Green */
    --hero-accent-dark: #066b56;

    /* Layout */
    --container-width: 1240px;
    --spacing-md: 24px;
    --radius-md: 12px;
    --radius-full: 9999px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'SN Pro', sans-serif;
    line-height: 1.5;
    color: var(--nav-text);
    background: var(--hero-bg);
    overflow-x: hidden;
}


/* Global Headers */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 900;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s ease;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Mono Navbar Style --- */
.mono-nav {
    background: var(--nav-bg);
    height: var(--nav-height);
    position: sticky;
    top: 0;
    z-index: 1000;
    /* Subtle shadow/border as seen in Mono */
    border-bottom: 1px solid #F0F2F5;
}

.nav-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 100%;
    position: relative;
    padding: 0;
    /* Container padding handled by .container class */
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.5px;
    color: var(--nav-text);
    gap: 8px;
    justify-self: start;
    /* Grid align left */
}

.logo-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 6px;
}

/* Links Centered via Grid */
.nav-links {
    display: flex;
    gap: 32px;
    /* Slightly reduced gap to prevent overcrowding */
    margin: 0;
    justify-self: center;
    /* Grid align center */
    position: static;
    /* Reset absolute */
    transform: none;
}

.nav-links a {
    font-size: 15px;
    font-weight: 700;
    color: #4a4a4a;
    white-space: nowrap;
    /* Prevent wrapping */
}

.nav-links a:hover {
    color: var(--nav-text);
}

/* Dropdown Menu Styles */
.has-dropdown {
    position: relative;
}

.nav-link-dropdown {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-chevron {
    transition: transform 0.3s ease;
}

.has-dropdown:hover .dropdown-chevron {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    padding: 24px;
    min-width: 480px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu-small {
    min-width: 300px;
    grid-template-columns: 1fr;
}

.dropdown-section-title {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #08836a;
    letter-spacing: 1px;
    margin-bottom: 16px;
    padding-left: 4px;
}

.dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: #F9FAFB;
}

.dropdown-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(8, 131, 106, 0.1) 0%, rgba(52, 211, 153, 0.1) 100%);
    color: #08836a;
}

.icon-send {
    background: linear-gradient(135deg, #E0F9F3 0%, #D1FAE5 100%);
}

.icon-receive {
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    color: #2563EB;
}

.icon-exchange {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    color: #D97706;
}

.icon-card {
    background: linear-gradient(135deg, #EDE9FE 0%, #DDD6FE 100%);
    color: #7C3AED;
}

.icon-bills {
    background: linear-gradient(135deg, #FCE7F3 0%, #FBCFE8 100%);
    color: #DB2777;
}

.icon-business {
    background: linear-gradient(135deg, #E0F9F3 0%, #D1FAE5 100%);
    color: #059669;
}

.icon-api {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    color: #D97706;
}

.icon-invoice {
    background: linear-gradient(135deg, #E0E7FF 0%, #C7D2FE 100%);
    color: #4F46E5;
}

.dropdown-item-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dropdown-item-title {
    font-size: 14px;
    font-weight: 600;
    color: #101828;
}

.dropdown-item-desc {
    font-size: 13px;
    color: #667085;
    font-weight: 400;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-self: end;
    /* Grid align right */
}

.country-selector {
    display: flex;
    align-items: center;
    padding: 8px;
    cursor: pointer;
}

.flag-icon {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
}

.nav-btn-secondary {
    font-size: 14px;
    font-weight: 500;
    color: var(--nav-text);
    padding: 10px 20px;
    background: #fff;
    border: 1px solid #E1E1E1;
    /* Visible border for Log in */
    border-radius: 8px;
    /* Softer radius */
}

.nav-btn-secondary:hover {
    background: #F9FAFB;
    border-color: #D1D1D1;
}

.nav-btn-primary {
    background: #08836a;
    /* Xenfa Green */
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid transparent;
}

.nav-btn-primary:hover {
    background: #066b56;
    transform: translateY(-1px);
}



/* --- Grey Hero Style (Final) --- */
/* --- Announcement Banner --- */
.announcement-banner {
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.9) 0%,
            rgba(8, 131, 106, 0.05) 25%,
            rgba(167, 139, 250, 0.05) 50%,
            rgba(251, 191, 193, 0.08) 75%,
            rgba(255, 255, 255, 0.9) 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #344054;
    position: relative;
    z-index: 10;
}

.banner-tag {
    background: #08836a;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 12px;
    letter-spacing: 0.5px;
}

.announcement-banner a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.announcement-banner a:hover {
    color: #08836a;
}

.banner-arrow-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.announcement-banner a:hover .banner-arrow-icon {
    transform: translateX(4px);
}

/* --- Mono Hero Style --- */
.mono-hero {
    /* Colorful gradient with primary green tones */
    background:
        radial-gradient(ellipse 80% 60% at 10% 20%, rgba(8, 131, 106, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 90% 10%, rgba(52, 211, 153, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 70% 70% at 50% 80%, rgba(167, 139, 250, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 80% 60%, rgba(251, 191, 193, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, #F0FDF9 0%, #F5F7FA 50%, #FDF8F8 100%);
    position: relative;
    padding: 40px 0 0;
    overflow: hidden;
    height: auto;
    min-height: 600px;
}

/* Soft colored blurs to mimic the "aurora" effect */
.mono-hero::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(8, 131, 106, 0.25) 0%, rgba(52, 211, 153, 0.15) 40%, rgba(255, 255, 255, 0) 70%);
    filter: blur(80px);
    z-index: 0;
    animation: floatBlur 20s ease-in-out infinite;
}

.mono-hero::after {
    content: '';
    position: absolute;
    top: 10%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(251, 191, 193, 0.3) 0%, rgba(167, 139, 250, 0.15) 40%, rgba(255, 255, 255, 0) 70%);
    filter: blur(100px);
    z-index: 0;
    animation: floatBlur 25s ease-in-out infinite reverse;
}

@keyframes floatBlur {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -20px) scale(1.1);
    }
}

.hero-container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: stretch;
    /* was center */
    justify-content: space-between;
    height: 100%;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding-bottom: 80px;
    align-self: center;
    /* added to keep text centered vertically */
    /* Balance visual weight */
}

.hero-mockup {
    position: absolute;
    bottom: -50px;
    right: -340px;
    width: 920px;
    /* Reduced to fit */
    height: auto;
    object-fit: contain;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    /* Soft shadow for depth */

    /* Animation: Slide up from bottom */
    opacity: 0;
    animation: slideUpReveal 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s forwards;
}

.hero-plant {
    position: absolute;
    bottom: -50px;
    left: 120px;
    width: 300px;
    z-index: 1;
    opacity: 0;
    /* Star hidden */

    /* Animation: Slide up from bottom */
    animation: slideUpReveal 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s forwards;
}

/* Animations */
@keyframes slideUpReveal {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Text Animations */
.hero-text h1 {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 68px;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -2px;
    color: #101828;
    margin-bottom: 24px;

    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.1s forwards;
}

.hero-text p {
    font-size: 20px;
    line-height: 1.6;
    color: #475467;
    margin-bottom: 40px;
    max-width: 520px;

    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.3s forwards;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    align-items: center;

    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.5s forwards;
}

.hero-btn-primary {
    background: #000000;
    /* Mono uses black for primary CTA often */
    color: #fff;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.hero-btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-btn-secondary {
    display: flex;
    /* Enabled now */
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #344054;
    padding: 16px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    background: #fff;
    border: 1px solid #D0D5DD;
    transition: all 0.2s ease;
}

.hero-btn-secondary svg {
    width: 20px;
    height: 20px;
    transition: transform 0.2s ease;
}

.hero-btn-secondary:hover svg {
    transform: translateX(4px);
}

.hero-btn-secondary:hover {
    background: #F9FAFB;
    border-color: #98A2B3;
    color: #101828;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
    height: auto;
    /* Allow content to dictate height */
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.mobile-menu-btn {
    display: none;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .grey-hero h1 {
        font-size: 48px;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-visual {
        width: 100%;
        min-height: 400px;
        /* Ensure space for image */
    }

    .hero-mockup {
        right: 50%;
        transform: translateX(50%);
        /* Center horizontally */
        width: 90%;
        bottom: -30px;
    }

    .hero-plant {
        left: 0;
        width: 120px;
    }

    .hero-text {
        margin: 0 auto;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .compliance-text {
        justify-content: center;
    }

    /* Hide desktop nav items */
    .nav-links,
    .nav-right {
        display: none;
    }

    /* Simplified mobile for now */
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        gap: 6px;
        background: none;
        border: none;
        cursor: pointer;
    }

    .mobile-menu-btn span {
        display: block;
        width: 24px;
        height: 2px;
        background: #000;
        transition: 0.3s;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
}

/* Mobile Menu Dropdown */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    gap: 16px;
    border-top: 1px solid #f0f0f0;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    font-size: 16px;
    font-weight: 500;
    color: var(--nav-text);
}

.mobile-menu hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 8px 0;
}

.mobile-menu .mobile-cta {
    color: var(--nav-link-hover);
    font-weight: 700;
}

/* ============================================
   NEW SECTIONS - INSPIRED STYLES
   ============================================ */

/* --- Trusted By Section --- */
.trusted-section {
    background: #fff;
    padding: 60px 0;
    border-bottom: 1px solid #f0f0f0;
}

.trusted-label {
    text-align: center;
    font-size: 14px;
    color: #667085;
    margin-bottom: 32px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.logo-item {
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.logo-item:hover {
    opacity: 1;
}

.bank-logo {
    font-size: 18px;
    font-weight: 700;
    color: #344054;
    letter-spacing: -0.5px;
}

/* --- Services Section --- */
.services-section {
    background: #F9FAFB;
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(8, 131, 106, 0.1);
    color: #08836a;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 48px;
    line-height: 1.1;
    color: #101828;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 18px;
    color: #667085;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* First row: 3 cards */
.services-grid .service-card:nth-child(1),
.services-grid .service-card:nth-child(2),
.services-grid .service-card:nth-child(3) {
    grid-column: span 1;
}

/* Second row: 2 cards spanning 1.5 columns each */
.services-grid .service-card:nth-child(4),
.services-grid .service-card:nth-child(5) {
    grid-column: span 1;
}

.service-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    min-height: 320px;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Pastel Card Colors */
.card-mint {
    background: linear-gradient(135deg, #E8FDF5 0%, #D1FAE5 100%);
}

.card-blue {
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
}

.card-lavender {
    background: linear-gradient(135deg, #F5F3FF 0%, #EDE9FE 100%);
}

.card-peach {
    background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
}

.card-sky {
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
}

.card-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #08836a;
    margin-bottom: 16px;
    display: block;
}

.card-mint .card-label {
    color: #059669;
}

.card-blue .card-label {
    color: #2563EB;
}

.card-lavender .card-label {
    color: #7C3AED;
}

.card-peach .card-label {
    color: #EA580C;
}

.card-sky .card-label {
    color: #0284C7;
}

.service-card h3 {
    font-size: 24px;
    color: #101828;
    margin-bottom: 12px;
    line-height: 1.3;
    font-weight: 700;
}

.service-card p {
    font-size: 15px;
    color: #667085;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
    color: #101828;
    transition: gap 0.3s ease;
}

.card-link:hover {
    gap: 12px;
}

.arrow-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #fff;
    border-radius: 50%;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card-link:hover .arrow-icon {
    transform: translateX(4px);
}

.card-visual {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-icon {
    font-size: 80px;
    opacity: 0.15;
    font-weight: 700;
    transition: transform 0.5s ease, opacity 0.3s ease;
}

.service-card:hover .floating-icon {
    transform: scale(1.1) rotate(-5deg);
    opacity: 0.25;
}

.icon-naira {
    color: #059669;
}

.icon-globe {
    font-size: 70px;
    opacity: 0.3;
}

.icon-card {
    font-size: 70px;
    opacity: 0.3;
}

.icon-exchange {
    color: #EA580C;
    font-size: 60px;
}

.icon-phone {
    font-size: 70px;
    opacity: 0.3;
}

/* --- Split Feature Section --- */
.split-feature-section {
    /* removed on purpose */
    /* background: linear-gradient(180deg, #FFFAF7 0%, #FFF5F0 100%); */
    padding: 40px 0;
    overflow: hidden;
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: stretch;
    min-height: 520px;
}

.split-image {
    position: relative;
    height: 100%;
    min-height: 520px;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #FFF5F0 0%, #FFE8DC 100%);
}

.feature-person {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 24px;
}

.split-content {
    background: linear-gradient(135deg, #FFF5F0 0%, #FFE4D6 100%);
    border-radius: 24px;
    padding: 60px;
    position: relative;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content-inner {
    position: relative;
    z-index: 1;
}

.feature-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #0052FF;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.split-content h2 {
    font-size: 40px;
    line-height: 1.15;
    color: #101828;
    margin-bottom: 20px;
    letter-spacing: -1px;
    font-weight: 700;
}

.split-content>.split-content-inner>p {
    font-size: 18px;
    color: #667085;
    margin-bottom: 28px;
    line-height: 1.6;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #101828;
    transition: gap 0.3s ease;
}

.feature-link:hover {
    gap: 16px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #0052FF;
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.feature-link:hover .link-arrow {
    transform: translateX(4px);
    background: #0040CC;
}

/* Floating Notification Card */
.notification-card {
    position: relative;
    margin-top: 40px;
    background: #fff;
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    max-width: 340px;
    animation: slideInUp 0.8s ease-out 0.5s both;
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(60px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.notif-icon {
    width: 40px;
    height: 40px;
    background: #08836a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.notif-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.notif-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.notif-title {
    font-size: 15px;
    font-weight: 700;
    color: #101828;
}

.notif-text {
    font-size: 13px;
    color: #667085;
    line-height: 1.4;
}

.notif-time {
    font-size: 12px;
    color: #9CA3AF;
    white-space: nowrap;
    align-self: flex-start;
}

/* Split Section Reversed Layout */
.split-grid-reversed {
    grid-template-columns: 1.2fr 1fr;
}

.split-lime {
    /* background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%); */
}

.split-content-lime {
    background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
    min-height: 480px;
    padding: 60px;
    border-radius: 24px;
}

.split-image-right {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-label-green {
    color: #059669;
}

.notif-icon-dark {
    background: #1a1a1a;
}

/* Unified Split Card - Both content and image in one container */
.unified-split-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
    border-radius: 24px;
    overflow: hidden;
    min-height: 480px;
}

.split-card-lime {
    background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
}

.split-card-peach {
    background: linear-gradient(135deg, #FFF5F0 0%, #FFE4D6 100%);
}

.unified-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.unified-content h2 {
    font-size: 40px;
    line-height: 1.15;
    color: #101828;
    margin-bottom: 20px;
    letter-spacing: -1px;
    font-weight: 700;
}

.unified-content p {
    font-size: 18px;
    color: #667085;
    margin-bottom: 28px;
    line-height: 1.6;
}

.unified-image {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
    overflow: hidden;
}

.unified-image img {
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom center;
}

/* Unified Card Responsive */
@media (max-width: 1024px) {
    .unified-split-card {
        grid-template-columns: 1fr;
    }

    .unified-content {
        padding: 40px;
    }

    .unified-image {
        order: -1;
        padding: 20px;
    }

    .unified-image img {
        max-height: 350px;
    }
}

@media (max-width: 768px) {
    .unified-content h2 {
        font-size: 32px;
    }

    .unified-content {
        padding: 32px;
    }
}

/* Split Feature Responsive */
@media (max-width: 1024px) {
    .split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .split-grid-reversed {
        grid-template-columns: 1fr;
    }

    .split-image {
        min-height: 350px;
        order: -1;
    }

    .split-image-right {
        order: -1;
    }

    .split-content {
        min-height: auto;
        padding: 40px;
    }

    .split-content-lime {
        padding: 40px;
    }

    .notification-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 30px;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .split-content h2 {
        font-size: 32px;
    }

    .split-content {
        padding: 32px;
    }

    .split-image {
        min-height: 280px;
    }
}

/* --- Infinite Scroll Carousel Section --- */
.carousel-section {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.carousel-intro {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.carousel-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.carousel-header h2 {
    font-size: 40px;
    line-height: 1.1;
    color: #101828;
    font-weight: 700;
    letter-spacing: -1px;
}

.carousel-nav {
    display: flex;
    gap: 12px;
}

.nav-btn {
    width: 48px;
    height: 48px;
    border: 1px solid #E5E7EB;
    background: #fff;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: #101828;
    color: #fff;
    border-color: #101828;
}

.carousel-track-wrapper {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 24px;
    animation: scroll 30s linear infinite;
    width: max-content;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-card {
    position: relative;
    width: 494px;
    height: 416px;
    border-radius: 24px;
    overflow: hidden;
    flex-shrink: 0;
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.overlay-pink {
    background: linear-gradient(180deg, rgba(200, 80, 180, 0.3) 0%, rgba(100, 20, 80, 0.7) 100%);
}

.overlay-brown {
    background: linear-gradient(180deg, rgba(120, 80, 60, 0.3) 0%, rgba(60, 30, 20, 0.7) 100%);
}

.overlay-teal {
    background: linear-gradient(180deg, rgba(0, 120, 140, 0.3) 0%, rgba(0, 60, 80, 0.7) 100%);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    color: #fff;
    z-index: 2;
}

.card-category {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    opacity: 0.9;
    margin-bottom: 16px;
    display: block;
}

.card-content p {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

/* Carousel Responsive */
@media (max-width: 768px) {
    .carousel-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .carousel-header h2 {
        font-size: 32px;
    }

    .carousel-card {
        width: 380px;
        height: 340px;
    }

    .card-content p {
        font-size: 18px;
    }
}

/* --- How It Works Section (Dark) --- */
.how-it-works {
    background: linear-gradient(135deg, #0D0E10 0%, #1A1D21 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(8, 131, 106, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.how-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.how-text {
    color: #fff;
}

.tag-light {
    background: rgba(8, 131, 106, 0.2);
    color: #34D399;
}

.how-text h2 {
    font-size: 44px;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.how-text>p {
    font-size: 18px;
    color: #9CA3AF;
    margin-bottom: 40px;
    line-height: 1.6;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease;
}

.step-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.step-number {
    font-size: 14px;
    font-weight: 700;
    color: #08836a;
    background: rgba(8, 131, 106, 0.15);
    padding: 8px 12px;
    border-radius: 8px;
    min-width: 40px;
    text-align: center;
}

.step-content h4 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 4px;
    font-weight: 600;
}

.step-content p {
    font-size: 14px;
    color: #9CA3AF;
    margin: 0;
}

.cta-button {
    display: inline-block;
    background: #08836a;
    color: #fff;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #0A9F7F;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(8, 131, 106, 0.3);
}

/* Phone Mockup */
.how-visual {
    display: flex;
    justify-content: center;
}

.phone-mockup-img {
    width: 390px;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.3));
    border-radius: 40px;
}

.phone-mockup {
    width: 280px;
    background: linear-gradient(145deg, #1F2937 0%, #111827 100%);
    border-radius: 36px;
    padding: 12px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.4);
    position: relative;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background: #000;
    border-radius: 12px;
}

.phone-screen {
    background: linear-gradient(180deg, #08836a 0%, #066b56 100%);
    border-radius: 28px;
    padding: 50px 20px 30px;
    min-height: 480px;
}

.app-header {
    text-align: center;
    margin-bottom: 30px;
}

.app-greeting {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 8px;
}

.app-balance {
    display: block;
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    font-family: 'Lexend Deca', sans-serif;
}

.app-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
}

.action-btn {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.action-btn span {
    font-size: 18px;
}

.recent-tx {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px;
}

.tx-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    font-weight: 500;
}

.tx-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tx-item:last-child {
    border-bottom: none;
}

.tx-icon {
    font-size: 20px;
}

.tx-name {
    flex: 1;
    font-size: 13px;
    color: #fff;
}

.tx-amount {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

/* --- Stats Section --- */
.stats-section {
    background: #fff;
    padding: 100px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-card {
    text-align: center;
    padding: 40px 24px;
    background: #F9FAFB;
    border-radius: 24px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: #F3F4F6;
    transform: translateY(-4px);
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #08836a;
    font-family: 'Lexend Deca', sans-serif;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #101828;
    margin-bottom: 12px;
}

.stat-card p {
    font-size: 14px;
    color: #667085;
    line-height: 1.5;
    margin: 0;
}

/* --- Download Section --- */
.download-section {
    background: linear-gradient(135deg, #0D0E10 0%, #1A1D21 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.download-text {
    color: #fff;
}

.download-text h2 {
    font-size: 44px;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.download-text p {
    font-size: 18px;
    color: #9CA3AF;
    margin-bottom: 32px;
    line-height: 1.6;
}

.store-buttons {
    display: flex;
    gap: 16px;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: #101828;
    padding: 12px 24px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.store-icon {
    font-size: 28px;
}

.store-icon-svg {
    width: 28px;
    height: 28px;
}

.store-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.store-text small {
    font-size: 11px;
    color: #667085;
}

.store-text strong {
    font-size: 16px;
    font-weight: 600;
}

.download-visual {
    display: flex;
    justify-content: center;
}

.floating-phone {
    animation: floatPhone 6s ease-in-out infinite;
}

@keyframes floatPhone {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.phone-frame {
    width: 220px;
    height: 440px;
    background: linear-gradient(145deg, #1F2937 0%, #111827 100%);
    border-radius: 36px;
    padding: 12px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.phone-notch {
    width: 80px;
    height: 24px;
    background: #000;
    border-radius: 12px;
    margin-bottom: 20px;
}

.phone-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(180deg, #08836a 0%, #066b56 100%);
    width: 100%;
    border-radius: 24px;
    padding: 20px;
}

.xenfa-logo-small {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: #08836a;
    margin-bottom: 20px;
}

.phone-content p {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

/* --- Footer --- */
.main-footer {
    background: #0D0E10;
    padding: 80px 0 40px;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.footer-brand p {
    font-size: 14px;
    color: #9CA3AF;
    line-height: 1.7;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9CA3AF;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #08836a;
    color: #fff;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 700;
    color: #08836a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-column a {
    font-size: 14px;
    color: #9CA3AF;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #667085;
    line-height: 1.6;
    margin-bottom: 12px;
}

.footer-bottom .copyright {
    color: #9CA3AF;
    margin-bottom: 0;
}

/* ============================================
   RESPONSIVE STYLES FOR NEW SECTIONS
   ============================================ */

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid .service-card:nth-child(5) {
        grid-column: span 2;
    }

    .how-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .steps-list {
        max-width: 500px;
        margin: 0 auto 40px;
    }

    .step-item {
        text-align: left;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .download-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .store-buttons {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-brand {
        grid-column: span 2;
        max-width: 100%;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 36px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-grid .service-card:nth-child(5) {
        grid-column: span 1;
    }

    .service-card {
        min-height: auto;
        padding: 32px;
    }

    .how-text h2,
    .download-text h2 {
        font-size: 32px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-card {
        padding: 32px 20px;
    }

    .stat-number {
        font-size: 40px;
    }

    .store-buttons {
        flex-direction: column;
        align-items: center;
    }

    .store-btn {
        width: 100%;
        max-width: 220px;
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-column h4 {
        margin-top: 20px;
    }

    .trusted-logos {
        gap: 24px;
    }

    .bank-logo {
        font-size: 14px;
    }
}

/* ==========================================
   COMPREHENSIVE RESPONSIVE STYLES
   ========================================== */

/* iPad / Tablet (1024px and below) */
@media (max-width: 1024px) {

    /* Navbar adjustments */
    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 14px;
    }

    /* Hero adjustments */
    .mono-hero {
        min-height: 500px;
    }

    .hero-text h1 {
        font-size: 44px;
    }

    .hero-mockup {
        width: 700px;
        right: -280px;
    }

    .hero-plant {
        width: 200px;
        left: 80px;
    }

    /* Hide dropdowns on tablet, show simpler nav */
    .dropdown-menu {
        min-width: 380px;
    }
}

/* Large Mobile / Small Tablet (768px and below) */
@media (max-width: 768px) {

    /* Typography scaling */
    h1 {
        font-size: 36px !important;
    }

    h2 {
        font-size: 28px !important;
    }

    h3 {
        font-size: 22px !important;
    }

    /* Navbar - hide desktop links, show hamburger */
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-container {
        grid-template-columns: 1fr auto;
        padding: 0 20px;
    }

    .nav-right {
        display: none;
    }

    /* Mobile menu styling */
    .mobile-menu {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px 24px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        display: none;
        flex-direction: column;
        gap: 16px;
        z-index: 999;
        border-top: 1px solid #E5E7EB;
    }

    .mobile-menu.active {
        display: flex;
    }

    .mobile-menu a {
        font-size: 16px;
        font-weight: 500;
        color: #344054;
        padding: 12px 0;
        border-bottom: 1px solid #F3F4F6;
    }

    .mobile-menu hr {
        border: none;
        border-top: 1px solid #E5E7EB;
        margin: 8px 0;
    }

    .mobile-cta {
        background: #08836a;
        color: #fff !important;
        padding: 14px 24px !important;
        border-radius: 10px;
        text-align: center;
        margin-top: 8px;
    }

    /* Banner adjustments */
    .announcement-banner {
        font-size: 12px;
        padding: 10px 16px;
        text-align: center;
        flex-wrap: wrap;
    }

    .banner-arrow-icon {
        width: 14px;
        height: 14px;
    }

    /* Hero section mobile */
    .mono-hero {
        min-height: auto;
        padding: 30px 0 60px;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        padding-bottom: 40px;
    }

    .hero-text h1 {
        font-size: 36px !important;
        line-height: 1.2;
    }

    .hero-text p {
        font-size: 16px;
    }

    .hero-cta-group {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 14px 20px;
        font-size: 14px;
    }

    /* Hide hero images on mobile */
    .hero-visual {
        display: none;
    }

    .hero-mockup,
    .hero-plant {
        display: none;
    }

    /* Trusted section */
    .trusted-section {
        padding: 40px 0;
    }

    .trusted-label {
        font-size: 12px;
    }

    .trusted-logos {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Services section */
    .services-section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 28px !important;
    }

    .section-header p {
        font-size: 14px;
    }

    .service-card h3 {
        font-size: 20px;
    }

    .service-card p {
        font-size: 14px;
    }

    /* Split feature sections */
    .unified-split-card {
        grid-template-columns: 1fr;
        border-radius: 20px;
    }

    .unified-content {
        padding: 32px 24px;
    }

    .unified-content h2 {
        font-size: 28px !important;
    }

    .unified-image img {
        max-height: 300px;
    }

    .notification-card {
        position: relative;
        margin-top: 20px;
    }

    /* How it works section */
    .how-it-works {
        padding: 60px 0;
    }

    .how-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .how-text h2 {
        font-size: 28px !important;
    }

    .how-visual {
        order: -1;
    }

    .phone-mockup-img {
        width: 280px;
    }

    .step-item {
        padding: 16px;
    }

    .step-number {
        font-size: 12px;
        padding: 6px 10px;
    }

    .step-content h4 {
        font-size: 16px;
    }

    /* Carousel section */
    .carousel-section {
        padding: 60px 0;
    }

    .carousel-header h2 {
        font-size: 28px !important;
    }

    /* Stats section */
    .stats-section {
        padding: 60px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 14px;
    }

    .stat-card p {
        font-size: 12px;
    }

    /* Download section */
    .download-section {
        padding: 60px 0;
    }

    .download-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .download-text h2 {
        font-size: 28px !important;
    }

    .download-text p {
        font-size: 16px;
    }

    .store-buttons {
        justify-content: center;
    }

    .download-visual {
        display: none;
    }

    /* Footer */
    .main-footer {
        padding: 60px 0 30px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .footer-brand {
        grid-column: span 2;
        max-width: 100%;
        text-align: center;
    }

    .footer-column {
        text-align: left;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {

    /* Extra small typography */
    h1 {
        font-size: 28px !important;
    }

    h2 {
        font-size: 24px !important;
    }

    h3 {
        font-size: 18px !important;
    }

    .container {
        padding: 0 16px;
    }

    /* Navbar */
    .logo {
        font-size: 18px;
    }

    .logo-icon {
        width: 24px;
        height: 24px;
    }

    /* Banner */
    .announcement-banner {
        font-size: 11px;
        padding: 8px 12px;
    }

    .banner-tag {
        font-size: 9px;
        padding: 2px 6px;
    }

    /* Hero */
    .hero-text h1 {
        font-size: 28px !important;
    }

    .hero-text p {
        font-size: 14px;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    /* Services */
    .service-card {
        padding: 24px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    /* Split sections */
    .unified-content {
        padding: 24px 20px;
    }

    .unified-content h2 {
        font-size: 24px !important;
    }

    /* How it works */
    .how-text h2 {
        font-size: 24px !important;
    }

    .phone-mockup-img {
        width: 220px;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 24px 16px;
    }

    .stat-number {
        font-size: 28px;
    }

    /* Download */
    .download-text h2 {
        font-size: 24px !important;
    }

    .store-btn {
        padding: 10px 20px;
    }

    .store-text strong {
        font-size: 14px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .footer-brand {
        grid-column: span 2;
        text-align: center;
        margin-bottom: 24px;
    }

    .footer-column {
        text-align: left;
    }

    .social-links {
        justify-content: center;
    }
}

/* ==========================================
   SUPPORT PAGE STYLES
   ========================================== */

/* Support Hero */
.support-hero {
    background:
        radial-gradient(ellipse 80% 60% at 10% 20%, rgba(8, 131, 106, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 90% 10%, rgba(52, 211, 153, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 70% 70% at 50% 80%, rgba(167, 139, 250, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, #F0FDF9 0%, #F8FAFC 100%);
    padding: 80px 0 100px;
    text-align: center;
}

.support-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.support-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: #101828;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.support-hero p {
    font-size: 18px;
    color: #667085;
    margin-bottom: 32px;
}

/* Search Box */
.support-search {
    position: relative;
    max-width: 560px;
    margin: 0 auto;
}

.support-search input {
    width: 100%;
    padding: 18px 24px 18px 56px;
    border: 2px solid #E5E7EB;
    border-radius: 14px;
    font-size: 16px;
    font-family: inherit;
    background: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.support-search input:focus {
    outline: none;
    border-color: #08836a;
    box-shadow: 0 4px 24px rgba(8, 131, 106, 0.15);
}

.support-search input::placeholder {
    color: #9CA3AF;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #9CA3AF;
}

/* Help Categories */
.help-categories {
    padding: 80px 0;
    background: #fff;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.category-card {
    padding: 32px;
    background: #F9FAFB;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
    text-decoration: none;
}

.category-card:hover {
    background: #fff;
    border-color: #08836a;
    box-shadow: 0 10px 40px rgba(8, 131, 106, 0.1);
    transform: translateY(-4px);
}

.category-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-getting-started {
    background: linear-gradient(135deg, #E0F9F3 0%, #D1FAE5 100%);
    color: #08836a;
}

.icon-payments {
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    color: #2563EB;
}

.icon-cards {
    background: linear-gradient(135deg, #EDE9FE 0%, #DDD6FE 100%);
    color: #7C3AED;
}

.icon-security {
    background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
    color: #DC2626;
}

.icon-account {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    color: #D97706;
}

.icon-fees {
    background: linear-gradient(135deg, #E0E7FF 0%, #C7D2FE 100%);
    color: #4F46E5;
}

.category-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #101828;
    margin-bottom: 8px;
}

.category-card p {
    font-size: 14px;
    color: #667085;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #F9FAFB;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #D1D5DB;
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
}

.faq-question span {
    font-size: 16px;
    font-weight: 600;
    color: #101828;
}

.faq-chevron {
    color: #667085;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 15px;
    color: #667085;
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-card {
    text-align: center;
    padding: 40px 32px;
    background: linear-gradient(135deg, #F9FAFB 0%, #F0FDF9 100%);
    border-radius: 20px;
    border: 1px solid #E5E7EB;
}

.contact-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #08836a 0%, #059669 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #101828;
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 14px;
    color: #667085;
    margin-bottom: 20px;
}

.contact-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #08836a;
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.contact-btn:hover {
    background: #066b56;
    transform: translateY(-2px);
}

/* Support CTA */
.support-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #08836a 0%, #059669 100%);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
}

.cta-button {
    display: inline-block;
    padding: 16px 32px;
    background: #fff;
    color: #08836a;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.cta-button:hover {
    background: #F0FDF9;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Active nav link */
.nav-links a.active {
    color: #08836a;
}

/* Support Page Responsive */
@media (max-width: 768px) {
    .support-hero {
        padding: 60px 0 80px;
    }

    .support-hero h1 {
        font-size: 32px;
    }

    .support-hero p {
        font-size: 16px;
    }

    .support-search input {
        padding: 16px 20px 16px 50px;
        font-size: 14px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .category-card {
        padding: 24px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-card {
        padding: 32px 24px;
    }

    .cta-content h2 {
        font-size: 26px;
    }

    .cta-content p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .support-hero h1 {
        font-size: 26px;
    }

    .faq-question span {
        font-size: 14px;
    }

    .faq-answer p {
        font-size: 13px;
    }
}

/* ============================================
   AUTHENTICATION PAGES STYLES
   ============================================ */

.auth-body {
    background: #fff;
    overflow: hidden;
    /* Prevent scroll on full screen auth */
}

.auth-page {
    display: flex;
    height: 100vh;
    width: 100%;
}

/* --- Left Panel: Hero & Collage --- */
.auth-hero {
    flex: 1;
    background: #FAFAFA;
    /* Fallback */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    overflow: hidden;
}

/* Curved background shape */
.auth-hero-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: #F2F4F7;
    z-index: 0;
}

/* The Grid Collage */
.auth-collage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 260px 220px 200px;
    /* Explicit row heights based on taller item */
    gap: 20px;
    max-width: 600px;
    width: 100%;
    z-index: 1;
    position: relative;
    align-items: stretch;
    /* All items stretch to fill row height */
}

.collage-item {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.collage-item:hover {
    transform: translateY(-5px);
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Specific Item Styling based on screenshot grid */
/* Grid rows control heights - items stretch to fill */

/* Row 1 */
.item-1 {
    grid-column: 1;
    grid-row: 1;
}

.item-2 {
    /* Green Text Card */
    background: #08836a;
    color: #fff;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    grid-column: 2;
    grid-row: 1;
}

/* Row 2 */
.item-3 {
    /* Badge/Logo Card */
    background: #08836a;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: 1;
    grid-row: 2;
}

.item-4 {
    /* Indigo Text Card */
    background: #1E1B4B;
    color: #fff;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    grid-column: 2;
    grid-row: 2;
}

/* Row 3 */
.item-5 {
    grid-column: 1;
    grid-row: 3;
}

.item-6 {
    grid-column: 2;
    grid-row: 3;
}

/* Card Content Styles */
.card-decor-icon {
    width: 28px;
    height: 28px;
    align-self: flex-end;
    opacity: 0.9;
    color: #fff;
}

.item-card h3 {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
    font-family: 'Lexend Deca', sans-serif;
}

.item-badge {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.badge-logo {
    width: 48px !important;
    height: 48px !important;
    border-radius: 12px;
    background: #fff;
    padding: 8px;
    object-fit: contain !important;
}

.item-badge span {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
}


/* --- Right Panel: Form --- */
.auth-form-panel {
    flex: 1;
    /* Split 50/50 */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 40px 80px;
    /* Increased top padding significantly */
    position: relative;
    overflow-y: auto;
    /* Make it scrollable */
    height: 100vh;
    /* Full height to allow scrolling within */
}

.auth-form-container {
    width: 100%;
    max-width: 480px;
}

.auth-back-link {
    position: absolute;
    top: 40px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #5F6D7E;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 10;
}

.auth-back-link:hover {
    color: #08836a;
}

.auth-header {
    margin-bottom: 40px;
}

.auth-header h1 {
    font-size: 36px;
    color: #101828;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.auth-header p {
    font-size: 16px;
    color: #667085;
    line-height: 1.5;
}

/* Form Styles */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #344054;
}

.label-hint {
    font-weight: 400;
    color: #98A2B3;
}

.required {
    color: #D92D20;
    margin-left: 2px;
}

.form-group input,
.form-group select {
    padding: 14px 16px;
    border: 1px solid #E4E7EC;
    /* Very light border */
    border-radius: 8px;
    font-size: 16px;
    color: #101828;
    background: #F9FAFB;
    /* Light grey bg */
    font-family: 'SN Pro', sans-serif;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #08836a;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(8, 131, 106, 0.1);
}

.form-group input::placeholder {
    color: #98A2B3;
}

/* Password & Phone Custom Inputs */
.password-input-wrapper,
.phone-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-wrapper input {
    width: 100%;
}

.password-toggle {
    position: absolute;
    right: 16px;
    background: none;
    border: none;
    color: #98A2B3;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.password-toggle:hover {
    color: #344054;
}

.phone-input-wrapper select.country-code {
    width: 100px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: 1px solid #D0D5DD;
    padding-right: 8px;
}

.phone-input-wrapper input {
    flex: 1;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.forgot-password {
    text-align: right;
    font-size: 12px;
    font-weight: 600;
    color: #98A2B3;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.forgot-password a {
    color: #08836a;
}

.auth-submit-btn {
    margin-top: 8px;
    background: #08836a;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 16px;
    border: none;
    border-radius: 30px;
    /* Fully rounded/pill shape */
    cursor: pointer;
    transition: all 0.2s ease;
}

.auth-submit-btn:hover {
    background: #066b56;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(8, 131, 106, 0.2);
}

/* Footer Links */
.auth-switch {
    text-align: center;
    font-size: 12px;
    color: #98A2B3;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 40px;
}

.auth-switch a {
    color: #08836a;
    margin-left: 4px;
}

.auth-terms {
    text-align: center;
    font-size: 13px;
    color: #667085;
    line-height: 1.5;
    max-width: 400px;
    margin: 0 auto;
}

.auth-terms a {
    color: #101828;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: #D0D5DD;
}

/* Responsive */
@media (max-width: 1024px) {
    .auth-hero {
        display: none;
        /* Hide image collage on mobile/tablet */
    }

    .auth-page {
        height: 100vh;
        /* Ensure full height */
    }

    .auth-form-panel {
        padding: 60px 24px;
    }
}

/* ============================================
   FEATURE PAGE ADDITIONAL SECTIONS
   ============================================ */

/* --- How It Works Section --- */
.feature-how-it-works {
    padding: 100px 0;
    background: #fff;
}

.feature-how-it-works .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.feature-how-it-works .section-header h2 {
    font-size: 2.5rem;
    color: #101828;
    margin-bottom: 16px;
}

.feature-how-it-works .section-header p {
    font-size: 1.125rem;
    color: #667085;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step-card {
    text-align: center;
    padding: 40px 32px;
    border-radius: 24px;
    background: #F9FAFB;
    position: relative;
}

.feature-how-it-works .step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #08836a;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.step-card h3 {
    font-size: 1.25rem;
    color: #101828;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 1rem;
    color: #667085;
    line-height: 1.6;
}

/* --- Supported Services/Currencies Grid --- */
.supported-section {
    padding: 80px 0;
    background: #F9FAFB;
}

.supported-section .section-header {
    text-align: center;
    margin-bottom: 48px;
}

.supported-section .section-header h2 {
    font-size: 2rem;
    color: #101828;
    margin-bottom: 12px;
}

.supported-section .section-header p {
    font-size: 1rem;
    color: #667085;
}

.supported-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.supported-item {
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
}

.supported-item:hover {
    transform: translateY(-4px);
}

.supported-item img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.supported-item span {
    font-size: 0.875rem;
    font-weight: 600;
    color: #344054;
}

/* --- CTA Banner Section --- */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, #08836a 0%, #065F46 100%);
    color: #fff;
    text-align: center;
}

.cta-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-banner p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner .btn-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-banner .btn-primary {
    background: #fff;
    color: #08836a;
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.cta-banner .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta-banner .btn-secondary {
    background: transparent;
    color: #fff;
    padding: 16px 32px;
    border-radius: 30px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-banner .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* --- FAQ Section for Feature Pages --- */
.feature-faq {
    padding: 100px 0;
    background: #fff;
}

.feature-faq .section-header {
    text-align: center;
    margin-bottom: 48px;
}

.feature-faq .section-header h2 {
    font-size: 2rem;
    color: #101828;
    margin-bottom: 12px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid #E4E7EC;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #08836a;
    box-shadow: 0 4px 12px rgba(8, 131, 106, 0.08);
}

.faq-item[open] {
    border-color: #08836a;
    background: #F9FAFB;
}

.faq-item summary {
    font-size: 1.125rem;
    font-weight: 600;
    color: #101828;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: #08836a;
    transition: transform 0.3s;
    font-weight: 400;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #E4E7EC;
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
}

/* --- Responsive for New Sections --- */
@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-how-it-works .section-header h2,
    .cta-banner h2 {
        font-size: 1.75rem;
    }

    .cta-banner p {
        font-size: 1rem;
    }

    .supported-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}/* Mobile Dropdowns */
.mobile-dropdown-group {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-dropdown-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: var(--nav-text);
    cursor: pointer;
}

.mobile-dropdown-toggle svg {
    transition: transform 0.2s;
}

.mobile-dropdown-group.active .mobile-dropdown-toggle svg {
    transform: rotate(180deg);
}

.mobile-dropdown-items {
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 8px 0 16px 16px;
}

.mobile-dropdown-group.active .mobile-dropdown-items {
    display: flex;
}

.mobile-dropdown-items a {
    font-size: 14px;
    color: #667085;
    text-decoration: none;
}
/* Mobile fixes for Auth Pages */
@media (max-width: 768px) {
    .auth-hero {
        display: none;
    }

    .auth-page {
        height: auto;
        min-height: 100vh;
        background: #fff;
    }

    .auth-form-panel {
        padding: 40px 20px 80px;
        width: 100%;
        height: auto;
        display: block; /* Remove flex centering */
    }

    .auth-form-container {
        max-width: 100%;
    }

    .auth-back-link {
        position: static; /* Un-float it */
        margin-bottom: 24px;
        display: inline-flex;
    }

    .auth-header {
        margin-bottom: 32px;
    }

    .auth-header h1 {
        font-size: 28px;
        line-height: 1.2;
    }

    .form-row {
        grid-template-columns: 1fr; /* Stack First/Last Name */
        gap: 20px;
    }
    
    .auth-submit-btn {
        width: 100%;
    }
}

/* Force scrolling on mobile */
@media (max-width: 768px) {
    .auth-body {
        overflow-y: auto !important;
        height: auto !important;
        -webkit-overflow-scrolling: touch;
    }
    
    .auth-page {
        height: auto !important;
        min-height: 100vh;
        overflow-y: visible !important;
    }

    .auth-form-panel {
        height: auto !important;
        min-height: 100vh;
        overflow-y: visible !important;
    }
}
