:root {
    --blue-primary: #0061FF;
    --blue-dark: #0047CC;
    --purple: #7B61FF;
    --blue-light: #E7F0FF;
    
    /* NEW: Green & Pink Palette */
    --green-light: #E8F5E9;
    --green-medium: #C8E6C9;
    --green-accent: #4CAF50;
    --pink-light: #FCE4EC;
    --pink-medium: #F8BBD0;
    --pink-accent: #E91E63;
    --lavender: #F3E5F5;
    --mint: #E0F2F1;
    
    --text-primary: #1E1E1E;
    --text-secondary: #6B6B6B;
    --text-light: #9B9B9B;
    --white: #FFFFFF;
    --gray-bg: #F7F9FC;
    --gray-border: #E5E5E5;
    --success: #00C853;
    --warning: #FF6B00;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-border);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav.scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 32px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: opacity 0.2s;
}

.logo-image:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link svg {
    transition: transform 0.2s;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    margin-top: 16px;
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    min-width: 280px;
    pointer-events: none;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown:hover .nav-link svg {
    transform: rotate(180deg);
}

.dropdown-content {
    padding: 8px;
}

.dropdown-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
}

.dropdown-item:hover {
    background: var(--mint);
}

.dropdown-item.featured {
    background: var(--green-light);
}

.dropdown-item.featured:hover {
    background: var(--green-medium);
}

.item-icon {
    font-size: 24px;
}

.item-content {
    flex: 1;
}

.item-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.item-desc {
    font-size: 12px;
    color: var(--text-secondary);
}

.item-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 6px;
    background: var(--green-accent);
    color: var(--white);
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-actions {
    display: flex;
    gap: 16px;
}

.btn-nav-primary {
    background: var(--blue-primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-block;
}

.btn-nav-primary:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 97, 255, 0.3);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
}

/* Hero Section - MINT GREEN GRADIENT */
.hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #E0F2F1 0%, #B2DFDB 100%);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--blue-primary);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-hero-primary:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 97, 255, 0.3);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--blue-primary);
    padding: 16px 32px;
    border: 2px solid var(--blue-primary);
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-hero-secondary:hover {
    background: var(--blue-primary);
    color: var(--white);
}

