        :root {
            --bg: #ffffff;
            --bg-alt: #f1f5f9;
            --card-bg: #ffffff;
            --accent: #192c7d;
            --accent-soft: rgba(25, 44, 125, 0.06);
            --accent-strong: #3355cc;
            --brand-red: #ea2e23;
            --text-main: #0f172a;
            --text-muted: #576375;
            --border-subtle: rgba(25, 44, 125, 0.08);
            --danger: #ef4444;
            --radius-lg: 18px;
            --radius-pill: 999px;
            --shadow-soft: 0 18px 45px rgba(25, 44, 125, 0.08);
            --max-width: 1120px;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        ::selection {
            background: rgba(25, 44, 125, 0.15);
            color: var(--accent);
            text-shadow: none;
        }

        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f5f9;
        }

        ::-webkit-scrollbar-thumb {
            background: #cbd5e1;
            border-radius: 5px;
            border: 2px solid #f1f5f9;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #94a3b8;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background-color: #f8fafc;
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        img {
            max-width: 100%;
            display: block;
        }

        .page {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 1.3rem;
        }

        .page::before {
            content: "";
            position: fixed;
            inset: -200px;
            background:
                radial-gradient(circle at 0% 0%, rgba(25, 44, 125, 0.08), transparent 55%),
                radial-gradient(circle at 100% 0%, rgba(234, 46, 35, 0.06), transparent 55%);
            opacity: 1;
            mix-blend-mode: normal;
            pointer-events: none;
            z-index: -1;
        }

        header {
            position: sticky;
            top: 0;
            z-index: 40;
            backdrop-filter: blur(20px);
            background: rgba(255, 255, 255, 0.95);
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.9rem 1.3rem;
        }

        .logo-mark {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo-image {
            height: 36px;
            width: auto;
            object-fit: contain;
            filter: drop-shadow(0 0 8px rgba(111, 144, 255, 0.5));
            transition: filter 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transform-origin: left center;
            position: relative;
            z-index: 50;
            transform: scale(1.35);
        }

        .logo-image:hover {
            filter: drop-shadow(0 0 12px rgba(25, 44, 125, 0.4));
        }

        .nav-links {
            display: none;
            gap: 1.2rem;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.18em;
            color: var(--text-main);
            font-weight: 600;
        }

        .nav-links a {
            position: relative;
            padding-bottom: 0.2rem;
            cursor: pointer;
        }

        .nav-links a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            height: 2px;
            width: 0;
            background: var(--brand-red);
            border-radius: 999px;
            transition: width 0.25s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta {
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }

        .pill {
            border-radius: var(--radius-pill);
            border: 1px solid rgba(0, 0, 0, 0.08);
            padding: 0.3rem 0.7rem;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            color: var(--text-muted);
            display: none;
            white-space: nowrap;
        }

        .btn-primary {
            border-radius: var(--radius-pill);
            border: none;
            padding: 0.4rem 0.95rem;
            font-size: 0.78rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            background: linear-gradient(135deg, var(--accent), #2a41a8);
            color: #fff;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            box-shadow: 0 12px 25px rgba(25, 44, 125, 0.25);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-primary::after {
            content: '';
            position: absolute;
            top: 0;
            left: -75%;
            width: 50%;
            height: 100%;
            background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
            transform: skewX(-25deg);
            animation: shimmer 6s infinite;
        }

        @keyframes shimmer {
            0% {
                left: -75%;
            }

            10% {
                left: 125%;
            }

            100% {
                left: 125%;
            }
        }

        .btn-primary:hover {
            box-shadow: 0 0 25px rgba(234, 46, 35, 0.4);
            transform: translateY(-2px);
            background: linear-gradient(135deg, var(--brand-red), #ff5e52);
        }

        .btn-primary span.icon {
            font-size: 1rem;
        }

        .btn-primary:active {
            transform: translateY(1px);
            box-shadow: 0 8px 18px rgba(79, 139, 255, 0.4);
        }

        .btn-secondary {
            border-radius: var(--radius-pill);
            border: 1px solid rgba(0, 0, 0, 0.3);
            padding: 0.4rem 0.95rem;
            font-size: 0.78rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            background: #ffffff;
            color: var(--text-main);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
        }

        .btn-secondary:hover {
            border-color: var(--accent);
            color: var(--accent);
            background: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(25, 44, 125, 0.08);
        }

        .btn-large {
            padding: 0.9rem 1.8rem;
            font-size: 0.85rem;
        }

        @media (max-width: 640px) {
            .btn-large {
                width: 100%;
                justify-content: center;
            }
        }

        .hero {
            padding: 2.4rem 0 1.5rem;
        }

        .hero-grid {
            display: flex;
            flex-direction: column;
            gap: 1.8rem;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            border-radius: var(--radius-pill);
            padding: 0.25rem 0.6rem 0.25rem 0.28rem;
            background: #ffffff;
            border: 1px solid rgba(25, 44, 125, 0.15);
            box-shadow: 0 4px 15px rgba(25, 44, 125, 0.08);
            margin-bottom: 0.9rem;
        }

        .badge-dot {
            width: 20px;
            height: 20px;
            border-radius: 999px;
            background: radial-gradient(circle, #ff6b63, var(--brand-red));
            box-shadow: 0 0 10px rgba(234, 46, 35, 0.4);
            animation: pulse-red 2s infinite ease-in-out;
        }

        @keyframes pulse-red {
            0% {
                box-shadow: 0 0 10px rgba(234, 46, 35, 0.4);
                transform: scale(1);
            }

            50% {
                box-shadow: 0 0 22px rgba(234, 46, 35, 0.7);
                transform: scale(1.05);
            }

            100% {
                box-shadow: 0 0 10px rgba(234, 46, 35, 0.4);
                transform: scale(1);
            }
        }

        .badge-text {
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 0.22em;
            color: var(--accent-strong);
        }

        .hero-title {
            font-size: 1.9rem;
            line-height: 1.12;
            letter-spacing: -0.02em;
            margin-bottom: 0.6rem;
        }

        .hero-title span.highlight {
            background: linear-gradient(120deg, var(--accent), var(--brand-red));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .hero-kicker {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.18em;
            color: var(--text-muted);
            margin-bottom: 0.4rem;
        }

        .hero-subtitle {
            font-size: 0.95rem;
            color: var(--text-muted);
            max-width: 42rem;
            margin-bottom: 1.25rem;
        }

        .hero-subtitle strong {
            color: var(--text-main);
            font-weight: 600;
        }

        .hero-list {
            list-style: none;
            padding: 0;
            margin: 1rem 0 0 0.2rem;
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }

        .hero-list li {
            display: grid;
            grid-template-columns: 1.2rem 10.5rem 1fr;
            align-items: baseline;
            gap: 0.2rem;
        }

        .hero-list li::before {
            content: "✓";
            color: var(--accent-strong);
            font-weight: 700;
        }

        @media (max-width: 640px) {
            .hero-list li {
                grid-template-columns: 1.2rem 1fr;
                display: flex;
                flex-wrap: wrap;
            }

            .hero-list li strong {
                margin-right: 0.3rem;
            }
        }

        .hero-actions {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin-bottom: 1.4rem;
            flex-wrap: wrap;
        }

        .btn-ghost {
            border-radius: var(--radius-pill);
            padding: 0.4rem 0.9rem;
            border: 1px dashed rgba(0, 0, 0, 0.2);
            font-size: 0.78rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.18em;
            color: var(--text-muted);
            background: rgba(255, 255, 255, 0.5);
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-ghost:hover {
            border-color: var(--accent);
            color: var(--accent);
            box-shadow: 0 0 15px rgba(37, 99, 235, 0.1);
            background: rgba(37, 99, 235, 0.05);
            transform: translateY(-2px);
        }

        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 0.9rem;
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        .hero-meta-item {
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .hero-meta-dot {
            width: 6px;
            height: 6px;
            border-radius: 999px;
            background: var(--brand-red);
            box-shadow: 0 0 10px rgba(234, 46, 35, 0.6);
        }

        .hero-right {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .logo-explanation-img {
            width: 90%;
            max-width: 320px;
            height: auto;
            align-self: center;
            filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
        }

        .security-snapshot-card {
            border-radius: var(--radius-lg);
            padding: 2.5rem;
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.05);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
            margin-top: 2rem;
            position: relative;
            overflow: hidden;
        }

        .security-snapshot-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, var(--accent), var(--brand-red));
        }

        .snapshot-grid {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        @media (min-width: 900px) {
            .snapshot-grid {
                display: grid;
                grid-template-columns: 0.8fr 1.2fr;
                gap: 3rem;
                align-items: stretch;
            }

            .snapshot-scorecard {
                padding-right: 3rem;
                border-right: 1px dashed rgba(0, 0, 0, 0.1);
            }
        }

        .snapshot-scorecard {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            justify-content: space-between;
            height: 100%;
        }

        .score-block {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 1.5rem;
        }

        .hero-score-number {
            font-size: 4rem;
            font-weight: 800;
            line-height: 1;
            letter-spacing: -0.04em;
            color: var(--text-main);
        }

        .score-details {
            display: flex;
            flex-direction: column;
            gap: 0.2rem;
        }

        .score-label {
            font-size: 0.75rem;
            color: var(--text-muted);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .hero-score-pill {
            font-size: 0.65rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            padding: 0.4rem 0.8rem;
            border-radius: 99px;
            background: #ecfdf5;
            color: #059669;
            border: 1px solid #d1fae5;
            align-self: flex-start;
        }

        .hero-bars {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .hero-bar {
            height: 48px;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            display: flex;
            align-items: center;
            padding: 0 1.2rem;
            justify-content: space-between;
            width: 100%;
            transition: transform 0.2s ease;
            position: relative;
            overflow: hidden;
        }

        .hero-bar::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            width: var(--progress, 0%);
            z-index: 0;
            opacity: 0.12;
            transition: width 1s ease-out;
        }

        .bar-prevent::after {
            background: var(--accent);
        }

        .bar-detect::after {
            background: var(--accent-strong);
        }

        .bar-respond::after {
            background: #10b981;
        }

        .hero-bar span,
        .hero-bar .bar-right {
            position: relative;
            z-index: 1;
        }

        .bar-right {
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }

        .bar-score {
            font-size: 0.75rem;
            font-weight: 800;
        }

        .bar-prevent .bar-score {
            color: var(--accent);
        }

        .bar-detect .bar-score {
            color: var(--accent-strong);
        }

        .bar-respond .bar-score {
            color: #10b981;
        }

        .hero-bar:hover {
            transform: translateX(4px);
            border-color: var(--accent);
        }

        .hero-bar span {
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--text-main);
            letter-spacing: 0.05em;
        }

        .bar-indicator {
            width: 8px;
            height: 8px;
            border-radius: 50%;
        }

        .bar-prevent {
            border-left: 3px solid var(--accent);
        }

        .bar-prevent .bar-indicator {
            background: var(--accent);
            box-shadow: 0 0 8px rgba(25, 44, 125, 0.4);
        }

        .bar-detect {
            border-left: 3px solid var(--accent-strong);
        }

        .bar-detect .bar-indicator {
            background: var(--accent-strong);
            box-shadow: 0 0 8px rgba(51, 85, 204, 0.4);
        }

        .bar-respond {
            border-left: 3px solid #10b981;
        }

        .bar-respond .bar-indicator {
            background: #10b981;
            box-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
        }

        .hero-metrics {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 1rem;
            height: 100%;
            align-content: stretch;
            grid-auto-rows: 1fr;
        }

        @media (max-width: 640px) {
            .security-snapshot-card {
                padding: 1.5rem !important;
            }

            .hero-metrics {
                gap: 0.8rem;
            }
        }

        .hero-metric {
            background: #f8fafc;
            border: 1px solid rgba(0, 0, 0, 0.04);
            border-left: 3px solid var(--accent);
            border-radius: 12px;
            padding: 1.2rem;
            transition: all 0.3s ease;
        }

        .hero-metric:nth-child(even) {
            border-left-color: var(--brand-red);
        }

        .hero-metric:hover {
            background: #ffffff;
            box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.06);
            transform: translateY(-2px);
        }

        .hero-metric-label {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--text-muted);
            margin-bottom: 0.5rem;
        }

        .hero-metric-value {
            font-size: 1rem;
            font-weight: 700;
            color: var(--accent);
            line-height: 1.3;
        }

        .hero-metric:nth-child(even) .hero-metric-value {
            color: var(--brand-red);
        }

        .hero-right-label {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.18em;
            color: var(--text-muted);
            margin-bottom: 0.8rem;
        }

        section {
            padding: 1.9rem 0;
        }

        .section-header {
            margin-bottom: 1.4rem;
        }

        .section-kicker {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.22em;
            color: var(--text-muted);
            margin-bottom: 0.3rem;
        }

        .section-title {
            font-size: 1.25rem;
            letter-spacing: -0.01em;
            margin-bottom: 0.3rem;
        }

        .section-subtitle {
            font-size: 0.89rem;
            color: var(--text-muted);
            max-width: 100%;
        }

        .cards-grid {
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            gap: 0.9rem;
        }

        .card {
            border-radius: var(--radius-lg);
            background: #ffffff;
            border: 1px solid var(--border-subtle);
            padding: 1rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
            position: relative;
            overflow: hidden;
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                box-shadow 0.4s ease,
                border-color 0.4s ease;
            display: flex;
            flex-direction: column;
        }

        .card:hover {
            transform: translateY(-6px);
            border-color: rgba(25, 44, 125, 0.25);
            box-shadow: 0 20px 30px -5px rgba(25, 44, 125, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        .card::before {
            content: "";
            position: absolute;
            inset: -40%;
            background: radial-gradient(circle at 10% 0%, rgba(111, 144, 255, 0.09), transparent 60%);
            opacity: 0.7;
            pointer-events: none;
            transition: opacity 0.4s ease;
        }

        .card:hover::before {
            opacity: 1;
        }

        .card-inner {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .card-tag {
            font-size: 0.68rem;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            color: var(--accent-strong);
            margin-bottom: 0.35rem;
        }

        .card-title {
            font-size: 0.98rem;
            margin-bottom: 0.2rem;
        }

        .card-body {
            font-size: 0.84rem;
            color: var(--text-muted);
            margin-bottom: 0.6rem;
        }

        .card-list {
            font-size: 0.8rem;
            color: var(--text-muted);
            list-style: none;
            padding-left: 0;
            display: grid;
            gap: 0.2rem;
        }

        .card-list li::before {
            content: "▹";
            color: var(--accent-strong);
            margin-right: 0.35rem;
        }

        .card-footer {
            margin-top: auto;
            padding-top: 1rem;
            font-size: 0.74rem;
            color: var(--accent-strong);
            text-transform: uppercase;
            letter-spacing: 0.18em;
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            font-weight: 700;
        }

        .process-grid {
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            gap: 0.9rem;
        }

        .process-step {
            border-radius: 14px;
            border: 1px dashed rgba(0, 0, 0, 0.15);
            padding: 0.8rem 0.9rem;
            background: #ffffff;
            font-size: 0.8rem;
            display: flex;
            gap: 0.75rem;
            transition: all 0.3s ease;
        }

        .process-step:hover {
            border-color: var(--accent);
            box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.1);
            transform: translateY(-2px);
            background: #ffffff;
        }

        .process-step-number {
            width: 26px;
            height: 26px;
            border-radius: 999px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.78rem;
            font-weight: 600;
            background: var(--accent-soft);
            color: var(--accent-strong);
            border: 1px solid rgba(25, 44, 125, 0.2);
            flex-shrink: 0;
        }

        .process-step-title {
            font-weight: 600;
            margin-bottom: 0.15rem;
        }

        .process-step-body {
            color: var(--text-muted);
        }

        .pill-grid {
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            gap: 0.6rem;
            font-size: 0.78rem;
        }

        .pill-item {
            border-radius: var(--radius-pill);
            padding: 0.45rem 0.8rem;
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.08);
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            color: var(--text-muted);
        }

        .pill-badge {
            width: 10px;
            height: 10px;
            border-radius: 999px;
            background: linear-gradient(135deg, var(--brand-red), #ff6b63);
            box-shadow: 0 0 12px rgba(234, 46, 35, 0.5);
            flex-shrink: 0;
        }

        .contact-section {
            padding-bottom: 2.7rem;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            gap: 1.2rem;
        }

        .contact-card {
            border-radius: var(--radius-lg);
            background: linear-gradient(135deg, #ffffff, #f8fafc);
            border: 1px solid rgba(0, 0, 0, 0.05);
            padding: 1.1rem;
            box-shadow: var(--shadow-soft);
        }

        .contact-highlight {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 0.7rem;
        }

        .contact-highlight strong {
            color: var(--accent-strong);
        }

        form {
            display: grid;
            gap: 0.75rem;
            font-size: 0.8rem;
        }

        .field-group {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        label {
            color: var(--text-muted);
        }

        input,
        textarea,
        select {
            border-radius: 12px;
            border: 1px solid rgba(0, 0, 0, 0.1);
            background: #ffffff;
            color: var(--text-main);
            padding: 0.6rem 0.7rem;
            font: inherit;
            outline: none;
        }

        input::placeholder,
        textarea::placeholder {
            color: rgba(100, 116, 139, 0.6);
        }

        textarea {
            resize: vertical;
            min-height: 110px;
        }

        input:focus,
        textarea:focus,
        select:focus {
            border-color: var(--accent-strong);
            box-shadow: 0 0 0 1px rgba(111, 144, 255, 0.4);
        }

        .contact-meta {
            font-size: 0.75rem;
            color: var(--text-muted);
            display: grid;
            gap: 1.5rem;
            align-content: start;
        }

        .contact-meta-item {
            display: flex;
            gap: 0.55rem;
        }

        .contact-meta-label {
            width: 80px;
            flex-shrink: 0;
            color: var(--text-main);
            font-weight: 600;
        }

        .contact-badge-row {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 1rem;
            align-items: center;
        }

        .badge-soft {
            border-radius: var(--radius-pill);
            padding: 0.25rem 0.7rem;
            font-size: 0.68rem;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            border: 1px solid rgba(0, 0, 0, 0.1);
            color: var(--text-muted);
        }

        footer {
            border-top: 1px solid rgba(0, 0, 0, 0.06);
            padding: 0.9rem 0 1rem;
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        .footer-row {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            text-align: center;
            align-items: center;
            padding-bottom: 1.5rem;
        }

        .footer-left {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            align-items: center;
            width: 100%;
        }

        .footer-right {
            display: flex;
            flex-direction: column;
            gap: 0.35rem;
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            align-items: center;
            justify-content: center;
        }

        .footer-dot {
            width: 4px;
            height: 4px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.5);
        }

        @media (min-width: 640px) {
            .hero-grid {
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
                gap: 1.5rem;
            }

            .hero-left {
                flex: 0 0 62%;
            }

            .hero-right {
                flex: 0 0 35%;
                align-items: center;
            }

            .logo-explanation-img {
                max-width: 100%;
                width: auto;
                max-height: 380px;
            }

            .cards-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .pill-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .contact-grid {
                grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
            }
        }

        @media (min-width: 768px) {
            .nav-links {
                display: flex;
            }

            .logo-mark {
                margin-right: 4rem;
            }

            .pill {
                display: inline-flex;
            }

            .hero {
                padding: 3rem 0 2.1rem;
            }

            .hero-title {
                font-size: 2.35rem;
            }

            .section-title {
                font-size: 1.45rem;
            }

            .section {
                padding: 2.2rem 0;
            }

            .process-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (min-width: 1024px) {
            .cards-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }

        .mt-xs {
            margin-top: 0.45rem;
        }

        .stack-grid {
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            gap: 1.5rem;
        }

        .stack-category {
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: var(--radius-lg);
            padding: 1.2rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
        }

        .stack-cat-title {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--text-muted);
            margin-bottom: 0.9rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
        }

        .stack-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
        }

        .stack-tag {
            font-size: 0.75rem;
            background: rgba(37, 99, 235, 0.05);
            border: 1px solid rgba(37, 99, 235, 0.1);
            padding: 0.35rem 0.8rem;
            border-radius: 6px;
            color: #475569;
            cursor: default;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .stack-tag:hover {
            transform: translateY(-2px);
            background: #ffffff;
            color: var(--accent);
            border-color: var(--accent);
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
        }

        @media (max-width: 768px) {
            .nav-cta .btn-primary {
                padding: 0.4rem 0.7rem;
            }

            .nav-cta .btn-primary span:first-child {
                display: none;
            }

            .nav-cta .btn-primary span.icon {
                font-size: 1.2rem;
                margin: 0;
            }

            .hero-title {
                font-size: 1.65rem;
            }

            .hero-right {
                margin-top: 1.5rem;
            }

            .contact-meta {
                gap: 1rem;
                margin-top: 2rem;
            }

            .stack-grid {
                gap: 1rem;
            }

            .hero-left {
                text-align: center;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .badge {
                align-self: center;
                padding: 0.3rem 0.8rem;
                margin-bottom: 1rem;
                background: rgba(255, 255, 255, 0.8);
                backdrop-filter: blur(4px);
            }

            .badge-text {
                font-size: 0.65rem;
                letter-spacing: 0.12em;
            }

            .hero-kicker {
                display: none;
            }

            .hero-title {
                font-size: 2rem;
                line-height: 1.15;
                margin-bottom: 1rem;
            }

            .hero-subtitle {
                font-size: 1rem;
                line-height: 1.6;
                color: var(--text-muted);
                margin-bottom: 2rem;
            }

            .hero-actions {
                width: 100%;
                flex-direction: column;
                gap: 0.8rem;
            }

            .hero-actions .btn-primary,
            .hero-actions .btn-secondary,
            .hero-actions .btn-ghost {
                width: 100%;
                justify-content: center;
                padding: 1rem;
            }

            .hero-list {
                width: 100%;
                text-align: left;
                background: linear-gradient(to bottom, #f8fafc, #ffffff);
                border: 1px solid rgba(0, 0, 0, 0.04);
                padding: 1.5rem;
                border-radius: 16px;
                margin-top: 2rem;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
            }

            .hero-list li {
                align-items: flex-start;
                gap: 0.8rem;
                margin-bottom: 0.5rem;
                font-size: 0.9rem;
            }
        }

        @media (min-width: 768px) {
            .stack-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }

        .compliance-showcase {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            align-items: center;
            justify-content: center;
            margin-top: 1rem;
        }

        .compliance-card {
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: var(--radius-lg);
            padding: 1.5rem;
            flex: 1;
            width: 100%;
            position: relative;
            transition: all 0.3s ease;
        }

        .compliance-card.old-way {
            border-style: dashed;
            opacity: 0.6;
            background: #f8fafc;
        }

        .compliance-card.new-way {
            background: linear-gradient(135deg, #eff6ff, #f0f9ff);
            border: 1px solid rgba(37, 99, 235, 0.2);
            box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
        }

        .compliance-card.new-way:hover {
            border-color: var(--accent);
            box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
            transform: translateY(-4px);
        }

        .comp-icon {
            font-size: 1.5rem;
            margin-bottom: 0.8rem;
            font-weight: 800;
        }

        .old-way .comp-icon {
            color: var(--danger);
        }

        .new-way .comp-icon {
            color: var(--accent-strong);
        }

        .comp-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.4rem;
        }

        .comp-desc {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 1rem;
            line-height: 1.5;
        }

        .comp-status {
            display: inline-block;
            padding: 0.3rem 0.6rem;
            border-radius: 6px;
            font-size: 0.7rem;
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 0.08em;
        }

        .status-bad {
            background: rgba(255, 75, 107, 0.1);
            color: var(--danger);
        }

        .status-good {
            background: rgba(107, 207, 255, 0.15);
            color: var(--accent-strong);
        }

        .compliance-arrow {
            font-size: 1.5rem;
            color: var(--text-muted);
            transform: rotate(90deg);
        }

        @media (min-width: 768px) {
            .compliance-showcase {
                flex-direction: row;
                align-items: stretch;
                gap: 2rem;
            }

            .compliance-arrow {
                transform: rotate(0deg);
                font-size: 2rem;
            }
        }

        .excel-hell-list {
            list-style: none;
            padding-left: 0;
            font-size: 0.85rem;
            color: var(--text-muted);
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
            margin-bottom: 1rem;
            opacity: 0.8;
        }

        .excel-hell-list li {
            line-height: 1.5;
            margin-bottom: 0.2rem;
        }

        .excel-hell-list li::before {
            content: "•";
            color: var(--danger);
            font-size: 1.2em;
            margin-right: 0.5rem;
            vertical-align: text-top;
            line-height: 1;
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-delay-1 {
            transition-delay: 0.1s;
        }

        .reveal-delay-2 {
            transition-delay: 0.2s;
        }

        .reveal-delay-3 {
            transition-delay: 0.3s;
        }

        .comparison-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin-top: 1.5rem;
        }

        @media (min-width: 768px) {
            .comparison-grid {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
        }

        .brand-mark {
            font-weight: 700;
            color: #1e293b;
            letter-spacing: -0.02em;
        }

        .brand-mark.inverse {
            color: #ffffff;
        }

        @keyframes breathe {
            0% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(0, 119, 181, 0.0);
                border-color: rgba(0, 119, 181, 0.15);
            }

            50% {
                transform: scale(1.08);
                box-shadow: 0 0 12px rgba(0, 119, 181, 0.15);
                border-color: rgba(0, 119, 181, 0.4);
            }

            100% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(0, 119, 181, 0.0);
                border-color: rgba(0, 119, 181, 0.15);
            }
        }

        .nav-linkedin {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            color: #0077b5;
            background: rgba(0, 119, 181, 0.04);
            border: 1px solid rgba(0, 119, 181, 0.15);
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            animation: breathe 3s infinite ease-in-out;
            margin-right: 0.5rem;
        }

        .nav-linkedin:hover {
            animation-play-state: paused;
            background: #0077b5;
            color: white;
            transform: scale(1.15) rotate(0deg);
            box-shadow: 0 4px 15px rgba(0, 119, 181, 0.3);
            border-color: #0077b5;
        }

        @media (min-width: 768px) {
            .footer-row {
                flex-direction: row;
                justify-content: space-between;
                align-items: flex-start;
                text-align: left;
                padding-bottom: 0;
            }

            .footer-left {
                align-items: flex-start;
                width: auto;
            }

            .footer-links {
                justify-content: flex-start;
            }

            .footer-right {
                align-items: flex-end;
            }
        }

        /* --- Chatbot styles moved to bottom of file, unchanged --- */
        .chatbot-container {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 1000;
            font-family: inherit;
        }

        .chatbot-toggle {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--accent);
            box-shadow: 0 4px 15px rgba(25, 44, 125, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            color: white;
            border: none;
            position: relative;
        }

        .chatbot-toggle:hover {
            transform: scale(1.1);
            background: var(--accent-strong);
        }

        .chatbot-icon {
            font-size: 1.5rem;
        }

        .chatbot-window {
            position: absolute;
            bottom: 80px;
            right: 0;
            width: 400px;
            max-width: calc(100vw - 2rem);
            height: 600px;
            background: #ffffff;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(0, 0, 0, 0.08);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            opacity: 0;
            transform: translateY(20px) scale(0.95);
            pointer-events: none;
            transition: all 0.3s ease;
            transform-origin: bottom right;
        }

        @media (max-width: 480px) {
            .chatbot-container {
                right: 1rem;
                bottom: 1rem;
            }

            .chatbot-window {
                width: calc(100vw - 2rem);
                height: 75vh;
                bottom: 70px;
            }
        }

        .chatbot-window.active {
            opacity: 1;
            transform: translateY(0) scale(1);
            pointer-events: all;
        }

        .chat-header {
            padding: 1rem 1.2rem;
            background: linear-gradient(135deg, var(--accent), var(--accent-strong));
            color: white;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .chat-title h3 {
            font-size: 1rem;
            margin: 0;
            font-weight: 600;
        }

        .chat-title span {
            font-size: 0.75rem;
            opacity: 0.9;
        }

        .chat-close {
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            font-size: 1.2rem;
            opacity: 0.8;
            transition: opacity 0.2s;
        }

        .chat-close:hover {
            opacity: 1;
        }

        .chat-body {
            flex: 1;
            padding: 1rem;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            background: #f8fafc;
            scroll-behavior: smooth;
        }

        .message {
            max-width: 85%;
            padding: 0.8rem 1rem;
            border-radius: 12px;
            font-size: 0.9rem;
            line-height: 1.5;
            position: relative;
            animation: fadeIn 0.3s ease;
            white-space: pre-line;
            word-break: break-word;
        }

        .message.bot {
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.05);
            align-self: flex-start;
            color: var(--text-main);
            border-bottom-left-radius: 4px;
        }

        .message.user {
            background: var(--accent);
            color: white;
            align-self: flex-end;
            border-bottom-right-radius: 4px;
        }

        .chat-options {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 0.5rem;
        }

        .chat-option-btn {
            background: white;
            border: 1px solid var(--accent);
            color: var(--accent);
            padding: 0.5rem 0.8rem;
            border-radius: 99px;
            font-size: 0.8rem;
            cursor: pointer;
            transition: all 0.2s;
            font-weight: 500;
        }

        .chat-option-btn:hover {
            background: var(--accent);
            color: white;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(5px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .chat-body::-webkit-scrollbar {
            width: 6px;
        }

        .chat-body::-webkit-scrollbar-thumb {
            background-color: rgba(0, 0, 0, 0.1);
            border-radius: 3px;
        }

        .typing-indicator {
            display: inline-flex;
            gap: 4px;
            padding: 4px 2px;
            align-items: center;
        }

        .typing-dot {
            width: 6px;
            height: 6px;
            background: #94a3b8;
            border-radius: 50%;
            animation: typingBounce 1.4s infinite ease-in-out both;
        }

        .typing-dot:nth-child(1) {
            animation-delay: -0.32s;
        }

        .typing-dot:nth-child(2) {
            animation-delay: -0.16s;
        }

        @keyframes typingBounce {

            0%,
            80%,
            100% {
                transform: scale(0);
                opacity: 0.5;
            }

            40% {
                transform: scale(1);
                opacity: 1;
            }
        }

        footer {
            border-top: 1px solid rgba(0, 0, 0, 0.06);
            padding: 0.9rem 0 1rem;
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        .footer-row {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            text-align: center;
            align-items: center;
            padding-bottom: 1.5rem;
        }

        .footer-left {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            align-items: center;
            width: 100%;
        }

        .footer-right {
            display: flex;
            flex-direction: column;
            gap: 0.35rem;
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            align-items: center;
            justify-content: center;
        }

        .footer-dot {
            width: 4px;
            height: 4px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.5);
        }

        @media (min-width: 640px) {
            .hero-grid {
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
                gap: 1.5rem;
            }

            .hero-left {
                flex: 0 0 62%;
            }

            .hero-right {
                flex: 0 0 35%;
                align-items: center;
            }

            .logo-explanation-img {
                max-width: 100%;
                width: auto;
                max-height: 380px;
            }

            .cards-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .pill-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .contact-grid {
                grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
            }
        }

        @media (min-width: 768px) {
            .nav-links {
                display: flex;
            }

            .logo-mark {
                margin-right: 4rem;
            }

            .pill {
                display: inline-flex;
            }

            .hero {
                padding: 3rem 0 2.1rem;
            }

            .hero-title {
                font-size: 2.35rem;
            }

            .section-title {
                font-size: 1.45rem;
            }

            .section {
                padding: 2.2rem 0;
            }

            .process-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (min-width: 1024px) {
            .cards-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }

        .mt-xs {
            margin-top: 0.45rem;
        }

        .stack-grid {
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            gap: 1.5rem;
        }

        .stack-category {
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: var(--radius-lg);
            padding: 1.2rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
        }

        .stack-cat-title {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--text-muted);
            margin-bottom: 0.9rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
        }

        .stack-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
        }

        .stack-tag {
            font-size: 0.75rem;
            background: rgba(37, 99, 235, 0.05);
            border: 1px solid rgba(37, 99, 235, 0.1);
            padding: 0.35rem 0.8rem;
            border-radius: 6px;
            color: #475569;
            cursor: default;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .stack-tag:hover {
            transform: translateY(-2px);
            background: #ffffff;
            color: var(--accent);
            border-color: var(--accent);
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
        }

        @media (max-width: 768px) {
            .nav-cta .btn-primary {
                padding: 0.4rem 0.7rem;
            }

            .nav-cta .btn-primary span:first-child {
                display: none;
            }

            .nav-cta .btn-primary span.icon {
                font-size: 1.2rem;
                margin: 0;
            }

            .hero-title {
                font-size: 1.65rem;
            }

            .hero-right {
                margin-top: 1.5rem;
            }

            .contact-meta {
                gap: 1rem;
                margin-top: 2rem;
            }

            .stack-grid {
                gap: 1rem;
            }

            .hero-left {
                text-align: center;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .badge {
                align-self: center;
                padding: 0.3rem 0.8rem;
                margin-bottom: 1rem;
                background: rgba(255, 255, 255, 0.8);
                backdrop-filter: blur(4px);
            }

            .badge-text {
                font-size: 0.65rem;
                letter-spacing: 0.12em;
            }

            .hero-kicker {
                display: none;
            }

            .hero-title {
                font-size: 2rem;
                line-height: 1.15;
                margin-bottom: 1rem;
            }

            .hero-subtitle {
                font-size: 1rem;
                line-height: 1.6;
                color: var(--text-muted);
                margin-bottom: 2rem;
            }

            .hero-actions {
                width: 100%;
                flex-direction: column;
                gap: 0.8rem;
            }

            .hero-actions .btn-primary,
            .hero-actions .btn-secondary,
            .hero-actions .btn-ghost {
                width: 100%;
                justify-content: center;
                padding: 1rem;
            }

            .hero-list {
                width: 100%;
                text-align: left;
                background: linear-gradient(to bottom, #f8fafc, #ffffff);
                border: 1px solid rgba(0, 0, 0, 0.04);
                padding: 1.5rem;
                border-radius: 16px;
                margin-top: 2rem;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
            }

            .hero-list li {
                align-items: flex-start;
                gap: 0.8rem;
                margin-bottom: 0.5rem;
                font-size: 0.9rem;
            }
        }

        @media (min-width: 768px) {
            .stack-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }

        .compliance-showcase {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            align-items: center;
            justify-content: center;
            margin-top: 1rem;
        }

        .compliance-card {
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: var(--radius-lg);
            padding: 1.5rem;
            flex: 1;
            width: 100%;
            position: relative;
            transition: all 0.3s ease;
        }

        .compliance-card.old-way {
            border-style: dashed;
            opacity: 0.6;
            background: #f8fafc;
        }

        .compliance-card.new-way {
            background: linear-gradient(135deg, #eff6ff, #f0f9ff);
            border: 1px solid rgba(37, 99, 235, 0.2);
            box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
        }

        .compliance-card.new-way:hover {
            border-color: var(--accent);
            box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
            transform: translateY(-4px);
        }

        .comp-icon {
            font-size: 1.5rem;
            margin-bottom: 0.8rem;
            font-weight: 800;
        }

        .old-way .comp-icon {
            color: var(--danger);
        }

        .new-way .comp-icon {
            color: var(--accent-strong);
        }

        .comp-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.4rem;
        }

        .comp-desc {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 1rem;
            line-height: 1.5;
        }

        .comp-status {
            display: inline-block;
            padding: 0.3rem 0.6rem;
            border-radius: 6px;
            font-size: 0.7rem;
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 0.08em;
        }

        .status-bad {
            background: rgba(255, 75, 107, 0.1);
            color: var(--danger);
        }

        .status-good {
            background: rgba(107, 207, 255, 0.15);
            color: var(--accent-strong);
        }

        .compliance-arrow {
            font-size: 1.5rem;
            color: var(--text-muted);
            transform: rotate(90deg);
        }

        @media (min-width: 768px) {
            .compliance-showcase {
                flex-direction: row;
                align-items: stretch;
                gap: 2rem;
            }

            .compliance-arrow {
                transform: rotate(0deg);
                font-size: 2rem;
            }
        }

        .excel-hell-list {
            list-style: none;
            padding-left: 0;
            font-size: 0.85rem;
            color: var(--text-muted);
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
            margin-bottom: 1rem;
            opacity: 0.8;
        }

        .excel-hell-list li {
            line-height: 1.5;
            margin-bottom: 0.2rem;
        }

        .excel-hell-list li::before {
            content: "•";
            color: var(--danger);
            font-size: 1.2em;
            margin-right: 0.5rem;
            vertical-align: text-top;
            line-height: 1;
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-delay-1 {
            transition-delay: 0.1s;
        }

        .reveal-delay-2 {
            transition-delay: 0.2s;
        }

        .reveal-delay-3 {
            transition-delay: 0.3s;
        }

        .comparison-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin-top: 1.5rem;
        }

        @media (min-width: 768px) {
            .comparison-grid {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
        }

        .brand-mark {
            font-weight: 700;
            color: #1e293b;
            letter-spacing: -0.02em;
        }

        .brand-mark.inverse {
            color: #ffffff;
        }

        @keyframes breathe {
            0% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(0, 119, 181, 0.0);
                border-color: rgba(0, 119, 181, 0.15);
            }

            50% {
                transform: scale(1.08);
                box-shadow: 0 0 12px rgba(0, 119, 181, 0.15);
                border-color: rgba(0, 119, 181, 0.4);
            }

            100% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(0, 119, 181, 0.0);
                border-color: rgba(0, 119, 181, 0.15);
            }
        }

        .nav-linkedin {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            color: #0077b5;
            background: rgba(0, 119, 181, 0.04);
            border: 1px solid rgba(0, 119, 181, 0.15);
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            animation: breathe 3s infinite ease-in-out;
            margin-right: 0.5rem;
        }

        .nav-linkedin:hover {
            animation-play-state: paused;
            background: #0077b5;
            color: white;
            transform: scale(1.15) rotate(0deg);
            box-shadow: 0 4px 15px rgba(0, 119, 181, 0.3);
            border-color: #0077b5;
        }

        @media (min-width: 768px) {
            .footer-row {
                flex-direction: row;
                justify-content: space-between;
                align-items: flex-start;
                text-align: left;
                padding-bottom: 0;
            }

            .footer-left {
                align-items: flex-start;
                width: auto;
            }

            .footer-links {
                justify-content: flex-start;
            }

            .footer-right {
                align-items: flex-end;
            }
        }

        /* --- Chatbot styles moved to bottom of file, unchanged --- */
        .chatbot-container {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 1000;
            font-family: inherit;
        }

        .chatbot-toggle {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--accent);
            box-shadow: 0 4px 15px rgba(25, 44, 125, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            color: white;
            border: none;
            position: relative;
        }

        .chatbot-toggle:hover {
            transform: scale(1.1);
            background: var(--accent-strong);
        }

        .chatbot-icon {
            font-size: 1.5rem;
        }

        .chatbot-window {
            position: absolute;
            bottom: 80px;
            right: 0;
            width: 400px;
            max-width: calc(100vw - 2rem);
            height: 600px;
            background: #ffffff;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(0, 0, 0, 0.08);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            opacity: 0;
            transform: translateY(20px) scale(0.95);
            pointer-events: none;
            transition: all 0.3s ease;
            transform-origin: bottom right;
        }

        @media (max-width: 480px) {
            .chatbot-container {
                right: 1rem;
                bottom: 1rem;
            }

            .chatbot-window {
                width: calc(100vw - 2rem);
                height: 75vh;
                bottom: 70px;
            }
        }

        .chatbot-window.active {
            opacity: 1;
            transform: translateY(0) scale(1);
            pointer-events: all;
        }

        .chat-header {
            padding: 1rem 1.2rem;
            background: linear-gradient(135deg, var(--accent), var(--accent-strong));
            color: white;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .chat-title h3 {
            font-size: 1rem;
            margin: 0;
            font-weight: 600;
        }

        .chat-title span {
            font-size: 0.75rem;
            opacity: 0.9;
        }

        .chat-close {
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            font-size: 1.2rem;
            opacity: 0.8;
            transition: opacity 0.2s;
        }

        .chat-close:hover {
            opacity: 1;
        }

        .chat-body {
            flex: 1;
            padding: 1rem;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            background: #f8fafc;
            scroll-behavior: smooth;
        }

        .message {
            max-width: 85%;
            padding: 0.8rem 1rem;
            border-radius: 12px;
            font-size: 0.9rem;
            line-height: 1.5;
            position: relative;
            animation: fadeIn 0.3s ease;
            white-space: pre-wrap;
            word-break: break-word;
        }

        .message.bot {
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.05);
            align-self: flex-start;
            color: var(--text-main);
            border-bottom-left-radius: 4px;
        }

        .message.user {
            background: var(--accent);
            color: white;
            align-self: flex-end;
            border-bottom-right-radius: 4px;
        }

        .chat-options {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 0.5rem;
        }

        .chat-option-btn {
            background: white;
            border: 1px solid var(--accent);
            color: var(--accent);
            padding: 0.5rem 0.8rem;
            border-radius: 99px;
            font-size: 0.8rem;
            cursor: pointer;
            transition: all 0.2s;
            font-weight: 500;
        }

        .chat-option-btn:hover {
            background: var(--accent);
            color: white;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(5px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .chat-body::-webkit-scrollbar {
            width: 6px;
        }

        .chat-body::-webkit-scrollbar-thumb {
            background-color: rgba(0, 0, 0, 0.1);
            border-radius: 3px;
        }

        .typing-indicator {
            display: inline-flex;
            gap: 4px;
            padding: 4px 2px;
            align-items: center;
        }

        .typing-dot {
            width: 6px;
            height: 6px;
            background: #94a3b8;
            border-radius: 50%;
            animation: typingBounce 1.4s infinite ease-in-out both;
        }

        .typing-dot:nth-child(1) {
            animation-delay: -0.32s;
        }

        .typing-dot:nth-child(2) {
            animation-delay: -0.16s;
        }

        @keyframes typingBounce {

            0%,
            80%,
            100% {
                transform: scale(0);
                opacity: 0.5;
            }

            40% {
                transform: scale(1);
                opacity: 1;
            }
        }

        /* --- CSP Cleanup Classes --- */
        .hero-stats-header {
            margin-bottom: 2rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            padding-bottom: 1rem;
        }

        .progress-98 {
            --progress: 98%;
        }

        .progress-100 {
            --progress: 100%;
        }

        .progress-90 {
            --progress: 90%;
        }

        .stat-label-sub {
            font-weight: 400;
            font-size: 0.85em;
            color: var(--text-muted);
        }

        .comp-desc-active {
            display: block;
        }

        .excel-hell-visible {
            opacity: 1;
        }

        .assurance-cta {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: start;
            margin-top: 1rem;
        }

        .assurance-btn {
            width: 100%;
            justify-content: center;
            padding: 0.8rem 1rem;
        }

        .assurance-note {
            font-size: 0.8rem;
            color: var(--text-muted);
            line-height: 1.4;
        }

        .policy-link {
            text-decoration: underline;
        }

        .social-link-wrapper {
            text-decoration: none;
            display: inline-flex;
        }

        .credit-link {
            text-decoration: none;
            color: inherit;
        }

        /* --- Dynamic Glow Classes (CSP Compliant) --- */
        .stack-tag.glow-aws:hover {
            box-shadow: 0 0 15px rgba(255, 153, 0, 0.25), 0 0 30px rgba(255, 153, 0, 0.12);
            border-color: rgba(255, 153, 0, 0.5);
        }

        .stack-tag.glow-azure:hover {
            box-shadow: 0 0 15px rgba(0, 137, 214, 0.25), 0 0 30px rgba(0, 137, 214, 0.12);
            border-color: rgba(0, 137, 214, 0.5);
        }

        .stack-tag.glow-gcp:hover {
            box-shadow: 0 0 15px rgba(66, 133, 244, 0.25), 0 0 30px rgba(66, 133, 244, 0.12);
            border-color: rgba(66, 133, 244, 0.5);
        }

        .stack-tag.glow-k8s:hover {
            box-shadow: 0 0 15px rgba(50, 108, 229, 0.25), 0 0 30px rgba(50, 108, 229, 0.12);
            border-color: rgba(50, 108, 229, 0.5);
        }

        .stack-tag.glow-docker:hover {
            box-shadow: 0 0 15px rgba(36, 150, 237, 0.25), 0 0 30px rgba(36, 150, 237, 0.12);
            border-color: rgba(36, 150, 237, 0.5);
        }

        .stack-tag.glow-terraform:hover {
            box-shadow: 0 0 15px rgba(227, 79, 38, 0.25), 0 0 30px rgba(227, 79, 38, 0.12);
            border-color: rgba(227, 79, 38, 0.5);
        }

        .stack-tag.glow-python:hover {
            box-shadow: 0 0 15px rgba(55, 118, 171, 0.25), 0 0 30px rgba(55, 118, 171, 0.12);
            border-color: rgba(55, 118, 171, 0.5);
        }

        .stack-tag.glow-nodejs:hover {
            box-shadow: 0 0 15px rgba(104, 160, 99, 0.25), 0 0 30px rgba(104, 160, 99, 0.12);
            border-color: rgba(104, 160, 99, 0.5);
        }

        .stack-tag.glow-react:hover {
            box-shadow: 0 0 15px rgba(97, 218, 251, 0.25), 0 0 30px rgba(97, 218, 251, 0.12);
            border-color: rgba(97, 218, 251, 0.5);
        }

        .stack-tag.glow-swift:hover {
            box-shadow: 0 0 15px rgba(240, 81, 56, 0.25), 0 0 30px rgba(240, 81, 56, 0.12);
            border-color: rgba(240, 81, 56, 0.5);
        }

        .stack-tag.glow-kotlin:hover {
            box-shadow: 0 0 15px rgba(61, 220, 132, 0.25), 0 0 30px rgba(61, 220, 132, 0.12);
            border-color: rgba(61, 220, 132, 0.5);
        }

        .stack-tag.glow-flutter:hover {
            box-shadow: 0 0 15px rgba(2, 86, 155, 0.25), 0 0 30px rgba(2, 86, 155, 0.12);
            border-color: rgba(2, 86, 155, 0.5);
        }

        .stack-tag.glow-iso27001:hover {
            box-shadow: 0 0 15px rgba(0, 208, 132, 0.25), 0 0 30px rgba(0, 208, 132, 0.12);
            border-color: rgba(0, 208, 132, 0.5);
        }

        .stack-tag.glow-iso42001:hover {
            box-shadow: 0 0 15px rgba(6, 147, 227, 0.25), 0 0 30px rgba(6, 147, 227, 0.12);
            border-color: rgba(6, 147, 227, 0.5);
        }

        .stack-tag.glow-iso22301:hover {
            box-shadow: 0 0 15px rgba(153, 0, 239, 0.25), 0 0 30px rgba(153, 0, 239, 0.12);
            border-color: rgba(153, 0, 239, 0.5);
        }

        .stack-tag.glow-soc2:hover {
            box-shadow: 0 0 15px rgba(6, 147, 227, 0.25), 0 0 30px rgba(6, 147, 227, 0.12);
            border-color: rgba(6, 147, 227, 0.5);
        }

        .stack-tag.glow-gdpr:hover {
            box-shadow: 0 0 15px rgba(153, 0, 239, 0.25), 0 0 30px rgba(153, 0, 239, 0.12);
            border-color: rgba(153, 0, 239, 0.5);
        }

        .stack-tag.glow-openai:hover {
            box-shadow: 0 0 15px rgba(16, 163, 127, 0.25), 0 0 30px rgba(16, 163, 127, 0.12);
            border-color: rgba(16, 163, 127, 0.5);
        }

        .stack-tag.glow-langchain:hover {
            box-shadow: 0 0 15px rgba(245, 166, 35, 0.25), 0 0 30px rgba(245, 166, 35, 0.12);
            border-color: rgba(245, 166, 35, 0.5);
        }

        .stack-tag.glow-llamaindex:hover {
            box-shadow: 0 0 15px rgba(6, 147, 227, 0.25), 0 0 30px rgba(6, 147, 227, 0.12);
            border-color: rgba(6, 147, 227, 0.5);
        }

        .stack-tag.glow-ai-agents:hover {
            box-shadow: 0 0 15px rgba(128, 90, 213, 0.25), 0 0 30px rgba(128, 90, 213, 0.12);
            border-color: rgba(128, 90, 213, 0.5);
        }

        .stack-tag.glow-autogen:hover {
            box-shadow: 0 0 15px rgba(6, 147, 227, 0.25), 0 0 30px rgba(6, 147, 227, 0.12);
            border-color: rgba(6, 147, 227, 0.5);
        }

        .stack-tag.glow-pytorch:hover {
            box-shadow: 0 0 15px rgba(238, 76, 44, 0.25), 0 0 30px rgba(238, 76, 44, 0.12);
            border-color: rgba(238, 76, 44, 0.5);
        }

        .stack-tag.glow-tensorflow:hover {
            box-shadow: 0 0 15px rgba(255, 111, 0, 0.25), 0 0 30px rgba(255, 111, 0, 0.12);
            border-color: rgba(255, 111, 0, 0.5);
        }

        .stack-tag.glow-huggingface:hover {
            box-shadow: 0 0 15px rgba(255, 210, 30, 0.25), 0 0 30px rgba(255, 210, 30, 0.12);
            border-color: rgba(255, 210, 30, 0.5);
        }

        .stack-tag.glow-vector:hover {
            box-shadow: 0 0 15px rgba(104, 84, 230, 0.25), 0 0 30px rgba(104, 84, 230, 0.12);
            border-color: rgba(104, 84, 230, 0.5);
        }

        .stack-tag.glow-systems:hover {
            box-shadow: 0 0 15px rgba(113, 128, 150, 0.25), 0 0 30px rgba(113, 128, 150, 0.12);
            border-color: rgba(113, 128, 150, 0.5);
        }

        .stack-tag.glow-cobit:hover {
            box-shadow: 0 0 15px rgba(56, 161, 105, 0.25), 0 0 30px rgba(56, 161, 105, 0.12);
            border-color: rgba(56, 161, 105, 0.5);
        }

        .stack-tag.glow-vrm:hover {
            box-shadow: 0 0 15px rgba(229, 62, 62, 0.25), 0 0 30px rgba(229, 62, 62, 0.12);
            border-color: rgba(229, 62, 62, 0.5);
        }

        .stack-tag.glow-arch:hover {
            box-shadow: 0 0 15px rgba(43, 108, 176, 0.25), 0 0 30px rgba(43, 108, 176, 0.12);
            border-color: rgba(43, 108, 176, 0.5);
        }

        .stack-tag.glow-readiness:hover {
            box-shadow: 0 0 15px rgba(214, 158, 46, 0.25), 0 0 30px rgba(214, 158, 46, 0.12);
            border-color: rgba(214, 158, 46, 0.5);
        }

        .stack-tag.glow-controls:hover {
            box-shadow: 0 0 15px rgba(113, 128, 150, 0.25), 0 0 30px rgba(113, 128, 150, 0.12);
            border-color: rgba(113, 128, 150, 0.5);
        }

        .stack-tag.glow-infosec:hover {
            box-shadow: 0 0 15px rgba(49, 130, 206, 0.25), 0 0 30px rgba(49, 130, 206, 0.12);
            border-color: rgba(49, 130, 206, 0.5);
        }

        .stack-tag.glow-privacy:hover {
            box-shadow: 0 0 15px rgba(128, 90, 213, 0.25), 0 0 30px rgba(128, 90, 213, 0.12);
            border-color: rgba(128, 90, 213, 0.5);
        }

        .stack-tag.glow-risk:hover {
            box-shadow: 0 0 15px rgba(221, 107, 32, 0.25), 0 0 30px rgba(221, 107, 32, 0.12);
            border-color: rgba(221, 107, 32, 0.5);
        }

        .stack-tag.glow-policy:hover {
            box-shadow: 0 0 15px rgba(49, 151, 149, 0.25), 0 0 30px rgba(49, 151, 149, 0.12);
            border-color: rgba(49, 151, 149, 0.5);
        }

        .stack-tag.glow-strategy:hover {
            box-shadow: 0 0 15px rgba(44, 82, 130, 0.25), 0 0 30px rgba(44, 82, 130, 0.12);
            border-color: rgba(44, 82, 130, 0.5);
        }

        .back-to-top {
            position: fixed;
            bottom: 6.5rem;
            right: 2rem;
            width: 45px;
            height: 45px;
            background: white;
            color: var(--accent);
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            opacity: 0;
            pointer-events: none;
            transform: translateY(20px);
            z-index: 999;
        }

        .back-to-top.visible {
            opacity: 1;
            pointer-events: all;
            transform: translateY(0);
        }

        .back-to-top:hover {
            background: var(--accent);
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(25, 44, 125, 0.2);
        }

        @media (max-width: 768px) {
            .back-to-top {
                bottom: 6.5rem;
                right: 1.5rem;
                width: 40px;
                height: 40px;
            }
        }