/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600;1,700;1,800&display=swap');

:root {
    /* Colors from screenshot */
    --yellow-primary: #7C3AED;
    --dark-bg: #1E1F21;
    --light-bg: #E0E0E0;
    --white: #FFFFFF;
    --text-dark: #1E1F21;
    --text-light: #E0E0E0;
    --border-color: #333;

    /* Typography */
    --font-primary: 'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-secondary: 'Mulish', sans-serif;
}

html, body {
    font-family: var(--font-secondary);
    color: var(--text-dark);
    background-color: var(--light-bg);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Navigation */
.navbar {
    background-color: var(--light-bg);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 24px;
    font-weight: 700;
}

.logo-link {
    text-decoration: none;
    display: inline-block;
}

.logo-link:hover .logo-icon {
    transform: translateY(-2px);
    transition: transform 0.3s;
}

.logo-icon {
    height: 40px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 40px;
    margin-left: auto;
    margin-right: 40px;
}

.nav-menu .btn-demo {
    display: none;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: opacity 0.3s;
}

.nav-link:hover {
    opacity: 0.7;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

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

.btn-demo {
    background: var(--white);
    border: 2px solid var(--text-dark);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-demo:hover {
    background: var(--yellow-primary);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: var(--yellow-primary);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

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

.hero-content {
    max-width: 600px;
}

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

.hero-subtitle-text {
    font-size: 64px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 32px;
    color: var(--white);
    opacity: 0.8;
}

.btn-primary {
    background: var(--white);
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: var(--yellow-primary);
    transform: translateY(-2px);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.animated-graphic {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    object-fit: contain;
}

.about-hero-animation {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: contain;
}

/* Logo Strip */
.logo-strip {
    background: var(--white);
    padding: 60px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.logo-strip .container {
    overflow: hidden;
    position: relative;
}

.logo-strip .container::before,
.logo-strip .container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.logo-strip .container::before {
    left: 0;
    background: linear-gradient(to right, var(--white), transparent);
}

.logo-strip .container::after {
    right: 0;
    background: linear-gradient(to left, var(--white), transparent);
}

.logo-grid {
    display: flex;
    gap: 80px;
    align-items: center;
    animation: scroll-logos 30s linear infinite;
    width: max-content;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-logo {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 150px;
}

.partner-logo img {
    max-width: 150px;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.partner-logo img:hover {
    opacity: 1;
}

.partner-logo img[src*="neptune"],
.partner-logo img[src*="amdocs"] {
    max-height: 75px;
    max-width: 200px;
}

.partner-logo img[src*="forcepoint"],
.partner-logo img[src*="mendocino"],
.partner-logo img[src*="nuvei"] {
    max-height: 83px;
    max-width: 220px;
}

/* Dark Background Sections */
.dark-bg {
    background: var(--dark-bg);
    color: var(--text-light);
}

/* Feature Section */
.feature-section {
    padding: 120px 0;
}

.feature-section.dark-bg {
    background: #000000;
}

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

.feature-visual {
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.grid-pattern {
    width: 120%;
    max-width: 504px;
    height: auto;
    border-radius: 20px;
    object-fit: contain;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.section-text {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.feature-list {
    list-style: none;
    padding: 0;
    counter-reset: feature-counter;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 18px;
    counter-increment: feature-counter;
}

.feature-list li:before {
    content: counter(feature-counter) '.';
    position: absolute;
    left: 0;
    color: #9F7AEA;
    font-weight: bold;
    font-size: 18px;
}

/* Product Section */
.product-section {
    padding: 120px 0;
    background: var(--white);
}

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

.widget-text {
    text-align: center;
    max-width: 700px;
    margin: 60px auto 40px;
    font-size: 18px;
    font-weight: 400;
    color: var(--text-dark);
    opacity: 0.7;
}

.section-subtitle {
    font-size: 18px;
    opacity: 0.7;
    margin-top: 16px;
}

.product-visual {
    margin: 60px 0;
}

.dashboard-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    display: block;
}

.product-description {
    text-align: center;
    max-width: 700px;
    margin: 40px auto;
    font-size: 18px;
    opacity: 0.8;
}

.btn-dark {
    background: var(--white);
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    display: block;
    margin: 0 auto;
    text-decoration: none;
}

.btn-dark:hover {
    background: var(--yellow-primary);
    transform: translateY(-2px);
}

/* AI Query Box */
.ai-query-box {
    max-width: 700px;
    margin: 50px auto;
    padding: 24px 32px;
    background: linear-gradient(135deg, rgba(124, 60, 237, 0.08) 0%, rgba(124, 60, 237, 0.02) 100%);
    border: 2px solid rgba(124, 60, 237, 0.2);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(124, 60, 237, 0.08);
    transition: all 0.3s;
    min-height: 80px;
}

.ai-query-box:hover {
    border-color: rgba(124, 60, 237, 0.4);
    box-shadow: 0 12px 32px rgba(124, 60, 237, 0.12);
}

.query-prompt {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    min-height: 50px;
    position: relative;
}

.prompt-icon {
    color: var(--yellow-primary);
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    top: 3px;
}

.rotating-query {
    opacity: 0.9;
    font-family: 'Courier New', monospace;
    flex: 1;
    line-height: 1.4;
}

/* Problems Section */
.problems-section {
    padding: 120px 0;
    background: #1B2022;
}

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

.problems-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.problems-list li {
    margin-bottom: 40px;
}

.problems-list h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--yellow-primary);
}

.problems-list p {
    font-size: 16px;
    opacity: 0.8;
}

.problems-closing {
    font-size: 18px;
    margin-top: 40px;
    font-weight: 600;
    opacity: 0.9;
}

.problems-dots {
    display: flex;
    gap: 60px;
    margin-top: 40px;
    align-items: center;
}

.dot-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--yellow-primary);
    box-shadow: 0 0 20px rgba(124, 60, 237, 0.6);
}

.dot-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-light);
    margin: 0;
}

.problems-visual {
    display: flex;
    justify-content: center;
}

.animated-nodes {
    width: 100%;
    max-width: 400px;
    height: 400px;
    border-radius: 20px;
    object-fit: cover;
}

/* Benefits Section */
.benefits-section {
    padding: 120px 0;
    background: var(--white);
}

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

.benefit-card {
    background: var(--white);
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 20px;
    padding: 48px 32px;
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: rgba(124, 60, 237, 0.1);
    border-radius: 16px;
    margin-bottom: 24px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
}

.card-text {
    font-size: 16px;
    opacity: 0.7;
    line-height: 1.6;
    text-align: center;
}

/* Testimonial Section */
.testimonial-section {
    padding: 100px 0;
    background: var(--yellow-primary);
}

.testimonial-section {
    position: relative;
}

.testimonial-section .container {
    position: relative;
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    min-height: 250px;
}

.testimonial-content {
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
    overflow: hidden;
}

.testimonial-content.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-content.slide-out-left {
    transform: translateX(-100%);
    opacity: 0;
}

.testimonial-content.slide-out-right {
    transform: translateX(100%);
    opacity: 0;
}

.testimonial-content.slide-in-left {
    transform: translateX(-100%);
    opacity: 0;
    transition: none;
}

.testimonial-content.slide-in-right {
    transform: translateX(100%);
    opacity: 0;
    transition: none;
}

.testimonial-quote {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 600;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 40px;
    color: var(--white);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: rgba(0,0,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

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

.author-name {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 4px;
    color: var(--white);
}

.author-title {
    font-size: 14px;
    color: var(--white);
    opacity: 0.8;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 2px solid var(--white);
    color: var(--yellow-primary);
    font-size: 28px;
    font-weight: 700;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.testimonial-nav:hover {
    background: var(--yellow-primary);
    border-color: var(--white);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.testimonial-nav:not(:active):hover {
    transform: translateY(-50%) scale(1.1);
}

.testimonial-prev {
    left: 60px;
}

.testimonial-next {
    right: 60px;
}

/* Bottom CTA Section */
.bottom-cta-section {
    padding: 120px 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: var(--font-primary);
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--white);
}

.cta-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--white);
    opacity: 0.8;
}

.cta-visual {
    position: relative;
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-cyclops-video {
    width: 50%;
    max-width: 300px;
    height: auto;
    object-fit: contain;
}

.cta-button-wrapper {
    text-align: center;
    margin-top: 40px;
}

.tree-graphic {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: contain;
}

.tree-graphic.left {
    align-self: flex-start;
}

.tree-graphic.right {
    align-self: flex-end;
}

.center-animation {
    width: 100%;
    max-width: 200px;
    height: auto;
    object-fit: contain;
    align-self: center;
}

/* Footer */
.footer {
    padding: 80px 0 30px;
}

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

.footer-logo {
    height: 40px;
    width: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

.footer-column h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-column a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.5;
    font-size: 14px;
}

/* Demo Modal Styles */
.demo-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.demo-modal.active {
    display: block;
}

.demo-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.demo-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 640px;
    height: 80vh;
    max-height: 800px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.demo-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

.demo-modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }

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

    .hero-subtitle-text {
        font-size: 52px;
    }

    .section-title {
        font-size: 40px;
    }

    .testimonial-prev {
        left: 40px;
    }

    .testimonial-next {
        right: 40px;
    }

    .footer-top {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px 40px;
        padding-bottom: 30px;
    }

    .footer-contact,
    .soc2-badge,
    .footer-brand,
    .footer-badges-group {
        position: static;
        transform: none;
    }

    .footer-brand {
        width: 100%;
        text-align: center;
        order: 1;
        margin-bottom: 0;
    }

    .footer-contact {
        order: 2;
        bottom: auto;
    }

    .soc2-badge {
        order: 3;
    }

    .footer-badges-group {
        order: 4;
    }
}

@media (max-width: 1165px) {
    .footer .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .footer-top {
        flex-direction: column !important;
        gap: 20px !important;
        align-items: center !important;
        padding-bottom: 20px;
        min-height: auto !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
    }

    .footer-brand {
        position: static !important;
        transform: none !important;
        order: 1;
        margin-bottom: 10px;
        width: 100% !important;
        text-align: center !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        display: flex !important;
        justify-content: center !important;
    }

    .footer-logo {
        height: auto;
        width: 90%;
        max-width: 280px;
        margin: 0 auto;
        display: block;
    }

    .footer-contact {
        position: static !important;
        transform: none !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 12px;
        text-align: center !important;
        align-items: center !important;
        justify-content: center !important;
        bottom: auto !important;
        left: auto !important;
        order: 2;
        margin-bottom: 10px;
        width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .footer-contact p {
        margin: 0;
        width: auto;
        text-align: center;
    }

    .footer-contact p:first-child {
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        width: auto;
        display: inline-block;
        text-align: center;
    }

    .soc2-badge {
        position: static !important;
        transform: none !important;
        height: 70px;
        margin: 0;
        order: 3;
        left: auto !important;
        bottom: auto !important;
    }

    .footer-badges-group {
        position: static !important;
        bottom: auto !important;
        right: auto !important;
        order: 4;
        gap: 20px;
        justify-content: center;
    }

    .gdpr-badge {
        height: 50px;
    }

    .footer-aws img {
        height: 60px;
    }

    .footer-linkedin img {
        height: 50px;
    }
}

@media (max-width: 900px) {
    .logo-icon {
        height: 32px;
        transition: height 0.3s ease;
    }
}

@media (max-width: 768px) {
    .logo-icon {
        height: 28px;
    }

    .container {
        padding: 0 20px;
    }

    .hamburger {
        flex-shrink: 0;
    }

    .footer .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .footer-top {
        flex-direction: column !important;
        gap: 20px !important;
        align-items: center !important;
        padding-bottom: 20px;
        min-height: auto !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
    }

    .footer-brand {
        position: static !important;
        transform: none !important;
        order: 1;
        margin-bottom: 10px;
        width: 100% !important;
        text-align: center !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        display: flex !important;
        justify-content: center !important;
    }

    .footer-logo {
        height: auto;
        width: 90%;
        max-width: 280px;
        margin: 0 auto;
        display: block;
    }

    .footer-contact {
        position: static !important;
        transform: none !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 12px;
        text-align: center !important;
        align-items: center !important;
        justify-content: center !important;
        bottom: auto !important;
        left: auto !important;
        order: 2;
        margin-bottom: 10px;
        width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .footer-contact p {
        margin: 0;
        width: auto;
        text-align: center;
    }

    .footer-contact p:first-child {
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        width: auto;
        display: inline-block;
        text-align: center;
    }

    .soc2-badge {
        position: static !important;
        transform: none !important;
        height: 70px;
        margin: 0;
        order: 3;
        left: auto !important;
        bottom: auto !important;
    }

    .footer-badges-group {
        position: static !important;
        bottom: auto !important;
        right: auto !important;
        order: 4;
        gap: 20px;
        justify-content: center;
    }

    .gdpr-badge {
        height: 50px;
    }

    .footer-aws img {
        height: 60px;
    }

    .footer-linkedin img {
        height: 50px;
    }

    .footer-links {
        margin-top: 20px;
        flex-wrap: wrap;
    }

    .footer-copyright {
        margin-top: 15px;
        margin-bottom: 10px;
    }

    .navbar .container {
        position: relative;
    }

    .hamburger {
        display: flex;
        margin-left: auto;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--light-bg);
        flex-direction: column;
        gap: 0;
        margin: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-bottom: none;
    }

    .nav-menu.active {
        max-height: 400px;
        padding: 20px 0;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }

    .nav-link {
        padding: 16px 60px;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        text-align: center;
        font-size: 18px;
    }

    .nav-cta {
        display: none;
    }

    .nav-menu .btn-demo {
        display: block;
        margin: 20px auto 0;
        width: 50%;
    }

    .hero-container,
    .feature-grid,
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .testimonial-slider {
        padding: 0 70px;
    }

    .testimonial-nav {
        width: 48px;
        height: 48px;
        font-size: 24px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    }

    .testimonial-nav:hover {
        transform: translateY(-50%) scale(1.05);
    }

    .testimonial-prev {
        left: 20px;
    }

    .testimonial-next {
        right: 20px;
    }

    .testimonial-quote {
        font-size: 22px;
    }

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

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

    .hero-subtitle-text {
        font-size: 40px;
    }

    .section-title {
        font-size: 32px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* About Page Styles */
.mission-section,
.what-we-do-section,
.leadership-section,
.investors-section,
.advisory-section,
.cta-section {
    padding: 80px 0;
}

.mission-section {
    background: var(--white);
}

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

.mission-statement {
    font-size: 24px;
    line-height: 1.6;
    margin-top: 24px;
    opacity: 0.8;
}

.what-we-do-section {
    background: var(--light-bg);
}

.what-we-do-section .section-title,
.leadership-section .section-title,
.investors-section .section-title,
.advisory-section .section-title {
    text-align: center;
}

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

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.feature-icon {
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.feature-card p {
    opacity: 0.7;
    line-height: 1.6;
}

.leadership-section {
    background: var(--white);
}

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

.team-card {
    background: var(--light-bg);
    padding: 32px;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: transform 0.3s;
}

.team-card:hover {
    transform: translateY(-8px);
}

.team-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.role {
    opacity: 0.6;
    margin-bottom: 16px;
}

.linkedin-icon {
    margin-top: 16px;
}

.investors-section {
    background: var(--light-bg);
}

.investors-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-top: 60px;
    align-items: center;
}

.investor-item img {
    width: 90%;
    height: auto;
    filter: none;
    opacity: 1;
    transition: all 0.3s;
}

.investor-item:hover img {
    transform: scale(1.05);
    filter: none;
}

.advisory-section {
    background: var(--white);
}

.advisory-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.advisory-card {
    background: var(--light-bg);
    padding: 24px;
    border-radius: 20px;
    text-align: center;
}

.advisor-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

.advisor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.advisor-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.advisor-title {
    opacity: 0.6;
    font-size: 14px;
    margin-bottom: 20px;
}

.advisor-company-logo {
    margin-top: 20px;
}

.advisor-company-logo img {
    max-width: 100px;
    height: auto;
}

.cta-section {
    background: var(--yellow-primary);
    text-align: center;
}

.cta-section .section-title {
    max-width: 700px;
    margin: 0 auto 32px;
    color: var(--white);
}

/* Blog Page Styles */
.blog-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
    grid-auto-rows: 1fr;
}

.blog-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.blog-category {
    display: inline-flex;
    align-items: center;
    background: var(--yellow-primary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    width: fit-content;
}

.blog-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.4;
    color: var(--text-dark);
}

.blog-excerpt {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.7;
    margin-bottom: 24px;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.1);
    font-size: 14px;
}

.blog-author {
    font-weight: 600;
    color: var(--text-dark);
}

.blog-date {
    opacity: 0.6;
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    height: 100%;
}

/* Blog Post Page Styles */
.blog-post-header {
    padding: 80px 0 40px;
    background: var(--light-bg);
    text-align: center;
}

.blog-post-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: nowrap;
}

.blog-post-meta .blog-category,
.blog-post-meta .blog-date {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    margin-bottom: 0;
}

.blog-post-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-dark);
}

.blog-author-info {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    opacity: 0.8;
}

.blog-post-content {
    padding: 60px 0;
    background: var(--white);
}

.blog-post-body {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
}

.blog-post-body h2 {
    font-size: 32px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 24px;
    line-height: 1.3;
}

.blog-post-body h3 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 36px;
    margin-bottom: 16px;
    line-height: 1.4;
}

.blog-post-body h4 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 12px;
}

