:root {
    /* --- COLOR SYSTEM (HSL) --- */
    --hue-primary: 220;
    --hue-accent: 30;

    /* Dark Mode Defaults */
    --bg-dark: #020205;
    --bg-panel: rgba(255, 255, 255, 0.03);
    --bg-panel-hover: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 255, 255, 0.08);
    --text-main: #ffffff;
    --text-muted: #9CA3AF;
    --text-dim: #6B7280;

    --accent: hsl(var(--hue-accent), 100%, 50%);
    --accent-glow: hsla(var(--hue-accent), 100%, 50%, 0.4);
    --blue: hsl(var(--hue-primary), 90%, 60%);
    --blue-glow: hsla(var(--hue-primary), 90%, 60%, 0.4);

    --gradient-main: linear-gradient(135deg, #fff 0%, #a5a5a5 100%);
    --gradient-glow: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.15), rgba(255, 138, 0, 0.05));

    --font-main: 'Inter', sans-serif;
    --font-display: 'Space Grotesk', sans-serif;

    --nav-bg: rgba(2, 2, 5, 0.7);
}

[data-theme="light"] {
    --bg-dark: #ffffff;
    --bg-panel: rgba(0, 0, 0, 0.03);
    --bg-panel-hover: rgba(0, 0, 0, 0.05);
    --border: rgba(0, 0, 0, 0.1);
    --text-main: #111827;
    --text-muted: #4B5563;
    --text-dim: #9CA3AF;

    --nav-bg: rgba(255, 255, 255, 0.8);
    --gradient-main: linear-gradient(135deg, #111827 0%, #4B5563 100%);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
    transition: background-color 0.4s ease, color 0.4s ease;
}

/* --- UTILS --- */
.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-display);
}

/* --- BACKGROUND FX --- */
.bg-watermark {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120vw;
    max-width: 1400px;
    height: auto;
    z-index: -2;
    opacity: 0.04;
    pointer-events: none;
}

.global-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    background:
        radial-gradient(circle at 10% 10%, var(--blue-glow), transparent 40%),
        radial-gradient(circle at 90% 90%, var(--accent-glow), transparent 40%);
    opacity: 0.4;
    filter: blur(80px);
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MDAiIGhlaWdodD0iNTAwIj48ZmlsdGVyIGlkPSJnoiPjxmZVR1cmJ1bGVuY2UgdHlwZT0iZnJhY3RhbE5vaXNlIiBiYXNlRnJlcXVlbmN5PSIwLjY1IiBzdGl0Y2hUaWxlcz0ic3RpdGNoIi8+PC9maWx0ZXI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsdGVyPSJ1cmwoI24pIiBvcGFjaXR5PSIwLjAzIi8+PC9zdmc+');
    z-index: 9999;
    opacity: 0.4;
    pointer-events: none;
    mix-blend-mode: overlay;
}

/* --- NAVBAR --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    padding: 15px 0;
    transition: all 0.3s;
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: -0.5px;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    opacity: 0.9;
}

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

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: 0.3s;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--accent);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.theme-btn,
.lang-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-main);
    width: 40px;
    height: 40px;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-btn:hover,
.lang-btn:hover {
    background: var(--bg-panel-hover);
    border-color: var(--text-muted);
}

/* --- BURGER MENU --- */
.nav-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.bar {
    width: 25px;
    height: 2px;
    background-color: var(--text-main);
    transition: 0.3s;
}

