/* ===================================
   B2BEE.tech - Clean Minimal Design
   Inspired by Jaro.dev aesthetics
   =================================== */

:root {
    /* Colors */
    --white: #ffffff;
    --bg: #fafafa;
    --bg-alt: #f4f4f5;

    --black: #2d4a6f;
    --gray-900: #1e3a5f;
    --gray-700: #3d5a7f;
    --gray-500: #71717a;
    --gray-400: #a1a1aa;
    --gray-300: #d4d4d8;
    --gray-200: #e4e4e7;
    --gray-100: #f4f4f5;

    --primary: #f5c518;
    --primary-light: #ffd84d;
    --primary-dark: #d4a800;
    --primary-bg: rgba(245, 197, 24, 0.12);

    --amber: #f5c518;
    --green: #10b981;
    --green-bg: rgba(16, 185, 129, 0.08);

    /* Typography */
    --font-display: 'Manrope', sans-serif;
    --font-body: 'Outfit', sans-serif;

    /* Spacing */
    --container: 1140px;
    --section-gap: 140px;

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --duration: 0.25s;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Container */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===================================
   Navigation
   =================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
}

.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 32px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-500);
    transition: color var(--duration) var(--ease);
}

.nav-links a:hover {
    color: var(--black);
}

.nav-cta {
    background: var(--black) !important;
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all var(--duration) var(--ease);
}

.nav-cta:hover {
    background: var(--gray-900) !important;
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
}

.menu-toggle span {
    position: absolute;
    left: 4px;
    width: 24px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: all var(--duration) var(--ease);
}

.menu-toggle span::before,
.menu-toggle span::after {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: all var(--duration) var(--ease);
}

.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }

/* ===================================
   Hero Section
   =================================== */
.hero {
    padding: 160px 0 100px;
    background: var(--white);
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    opacity: 0;
    animation: fadeUp 0.8s var(--ease) forwards;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    animation: fadeUp 0.8s var(--ease) 0.1s forwards;
    opacity: 0;
}

.tag {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary);
    background: var(--primary-bg);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
}

.tag-line {
    width: 32px;
    height: 1px;
    background: var(--gray-300);
}

.tag-text {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 500;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    animation: fadeUp 0.8s var(--ease) 0.2s forwards;
    opacity: 0;
}

.title-accent {
    color: var(--primary);
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--gray-500);
    max-width: 440px;
    margin-bottom: 36px;
    line-height: 1.7;
    animation: fadeUp 0.8s var(--ease) 0.3s forwards;
    opacity: 0;
}

.hero-actions {
    display: flex;
    gap: 16px;
    animation: fadeUp 0.8s var(--ease) 0.4s forwards;
    opacity: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--duration) var(--ease);
}

.btn-primary {
    background: var(--black);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--gray-900);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-ghost {
    background: transparent;
    color: var(--gray-700);
}

.btn-ghost:hover {
    color: var(--black);
    background: var(--gray-100);
}

.btn-outline {
    background: transparent;
    color: var(--black);
    border: 1.5px solid var(--gray-300);
}

.btn-outline:hover {
    border-color: var(--black);
    background: var(--gray-100);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 420px;
    animation: fadeUp 0.8s var(--ease) 0.5s forwards;
    opacity: 0;
}

.visual-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, var(--gray-200) 1px, transparent 1px),
        linear-gradient(to bottom, var(--gray-200) 1px, transparent 1px);
    background-size: 40px 40px;
    border-radius: var(--radius-xl);
    opacity: 0.6;
}

.visual-card {
    position: absolute;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--gray-700);
    box-shadow: var(--shadow-md);
    transition: all var(--duration) var(--ease);
}

.visual-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 44px;
    height: 44px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-700);
}

.card-icon svg {
    width: 22px;
    height: 22px;
}

.card-icon.amber {
    background: var(--primary-bg);
    color: var(--primary);
}

.card-icon.green {
    background: var(--green-bg);
    color: var(--green);
}

.card-1 {
    top: 40px;
    left: 20px;
    animation: float 6s ease-in-out infinite;
}

.card-2 {
    top: 160px;
    right: 20px;
    animation: float 6s ease-in-out infinite 1s;
}

