@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');
@import './variables.css';
@import './graph.css';
@import './chatbot.css';


/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    background-image: radial-gradient(circle at 50% 0%, var(--bg-gradient-end) 0%, var(--bg-dark) 60%);
    color: var(--text-secondary);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: var(--spacing-section) 0;
    position: relative;
}

.text-center {
    text-align: center;
}

.text-gradient {
    background: linear-gradient(to right, var(--text-primary), #3b5c90);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.8rem 1.8rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
    line-height: 1;
    /* Helps vertical centering */
}

.btn svg {
    display: block;
    /* Removes baseline spacing */
    flex-shrink: 0;
}

.btn-primary {
    background-color: var(--btn-bg);
    color: var(--btn-text);
    box-shadow: 0 4px 15px rgba(26, 57, 111, 0.2);
}

.btn-primary:hover {
    background-color: var(--btn-hover);
    transform: translateY(-2px) scale(1.05);
    /* Agrandissement léger au survol */
    box-shadow: 0 10px 30px rgba(26, 57, 111, 0.4);
    /* Ombre plus marquée */
    filter: brightness(1.1);
    /* Eclaircissement */
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
    /* Effet de clic */
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--accent-secondary);
}

.btn-secondary:hover {
    background-color: var(--accent-secondary);
    border-color: var(--accent-primary);
}

/* Glow Effects */
.glow-spot {
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--accent-glow);
    filter: blur(100px);
    opacity: 0.5;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

/* Navbar Fixed */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.05);
    /* Subtle structure even when top */
    backdrop-filter: blur(10px);
    padding: 1.5rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(26, 57, 111, 0.1);
    /* Visible contour */
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(26, 57, 111, 0.08);
    padding: 0.8rem 1.5rem;
    border-bottom: 1px solid rgba(26, 57, 111, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-flex-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-logo-img {
    height: 60px;
    /* Base desktop height */
    width: auto;
    object-fit: contain;
}

/* Visibility Utilities */
.mobile-only {
    display: none !important;
}

.desktop-only {
    display: flex !important;
}

@media (max-width: 768px) {
    .mobile-only {
        display: flex !important;
    }

    .desktop-only {
        display: none !important;
    }
}

/* Feature Cards (Bubbles) */
.card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

/* Dropdown Menu Styles */
.nav-item-dropdown {
    position: relative;
    padding-bottom: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(26, 57, 111, 0.1);
    border-radius: 16px;
    min-width: 220px;
    padding: 1rem;
    box-shadow: 0 15px 35px rgba(26, 57, 111, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 1001;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-link {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dropdown-link:hover {
    background: rgba(26, 57, 111, 0.05);
    color: var(--accent-primary);
    transform: translateX(5px);
}

.dropdown-link svg {
    width: 18px;
    height: 18px;
    opacity: 0.7;
}

.solution-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: white !important;
    /* Ensure visibility */
    cursor: pointer;
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: rgba(26, 57, 111, 0.1);
    background: #FFFFFF;
}

.card h3 {
    color: var(--text-primary);
}

/* Feature Cards (Rentabilité) */
.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    background: #FAFAFB;
    /* Subtle color change */
    border-color: rgba(26, 57, 111, 0.1);
}

/* Methodology Steps */
.methodology-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 0 2rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 1200px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

.step {
    padding: 4rem 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    height: 100%;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    opacity: 0.8;
}

.step:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.step-number {
    font-size: 0.8rem;
    color: white;
    font-weight: 800;
    padding: 0.5rem 1rem;
    border-radius: 99px;
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.1em;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.1);
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    color: white;
    font-weight: 700;
}

.step p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Step Themes */
.step-audit::before {
    background: #FF4D8D;
}

.step-audit .step-number {
    color: #FF4D8D;
    border-color: rgba(255, 77, 141, 0.3);
}

.step-audit:hover {
    box-shadow: 0 20px 50px rgba(255, 77, 141, 0.15);
}

.step-proto::before {
    background: #4E6BFF;
}

.step-proto .step-number {
    color: #4E6BFF;
    border-color: rgba(78, 107, 255, 0.3);
}

.step-proto:hover {
    box-shadow: 0 20px 50px rgba(78, 107, 255, 0.15);
}

.step-integration::before {
    background: #FF9F1C;
}

.step-integration .step-number {
    color: #FF9F1C;
    border-color: rgba(255, 159, 28, 0.3);
}

.step-integration:hover {
    box-shadow: 0 20px 50px rgba(255, 159, 28, 0.15);
}

.step-tracking::before {
    background: #9D4EDD;
}

.step-tracking .step-number {
    color: #9D4EDD;
    border-color: rgba(157, 78, 221, 0.3);
}

.step-tracking:hover {
    box-shadow: 0 20px 50px rgba(157, 78, 221, 0.15);
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Accordion */
.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1.5rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    /* Larger to avoid cutoff */
    margin-top: 1rem;
}

/* Automation Examples Section */
.automation-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: default;
}

