* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    background: var(--bg-main);
    color: var(--text-main);
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 22px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--brand);
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    color: var(--text-main);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--border-hover);
}

:root {
    --surface: #111827;
    --primary: #2563eb;

    /* Background */
    --background: #0b1120;
    --bg-main: #080d18;
    --bg-section: #0b1120;
    --bg-card: #111827;

    /* Borders */
    --border: #1e293b;
    --border-hover: #334155;

    /* Text */
    --text: #f8fafc;
    --text-main: #f8fafc;
    --text-secondary: #cbd5e1;
    --muted: #94a3b8;

    /* Brand */
    --brand: #2563eb;
    --brand-light: #60a5fa;
    --brand-dark: #1e3a8a;

    /* Effects */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;

    /* Layout */
    --container-width: 1200px;
}

.container {
    width: min(
        calc(100% - 40px),
        var(--container-width)
    );
    margin: 0 auto;
}

/* Navbar */
.header {
    padding: 30px 0;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 24px;
    font-weight: 700;
}

.menu {
    display: flex;
    gap: 35px;
}

.menu a {
    color: var(--muted);
    text-decoration: none;
}

.menu a:hover {
    color: var(--text);
}

/* Buttons */
.button {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.primary {
    background: var(--primary);
    color: white;
}

.secondary {
    border: 1px solid #334155;
    color: var(--text);
}

/* Hero */
.hero {
    position: relative;
    padding: 110px 0 140px;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(37, 99, 235, 0.08);
    filter: blur(120px);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.hero-content {
    animation:
        heroContentIn 0.8s ease both;
}

@keyframes heroContentIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: clamp(48px, 5vw, 72px);
    line-height: 1.05;
    letter-spacing: -2px;
    font-weight: 700;
}

.hero h1 span {
    display: block;
    background:
        linear-gradient(
            135deg,
            #60a5fa,
            #2563eb
        );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    margin-top: 25px;
    color: var(--muted);
    font-size: 20px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

/* Dashboard */
.dashboard-preview {
    height: 420px;
    background: var(--surface);
    border-radius: 20px;
    border: 1px solid #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    box-shadow:
        0 30px 80px rgba(0,0,0,.4);
}

/* Footer */
footer {
    padding: 40px 0;
    color: var(--muted);
}

/* ========================================
   Features Section
======================================== */

.features {
    padding: 120px 0 140px;
    border-top: 1px solid #1e293b;
}

/* Section Header */
.section-header {
    max-width: 700px;
    margin: 0 auto 70px;
    text-align: center;
}

.section-label {
    display: inline-block;
    margin-bottom: 20px;
    color: #60a5fa;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
}

.section-header h2 {
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.section-header p {
    max-width: 600px;
    margin: 24px auto 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Feature Card */
.feature-card {
    position: relative;
    padding: 32px;
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid #1e293b;
    border-radius: 14px;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #334155;
    background: rgba(17, 24, 39, 0.9);
}

/* Feature Icon */
.feature-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background: rgba(37, 99, 235, 0.12);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 10px;
    color: #60a5fa;
    font-size: 20px;
    font-weight: 600;
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 19px;
}

.feature-card p {
    min-height: 80px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.feature-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: #60a5fa;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.feature-card a span {
    transition: transform 0.2s ease;
}

.feature-card:hover a span {
    transform: translateX(4px);
}

/* ========================================
   Product Preview
======================================== */
.product-preview {
    padding: 140px 0;
    overflow: hidden;
    border-top: 1px solid #1e293b;
}

.product-preview-content {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 80px;
}

/* Text */
.product-preview-text h2 {
    margin-top: 10px;
    font-size: clamp(38px, 4vw, 56px);
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.product-preview-text h2 span {
    display: block;
    color: #60a5fa;
}

.product-preview-text > p {
    max-width: 480px;
    margin-top: 25px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}



/* Benefits */
.preview-benefits {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 45px;
}

.preview-benefit {
    display: flex;
    gap: 15px;
}

.benefit-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.3);
    color: #60a5fa;
    font-size: 12px;
    font-weight: 700;
}

.preview-benefit strong {
    display: block;
    margin-bottom: 5px;
    font-size: 15px;
}

.preview-benefit p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

/* Dashboard Container */
.product-dashboard {
    position: relative;
    min-width: 0;
}

.product-dashboard-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(37, 99, 235, 0.1);
    filter: blur(100px);
    border-radius: 50%;
}

.product-dashboard-window {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 14px;
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(37, 99, 235, 0.08);
    transform: perspective(1200px) rotateY(-4deg);
    transition: transform 0.5s ease;
}

.product-dashboard-window:hover {
    transform: perspective(1200px) rotateY(0deg);
}

/* ========================================
   Solutions Section
======================================== */
.solutions {
    padding: 140px 0;
    border-top: 1px solid #1e293b;
}

.section-header h2 span {
    display: block;
    color: #60a5fa;
}

/* Solutions Grid */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Solution Card */
.solution-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 35px;
    background: #111827;
    border: 1px solid #1e293b;
    border-radius: 16px;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-6px);
    border-color: #334155;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.25);
}