.blog-post-body p {
    margin-bottom: 20px;
}

.blog-post-body ul,
.blog-post-body ol {
    margin-bottom: 24px;
    padding-left: 32px;
}

.blog-post-body li {
    margin-bottom: 12px;
}

.blog-post-body blockquote {
    border-left: 4px solid var(--yellow-primary);
    padding-left: 24px;
    margin: 32px 0;
    font-style: italic;
    opacity: 0.9;
}

.blog-post-body blockquote p {
    margin-bottom: 0;
}

.blog-post-cta {
    max-width: 800px;
    margin: 60px auto;
    padding: 48px;
    background: var(--light-bg);
    border-radius: 20px;
    text-align: center;
}

.blog-post-cta h3 {
    font-size: 28px;
    margin-bottom: 24px;
}

.blog-post-back {
    max-width: 800px;
    margin: 40px auto 0;
}

/* Legal Pages Styles */
.legal-header {
    padding: 80px 0 40px;
    background: var(--light-bg);
    text-align: center;
}

.legal-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

.legal-date {
    font-size: 16px;
    margin-top: 12px;
    opacity: 0.7;
}

.legal-content {
    padding: 60px 0;
    background: var(--white);
}

.legal-body {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

.legal-body h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.legal-body h2:first-child {
    margin-top: 0;
}

.legal-body h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
    line-height: 1.4;
}