/* --- BUTTONS --- */
.btn-glow {
    background: linear-gradient(135deg, var(--accent), #ff5e00);
    color: white;
    padding: 12px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 20px var(--accent-glow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
    filter: brightness(1.1);
}

.btn-glow.small {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-glow.big {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-main);
    padding: 12px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline:hover {
    background: var(--bg-panel-hover);
    border-color: var(--text-main);
}

/* --- HERO --- */
.hero {
    min-height: 100vh;
    padding-top: 15vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    z-index: 2;
}

/* Partner Strip */
.partners-label {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.partners-strip {
    margin-top: 100px;
}

.partners-logos {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    opacity: 0.6;
}

.partners-logos i {
    font-size: 2.5rem;
    transition: 0.3s;
}

.partners-logos i:hover {
    color: var(--accent);
    transform: scale(1.1);
    opacity: 1;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
    font-weight: 800;
}

.badge-glow {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 30px;
    background: rgba(255, 138, 0, 0.05);
    border: 1px solid rgba(255, 138, 0, 0.3);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    backdrop-filter: blur(5px);
}

.badge-outline {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid var(--text-muted);
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.35rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--text-main);
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% {
        top: 6px;
        opacity: 1;
    }

    100% {
        top: 20px;
        opacity: 0;
    }
}

/* --- SECTIONS --- */
.section {
    padding: 120px 0;
    position: relative;
}

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

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

.section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    line-height: 1.1;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.narrow {
    max-width: 800px;
}

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

.mb-50 {
    margin-bottom: 50px;
}

.mb-40 {
    margin-bottom: 40px;
}



/* --- PRODUCTS GRID --- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.product-card {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
}

.product-card.active-card:hover {
    border-color: var(--accent);
    box-shadow: 0 20px 50px -10px var(--accent-glow);
}

.prod-bg-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    filter: blur(80px);
    opacity: 0.15;
    border-radius: 50%;
    transition: 0.5s;
}

.prod-bg-glow.aero {
    background: var(--accent);
}

.prod-bg-glow.ledger {
    background: var(--blue);
}

.product-card:hover .prod-bg-glow {
    opacity: 0.3;
    transform: scale(1.2);
}

.prod-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.prod-icon.aero {
    background: rgba(255, 138, 0, 0.1);
    color: var(--accent);
}

.prod-icon.ledger {
    background: rgba(59, 130, 246, 0.1);
    color: var(--blue);
}

.feature-list {
    list-style: none;
    margin: 20px 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.feature-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list i {
    color: var(--accent);
    font-size: 0.8rem;
}

/* --- AEROOPS GALLERY --- */
.showcase-gallery {
    max-width: 1000px;
    margin: 0 auto 80px;
}

.gallery-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    background: #0F1014;
    /* Removed aspect-ratio to let image define height */
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
    color: #fff;
    font-weight: 600;
    gap: 10px;
    backdrop-filter: blur(2px);
}

.gallery-main:hover .gallery-overlay {
    opacity: 1;
}

.gallery-thumbs {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.thumb {
    width: 120px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    border: 2px solid transparent;
    transition: 0.3s;
    flex-shrink: 0;
}

.thumb.active,
.thumb:hover {
    opacity: 1;
    border-color: var(--accent);
}

.thumb img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-image-container {
    position: relative;
    width: 100%;
}

.main-dash-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-main:hover .main-dash-img {
    transform: scale(1.02);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
    color: #fff;
    font-weight: 600;
    gap: 10px;
    backdrop-filter: blur(2px);
    z-index: 2;
}

/* --- FAQ --- */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--bg-panel);
    overflow: hidden;
}

.accordion-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    transition: 0.3s;
}

.accordion-header:hover {
    background: var(--bg-panel-hover);
    color: var(--accent);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
    color: var(--text-muted);
}

.accordion-item.active .accordion-body {
    padding-bottom: 20px;
}

.accordion-item.active .accordion-header i {
    transform: rotate(45deg);
    color: var(--accent);
}

/* --- CALCULATOR --- */
.calculator-card {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    color: var(--text-main);
    transition: 0.3s;
}

[data-theme="light"] .calculator-card {
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.modern-select {
    width: 100%;
    padding: 15px;
    background: var(--bg-panel-hover);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-main);
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.modern-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(255, 138, 0, 0.1);
}

.range-slider {
    width: 100%;
    padding: 10px 0;
}

input[type="range"] {
    width: 100%;
    height: 6px;
    background: var(--bg-panel-hover);
    border-radius: 5px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    background: var(--accent);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px var(--accent-glow);
    transition: 0.2s;
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.calc-result {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-panel-hover);
    padding: 20px;
    border-radius: 12px;
    margin-top: 30px;
    border: 1px solid var(--border);
    color: var(--text-main);
}