/* Featured Card */
.solution-card.featured {
    border-color: rgba(37, 99, 235, 0.5);
    background:
        linear-gradient(
            180deg,
            rgba(37, 99, 235, 0.08),
            rgba(17, 24, 39, 1) 40%
        );
}

.solution-card.featured::before {
    content: "RECOMMENDED";
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 5px 9px;
    border-radius: 5px;
    background: rgba(37, 99, 235, 0.15);
    color: #60a5fa;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Card Top */
.solution-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.solution-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: rgba(37, 99, 235, 0.12);
    border: 1px solid rgba(37, 99, 235, 0.2);
    color: #60a5fa;
    font-size: 18px;
}

.solution-label {
    color: #64748b;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

/* Card Content */
.solution-card h3 {
    max-width: 280px;
    margin-bottom: 18px;
    font-size: 25px;
    line-height: 1.25;
    letter-spacing: -0.5px;
}


.solution-card > p {
    min-height: 85px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}



/* Feature List */
.solution-card ul {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin: 30px 0;
    padding: 0;
    list-style: none;
}


.solution-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cbd5e1;
    font-size: 13px;
}


.solution-card li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.12);
    color: #60a5fa;
    font-size: 9px;
}

/* Card Link */
.solution-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: #60a5fa;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.solution-card a span {
    transition: transform 0.2s ease;
}

.solution-card a:hover span {
    transform: translateX(4px);
}

/* ========================================
   Infrastructure Section
======================================== */
.infrastructure {
    padding: 140px 0;
    border-top: 1px solid #1e293b;
}

/* Grid */
.infrastructure-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

/* Card */
.infrastructure-card {
    position: relative;
    padding: 30px;
    background: rgba(17, 24, 39, 0.5);
    border: 1px solid #1e293b;
    border-radius: 14px;
    overflow: hidden;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.infrastructure-card:hover {
    transform: translateY(-5px);
    background: rgba(17, 24, 39, 0.8);
    border-color: #334155;
}

/* Icon */
.infrastructure-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 10px;
    color: #60a5fa;
    font-size: 19px;
    font-weight: 600;
}

/* Content */
.infrastructure-card h3 {
    margin-bottom: 14px;
    font-size: 18px;
}

.infrastructure-card p {
    min-height: 105px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

/* Bottom Line */
.infrastructure-line {
    width: 100%;
    height: 1px;
    margin: 25px 0 15px;
    background: #1e293b;
}

/* Tag */
.infrastructure-tag {
    color: #64748b;
    font-size: 11px;
}

/* ========================================
   Technologies Section
======================================== */
.technologies {
    padding: 140px 0;
    border-top: 1px solid #1e293b;
}

/* Grid */
.technologies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* Card */
.technology-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 25px;
    background: rgba(17, 24, 39, 0.45);
    border: 1px solid #1e293b;
    border-radius: 12px;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.technology-card:hover {
    transform: translateY(-4px);
    background: rgba(17, 24, 39, 0.8);
    border-color: #334155;
}

/* Icon */
.technology-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #172554;
    border: 1px solid #1e3a8a;
    border-radius: 9px;
    color: #60a5fa;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Content */
.technology-content {
    min-width: 0;
}

.technology-content > span {
    display: block;
    margin-bottom: 7px;
    color: #64748b;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1px;
}

.technology-content h3 {
    margin-bottom: 8px;
    font-size: 17px;
}

.technology-content p {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
}

/* ========================================
   Final CTA
======================================== */
.final-cta {
    padding: 120px 0 140px;
}

/* CTA Box */
.cta-box {
    position: relative;
    overflow: hidden;
    padding: 100px 40px;
    background:
        linear-gradient(
            135deg,
            rgba(30, 58, 138, 0.25),
            rgba(15, 23, 42, 0.95)
        );
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 20px;
    text-align: center;
}

/* Glow */
.cta-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(37, 99, 235, 0.12);
    filter: blur(100px);
    border-radius: 50%;
    pointer-events: none;
}