.automation-card:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 10px 30px rgba(26, 57, 111, 0.1);
    transform: translateY(-2px);
}

.flow-diagram {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.5rem;
    gap: 0.75rem;
}

.flow-node {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    padding: 1rem 0.8rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    line-height: 1.25;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow-wrap: break-word;
    word-break: break-word;
}

.flow-nodes-center {
    border-color: var(--accent-cyan);
    background: rgba(0, 255, 255, 0.05);
    color: var(--accent-primary);
}

.flow-arrow-svg {
    width: 24px;
    height: 12px;
    display: block;
    overflow: visible;
}

.arrow-path {
    stroke: #CBD5E1;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
}

.arrow-glow {
    stroke: var(--accent-primary);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-dasharray: 20;
    stroke-dashoffset: 20;
    opacity: 0;
    transition: opacity 0.3s;
}

.automation-card:hover .arrow-glow {
    opacity: 1;
    animation: flowAnimation 1s linear infinite;
}

@keyframes flowAnimation {
    from {
        stroke-dashoffset: 20;
    }

    to {
        stroke-dashoffset: -20;
    }
}

/* Reviews */
.review-card {
    background: #FFF;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 0, 0, 0.05);
}


.stars {
    color: #FFD700;
    margin-bottom: 0.5rem;
}

/* Float Animation */
/* Premium Glass Animation */
@keyframes float-bob-centered {

    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-10px);
    }
}

/* Glassmorphic Bubble Nodes - Redundant removed, handled in graph.css */

.satellite-node img,
.satellite-node svg {
    /* Boost Visibility */
    width: 65%;
    height: 65%;
    object-fit: contain;
    opacity: 1;
    /* Full opacity */

    /* Stronger contrast against glass */
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.4));
}

/* Redesigned Enterprise Node (Cyan Theme) */
#new-enterprise-node {
    width: 64px !important;
    height: 64px !important;
    background: linear-gradient(135deg, rgba(26, 57, 111, 0.4), rgba(0, 229, 255, 0.15)) !important;
    border: 1px solid var(--accent-cyan) !important;
    /* Cyan border */
    box-shadow:
        0 0 20px rgba(0, 229, 255, 0.4),
        inset 0 0 15px rgba(0, 229, 255, 0.1) !important;
    backdrop-filter: blur(8px) !important;
    /* Disable bob animation to keep connection line attached */
    animation: none !important;
}

#new-enterprise-node.is-connected {
    opacity: 1 !important;
    left: 15% !important;
}

#new-enterprise-node svg {
    stroke: #FFFFFF !important;
    /* White Icon */
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
    width: 60% !important;
    height: 60% !important;
}

#new-enterprise-node span {
    color: var(--accent-cyan) !important;
    /* Cyan Text */
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
    font-weight: 700 !important;
    letter-spacing: 0.5px;
    background: rgba(0, 0, 0, 0.8);
    padding: 2px 8px;
    border-radius: 12px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(0, 229, 255, 0.3);
    bottom: -30px !important;
}

/* Contact Section */
.contact-section {
    padding: 8rem 0;
    position: relative;
    background: linear-gradient(180deg, #FFF 0%, var(--bg-card) 100%);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(26, 57, 111, 0.1);
    border-radius: 2rem;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(26, 57, 111, 0.1);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(26, 57, 111, 0.05);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-status {
    padding: 1rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    display: none;
    animation: fadeIn 0.3s ease;
}

.submit-status.success {
    display: block;
    background: rgba(0, 204, 102, 0.1);
    color: #008040;
    border: 1px solid rgba(0, 204, 102, 0.2);
}

.submit-status.error {
    display: block;
    background: rgba(255, 77, 77, 0.1);
    color: #cc0000;
    border: 1px solid rgba(255, 77, 77, 0.2);
}

/* Pulsing CTA Button */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(26, 57, 111, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(26, 57, 111, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(26, 57, 111, 0);
    }
}

.btn-pulse {
    animation: pulse-glow 2s infinite;
    background: linear-gradient(135deg, var(--accent-primary) 0%, #3b5c90 100%);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-pulse:hover {
    animation: none;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(26, 57, 111, 0.3);
}

/* Methodology CTA Button */
.btn-methodology {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 99px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-methodology span {
    position: relative;
    z-index: 2;
}

.btn-methodology svg {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
}

.btn-methodology::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    transition: left 0.6s;
}

.btn-methodology:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.1);
}

.btn-methodology:hover::before {
    left: 100%;
}

.btn-methodology:hover svg {
    transform: translateX(5px);
}

.btn-methodology:active {
    transform: translateY(-2px) scale(0.98);
}

/* Modern Mouse Effect */
.custom-cursor {
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease-out, opacity 0.3s;
    opacity: 0;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent-primary);
    border-radius: 50%;
    position: fixed;
    top: -16px;
    left: -16px;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.15s ease-out, width 0.3s, height 0.3s, opacity 0.3s;
    opacity: 0;
}

