        :root {
            --bg-dark: #07090e;
            --bg-card: rgba(18, 24, 38, 0.78);
            --bg-card-hover: rgba(26, 35, 54, 0.95);
            --border-glow: rgba(255, 255, 255, 0.08);
            --border-highlight: rgba(56, 189, 248, 0.35);
            --accent-primary: #38bdf8;
            --accent-blue: #2563eb;
            --accent-purple: #8b5cf6;
            --accent-orange: #f97316;
            --accent-emerald: #10b981;
            --text-main: #f8fafc;
            --text-secondary: #94a3b8;
            --text-muted: #64748b;
            --font-display: 'Plus Jakarta Sans', sans-serif;
            --font-mono: 'JetBrains Mono', monospace;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-dark);
            color: var(--text-main);
            overflow-x: hidden;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        /* Ambient Cyber-Aurora Plasma */
        .ambient-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
            background: radial-gradient(ellipse at 50% 0%, #0d1527 0%, #06080d 75%);
        }

        .aurora-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(130px);
            opacity: 0.5;
            animation: floatOrb 20s infinite alternate ease-in-out;
            will-change: transform;
        }

        .orb-1 {
            top: -15%;
            left: 10%;
            width: 750px;
            height: 750px;
            background: radial-gradient(circle, rgba(56, 189, 248, 0.35) 0%, rgba(37, 99, 235, 0.15) 60%, transparent 100%);
            animation-duration: 22s;
        }

        .orb-2 {
            bottom: -10%;
            right: 5%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(139, 92, 246, 0.35) 0%, rgba(168, 85, 247, 0.12) 60%, transparent 100%);
            animation-duration: 26s;
            animation-delay: -5s;
        }

        .orb-3 {
            top: 35%;
            left: 50%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(249, 115, 22, 0.22) 0%, rgba(245, 158, 11, 0.08) 60%, transparent 100%);
            animation-duration: 19s;
            animation-delay: -10s;
        }

        .orb-4 {
            top: 60%;
            left: -5%;
            width: 550px;
            height: 550px;
            background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, rgba(6, 182, 212, 0.06) 60%, transparent 100%);
            animation-duration: 24s;
            animation-delay: -15s;
        }

        @keyframes floatOrb {
            0% { transform: translate(0, 0) scale(1) rotate(0deg); }
            50% { transform: translate(80px, 50px) scale(1.12) rotate(180deg); }
            100% { transform: translate(-50px, 90px) scale(0.92) rotate(360deg); }
        }

        .container {
            max-width: 1360px;
            margin: 0 auto;
            padding: 0 32px;
            position: relative;
            z-index: 1;
        }

        /* Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: rgba(7, 9, 14, 0.92);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-glow);
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 76px;
            gap: 16px;
        }

        .brand-link {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: white;
            flex-shrink: 0;
        }

        .brand-logo-img {
            height: 38px;
            width: auto;
            object-fit: contain;
            filter: drop-shadow(0 4px 14px rgba(249, 115, 22, 0.4));
        }

        .brand-text-block {
            display: flex;
            flex-direction: column;
        }

        .brand-text {
            font-family: var(--font-display);
            font-weight: 800;
            font-size: 18px;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #ffffff 40%, #cbd5e1 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .brand-subtext {
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--accent-primary);
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 18px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-menu a {
            color: #94a3b8;
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            white-space: nowrap;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 6px 0;
        }

        .nav-menu a:hover {
            color: #ffffff;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 9px 20px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 13.5px;
            text-decoration: none;
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            border: none;
            white-space: nowrap;
        }

        .btn-outline {
            background: rgba(255, 255, 255, 0.05);
            color: white;
            border: 1px solid var(--border-glow);
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.25);
            transform: translateY(-2px);
        }

        .btn-primary {
            background: linear-gradient(135deg, #38bdf8 0%, #2563eb 100%);
            color: white;
            box-shadow: 0 4px 20px rgba(56, 189, 248, 0.35);
        }

        .btn-primary:hover {
            box-shadow: 0 6px 28px rgba(56, 189, 248, 0.5);
            transform: translateY(-2px);
        }

        .btn-accent {
            background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
            color: white;
            box-shadow: 0 4px 20px rgba(249, 115, 22, 0.35);
        }

        .btn-accent:hover {
            box-shadow: 0 6px 28px rgba(249, 115, 22, 0.5);
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero-section {
            padding: 85px 0 35px;
            text-align: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 5px 16px;
            border-radius: 30px;
            background: rgba(56, 189, 248, 0.08);
            border: 1px solid rgba(56, 189, 248, 0.25);
            color: var(--accent-primary);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.04em;
            margin-bottom: 14px;
        }

        .hero-title {
            font-family: var(--font-display);
            font-size: clamp(30px, 4.2vw, 50px);
            font-weight: 900;
            line-height: 1.15;
            letter-spacing: -0.03em;
            max-width: 1050px;
            margin: 0 auto 16px;
            background: linear-gradient(180deg, #ffffff 40%, #cbd5e1 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-title span {
            background: linear-gradient(135deg, #38bdf8 0%, #818cf8 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-subtitle {
            font-size: 17px;
            color: var(--text-secondary);
            max-width: 860px;
            margin: 0 auto 30px;
            font-weight: 400;
            line-height: 1.65;
        }

        .hero-actions-row {
            display: flex;
            gap: 16px;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }

        /* Stats Bar */
        .stats-section {
            background: rgba(18, 24, 38, 0.5);
            border-top: 1px solid var(--border-glow);
            border-bottom: 1px solid var(--border-glow);
            padding: 36px 0;
            backdrop-filter: blur(12px);
            margin-bottom: 50px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            text-align: center;
        }

        .stat-number {
            font-family: var(--font-display);
            font-size: 42px;
            font-weight: 900;
            background: linear-gradient(135deg, #ffffff 0%, #38bdf8 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .stat-label {
            font-size: 13.5px;
            color: var(--text-secondary);
            margin-top: 4px;
            font-weight: 500;
        }

        /* Section Commons */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-tag {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--accent-primary);
            margin-bottom: 10px;
            display: inline-block;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: 38px;
            font-weight: 800;
            letter-spacing: -0.03em;
            margin-bottom: 16px;
            color: white;
        }

        .section-subtitle {
            color: var(--text-secondary);
            font-size: 16.5px;
            max-width: 720px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Consulting Practice Cards Grid */
        .practices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
            gap: 28px;
            margin-bottom: 80px;
        }

        .practice-card {
            background: var(--bg-card);
            border: 1px solid var(--border-glow);
            border-radius: 20px;
            padding: 36px 30px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(12px);
            position: relative;
        }

        .practice-card:hover {
            background: var(--bg-card-hover);
            border-color: var(--border-highlight);
            transform: translateY(-6px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        }

        .practice-icon {
            font-size: 32px;
            margin-bottom: 16px;
            display: inline-block;
        }

        .practice-title {
            font-family: var(--font-display);
            font-size: 21px;
            font-weight: 800;
            color: white;
            margin-bottom: 10px;
        }

        .practice-desc {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.65;
            margin-bottom: 20px;
        }

        .practice-deliverables {
            list-style: none;
            margin-bottom: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding-top: 16px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            font-size: 13px;
            color: #cbd5e1;
        }

        .practice-deliverables li {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .practice-deliverables li span {
            color: var(--accent-emerald);
            font-weight: bold;
        }

        /* Diagnostic Assessment Wizard */
        .assessment-box {
            background: rgba(15, 23, 42, 0.85);
            border: 1px solid rgba(56, 189, 248, 0.3);
            border-radius: 24px;
            padding: 40px;
            backdrop-filter: blur(16px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
            margin-bottom: 90px;
        }

        .assessment-grid {
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 36px;
            align-items: center;
        }

        .assess-option-card {
            background: rgba(30, 41, 59, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            padding: 14px 18px;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
        }

        .assess-option-card:hover, .assess-option-card.selected {
            border-color: var(--accent-primary);
            background: rgba(56, 189, 248, 0.12);
        }

        .assess-result-panel {
            background: rgba(10, 15, 29, 0.95);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 18px;
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        /* Case Studies Grid */
        .case-studies-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            margin-bottom: 90px;
        }

        .case-card {
            background: var(--bg-card);
            border: 1px solid var(--border-glow);
            border-radius: 20px;
            padding: 32px 26px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: all 0.25s ease;
        }

        .case-card:hover {
            border-color: var(--border-highlight);
            transform: translateY(-4px);
        }

        .case-tag {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--accent-primary);
            margin-bottom: 8px;
        }

        .case-title {
            font-size: 19px;
            font-weight: 800;
            color: white;
            margin-bottom: 12px;
        }

        .case-metrics-badge {
            background: rgba(16, 185, 129, 0.12);
            border: 1px solid rgba(16, 185, 129, 0.3);
            border-radius: 8px;
            padding: 10px 14px;
            margin: 16px 0;
            font-size: 13px;
            color: #10b981;
            font-weight: 700;
        }

        /* Delivery Model Steps */
        .methodology-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 80px;
        }

        .method-step-card {
            background: rgba(15, 23, 42, 0.7);
            border: 1px solid var(--border-glow);
            border-radius: 16px;
            padding: 28px 22px;
            position: relative;
            transition: all 0.25s ease;
        }

        .method-step-card:hover {
            border-color: var(--accent-primary);
            transform: translateY(-4px);
        }

        .step-number {
            font-family: var(--font-display);
            font-size: 36px;
            font-weight: 900;
            color: rgba(56, 189, 248, 0.3);
            margin-bottom: 10px;
            line-height: 1;
        }

        .step-title {
            font-size: 17px;
            font-weight: 700;
            color: white;
            margin-bottom: 8px;
        }

        .step-desc {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* Products Grid */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
            gap: 28px;
            margin-bottom: 60px;
        }

        .product-card {
            background: var(--bg-card);
            border: 1px solid var(--border-glow);
            border-radius: 20px;
            padding: 34px 28px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            backdrop-filter: blur(12px);
        }

        .product-card:hover {
            background: var(--bg-card-hover);
            border-color: var(--border-highlight);
            transform: translateY(-6px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        }

        .product-card-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .card-icon-wrap {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: 20px;
        }

        .product-card-title {
            font-family: var(--font-display);
            font-size: 22px;
            font-weight: 800;
            margin-bottom: 6px;
            color: white;
        }

        .product-card-tagline {
            font-size: 12.5px;
            color: var(--accent-primary);
            font-weight: 600;
            margin-bottom: 14px;
        }

        .product-card-desc {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .product-card-relation {
            font-size: 12px;
            padding: 8px 12px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.06);
            color: #cbd5e1;
            margin-bottom: 24px;
        }

        .product-btn {
            width: 100%;
            padding: 11px 18px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 13.5px;
            text-decoration: none;
            text-align: center;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        /* DocUp Section */
        .docup-section {
            padding: 90px 0;
            background: linear-gradient(180deg, rgba(7, 9, 14, 0.4) 0%, rgba(18, 24, 38, 0.7) 100%);
            border-top: 1px solid var(--border-glow);
            border-bottom: 1px solid var(--border-glow);
            margin-bottom: 90px;
        }

        .docup-grid {
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 48px;
            align-items: center;
        }

        .ocr-preview-card {
            background: rgba(10, 15, 29, 0.95);
            border: 1px solid rgba(236, 72, 153, 0.3);
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(236, 72, 153, 0.1);
        }

        .json-viewer {
            background: rgba(0, 0, 0, 0.5);
            border-radius: 8px;
            padding: 16px;
            font-family: var(--font-mono);
            font-size: 12px;
            color: #a5b4fc;
            line-height: 1.6;
            overflow-x: auto;
        }

        /* Comparison Section */
        .comparison-section {
            padding: 60px 0 100px;
        }

        .comparison-table-wrap {
            background: var(--bg-card);
            border: 1px solid var(--border-glow);
            border-radius: 20px;
            overflow-x: auto;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
            font-size: 14px;
            min-width: 800px;
        }

        .comparison-table th, .comparison-table td {
            padding: 18px 24px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .comparison-table th {
            background: rgba(10, 15, 29, 0.95);
            font-family: var(--font-display);
            font-size: 15px;
            font-weight: 800;
            color: white;
        }

        .comparison-table th.highlight-col {
            background: rgba(56, 189, 248, 0.15);
            color: var(--accent-primary);
            border-left: 1px solid rgba(56, 189, 248, 0.3);
            border-right: 1px solid rgba(56, 189, 248, 0.3);
        }

        .comparison-table td.highlight-col {
            background: rgba(56, 189, 248, 0.05);
            border-left: 1px solid rgba(56, 189, 248, 0.3);
            border-right: 1px solid rgba(56, 189, 248, 0.3);
            font-weight: 600;
            color: white;
        }

        /* Security Section */
        .security-section {
            background: linear-gradient(180deg, rgba(18, 24, 38, 0.6) 0%, rgba(7, 9, 14, 0.9) 100%);
            border-top: 1px solid var(--border-glow);
            border-bottom: 1px solid var(--border-glow);
            padding: 90px 0;
            margin-bottom: 90px;
        }

        .security-flex {
            display: flex;
            align-items: center;
            gap: 60px;
        }

        .security-content {
            flex: 1.2;
        }

        .security-list {
            list-style: none;
            margin-top: 24px;
        }

        .security-list li {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            margin-bottom: 16px;
            font-size: 14.5px;
            color: var(--text-secondary);
        }

        .security-list li strong {
            color: white;
        }

        .security-badge-grid {
            flex: 1;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .security-card {
            background: var(--bg-card);
            border: 1px solid var(--border-glow);
            border-radius: 16px;
            padding: 24px;
            text-align: center;
            transition: all 0.2s;
            color: white;
        }

        .security-card:hover {
            border-color: var(--accent-primary);
            transform: translateY(-4px);
        }

        .security-card h4 {
            font-size: 16px;
            font-weight: 700;
            color: white;
            margin-top: 10px;
        }

        .security-card p {
            font-size: 12px;
            color: var(--text-secondary);
            margin-top: 4px;
        }

        /* FAQ Accordion */
        .faq-section {
            padding: 40px 0 90px;
        }

        .faq-accordion {
            max-width: 860px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border-glow);
            border-radius: 12px;
            margin-bottom: 16px;
            overflow: hidden;
            transition: border-color 0.2s;
        }

        .faq-item:hover {
            border-color: rgba(255, 255, 255, 0.2);
        }

        .faq-header {
            padding: 20px 24px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 700;
            font-size: 16px;
            color: white;
            user-select: none;
        }

        .faq-toggle {
            font-size: 20px;
            color: var(--accent-primary);
            transition: transform 0.25s ease;
        }

        .faq-body {
            display: none;
            padding: 0 24px 20px;
            font-size: 14.5px;
            color: var(--text-secondary);
            line-height: 1.7;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            padding-top: 16px;
        }

        .faq-item.active .faq-body {
            display: block;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }

        /* Modal */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(4, 6, 12, 0.85);
            backdrop-filter: blur(8px);
            z-index: 1000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .modal-overlay.active {
            display: flex;
        }

        .modal-box {
            background: #0f172a;
            border: 1px solid rgba(56, 189, 248, 0.4);
            border-radius: 20px;
            max-width: 560px;
            width: 100%;
            padding: 36px;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
            position: relative;
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: #94a3b8;
            font-size: 24px;
            cursor: pointer;
        }

        .form-group {
            margin-bottom: 16px;
            text-align: left;
        }

        .form-group label {
            display: block;
            font-size: 12.5px;
            font-weight: 700;
            color: #cbd5e1;
            margin-bottom: 6px;
        }

        .form-control {
            width: 100%;
            padding: 10px 14px;
            background: rgba(30, 41, 59, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            color: white;
            font-size: 14px;
            outline: none;
        }

        .form-control:focus {
            border-color: var(--accent-primary);
        }

        /* Footer */
        footer {
            border-top: 1px solid var(--border-glow);
            padding: 80px 0 40px;
            background: #040609;
            color: var(--text-secondary);
            font-size: 14px;
        }

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

        .footer-col h5 {
            color: white;
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 20px;
        }

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

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

        .footer-col ul li a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer-col ul li a:hover {
            color: var(--accent-primary);
        }

        .footer-bottom {
            border-top: 1px solid var(--border-glow);
            padding-top: 32px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }

        /* Mobile Drawer & Responsive Navigation */
        .mobile-nav-toggle {
            display: none;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.18);
            color: white;
            width: 42px;
            height: 42px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 20px;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            flex-shrink: 0;
        }

        .mobile-nav-toggle:hover {
            background: rgba(255, 255, 255, 0.16);
            border-color: var(--accent-primary);
        }

        .mobile-drawer-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(4, 6, 12, 0.85);
            backdrop-filter: blur(12px);
            z-index: 999;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .mobile-drawer-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        .mobile-drawer {
            position: fixed;
            top: 0;
            right: -320px;
            width: 300px;
            max-width: 85vw;
            height: 100vh;
            background: #090d16;
            border-left: 1px solid rgba(56, 189, 248, 0.25);
            box-shadow: -12px 0 50px rgba(0, 0, 0, 0.9);
            z-index: 1000;
            padding: 24px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            overflow-y: auto;
        }

        .mobile-drawer.active {
            right: 0;
        }

        .mobile-drawer-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--border-glow);
        }

        .mobile-drawer-close {
            background: none;
            border: none;
            color: #94a3b8;
            font-size: 26px;
            cursor: pointer;
            line-height: 1;
        }

        .mobile-drawer-menu {
            list-style: none;
            padding: 20px 0;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .mobile-drawer-menu li a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 14px;
            border-radius: 8px;
            color: #e2e8f0;
            text-decoration: none;
            font-size: 15px;
            font-weight: 600;
            transition: all 0.2s;
        }

        .mobile-drawer-menu li a:hover,
        .mobile-drawer-menu li a.active {
            background: rgba(56, 189, 248, 0.12);
            color: var(--accent-primary);
        }

        .mobile-drawer-actions {
            padding-top: 20px;
            border-top: 1px solid var(--border-glow);
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        /* Subpage Common Components */
        .subpage-hero {
            padding: 105px 0 45px;
            text-align: center;
            position: relative;
        }

        .subpage-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 18px;
            border-radius: 9999px;
            background: rgba(56, 189, 248, 0.12);
            border: 1px solid rgba(56, 189, 248, 0.35);
            color: var(--accent-primary);
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 20px;
        }

        .subpage-title {
            font-family: var(--font-display);
            font-size: 46px;
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 20px;
            letter-spacing: -0.02em;
        }

        .subpage-title span {
            background: linear-gradient(135deg, #38bdf8 0%, #818cf8 50%, #c084fc 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .subpage-subtitle {
            font-size: 17px;
            color: var(--text-secondary);
            max-width: 760px;
            margin: 0 auto 32px;
            line-height: 1.6;
        }

        .tech-badge-group {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 14px;
        }

        .tech-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 600;
            color: #cbd5e1;
        }

        /* Responsive Breakpoints */
        @media (max-width: 1100px) {
            .nav-menu { display: none; }
            .mobile-nav-toggle { display: inline-flex; }
            .practices-grid { grid-template-columns: repeat(2, 1fr); }
            .products-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 1024px) {
            .hero-title { font-size: 40px; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .methodology-grid { grid-template-columns: 1fr 1fr; }
            .case-studies-grid { grid-template-columns: 1fr; }
            .assessment-grid { grid-template-columns: 1fr; }
            .docup-grid { grid-template-columns: 1fr; }
            .security-flex { flex-direction: column; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 768px) {
            .container { padding: 0 20px; }
            .hero-section { padding: 120px 0 50px; }
            .hero-title { font-size: 30px; line-height: 1.25; }
            .hero-subtitle { font-size: 15px; margin-bottom: 28px; }
            .hero-actions-row { flex-direction: column; width: 100%; gap: 12px; }
            .hero-actions-row .btn { width: 100%; font-size: 14px; padding: 13px 20px; }
            .stats-grid { grid-template-columns: 1fr; gap: 16px; }
            .practices-grid { grid-template-columns: 1fr; }
            .products-grid { grid-template-columns: 1fr; }
            .subpage-title { font-size: 28px; }
            .subpage-subtitle { font-size: 15px; }
            .footer-grid { grid-template-columns: 1fr; gap: 32px; }
            .footer-bottom { flex-direction: column; text-align: center; }
            .nav-actions .btn-outline { display: none; }
            .brand-text { font-size: 16px; }
            .brand-subtext { font-size: 9px; }
        }