.legal-body p {
    margin-bottom: 16px;
}

.legal-body ul {
    margin-bottom: 20px;
    padding-left: 32px;
}

.legal-body li {
    margin-bottom: 10px;
}

.legal-body a {
    color: var(--text-dark);
    text-decoration: underline;
}

.legal-body a:hover {
    color: var(--yellow-primary);
}

.footer-top {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 10px;
    position: relative;
    flex-wrap: wrap;
    gap: 40px 60px;
}

.soc2-badge {
    height: 109px;
    width: auto;
    opacity: 0.9;
    position: absolute;
    left: 25%;
    bottom: -74.5px;
    transform: translateX(-50%);
}

.footer-badges-group {
    position: absolute;
    right: 0;
    bottom: -60px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gdpr-badge {
    height: 63.48px;
    width: auto;
    opacity: 0.9;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    color: var(--white);
    font-size: 14px;
    opacity: 0.8;
    position: absolute;
    left: 0;
    bottom: -60px;
}

.footer-contact p {
    margin: 0;
    line-height: 1.6;
}

.footer-contact p:first-child {
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-contact a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-contact a:hover {
    opacity: 1;
}

.footer-aws {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.footer-aws img {
    height: 80px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-aws a:hover img {
    opacity: 1;
}

.aws-badge {
    filter: brightness(0) invert(1);
}

.footer-linkedin {
    display: flex;
    align-items: center;
}

.footer-linkedin img {
    height: 51px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-linkedin a:hover img {
    opacity: 1;
}

.footer-links {
    text-align: center;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.footer-link {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-link:hover {
    opacity: 1;
}

.footer-separator {
    color: var(--white);
    opacity: 0.5;
}

.footer-copyright {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--white);
    font-size: 14px;
    opacity: 0.6;
}

/* Responsive for About and Blog Pages */
@media (max-width: 768px) {
    .features-grid,
    .team-grid,
    .investors-list,
    .advisory-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-post-title {
        font-size: 32px;
    }

    .blog-post-body h2 {
        font-size: 24px;
    }

    .blog-post-body h3 {
        font-size: 20px;
    }

    .blog-post-cta {
        padding: 32px 20px;
    }

    .blog-post-cta h3 {
        font-size: 22px;
    }

    .legal-title {
        font-size: 32px;
    }

    .legal-body h2 {
        font-size: 24px;
    }

    .legal-body h3 {
        font-size: 20px;
    }

}

@media (max-width: 430px) {
    .footer-badges-group {
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
    }

    .footer-aws {
        margin-right: 0 !important;
    }
}

@media (max-width: 400px) {
    .container {
        padding: 0 15px;
    }

    .footer .container {
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .footer-brand {
        padding: 0 !important;
    }

    .footer-contact {
        padding: 0 !important;
    }

    .footer-logo {
        width: 85%;
        max-width: 220px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (min-width: 1025px) and (max-width: 1280px) {
    .advisory-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Cookie Consent Banner */
.cookie-consent {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    padding: 24px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-consent.active {
    display: block;
}

.cookie-consent-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.cookie-consent-text {
    color: var(--white);
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
}

.cookie-consent-text a {
    color: var(--yellow-primary);
    text-decoration: none;
    transition: opacity 0.3s;
    font-weight: 600;
}

.cookie-consent-text a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.cookie-consent-button {
    background: var(--yellow-primary);
    border: 2px solid var(--yellow-primary);
    color: var(--white);
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.cookie-consent-button:hover {
    background: var(--white);
    color: var(--yellow-primary);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-consent {
        padding: 16px 0;
    }

    .cookie-consent-content {
        padding: 0 20px;
        gap: 16px;
        align-items: center;
    }

    .cookie-consent-text {
        font-size: 13px;
        line-height: 1.5;
    }

    .cookie-consent-button {
        padding: 10px 20px;
        font-size: 13px;
        flex-shrink: 0;
    }
}

/* Demo Modal Styles */
.demo-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.demo-modal.active {
    display: block;
}

.demo-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.demo-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 500px;
    background: #000000;
    border-radius: 20px;
    padding: 40px 48px 32px 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-height: 90vh;
    overflow-y: auto;
    height: auto;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.demo-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

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

.demo-modal-title {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 0;
    color: var(--white);
    letter-spacing: -0.5px;
    flex: 1;
}

.demo-modal-subtitle {
    font-size: 16px;
    color: var(--white);
    opacity: 0.8;
    margin-bottom: 24px;
    margin-top: 0;
    line-height: 1.5;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 0;
}

.lead-form input {
    padding: 16px 20px;
    font-size: 16px;
    font-family: var(--font-secondary);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.lead-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.lead-form input:focus {
    outline: none;
    border-color: var(--yellow-primary);
    box-shadow: 0 0 0 3px rgba(124, 60, 237, 0.1);
}

.lead-form-submit {
    background: var(--white);
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
    margin-bottom: 0;
    letter-spacing: 0.3px;
}

.lead-form-submit:hover {
    background: var(--yellow-primary);
    border-color: var(--yellow-primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 60, 237, 0.3);
}

.lead-form-message {
    text-align: center;
    padding: 0;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    margin-top: 0;
    margin-bottom: 0;
    display: none;
}

.lead-form-message:not(:empty) {
    display: block;
    padding: 14px 20px;
    margin-top: 8px;
}

.lead-form-message.loading {
    color: var(--white);
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
}

.lead-form-message.success {
    background: var(--yellow-primary);
    color: var(--white);
}

.lead-form-message.error {
    background: #FEE2E2;
    color: #991B1B;
}

.demo-modal-video {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 12px;
    object-fit: cover;
    margin-right: 30px;
}

@media (max-width: 768px) {
    .demo-modal-content {
        padding: 32px 24px 20px 24px;
        width: 95%;
    }

    .demo-modal-header {
        gap: 16px;
    }

    .demo-modal-title {
        font-size: 24px;
        margin-bottom: 0;
    }

    .demo-modal-video {
        width: 80px;
        height: 80px;
        margin-right: 30px;
    }

    .demo-modal-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .lead-form input {
        padding: 14px 18px;
        font-size: 15px;
    }

    .lead-form-submit {
        padding: 14px 28px;
        font-size: 15px;
    }
}
