:root {
            --navy-900: #001a33;
            --navy-800: #002244;
            --navy-700: #003366;
            --navy-600: #004488;
            --navy-500: #0055aa;
            --navy-400: #3377bb;
            --navy-300: #5599cc;
            --navy-200: #88bbdd;
            --navy-100: #cce0f0;
            --navy-50: #e8f4fc;
            --gold: #c9a227;
            --gold-light: #e8c547;
            --gold-pale: #f5e6b3;
            --coral: #e11d48;
            --coral-hover: #be123c;
            --warm-50: #FAFAF9;
            --warm-100: #F5F5F4;
            --warm-200: #E8E6E3;
            --warm-300: #D4D0CA;
            --warm-400: #A8A29E;
            --warm-500: #78716C;
            --warm-600: #57534E;
            --warm-700: #44403C;
            --warm-800: #292524;
            --white: #ffffff;
            --text-primary: #1a1a1a;
            --text-muted: #475569;
            --mcp-purple: #7C3AED;
            --mcp-purple-dark: #5B21B6;
            --border-subtle: rgba(0, 51, 102, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /*html {
            scroll-behavior: smooth;
        }*/

        body {
            font-family: 'Montserrat', sans-serif;
            background: var(--warm-50);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, .serif {
            font-family: 'Cormorant Garamond', Georgia, serif;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 48px;
        }
.grecaptcha-badge {
    visibility: hidden !important;
}
        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 48px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 180px;
            position: relative;
            z-index: 10;
        }

        .gold-line {
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, var(--gold), var(--gold-light));
            margin-bottom: 24px;
        }

        .gold {
            color: var(--gold);
            font-style: italic;
        }

        .gold-line.center {
            margin: 0 auto 24px;
        }

        /* ============================================
           HEADER
        ============================================ */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: var(--white);
            border-bottom: 1px solid var(--border-subtle);
            transition: all 0.3s ease;
        }

            header.scrolled {
                box-shadow: 0 4px 20px rgba(0, 51, 102, 0.08);
            }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 85px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 48px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logo-mark {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-600) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--gold);
        }

            .logo-mark span {
                font-family: 'Cormorant Garamond', serif;
                font-size: 18px;
                font-weight: 600;
                color: var(--white);
                letter-spacing: 1px;
            }

        .logo-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: 20px;
            font-weight: 600;
            color: var(--navy-800);
            letter-spacing: 1px;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .header-phone {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--warm-600);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: color 0.3s ease;
        }

            .header-phone:hover {
                color: var(--navy-700);
            }

            .header-phone svg {
                width: 16px;
                height: 16px;
            }

        .header-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 28px;
            background: var(--coral);
            color: var(--white);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.3s ease;
        }

            .header-cta:hover {
                background: var(--coral-hover);
                transform: translateY(-2px);
                box-shadow: 0 8px 20px rgba(225, 29, 72, 0.25);
            }

        /* ============================================
           HERO SECTION
        ============================================ */
        .hero {
            position: relative;
            min-height: 122vh;
            background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        .hero-bg-image {
            position: absolute;
            inset: 0;
            /*background: url('hero-mcp-edi.jpg') center center / cover no-repeat;*/
            opacity: 0.4;
        }

        .hero-bg-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0, 26, 51, 0.85) 0%, rgba(0, 34, 68, 0.7) 50%, rgba(0, 51, 102, 0.6) 100%);
        }

        /* EDI Code Rain Effect */
        .hero-code-bg {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            width: 50%;
            overflow: hidden;
            opacity: 0.12;
        }

        .code-column {
            position: absolute;
            top: -100%;
            font-family: 'Monaco', 'Menlo', monospace;
            font-size: 11px;
            color: var(--gold);
            writing-mode: vertical-rl;
            text-orientation: mixed;
            animation: codeRain 20s linear infinite;
            white-space: nowrap;
        }

            .code-column:nth-child(1) {
                left: 5%;
                animation-delay: 0s;
                animation-duration: 18s;
            }

            .code-column:nth-child(2) {
                left: 15%;
                animation-delay: 2s;
                animation-duration: 22s;
            }

            .code-column:nth-child(3) {
                left: 25%;
                animation-delay: 4s;
                animation-duration: 19s;
            }

            .code-column:nth-child(4) {
                left: 35%;
                animation-delay: 1s;
                animation-duration: 21s;
            }

            .code-column:nth-child(5) {
                left: 45%;
                animation-delay: 3s;
                animation-duration: 17s;
            }

            .code-column:nth-child(6) {
                left: 55%;
                animation-delay: 5s;
                animation-duration: 23s;
            }

            .code-column:nth-child(7) {
                left: 65%;
                animation-delay: 2s;
                animation-duration: 20s;
            }

            .code-column:nth-child(8) {
                left: 75%;
                animation-delay: 4s;
                animation-duration: 18s;
            }

            .code-column:nth-child(9) {
                left: 85%;
                animation-delay: 1s;
                animation-duration: 22s;
            }

            .code-column:nth-child(10) {
                left: 95%;
                animation-delay: 3s;
                animation-duration: 19s;
            }

        @keyframes codeRain {
            0% {
                transform: translateY(0);
            }

            100% {
                transform: translateY(200%);
            }
        }

        /* Glowing fiber connection */
        .hero-fiber {
            position: absolute;
            top: 50%;
            left: 45%;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent 0%, var(--gold) 20%, var(--mcp-purple) 50%, var(--gold) 80%, transparent 100%);
            opacity: 0.6;
            filter: blur(1px);
            animation: fiberPulse 3s ease-in-out infinite;
        }

            .hero-fiber::before {
                content: '';
                position: absolute;
                inset: -4px 0;
                background: inherit;
                filter: blur(8px);
                opacity: 0.5;
            }

        @keyframes fiberPulse {
            0%, 100% {
                opacity: 0.4;
            }

            50% {
                opacity: 0.8;
            }
        }

        .hero-fiber-vertical {
            position: absolute;
            top: 0;
            bottom: 0;
            right: 25%;
            width: 2px;
            background: linear-gradient(180deg, transparent 0%, var(--mcp-purple) 30%, var(--gold) 70%, transparent 100%);
            opacity: 0.3;
            filter: blur(1px);
        }

        .hero .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 60px;
            position: relative;
            z-index: 10;
        }

        .hero-content {
            position: relative;
            z-index: 10;
        }

        .hero-label-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-bottom: 15px;
        }

        .hero-label {
            display: inline-flex;
            align-items: center;
            gap: 16px;
        }

            .hero-label::before {
                content: '';
                width: 40px;
                height: 1px;
                background: var(--gold);
            }

            .hero-label span {
                font-size: 12px;
                font-weight: 600;
                letter-spacing: 3px;
                text-transform: uppercase;
                color: var(--gold);
            }

        .tech-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 18px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
        }

        .tech-badge-icon {
            width: 24px;
            height: 24px;
            background: linear-gradient(135deg, var(--mcp-purple) 0%, var(--mcp-purple-dark) 100%);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .tech-badge-icon svg {
                width: 14px;
                height: 14px;
                color: var(--white);
            }

        .tech-badge-text {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--white);
        }

        .hero h1 {
            font-size: clamp(36px, 4vw, 52px);
            font-weight: 400;
            line-height: 1.15;
            color: var(--white);
            margin-bottom: 15px;
        }

            .hero h1 .highlight {
                background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
                font-weight: 600;
            }

            .hero h1 .highlight-purple {
                background: linear-gradient(135deg, var(--mcp-purple) 0%, #a78bfa 100%);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
                font-weight: 600;
            }

        .hero-subtitle {
            font-size: 16px;
            font-weight: 400;
            line-height: 1.8;
            color: var(--navy-200);
            max-width: 500px;
            margin-bottom: 22px;
        }

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 6px;
    flex-wrap: nowrap;
}
.btn-primary,
.btn-secondary {
    white-space: nowrap;
}

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 18px 36px;
            background: var(--coral);
            color: var(--white);
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.3s ease;
        }

            .btn-primary:hover {
                background: var(--coral-hover);
                transform: translateY(-2px);
                box-shadow: 0 12px 28px rgba(225, 29, 72, 0.3);
            }

            .btn-primary svg {
                width: 16px;
                height: 16px;
                transition: transform 0.3s ease;
            }

            .btn-primary:hover svg {
                transform: translateX(4px);
            }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 18px 36px;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: var(--white);
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.3s ease;
        }

            .btn-secondary:hover {
                border-color: var(--white);
                background: rgba(255, 255, 255, 0.1);
            }

        .hero-stats {
            display: flex;
            gap: 48px;
        }

        .stat {
            text-align: left;
        }

        .stat-number {
            font-family: 'Cormorant Garamond', serif;
            font-size: 36px;
            font-weight: 400;
            color: var(--white);
            line-height: 1;
        }

            .stat-number .gold-accent {
                color: var(--gold);
            }

        .stat-label {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--navy-300);
            margin-top: 8px;
        }

        /* Hero Visual - Chat Interface */
        .hero-visual {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .chat-interface {
            position: relative;
            width: 100%;
            max-width: 420px;
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05) inset, 0 0 80px rgba(124, 58, 237, 0.15);
        }

        .chat-header {
            display: flex;
            align-items: center;
            gap: 12px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 20px;
        }

        .chat-avatar {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--mcp-purple) 0%, var(--gold) 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .chat-avatar svg {
                width: 20px;
                height: 20px;
                color: var(--white);
            }

        .chat-title {
            flex: 1;
        }

            .chat-title h4 {
                font-family: 'Montserrat', sans-serif;
                font-size: 14px;
                font-weight: 600;
                color: var(--white);
                margin-bottom: 2px;
            }

            .chat-title span {
                font-size: 11px;
                color: var(--navy-300);
            }

        .chat-status {
            width: 8px;
            height: 8px;
            background: #22c55e;
            border-radius: 50%;
            animation: statusPulse 2s ease-in-out infinite;
        }

        @keyframes statusPulse {
            0%, 100% {
                opacity: 1;
            }

            50% {
                opacity: 0.5;
            }
        }

        .chat-messages {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .chat-message {
            padding: 14px 18px;
            border-radius: 12px;
            font-size: 13px;
            line-height: 1.6;
        }

            .chat-message.user {
                background: rgba(124, 58, 237, 0.2);
                border: 1px solid rgba(124, 58, 237, 0.3);
                color: var(--white);
                margin-left: 32px;
            }

            .chat-message.ai {
                background: rgba(255, 255, 255, 0.05);
                border: 1px solid rgba(255, 255, 255, 0.1);
                color: var(--navy-100);
                margin-right: 32px;
            }

                .chat-message.ai .highlight-data {
                    color: var(--gold);
                    font-weight: 600;
                }

        .chat-typing {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 12px 18px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            margin-right: 32px;
            width: fit-content;
        }

        .typing-dot {
            width: 6px;
            height: 6px;
            background: var(--gold);
            border-radius: 50%;
            animation: typingDot 1.4s ease-in-out infinite;
        }

            .typing-dot:nth-child(2) {
                animation-delay: 0.2s;
            }

            .typing-dot:nth-child(3) {
                animation-delay: 0.4s;
            }

        @keyframes typingDot {
            0%, 100% {
                opacity: 0.3;
                transform: translateY(0);
            }

            50% {
                opacity: 1;
                transform: translateY(-4px);
            }
        }

        /* Glowing connection from chat to background */
        .chat-connection {
            position: absolute;
            top: 50%;
            left: -60px;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--gold), var(--mcp-purple));
            filter: blur(1px);
        }

            .chat-connection::before {
                content: '';
                position: absolute;
                right: 0;
                top: 50%;
                transform: translateY(-50%);
                width: 12px;
                height: 12px;
                background: var(--mcp-purple);
                border-radius: 50%;
                box-shadow: 0 0 20px var(--mcp-purple);
            }

        @media (max-width: 1024px) {
            .hero {
                min-height: auto;
                padding: 120px 0 80px;
            }

            .hero-container {
                grid-template-columns: 1fr;
                padding-top: 24px;
            }

            .hero-visual {
                display: none;
            }
        }

        /* ============================================
           WHAT IS MCP SECTION
        ============================================ */
        .what-is-section {
            padding: 100px 0;
            background: var(--white);
        }

        .what-is-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 80px;
            align-items: center;
        }

        .what-is-content {
            max-width: 480px;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 16px;
        }

            .section-label::before {
                content: '';
                width: 40px;
                height: 1px;
                background: var(--gold);
            }

            .section-label span {
                font-size: 11px;
                font-weight: 600;
                letter-spacing: 3px;
                text-transform: uppercase;
                color: var(--gold);
            }

        .section-title {
            font-size: clamp(32px, 3.5vw, 44px);
            font-weight: 500;
            color: var(--navy-800);
            margin-bottom: 24px;
        }

        .section-text {
            font-size: 16px;
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 24px;
        }

        .feature-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-top: 32px;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }

        .feature-icon {
            width: 40px;
            height: 40px;
            background: var(--warm-50);
            border: 1px solid var(--navy-200);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

            .feature-icon svg {
                width: 18px;
                height: 18px;
                color: var(--gold);
            }

        .feature-text h4 {
            font-family: 'Montserrat', sans-serif;
            font-size: 14px;
            font-weight: 600;
            color: var(--navy-800);
            margin-bottom: 4px;
        }

        .feature-text p {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .code-preview {
            background: var(--navy-800);
            padding: 32px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 51, 102, 0.15);
        }

            .code-preview::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 3px;
                background: linear-gradient(90deg, var(--gold), var(--mcp-purple), var(--coral));
            }

        .code-header {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 24px;
        }

        .code-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }

            .code-dot.red {
                background: #ff5f56;
            }

            .code-dot.yellow {
                background: #ffbd2e;
            }

            .code-dot.green {
                background: #27ca40;
            }

        .code-content {
            font-family: 'Monaco', 'Menlo', monospace;
            font-size: 12px;
            line-height: 1.8;
            color: var(--navy-100);
        }

        .code-comment {
            color: var(--warm-500);
        }

        .code-keyword {
            color: var(--mcp-purple);
            color: #c084fc;
        }

        .code-string {
            color: #86efac;
        }

        .code-function {
            color: var(--gold-light);
        }

        .code-property {
            color: #93c5fd;
        }

        @media (max-width: 900px) {
            .what-is-grid {
                grid-template-columns: 1fr;
            }

            .code-preview {
                order: -1;
            }
        }

        /* ============================================
           BRIDGE SECTION
        ============================================ */
        .bridge-section {
            padding: 100px 0;
            background: var(--warm-50);
        }

            .bridge-section .section-subtitle {
                color: var(--warm-600);
            }

        .bridge-visual {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0;
            margin: 60px 0;
        }

        .bridge-side {
            flex: 1;
            max-width: 280px;
            text-align: center;
            padding: 40px 32px;
            background: var(--white);
            border: 1px solid var(--border-subtle);
            transition: all 0.3s ease;
        }

            .bridge-side:hover {
                border-color: var(--gold);
                box-shadow: 0 12px 40px rgba(0, 51, 102, 0.1);
            }

        .bridge-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--warm-50);
            border: 1px solid var(--navy-200);
        }

            .bridge-icon svg {
                width: 32px;
                height: 32px;
                color: var(--navy-600);
            }

        .bridge-edi .bridge-icon {
            border-color: var(--navy-300);
        }

        .bridge-mcp .bridge-icon {
            border-color: var(--mcp-purple);
        }

            .bridge-mcp .bridge-icon svg {
                color: var(--mcp-purple);
            }

        .bridge-side h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 28px;
            font-weight: 600;
            color: var(--navy-800);
            margin-bottom: 4px;
        }

        .bridge-side > p {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 24px;
        }

        .bridge-list {
            list-style: none;
            text-align: left;
        }

            .bridge-list li {
                font-size: 14px;
                color: var(--warm-700);
                padding: 10px 0;
                border-top: 1px solid var(--warm-200);
                display: flex;
                align-items: center;
                gap: 10px;
            }

                .bridge-list li::before {
                    content: '';
                    width: 6px;
                    height: 6px;
                    background: var(--gold);
                    flex-shrink: 0;
                }

        .bridge-center {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
            padding: 0 20px;
        }

        .bridge-connector {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .connector-line {
            width: 40px;
            height: 2px;
            background: linear-gradient(90deg, var(--navy-200), var(--gold));
        }

        .connector-dot {
            width: 8px;
            height: 8px;
            background: var(--gold);
            border-radius: 50%;
            animation: pulse-dot 2s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%, 100% {
                transform: scale(1);
                opacity: 1;
            }

            50% {
                transform: scale(1.5);
                opacity: 0.7;
            }
        }

        .bridge-logo {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .bridge-logo-inner {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-600) 100%);
            border: 2px solid var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 12px 40px rgba(0, 51, 102, 0.2);
        }

            .bridge-logo-inner span {
                font-family: 'Cormorant Garamond', serif;
                font-size: 24px;
                font-weight: 600;
                color: var(--white);
                letter-spacing: 2px;
            }

        .bridge-logo-text {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 3px;
            color: var(--navy-700);
        }

        .bridge-example {
            display: flex;
            align-items: center;
            gap: 32px;
            max-width: 900px;
            margin: 0 auto;
            padding: 32px;
            background: var(--white);
            border: 1px solid var(--border-subtle);
        }

        .example-query,
        .example-result {
            flex: 1;
        }

        .example-label {
            display: block;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .example-query .example-label {
            color: var(--navy-600);
        }

        .example-result .example-label {
            color: var(--gold);
        }

        .example-query p,
        .example-result p {
            font-size: 15px;
            color: var(--warm-700);
            line-height: 1.6;
            font-style: italic;
        }

        .example-result p {
            font-style: normal;
        }

        .example-arrow {
            flex-shrink: 0;
        }

            .example-arrow svg {
                width: 32px;
                height: 32px;
                color: var(--gold);
            }

        @media (max-width: 900px) {
            .bridge-visual {
                flex-direction: column;
                gap: 24px;
            }

            .bridge-side {
                max-width: 100%;
                width: 100%;
            }

            .bridge-center {
                flex-direction: row;
                padding: 20px 0;
            }

            .bridge-connector {
                flex-direction: column;
            }

            .connector-line {
                width: 2px;
                height: 40px;
                background: linear-gradient(180deg, var(--navy-200), var(--gold));
            }

            .bridge-example {
                flex-direction: column;
                text-align: center;
            }

            .example-arrow {
                transform: rotate(90deg);
            }
        }

        /* ============================================
           USE CASES SECTION
        ============================================ */
        .usecases-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 100%);
            position: relative;
            overflow: hidden;
        }

            .usecases-section::before {
                content: '';
                position: absolute;
                inset: 0;
                opacity: 0.03;
                background-image: linear-gradient(var(--white) 1px, transparent 1px), linear-gradient(90deg, var(--white) 1px, transparent 1px);
                background-size: 60px 60px;
            }

            .usecases-section .section-label span {
                color: var(--gold-light);
            }

            .usecases-section .section-title {
                color: var(--white);
                text-align: center;
            }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }

        .section-subtitle {
            font-size: 16px;
            color: var(--navy-200);
            line-height: 1.7;
        }

        .usecases-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .usecase-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 36px;
            transition: all 0.3s ease;
        }

            .usecase-card:hover {
                border-color: var(--gold);
                background: rgba(255, 255, 255, 0.06);
                transform: translateY(-4px);
            }

        .usecase-icon {
            width: 56px;
            height: 56px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            transition: all 0.3s ease;
        }

        .usecase-card:hover .usecase-icon {
            border-color: var(--gold);
            background: rgba(201, 162, 39, 0.1);
        }

        .usecase-icon svg {
            width: 24px;
            height: 24px;
            color: var(--gold-light);
        }

        .usecase-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 22px;
            font-weight: 500;
            color: var(--white);
            margin-bottom: 12px;
        }

        .usecase-desc {
            font-size: 14px;
            color: var(--navy-200);
            line-height: 1.7;
        }

        @media (max-width: 900px) {
            .usecases-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ============================================
           INTEGRATIONS SECTION
        ============================================ */
        .integrations-section {
            padding: 100px 0;
            background: var(--warm-50);
        }

            .integrations-section .section-header {
                margin-bottom: 48px;
            }

            .integrations-section .section-title {
                color: var(--navy-800);
            }

            .integrations-section .section-subtitle {
                color: var(--text-muted);
            }

        .integrations-categories {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
        }

        .integration-category {
            background: var(--white);
            border: 1px solid var(--border-subtle);
            padding: 32px 24px;
            text-align: center;
            transition: all 0.3s ease;
        }

            .integration-category:hover {
                border-color: var(--gold);
                box-shadow: 0 12px 40px rgba(0, 51, 102, 0.08);
            }

            .integration-category h3 {
                font-family: 'Cormorant Garamond', serif;
                font-size: 20px;
                font-weight: 600;
                color: var(--navy-800);
                margin-bottom: 24px;
                padding-bottom: 16px;
                border-bottom: 1px solid var(--warm-200);
            }

        .integration-category-logos {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .integration-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
        }

            .integration-logo:hover {
                transform: translateX(4px);
            }

        .integration-logo-icon {
            width: 40px;
            height: 40px;
            background: var(--warm-50);
            border: 1px solid var(--border-subtle);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .integration-logo:hover .integration-logo-icon {
            border-color: var(--gold);
        }

        .integration-logo-icon svg {
            width: 20px;
            height: 20px;
            color: var(--navy-600);
        }

        .integration-logo:hover .integration-logo-icon svg {
            color: var(--gold);
        }

        .integration-logo span {
            font-size: 14px;
            font-weight: 500;
            color: var(--navy-700);
        }

        @media (max-width: 900px) {
            .integrations-categories {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .integrations-categories {
                grid-template-columns: 1fr;
            }
        }

        /* ============================================
           PROCESS SECTION
        ============================================ */
        .process-section {
            padding: 100px 0;
            background: var(--white);
        }

            .process-section .section-header {
                margin-bottom: 60px;
            }

            .process-section .section-title {
                color: var(--navy-800);
            }

            .process-section .section-subtitle {
                color: var(--text-muted);
            }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            position: relative;
        }

            .process-grid::before {
                content: '';
                position: absolute;
                top: 40px;
                left: 12%;
                right: 12%;
                height: 1px;
                background: linear-gradient(90deg, transparent, var(--navy-200), var(--navy-200), transparent);
            }

        .process-step {
            text-align: center;
            padding: 0 24px;
            position: relative;
        }

        .process-number {
            width: 80px;
            height: 80px;
            border: 1px solid var(--navy-300);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 28px;
            background: var(--white);
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
            color: var(--navy-600);
        }

            .process-number svg {
                width: 32px;
                height: 32px;
            }

        .process-step:hover .process-number {
            border-color: var(--gold);
            color: var(--gold);
            transform: scale(1.08);
            box-shadow: 0 8px 24px rgba(201, 162, 39, 0.15);
        }

        .process-step h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 24px;
            font-weight: 500;
            margin-bottom: 12px;
            color: var(--navy-800);
        }

        .process-step p {
            font-size: 14px;
            line-height: 1.7;
            color: var(--text-muted);
        }

        @media (max-width: 900px) {
            .process-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }

                .process-grid::before {
                    display: none;
                }
        }

        @media (max-width: 600px) {
            .process-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ============================================
           BENEFITS SECTION
        ============================================ */
        .benefits-section {
            padding: 100px 0;
            background: var(--warm-50);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
        }

        .benefit-card {
            background: var(--white);
            border: 1px solid var(--border-subtle);
            padding: 40px;
            display: flex;
            gap: 24px;
            transition: all 0.3s ease;
        }

            .benefit-card:hover {
                border-color: var(--gold);
                box-shadow: 0 12px 40px rgba(0, 51, 102, 0.08);
                transform: translateY(-4px);
            }

        .benefit-number {
            font-family: 'Cormorant Garamond', serif;
            font-size: 48px;
            font-weight: 400;
            color: var(--navy-200);
            line-height: 1;
            flex-shrink: 0;
        }

        .benefit-card:hover .benefit-number {
            color: var(--gold);
        }

        .benefit-content h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 24px;
            font-weight: 500;
            color: var(--navy-800);
            margin-bottom: 12px;
        }

        .benefit-content p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
        }

        @media (max-width: 768px) {
            .benefits-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ============================================
           CTA SECTION
        ============================================ */
        .cta-section {
            padding: 100px 48px;
            padding-top: 130px;
            background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 100%);
            position: relative;
            overflow: hidden;
        }

            .cta-section::before {
                content: '';
                position: absolute;
                inset: 0;
                opacity: 0.03;
                background-image: linear-gradient(var(--white) 1px, transparent 1px), linear-gradient(90deg, var(--white) 1px, transparent 1px);
                background-size: 60px 60px;
            }

        .cta-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .cta-content {
            position: relative;
            z-index: 10;
        }

        .section-label-light span {
            color: var(--gold-light);
        }

        .section-label-light::before {
            background: var(--gold-light);
        }

        .cta-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(32px, 3.5vw, 44px);
            font-weight: 500;
            color: var(--white);
            margin-bottom: 20px;
        }

        .cta-subtitle {
            font-size: 16px;
            color: var(--navy-200);
            line-height: 1.8;
            margin-bottom: 32px;
        }

        .cta-features {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 32px;
        }

        .cta-feature {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--navy-100);
            font-size: 14px;
        }

            .cta-feature svg {
                width: 18px;
                height: 18px;
                color: var(--gold-light);
            }

        .cta-contact {
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

            .cta-contact p {
                font-size: 13px;
                color: var(--navy-300);
                margin-bottom: 12px;
            }

        .cta-phone {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--gold-light);
            text-decoration: none;
            font-size: 18px;
            font-weight: 500;
            transition: color 0.3s ease;
        }

            .cta-phone:hover {
                color: var(--white);
            }

            .cta-phone svg {
                width: 20px;
                height: 20px;
            }

        /* Form */
        .cta-form-container {
            position: relative;
            z-index: 10;
        }

        .cta-form {
            background: var(--white);
            padding: 40px;
        }

        .form-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 28px;
            font-weight: 500;
            color: var(--navy-800);
            margin-bottom: 8px;
        }

        .form-title-line {
            width: 40px;
            height: 2px;
            background: linear-gradient(90deg, var(--gold), var(--gold-light));
            margin-bottom: 32px;
        }

        .form-group {
            margin-bottom: 20px;
        }

            .form-group label {
                display: block;
                font-size: 12px;
                font-weight: 600;
                letter-spacing: 1px;
                text-transform: uppercase;
                color: var(--warm-600);
                margin-bottom: 8px;
            }

            .form-group input,
            .form-group textarea,
            .form-group select {
                width: 100%;
                padding: 14px 16px;
                border: 1px solid var(--warm-200);
                font-family: 'Montserrat', sans-serif;
                font-size: 14px;
                color: var(--text-primary);
                background: var(--warm-50);
                transition: all 0.3s ease;
            }

                .form-group input:focus,
                .form-group textarea:focus,
                .form-group select:focus {
                    outline: none;
                    border-color: var(--navy-400);
                    background: var(--white);
                }

                .form-group input::placeholder,
                .form-group textarea::placeholder {
                    color: var(--warm-400);
                }

        .form-submit {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 18px 36px;
            background: var(--coral);
            color: var(--white);
            font-family: 'Montserrat', sans-serif;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

            .form-submit:hover {
                background: var(--coral-hover);
                transform: translateY(-2px);
                box-shadow: 0 12px 28px rgba(225, 29, 72, 0.3);
            }

            .form-submit svg {
                width: 16px;
                height: 16px;
                transition: transform 0.3s ease;
            }

            .form-submit:hover svg {
                transform: translateX(4px);
            }

        .form-disclaimer {
            margin-top: 16px;
            font-size: 12px;
            color: var(--warm-500);
            text-align: center;
        }

            .form-disclaimer a {
                color: var(--navy-600);
                text-decoration: none;
            }

                .form-disclaimer a:hover {
                    text-decoration: underline;
                }

        @media (max-width: 900px) {
            .cta-inner {
                grid-template-columns: 1fr;
            }
        }

        /* ============================================
           FOOTER
        ============================================ */
        footer {
            padding: 32px 48px;
            background: var(--warm-100);
            border-top: 1px solid var(--warm-200);
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .footer-brand {
            display: flex;
            align-items: center;
        }

        .footer-text {
            font-size: 13px;
            color: var(--warm-500);
        }

        .footer-links {
            display: flex;
            gap: 32px;
        }

            .footer-links a {
                font-size: 13px;
                color: var(--warm-600);
                text-decoration: none;
                transition: color 0.3s ease;
            }

                .footer-links a:hover {
                    color: var(--navy-700);
                }

        @media (max-width: 768px) {
            .footer-inner {
                flex-direction: column;
                gap: 24px;
                text-align: center;
            }

            .footer-brand {
                flex-direction: column;
                gap: 16px;
            }
        }

/* ============================================
   MOBILE & TABLET OPTIMIZATIONS
   (Applies to screens 1024px and smaller)
============================================ */
/* ============================================
   MOBILE & TABLET OVERRIDES (Add to bottom of CSS)
============================================ */

@media (max-width: 1024px) {
    /* 1. LOCK THE PARENT CONTAINER */
    .hero {
        width: 100% !important; /* Not 100vw, to avoid scrollbar overlap */
        max-width: 100% !important;
        overflow-x: hidden !important; /* Chop off any overflow */
        height: auto !important;
        min-height: auto !important;
        padding: 100px 0 60px !important;
    }

    /* 2. SWITCH TO FLEXBOX (Safer than Grid for Mobile) */
    /* Inside @media (max-width: 1024px) */
    .hero-container {
        display: flex !important;
        flex-direction: column;
        width: 100% !important;
        padding: 0 24px !important;
        box-sizing: border-box !important;
        margin: 0 auto !important;
        /* THIS IS THE MISSING LINE FIXING THE SPACE */
        gap: 40px !important; /* Overrides the desktop's 180px gap */
    }

    .hero-content {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }

    /* 3. FIX THE TEXT & BUTTONS */
    .hero h1 {
        font-size: 32px !important; /* Prevent huge text from forcing width */
        line-height: 1.2 !important;
        word-wrap: break-word;
        width: 100%;
    }

    .hero-subtitle {
        font-size: 16px !important;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero-ctas {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }

    .btn-primary, .btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        justify-content: center;
        box-sizing: border-box; /* Ensures padding doesn't widen button */
    }

    /* 4. TAME THE BACKGROUND ELEMENTS */
    /* These were likely pushing your width out */
    .hero-code-bg {
        width: 100% !important;
        right: 0 !important;
        left: 0 !important;
        opacity: 0.1; /* Fade it out more on mobile */
    }

    .hero-fiber-vertical {
        right: 0 !important; /* Snap to edge */
        display: none; /* Hide vertical line on mobile to clean up UI */
    }

    /* 5. ADJUST CHAT INTERFACE */
    .hero-visual {
        display: flex !important;
        width: 100% !important;
        margin-top: 40px;
        padding: 0 !important;
    }

    .chat-interface {
        width: 100% !important;
        margin: 0 !important;
    }
}
/* ============================================
   ANTI-CROP FIX (Add to bottom of CSS)
   ============================================ */

@media (max-width: 768px) {
    /* 1. Reset Container Widths to be Fluid */
    .hero-container,
    .hero-content {
        width: 100% !important;
        max-width: 100vw !important; /* Ensure it never exceeds viewport */
        padding-left: 20px !important; /* Reduce padding from 48px to 20px */
        padding-right: 20px !important;
        box-sizing: border-box; /* Include padding in width calculation */
        overflow-x: hidden; /* Hide anything that still tries to poke out */
    }

    /* 2. Prevent Long Headlines from pushing layout out */
    .hero h1 {
        word-wrap: break-word; /* Break long words if necessary */
        overflow-wrap: break-word;
        hyphens: auto; /* Add hyphens for cleaner breaks */
        font-size: 32px; /* Slightly smaller to be safe */
        width: 100%;
    }

    /* 3. Allow Badges to Wrap if screen is very narrow */
    .hero-label-row {
        flex-wrap: wrap;
        width: 100%;
    }

    /* 4. Ensure Buttons don't force width */
    .hero-ctas {
        width: 100%;
        box-sizing: border-box;
    }

    .btn-primary, .btn-secondary {
        white-space: normal; /* Allow button text to wrap if needed */
        text-align: center;
        max-width: 100%;
    }
}
@media (max-width: 767px) {
    /* 1. Force the list to stay on one line */
    ul.topnav {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important; /* Prevents jumping to next line */
        justify-content: center !important; /* Centers the menu */
        padding: 0 !important;
        width: 100% !important;
        overflow-x: auto; /* Adds a tiny swipe if screen is incredibly small */
        -webkit-overflow-scrolling: touch;
    }

        /* 2. Shrink spacing and font size so it fits */
        ul.topnav li {
            display: flex !important;
            align-items: center;
            white-space: nowrap !important; /* Keeps text like "About Us" on one line */
            font-size: 11px !important; /* Slightly smaller for mobile */
            padding: 0 4px !important; /* Reduced gap between items */
        }

    /* 3. Adjust the parent column to allow full width */
    .top_links .col-sm-7 {
        width: 100% !important;
        float: none !important;
        clear: both;
    }

    /* 4. Hide the pipe "|" character on mobile if it gets too crowded */
    /* Or just let it stay if space allows */

    @media (max-width:768px) {

        .cta-section {
            padding-left: 20px !important;
            padding-right: 20px !important;
        }

        .cta-form {
            padding: 24px !important;
        }
    }
}