.hero-trust {
    font-size: 14px;
    color: var(--text-light);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-shield {
    position: relative;
    animation: floatShield 6s ease-in-out infinite;
}

.shield-graphic {
    width: 300px;
    height: 320px;
}

.shield-fill {
    opacity: 0;
    animation: fadeInShield 1.5s ease forwards 0.5s;
}

.shield-outline {
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
    animation: drawShield 2s ease forwards;
}

.checkmark {
    stroke-dasharray: 180;
    stroke-dashoffset: 180;
    animation: drawCheckmark 1s ease forwards 2.2s, pulseCheckmark 2s ease-in-out infinite 3.5s;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.encryption-badge {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--blue-primary);
    animation: slideUp 1s ease forwards;
    opacity: 0;
    animation-delay: 3.2s;
}

/* Mission Statement - WHITE */
.mission {
    padding: 80px 0;
    background: var(--white);
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-content h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.4;
    color: #073f78;
}

/* Products Grid - LIGHT PINK */
.products-grid {
    padding: 100px 0;
    background: linear-gradient(135deg, #FCE4EC 0%, #F8BBD0 100%);
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header-center h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-header-center p {
    font-size: 18px;
    color: var(--text-secondary);
}

.products-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--white);
    border: 2px solid var(--gray-border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s;
    text-decoration: none;
    display: block;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--pink-accent);
}

.product-card.available {
    border-color: var(--green-accent);
    background: linear-gradient(135deg, #ffffff 0%, #E8F5E9 100%);
}

.product-card.coming {
    opacity: 0.7;
}

.card-icon-large {
    font-size: 48px;
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.product-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.card-status {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-status.available {
    color: var(--green-accent);
}

/* Why Section - LIGHT LAVENDER */
.why-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #F3E5F5 0%, #E1BEE7 100%);
}

.features-grid-alt {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.feature-card-alt {
    text-align: center;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    transition: all 0.3s;
}

.feature-card-alt:hover {
    background: var(--white);
    transform: translateY(-4px);
}

.feature-icon-circle {
    width: 72px;
    height: 72px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--blue-primary);
    transition: all 0.3s;
}

.feature-card-alt:hover .feature-icon-circle {
    background: var(--blue-primary);
    color: var(--white);
    transform: scale(1.1);
}

.feature-card-alt h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-card-alt p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* How It Works - LIGHT GREEN */
.how-it-works-alt {
    padding: 100px 0;
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.process-item {
    flex: 1;
    min-width: 200px;
    max-width: 220px;
    text-align: center;
}

.process-icon {
    width: 64px;
    height: 64px;
    background: var(--green-accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.process-item p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary);
}

.process-arrow {
    font-size: 32px;
    color: var(--green-accent);
    flex-shrink: 0;
}

/* Trust Section - WHITE */
.trust-section {
    padding: 80px 0;
    background: var(--white);
}

.trust-grid-large {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.trust-indicator {
    text-align: center;
}

.trust-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.trust-indicator h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.trust-indicator p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Community Section - PINK GRADIENT */
.community-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #EC407A 0%, #F06292 100%);
    color: white;
}

.community-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.community-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
}

.community-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    opacity: 0.95;
}

.btn-text {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    margin-top: 16px;
    transition: transform 0.2s;
}

.btn-text:hover {
    transform: translateX(4px);
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stat-large {
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 24px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Comparison - LIGHT MINT */
.comparison-alt {
    padding: 100px 0;
    background: linear-gradient(135deg, #E0F2F1 0%, #B2DFDB 100%);
}

.comparison-modern {
    max-width: 900px;
    margin: 0 auto;
    border: 2px solid var(--gray-border);
    border-radius: 16px;
    overflow: hidden;
    background: white;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: var(--gray-bg);
    padding: 20px 24px;
    font-weight: 600;
    border-bottom: 2px solid var(--gray-border);
}

.comp-col {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.comp-col.feature {
    justify-content: flex-start;
}

.comp-col.highlight {
    color: var(--green-accent);
}

.comparison-body {
    background: white;
}

.comp-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 18px 24px;
    border-bottom: 1px solid var(--gray-border);
}

.comp-row:last-child {
    border-bottom: none;
}

.comp-row.warning {
    background: #FFF3E0;
}

.comp-row .feature {
    font-weight: 500;
}

.yes {
    color: var(--green-accent);
    font-size: 20px;
    font-weight: 700;
}

.no {
    color: #E5E5E5;
    font-size: 20px;
    font-weight: 700;
}

.warning-yes {
    color: var(--warning);
    font-size: 20px;
    font-weight: 700;
}

/* Final CTA - LIGHT PINK */
.cta-final {
    padding: 120px 0;
    background: linear-gradient(135deg, #FCE4EC 0%, #F8BBD0 100%);
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-box h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.cta-box p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.btn-cta-large {
    background: var(--blue-primary);
    color: var(--white);
    padding: 18px 48px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

.btn-cta-large:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 97, 255, 0.3);
}

.cta-subtext {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 16px;
}

/* Footer */
.footer {
    background: var(--white);
    border-top: 2px solid var(--gray-border);
    padding: 80px 0 40px;
}

.footer-grid-modern {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-logo {
    margin-bottom: 16px;
}

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

.footer-logo-image {
    height: 28px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.footer-mission {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-social a:hover {
    color: var(--blue-primary);
}

.footer-links-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-column a {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: var(--blue-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--gray-border);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-light);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal-container {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    max-width: 800px;
    width: 90%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    border-bottom: 1px solid var(--gray-border);
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    border-radius: 8px;
    transition: background 0.2s;
}

.modal-close:hover {
    background: var(--gray-bg);
}

.modal-content {
    padding: 32px;
    overflow-y: auto;
    flex: 1;
}

.modal-content h2 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 16px;
}

.modal-content h2:first-child {
    margin-top: 0;
}

.modal-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

/* Animations */
@keyframes floatShield {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes fadeInShield {
    to { opacity: 1; }
}

@keyframes drawShield {
    to { stroke-dashoffset: 0; }
}

@keyframes drawCheckmark {
    to { stroke-dashoffset: 0; }
}

@keyframes pulseCheckmark {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.85;
        transform: scale(0.96);
    }
}

@keyframes slideUp {
    to { 
        opacity: 1; 
        transform: translateX(-50%) translateY(0); 
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid, .community-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        height: 300px;
    }

    .products-layout {
        grid-template-columns: 1fr;
    }

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

    .trust-grid-large {
        grid-template-columns: repeat(2, 1fr);
    }

    .community-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-menu, .nav-actions {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 36px;
    }

    .section-header-center h2 {
        font-size: 32px;
    }

    .features-grid-alt,
    .trust-grid-large,
    .community-stats {
        grid-template-columns: 1fr;
    }

    /* FOOTER FIX - Add these lines */
    .footer-grid-modern {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center; /* Center everything on mobile */
    }

    .footer-logo {
        display: flex;
        flex-direction: column;
        align-items: center; /* Center logo */
    }

    .footer-mission {
        text-align: center; /* Center mission text */
    }

    .footer-social {
        justify-content: center; /* Center social links */
    }

    .footer-links-group {
        grid-template-columns: 1fr;
        text-align: center; /* Center footer links */
    }

    .footer-column {
        margin-bottom: 24px;
    }

    .comparison-header,
    .comp-row {
        grid-template-columns: 1.5fr 0.75fr 0.75fr;
    }
}

/* Mobile Menu Styles - ADD THIS SECTION */

/* Mobile menu hidden by default */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 24px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        border-top: 1px solid var(--gray-border);
        max-height: calc(100vh - 65px);
        overflow-y: auto;
        z-index: 999;
        gap: 0;
    }

    /* Show menu when active */
    .nav-menu.active {
        display: flex;
    }

    /* Stack nav items vertically */
    .nav-item {
        width: 100%;
        margin-bottom: 16px;
    }

    .nav-link {
        display: block;
        padding: 12px 0;
        font-size: 16px;
    }

    /* Dropdown in mobile */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 8px;
        box-shadow: none;
        border: none;
        background: var(--gray-bg);
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    /* Make dropdown toggleable on mobile */
    .dropdown.mobile-open .dropdown-menu {
        display: block;
    }

    /* Hamburger animation when active */
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Hide nav actions in mobile menu, show below */
    .nav-actions {
        display: none;
    }

    /* Add CTA button inside mobile menu */
    .nav-menu.active::after {
        content: '';
        display: block;
        margin-top: 24px;
    }
}