.custom-cursor.active,
.cursor-follower.active {
    opacity: 1;
}

.custom-cursor.hover {
    transform: scale(2);
    background: white;
}

.cursor-follower.hover {
    width: 60px;
    height: 60px;
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

.hero-spotlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    /* Above section bg but below container content */
}

@media (max-width: 768px) {

    .custom-cursor,
    .cursor-follower {
        display: none;
    }
}

/* Enterprise Connection Glow Animation */
#new-connection-glow {
    stroke: var(--accent-cyan);
    stroke-width: 1.5;
    stroke-opacity: 0.8;
    filter: drop-shadow(0 0 8px var(--accent-cyan));
    stroke-dasharray: 10, 90;
    stroke-dashoffset: 100;
}

.is-connected #new-connection-glow {
    animation: enterpriseFlow 3s linear infinite;
    opacity: 1 !important;
}

@keyframes enterpriseFlow {
    from {
        stroke-dashoffset: 100;
    }

    to {
        stroke-dashoffset: 0;
    }
}

/* Extracted Styles from index.html */

/* Hero Section */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    pointer-events: none;
    z-index: -1;
}

.hero-section {
    padding: 8rem 0 6rem;
    position: relative;
    z-index: 1;
}

.hero-glow-spot {
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.4;
    pointer-events: none;
}

.hero-title {
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-primary);
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto 3rem;
    animation-delay: 0.2s;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation-delay: 0.4s;
    margin-bottom: 2rem;
}

/* Trust Bar */
.trust-bar-section {
    background: transparent;
    padding-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.trust-bar-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
}

.stat-bubble {
    background: white;
    padding: 0.75rem 2rem 0.75rem 1rem;
    border-radius: 99px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(26, 57, 111, 0.1);
}

.stat-bubble-icon {
    background: rgba(26, 57, 111, 0.08);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-bubble-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-bubble-value {
    color: var(--accent-primary);
    font-weight: 800;
    font-size: 1.25rem;
    line-height: 1.1;
    margin-bottom: 2px;
}

.stat-bubble-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* Solutions Section */
.solutions-grid-header {
    margin-bottom: 2rem;
}

.solutions-grid-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: white;
}