.card-3 {
    bottom: 60px;
    left: 60px;
    animation: float 6s ease-in-out infinite 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ===================================
   Stats Section
   =================================== */
.stats {
    padding: 60px 0;
    background: var(--bg);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: var(--gray-300);
}

/* ===================================
   Products Section
   =================================== */
.products {
    padding: var(--section-gap) 0;
    background: var(--bg);
}

.section-header {
    max-width: 500px;
    margin-bottom: 64px;
}

/* Product Showcase */
.products-showcase {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

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

.product-showcase.reverse {
    grid-template-columns: 1fr 1.2fr;
}

.product-showcase.reverse .product-mockup {
    order: 2;
}

.product-showcase.reverse .product-info {
    order: 1;
}

/* Mockup Styles */
.product-mockup {
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.product-mockup:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
}

.mockup-dots span:first-child { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #ffbd2e; }
.mockup-dots span:last-child { background: #28ca42; }

.mockup-title {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-500);
}

.mockup-content {
    padding: 20px;
    min-height: 280px;
}

/* Kanban Board (Scout) */
.kanban-board {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    height: 100%;
}

.kanban-column {
    background: var(--gray-100);
    border-radius: var(--radius-md);
    padding: 10px;
}

.column-header {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    text-align: center;
}

.column-header.new {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.column-header.contact {
    background: rgba(245, 197, 24, 0.15);
    color: var(--primary-dark);
}

.column-header.qualified {
    background: rgba(16, 185, 129, 0.15);
    color: #059669;
}

.kanban-card {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 10px;
    margin-bottom: 8px;
    border: 1px solid var(--gray-200);
    transition: all 0.2s var(--ease);
}

.kanban-card:hover {
    border-color: var(--primary);
}

.kanban-card.active {
    border-color: var(--green);
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

.card-company {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 4px;
}

.card-score {
    font-size: 0.7rem;
    color: var(--gray-500);
}

/* CFO Dashboard */
.cfo-dashboard {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.cfo-stat {
    background: var(--gray-100);
    border-radius: var(--radius-md);
    padding: 12px;
    text-align: center;
}

.cfo-stat .stat-label {
    font-size: 0.7rem;
    color: var(--gray-500);
    display: block;
    margin-bottom: 4px;
}

.cfo-stat .stat-value {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
}

.cfo-stat .stat-value.green { color: #059669; }
.cfo-stat .stat-value.red { color: #dc2626; }

.cfo-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 80px;
    padding: 12px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
}

.chart-bar {
    flex: 1;
    background: var(--gray-300);
    border-radius: 4px 4px 0 0;
    transition: all 0.3s var(--ease);
}

.chart-bar:hover,
.chart-bar.active {
    background: var(--primary);
}

.cfo-transactions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.transaction-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
}

.tx-name {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--black);
}

.tx-status {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
}

.tx-status.paid {
    background: rgba(16, 185, 129, 0.15);
    color: #059669;
}

.tx-status.pending {
    background: rgba(245, 197, 24, 0.15);
    color: var(--primary-dark);
}

/* Product Info */
.product-info {
    padding: 20px 0;
}

.product-info .product-tag {
    margin-bottom: 16px;
}

.product-info .product-name {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 16px;
}

.product-info .product-desc {
    color: var(--gray-500);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.product-info .product-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 28px;
}

.product-info .product-features li {
    font-size: 0.9rem;
    color: var(--gray-700);
    padding-left: 20px;
    position: relative;
}

.product-info .product-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--black);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 40px;
    transition: all var(--duration) var(--ease);
}

.product-card:hover {
    border-color: var(--gray-300);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.product-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.product-icon {
    width: 56px;
    height: 56px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-700);
}

.product-icon svg {
    width: 28px;
    height: 28px;
}

.product-icon.amber {
    background: var(--primary-bg);
    color: var(--primary);
}

.product-tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-500);
    background: var(--gray-100);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
}

.product-tag.amber {
    color: var(--primary);
    background: var(--primary-bg);
}

.product-name {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.product-desc {
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 28px;
}

.product-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 32px;
}

.product-features li {
    font-size: 0.9rem;
    color: var(--gray-700);
    padding-left: 20px;
    position: relative;
}

.product-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--gray-700);
    transition: all var(--duration) var(--ease);
}

.product-link:hover {
    color: var(--black);
    gap: 12px;
}

.product-link.amber:hover {
    color: var(--primary);
}

/* ===================================
   About Section
   =================================== */
.about {
    padding: var(--section-gap) 0;
    background: var(--bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.about-content .section-title {
    margin-bottom: 24px;
}

.about-text {
    color: var(--gray-500);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-item {
    display: flex;
    gap: 24px;
}

.feature-number {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gray-400);
    flex-shrink: 0;
    padding-top: 2px;
}

.feature-content h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 6px;
}

.feature-content p {
    color: var(--gray-500);
    font-size: 0.95rem;
}

/* ===================================
   CTA Section
   =================================== */
.cta {
    padding: var(--section-gap) 0;
}

.cta-box {
    background: var(--black);
    border-radius: var(--radius-xl);
    padding: 80px;
    text-align: center;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-desc {
    color: var(--gray-400);
    font-size: 1.1rem;
    max-width: 400px;
    margin: 0 auto 36px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.cta-actions .btn-primary {
    background: var(--white);
    color: var(--black);
}

.cta-actions .btn-primary:hover {
    background: var(--gray-100);
}

.cta-actions .btn-outline {
    color: var(--white);
    border-color: var(--gray-500);
}

.cta-actions .btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

/* ===================================
   Footer
   =================================== */
.footer {
    padding: 60px 0 40px;
    background: var(--bg);
    border-top: 1px solid var(--gray-200);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    margin-bottom: 48px;
}

.footer-brand p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-top: 12px;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col a {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 10px;
    transition: color var(--duration) var(--ease);
}

.footer-col a:hover {
    color: var(--black);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--gray-400);
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Responsive
   =================================== */
@media (max-width: 1024px) {
    :root {
        --section-gap: 100px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-visual {
        height: 320px;
    }

    .product-showcase,
    .product-showcase.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-showcase.reverse .product-mockup,
    .product-showcase.reverse .product-info {
        order: unset;
    }

    .product-info .product-name {
        font-size: 1.75rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .kanban-board {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .kanban-column {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        padding: 8px;
    }

    .column-header {
        width: 100%;
        margin-bottom: 4px;
    }

    .kanban-card {
        flex: 1;
        min-width: 100px;
        margin-bottom: 0;
    }

    .cfo-stats {
        grid-template-columns: 1fr;
    }

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

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero-visual {
        height: 280px;
    }

    .card-1 { left: 0; top: 20px; }
    .card-2 { right: 0; top: 120px; }
    .card-3 { left: 20px; bottom: 20px; }

    .stats-grid {
        flex-direction: column;
        gap: 32px;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

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

    .product-card {
        padding: 32px;
    }

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

    .cta-box {
        padding: 48px 32px;
    }

    .cta-actions {
        flex-direction: column;
    }

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        gap: 48px;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .visual-card {
        padding: 16px 18px;
        font-size: 0.85rem;
    }

    .card-icon {
        width: 36px;
        height: 36px;
    }

    .card-icon svg {
        width: 18px;
        height: 18px;
    }
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
}