.price-display {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
}

.full-width {
    width: 100%;
}

/* --- FORMS --- */
.contact-card,
.newsletter-box {
    background: var(--bg-panel);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border);
    max-width: 600px;
    margin: 40px auto 0;
}

.form-row {
    display: flex;
    gap: 20px;
}

.input-group {
    position: relative;
    margin-bottom: 25px;
    flex: 1;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-main);
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.02);
}

.input-group label {
    position: absolute;
    left: 15px;
    top: 15px;
    color: var(--text-muted);
    pointer-events: none;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    background: var(--bg-dark);
    padding: 0 5px;
}

.input-group input:focus~label,
.input-group input:not(:placeholder-shown)~label,
.input-group textarea:focus~label,
.input-group textarea:not(:placeholder-shown)~label {
    top: -10px;
    font-size: 0.8rem;
    color: var(--accent);
}

.submit-btn {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.loading-spinner {
    display: none;
    margin-left: 10px;
}

.submit-btn.loading .btn-text {
    visibility: hidden;
}

.submit-btn.loading .loading-spinner {
    display: inline-block;
    visibility: visible;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.news-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.news-form input {
    flex: 1;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
}

.news-form button {
    width: 50px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: 0.3s;
}

.news-form button:hover {
    background: #ff5e00;
}

/* --- LIGHTBOX --- */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.lightbox.active {
    display: flex;
    animation: fadeIn 0.3s;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
}

/* --- CHAT KEY --- */
.chat-widget-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 30px var(--blue-glow);
    cursor: pointer;
    z-index: 100;
    transition: 0.3s;
    animation: pulse-blue 3s infinite;
}

.chat-widget-btn:hover {
    transform: scale(1.1);
}

@keyframes pulse-blue {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(59, 130, 246, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

/* --- SCROLLYTELLING FIXES --- */
.scrolly-section {
    padding: 50px 0;
}

.scrolly-container {
    display: flex;
    justify-content: space-between;
}

.scrolly-text-col {
    width: 45%;
}

.step-text {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0.2;
    transition: opacity 0.5s, transform 0.5s;
    padding-left: 20px;
    border-left: 2px solid var(--border);
}

.step-text.active {
    opacity: 1;
    border-left-color: var(--accent);
    transform: translateX(10px);
}

.step-num {
    font-size: 3rem;
    font-weight: 800;
    color: var(--border);
    line-height: 1;
    font-family: var(--font-display);
}

.scrolly-visual-col {
    width: 45%;
    position: sticky;
    top: 20vh;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-card {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.visual-card.active {
    opacity: 1;
    transform: scale(1);
}

.icon-big {
    font-size: 5rem;
    color: var(--blue);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 30px var(--blue-glow));
}


/* --- FEATURES GRID --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.05);
}

.glass-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.glass-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-align: center;
}

.glass-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    opacity: 0;
    transition: 0.5s;
}

.glass-card:hover .card-glow {
    opacity: 0.1;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {

    .navbar .nav-links,
    .navbar .nav-actions {
        display: none;
    }

    /* Hide default menu */
    .nav-toggle {
        display: flex;
    }

    /* Show burger */
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--bg-dark);
        padding: 30px;
        border-bottom: 1px solid var(--border);
        gap: 20px;
        animation: slideDown 0.3s ease;
    }

    .nav-menu.active .nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nav-menu.active .nav-actions {
        display: flex;
        justify-content: center;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .bg-watermark {
        display: none;
    }

    .scrolly-container {
        flex-direction: column;
    }

    .scrolly-text-col,
    .scrolly-visual-col {
        width: 100%;
    }

    .scrolly-visual-col {
        position: relative;
        top: 0;
        height: 300px;
        margin-bottom: 40px;
    }

    .products-grid,
    .features-grid,
    .dash-kpi-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 0;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-item:nth-child(odd) {
        text-align: left;
    }

    .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 11px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}