.solutions-grid-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.connectivity-graph-container {
    position: relative;
    height: 600px;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.central-node-wrapper {
    transform: rotate(-45deg);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Deep Dive Section */
.deep-dive-section {
    position: relative;
    z-index: 2;
    padding-top: 20vh;
    padding-bottom: 20vh;
    pointer-events: none;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deep-dive-container {
    pointer-events: auto;
    width: 100%;
    max-width: none;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.deep-dive-card {
    width: 100%;
    max-width: 500px;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(26, 57, 111, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 2rem;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    color: white;
}

.deep-dive-card-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: left;
}

.deep-dive-card-title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.deep-dive-card-text {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.deep-dive-points-grid {
    display: grid;
    gap: 2rem;
}

.deep-dive-point {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.deep-dive-point-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
}

.deep-dive-point-title {
    display: block;
    color: white;
    margin-bottom: 0.3rem;
}

.deep-dive-point-desc {
    font-size: 0.9rem;
    opacity: 0.7;
}

.deep-dive-card-footer {
    margin-top: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.deep-dive-footer-text {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--accent-cyan);
    opacity: 0.9;
}

/* Value Prop Section */
.value-prop-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.value-prop-badge {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: #FFF0F0;
    color: #FF4D4D;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.value-prop-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    text-decoration: underline;
    font-style: italic;
}

.value-prop-text {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.15rem;
    line-height: 1.7;
}

.value-prop-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* FAQ Section */
.faq-badge {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: #F3E8FF;
    color: #7E22CE;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.faq-title {
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-plus {
    color: var(--accent-primary);
}

/* Reviews Section */
.reviews-section {
    padding: 8rem 0;
    background: var(--bg-card);
    position: relative;
    overflow: hidden;
}

.reviews-header {
    text-align: center;
    margin-bottom: 4rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-glass-card {
    padding: 3rem 2rem;
    border-radius: 24px;
    border: 1px solid rgba(26, 57, 111, 0.1);
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
}

.review-stars {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: #FF9F1C;
}

.review-content {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.review-author-name {
    display: block;
    color: var(--text-primary);
}

.review-author-title {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Contact Section Styles */
.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-badge {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: #E0E7FF;
    color: var(--accent-primary);
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    border: 1px solid rgba(26, 57, 111, 0.1);
}

.contact-title {
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.contact-fields-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-submit-btn {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.contact-footer {
    text-align: center;
    margin-top: 3rem;
}

.contact-footer-text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-calendly-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* ==========================================================================
   Responsive Styles (Media Queries)
   ========================================================================== */

@media (max-width: 991px) {
    .value-prop-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 768px) {

    /* Header & Navigation */
    .navbar {
        padding: 0.75rem 1.5rem;
        /* Tighter padding for mobile */
    }

    .navbar.scrolled {
        padding: 0.5rem 1.5rem;
    }

    .nav-logo-img {
        height: 35px !important;
        width: auto;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        padding: 2rem;
        gap: 2rem !important;
        transform: translateX(100%);
        /* Start off-screen right */
    }

    .nav-links.active {
        transform: translateX(0);
        /* Slide in */
    }

    .nav-links a {
        font-size: 1.5rem;
        /* Larger links for mobile */
        font-weight: 600;
        color: var(--text-primary);
        width: auto;
        text-align: center;
        padding: 0.5rem 2rem;
        border-bottom: 2px solid transparent;
        transition: all 0.3s ease;
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: var(--accent-primary);
        border-bottom-color: var(--accent-primary);
    }

    /* Hamburger Menu Icon */
    .mobile-menu-toggle {
        display: block !important;
        cursor: pointer;
        z-index: 1001;
        background: rgba(26, 57, 111, 0.05);
        padding: 8px;
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle:active {
        transform: scale(0.9);
    }

    .navbar .btn-primary {
        display: none !important;
        /* Hide call button in header on mobile */
    }

    .nav-links .mobile-only {
        display: flex !important;
        width: 100%;
        max-width: 250px;
        margin-top: 2rem;
        font-size: 1.1rem;
        color: white !important;
        /* Fix invisible text */
    }

    /* Hero Section */
    .hero-section {
        padding: 6rem 0 4rem !important;
    }

    .hero-section h1 {
        font-size: clamp(2.5rem, 10vw, 3.5rem) !important;
    }

    .cta-group {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 2rem;
    }

    .cta-group .btn {
        width: 100%;
    }

    /* Trust Bar */
    .trust-bar {
        padding-bottom: 3rem !important;
    }

    .trust-bar>.container>div {
        gap: 1.5rem !important;
    }

    .stat-bubble {
        padding: 0.6rem 1.5rem 0.6rem 0.8rem !important;
    }

    /* Solutions (Ecosystem Graph) */
    .active-connection-svg {
        display: block !important;
        opacity: 0.3;
        /* Subtle on mobile */
    }

    .connectivity-graph-container {
        height: auto !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3rem;
        padding: 4rem 1rem;
    }

    .connectivity-graph {
        height: auto !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .central-node {
        width: 100px !important;
        height: 100px !important;
        position: relative !important;
        transform: rotate(45deg) !important;
        margin-bottom: 2rem;
    }

    .satellite-nodes-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        width: 100%;
        justify-items: center;
    }

    .satellite-node {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        animation: none !important;
        transform: none !important;
        width: 54px !important;
        height: 54px !important;
    }

    #new-enterprise-node {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        margin-bottom: 2rem;
    }

    /* Typography fixes */
    .step h3,
    .deep-dive-card-title,
    .value-prop-title,
    .hero-section h1 {
        overflow-wrap: break-word;
        word-break: normal;
        hyphens: none;
    }

    .review-content {
        font-size: 1rem !important;
    }

    /* Deep Dive Section */
    .deep-dive-section {
        padding: 10vh 0 !important;
    }

    .deep-dive-container {
        flex-direction: column;
        gap: 3rem;
    }

    .deep-dive-card {
        padding: 2rem !important;
        min-height: auto !important;
    }

    .deep-dive-card-title {
        font-size: 1.75rem !important;
    }

    /* Value Prop Section */
    .value-prop-title {
        font-size: 2.25rem !important;
    }

    .value-prop-feature-grid {
        grid-template-columns: 1fr !important;
    }

    /* FAQ Grid */
    .faq-grid {
        grid-template-columns: 1fr !important;
    }

    /* Contact Section */
    .contact-fields-grid {
        grid-template-columns: 1fr !important;
    }

    .contact-form-wrapper {
        padding: 2rem !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-section h1 {
        font-size: 2.25rem !important;
    }

    .value-prop-title {
        font-size: 1.85rem !important;
    }
}