/* Content */
.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    max-width: 800px;
    margin: 15px auto 0;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.cta-content h2 span {
    display: block;
    color: #60a5fa;
}

.cta-content > p {
    max-width: 600px;
    margin: 25px auto 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

/* ========================================
   FAQ Section
======================================== */
.faq {
    padding: 140px 0;
    border-top: 1px solid #1e293b;
}

/* FAQ List */
.faq-list {
    max-width: 850px;
    margin: 0 auto;
    border-top: 1px solid #1e293b;
}

/* FAQ Item */
.faq-item {
    border-bottom: 1px solid #1e293b;
}

/* Question */
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 25px 5px;
    background: transparent;
    border: none;
    color: #f8fafc;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
}

/* Icon */
.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #334155;
    border-radius: 50%;
    color: #60a5fa;
    font-size: 18px;
    font-weight: 300;
    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

/* Answer */
.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}

.faq-answer p {
    overflow: hidden;
    max-width: 700px;
    margin: 0;
    padding: 0 60px 0 5px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

/* Active */
.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-item.active .faq-answer p {
    padding-bottom: 25px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: rgba(37, 99, 235, 0.1);
}

/* ========================================
   Footer
======================================== */
.footer {
    padding: 70px 0 30px;
    border-top: 1px solid #1e293b;
    background: #080d18;
}

/* Footer Main */
.footer-main {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 50px;
    padding-bottom: 60px;
}

/* Brand */
.footer-brand p {
    max-width: 280px;
    margin-top: 18px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

/* Columns */
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column h4 {
    margin-bottom: 8px;
    color: #f8fafc;
    font-size: 13px;
}

.footer-column a {
    color: #64748b;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #e2e8f0;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 25px;
    border-top: 1px solid #1e293b;
    color: #475569;
    font-size: 11px;
}

/* Social */
.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-social a:hover {
    color: #e2e8f0;
}

/* ========================================
   Navbar
======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(8, 13, 24, 0.75);
    border-bottom: 1px solid rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}


.navbar-inner {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    color: var(--text-main);
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-decoration: none;
}

/* Desktop Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
    margin-right: 35px;
}

.nav-links a {
    color: var(--muted);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s ease;
}


.nav-links a:hover {
    color: var(--text-main);
}



/* Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}


.nav-login {
    color: var(--text-secondary);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s ease;
}


.nav-login:hover {
    color: var(--text-main);
}

.nav-cta {
    min-height: 40px;
    padding: 0 18px;
    font-size: 13px;
}

/* Mobile Button */
.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.mobile-menu-button span {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--text-secondary);
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
}

/* ========================================
   Scroll Reveal Animations
======================================== */


.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(25px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.reveal-stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.visible > *:nth-child(1) {
    transition-delay: 0.05s;
}


.reveal-stagger.visible > *:nth-child(2) {
    transition-delay: 0.1s;
}


.reveal-stagger.visible > *:nth-child(3) {
    transition-delay: 0.15s;
}

.reveal-stagger.visible > *:nth-child(4) {
    transition-delay: 0.2s;
}

.reveal-stagger.visible > *:nth-child(5) {
    transition-delay: 0.25s;
}

.reveal-stagger.visible > *:nth-child(6) {
    transition-delay: 0.3s;
}

.reveal-stagger.visible > *:nth-child(7) {

    transition-delay: 0.35s;
}

.reveal-stagger.visible > *:nth-child(8) {
    transition-delay: 0.4s;
}

.reveal-stagger.visible > *:nth-child(9) {
    transition-delay: 0.45s;
}

.hero-dashboard {
    animation:
        heroDashboardIn 1s ease 0.15s both,
        dashboardFloat 6s ease-in-out 1.2s infinite;
}

@keyframes dashboardFloat {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes heroDashboardIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar.scrolled {
    background:
        rgba(8, 13, 24, 0.95);
    border-bottom-color:
        rgba(51, 65, 85, 0.8);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 900px) {
    .menu {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        margin-top: 30px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-preview-content {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .product-preview-text {
        max-width: 650px;
        margin: auto;
    }

    .product-dashboard-window {
        transform: none;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        max-width: 650px;
        margin: 0 auto;
    }

    .infrastructure-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .technologies-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .nav-links,
    .nav-actions {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }

    .mobile-menu {
        display: block;
        max-height: 0;
        overflow: hidden;
        background: rgba(8, 13, 24, 0.98);
        border-top: 1px solid transparent;
        transition:
            max-height 0.35s ease,
            border-color 0.35s ease;
    }

    .mobile-menu.active {
        max-height: 500px;
        border-top-color: var(--border);
    }

    .mobile-menu-links {
        display: flex;
        flex-direction: column;
        padding: 20px;
        gap: 4px;
    }


    .mobile-menu-links a {
        padding: 14px 10px;
        color: var(--text-secondary);
        font-size: 15px;
        text-decoration: none;
        border-radius: var(--radius-sm);
        transition:
            background 0.2s ease,
            color 0.2s ease;
    }

    .mobile-menu-links a:hover {
        background: rgba(255, 255, 255, 0.04);
        color: var(--text-main);
    }

    .mobile-menu-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 0 20px 25px;
    }

    .mobile-menu-actions .nav-login {
        padding: 12px;
        text-align: center;
        border: 1px solid var(--border);
        border-radius: var(--radius-sm);
    }

    .mobile-menu-actions .btn {
        width: 100%;
    }

    .mobile-menu-button.active span:nth-child(1) {
        transform:
            translateY(6px)
            rotate(45deg);
    }

    .mobile-menu-button.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-button.active span:nth-child(3) {
        transform:
            translateY(-6px)
            rotate(-45deg);
    }
}

@media (max-width: 600px) {
    .container {
        width: min(
            calc(100% - 30px),
            var(--container-width)
        );
    }


    .hero {
        padding: 180px 0 140px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .dashboard-preview {
        height: 400px;
    }

    .dashboard-sidebar {
        width: 90px;
    }

    .dashboard-main {
        padding: 15px;
    }

    .sidebar-item {
        font-size: 7px;
    }

    .stats-grid {
        gap: 6px;
    }

    .stat-card {
        padding: 9px;
    }

    .features {
        padding: 90px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 28px;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .section-header p {
        font-size: 16px;
    }

    .product-preview {
        padding: 90px 0;
    }

    .product-preview-text h2 {
        font-size: 40px;
    }

    .product-sidebar {
        width: 95px;
    }

    .product-main {
        padding: 15px;
    }

    .product-window-content {
        min-height: 380px;
    }

    .product-stats {
        gap: 6px;
    }

    .product-stat {
        padding: 10px;
    }

    .product-stat strong {
        font-size: 16px;
    }

    .activity-chart {
        gap: 3px;
    }
    .solutions {
        padding: 90px 0;
    }

    .solution-card {
        padding: 28px;
    }

    .solution-card h3 {
        font-size: 23px;
    }

    .solution-card > p {
        min-height: auto;
    }

    .infrastructure {
        padding: 90px 0;
    }

    .infrastructure-grid {
        grid-template-columns: 1fr;
    }

    .infrastructure-card p {
        min-height: auto;
    }

    .technologies {
        padding: 90px 0;
    }

    .technologies-grid {
        grid-template-columns: 1fr;
    }

    .technology-card {
        padding: 22px;
    }

    .final-cta {
        padding: 80px 0 100px;
    }

    .cta-box {
        padding: 70px 25px;
    }

    .cta-content h2 {
        font-size: 40px;
    }

    .cta-content > p {
        font-size: 15px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .faq {
        padding: 90px 0;
    }

    .faq-question {
        padding: 22px 0;
        font-size: 15px;
    }

    .faq-answer p {
        padding-left: 0;
        padding-right: 30px;
    }

    .footer {
        padding: 60px 0 25px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-social {
        gap: 15px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}