        :root {
            /* Dark Theme Palette */
            --bg-dark: #0f172a;
            /* Slate 900 */
            --bg-card: #1e293b;
            /* Slate 800 */
            --bg-card-hover: #334155;
            /* Slate 700 */
            --text-main: #f1f5f9;
            /* Slate 100 */
            --text-muted: #94a3b8;
            /* Slate 400 */

            --primary-red: #ef4444;
            /* Red 500 */
            --primary-red-hover: #dc2626;
            /* Red 600 */
            --accent-glow: rgba(239, 68, 68, 0.15);

            --border-color: #334155;
        }

        html {
            scroll-behavior: smooth;
        }

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

        body {
            font-family: 'Outfit', sans-serif;
            line-height: 1.6;
            color: var(--text-main);
            background-color: var(--bg-dark);
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Space Grotesk', sans-serif;
            letter-spacing: -0.01em;
            /* Less aggressive tracking */
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Navigation */
        nav {
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.25rem 0;
        }

        .logo {
            font-size: 1.4rem;
            font-weight: 700;
            color: white;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            letter-spacing: 0.05em;
        }

        .logo span {
            color: var(--primary-red);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-muted);
            font-weight: 500;
            transition: color 0.3s;
            font-size: 0.95rem;
        }

        .nav-links a:hover {
            color: white;
        }

        .cta-button {
            background: transparent;
            color: var(--primary-red) !important;
            padding: 0.6rem 1.4rem;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s;
            border: 1px solid var(--primary-red);
        }

        .cta-button:hover {
            background: var(--primary-red);
            color: white !important;
            box-shadow: 0 0 15px rgba(239, 68, 68, 0.4);
        }

        /* Hero */
        .hero {
            padding: 10rem 0 8rem;
            text-align: center;
            background:
                radial-gradient(circle at 20% 50%, rgba(239,68,68,0.06) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(239,68,68,0.04) 0%, transparent 50%),
                radial-gradient(circle at top center, #1e1b4b 0%, var(--bg-dark) 70%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(rgba(239,68,68,0.07) 1px, transparent 1px);
            background-size: 30px 30px;
            pointer-events: none;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(239,68,68,0.3), transparent);
        }

        .hero h1 {
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: white;
            font-weight: 700;
        }

        .hero h1 span {
            color: var(--primary-red);
        }

        .hero p {
            font-size: 1.25rem;
            color: var(--text-muted);
            max-width: 750px;
            margin: 0 auto 2.5rem;
            font-weight: 400;
        }

        .hero-btns {
            display: flex;
            gap: 1rem;
            justify-content: center;
        }

        .btn {
            padding: 0.9rem 2rem;
            border-radius: 4px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1rem;
            border: 1px solid transparent;
        }

        .btn-primary {
            background: transparent;
            color: var(--primary-red);
            border: 1px solid var(--primary-red);
        }

        .btn-primary:hover {
            background: var(--primary-red);
            color: white;
            transform: translateY(-1px);
            box-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .btn-secondary:hover {
            border-color: white;
            background: rgba(255, 255, 255, 0.05);
        }

        /* Segment Section */
        .target-segment {
            padding: 5rem 0;
            border-top: 1px solid var(--border-color);
            background: #111827;
        }

        .segment-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .segment-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .segment-content p {
            color: var(--text-muted);
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }

        .check-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .check-list li {
            display: grid;
            grid-template-columns: 24px 1fr;
            gap: 1.2rem;
            align-items: start;
            color: var(--text-main);
            font-weight: 500;
            font-size: 1.1rem;
            line-height: 1.4;
        }

        .check-list li svg {
            color: var(--primary-red);
            width: 24px;
            height: 24px;
            margin-top: 4px;
            /* Visual alignment with text cap-height */
        }

        /* Services Grid */
        .services {
            padding: 7rem 0;
        }

        .services.alt-bg {
            background: #1e293b;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }

        .section-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .section-header p {
            color: var(--text-muted);
            max-width: 650px;
            margin: 0 auto;
            font-size: 1.1rem;
        }

        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            padding: 3rem 2rem;
            border-radius: 8px;
            transition: all 0.3s;
            position: relative;
        }

        .card:hover {
            transform: translateY(-3px);
            border-color: var(--primary-red);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .card-icon {
            width: 48px;
            height: 48px;
            background: rgba(239, 68, 68, 0.1);
            color: var(--primary-red);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .card-icon svg {
            width: 24px;
            height: 24px;
        }

        .card h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .card p {
            color: var(--text-muted);
            line-height: 1.6;
            font-size: 0.95rem;
        }

        /* Contact Section */
        .contact-section {
            padding: 8rem 0;
        }

        .form-box {
            background: var(--bg-card);
            padding: 3rem;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            max-width: 600px;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--text-muted);
            font-size: 0.9rem;
            font-weight: 500;
        }

        .form-input,
        .form-select {
            width: 100%;
            padding: 1rem;
            background: var(--bg-dark);
            border: 1px solid var(--border-color);
            border-radius: 4px;
            color: white;
            font-family: inherit;
            font-size: 1rem;
        }

        .form-input:focus,
        .form-select:focus {
            outline: none;
            border-color: var(--primary-red);
        }

        /* Footer */
        footer {
            border-top: 1px solid var(--border-color);
            padding: 4rem 0 2rem;
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-links h4 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            font-weight: 600;
        }

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

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            transition: 0.3s;
        }

        .footer-links a:hover {
            color: white;
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 4px;
            z-index: 1001;
            background: none;
            border: none;
        }

        .hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--text-main);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

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

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

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

        @media(max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav-links {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(15, 23, 42, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 2rem;
                z-index: 1000;
            }

            .nav-links.open {
                display: flex;
            }

            .nav-links a {
                font-size: 1.3rem;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero {
                padding: 7rem 0 5rem;
            }

            .hero-btns {
                flex-direction: column;
                align-items: center;
            }

            .segment-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

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

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

            .section-header h2 {
                font-size: 2rem;
            }
        }

        /* --- 10/10 Modernization Features --- */

        /* Threat Ticker */
        .threat-ticker {
            background: #000;
            color: var(--primary-red);
            font-family: 'Space Grotesk', monospace;
            font-size: 0.85rem;
            padding: 8px 0;
            border-bottom: 1px solid rgba(239, 68, 68, 0.3);
            overflow: hidden;
        }

        .ticker-flex-container {
            display: flex;
            align-items: center;
            width: 100%;
        }

        .ticker-label {
            font-weight: 700;
            background: rgba(239, 68, 68, 0.2);
            padding: 2px 8px;
            border-radius: 3px;
            white-space: nowrap;
            margin-right: 1rem;
            flex-shrink: 0;
            z-index: 10;
        }

        .ticker-wrapper {
            flex-grow: 1;
            overflow: hidden;
            position: relative;
            mask-image: linear-gradient(to right, transparent, black 20px, black 95%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, black 10px, black 95%, transparent);
        }

        /* Scrolling Marquee */
        #ticker-content {
            display: inline-block;
            white-space: nowrap;
            /* Start just off screen to the right of the wrapper, or strictly allow flow */
            padding-left: 100%; 
            animation: ticker-scroll 40s linear infinite;
        }

        #ticker-content:hover {
            animation-play-state: paused;
        }

        @keyframes ticker-scroll {
            0% {
                transform: translate3d(0, 0, 0);
            }

            100% {
                transform: translate3d(-100%, 0, 0);
            }
        }

        .ticker-item {
            margin-right: 2rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .severity-critical {
            color: #ef4444;
            font-weight: bold;
        }

        .severity-high {
            color: #f97316;
            font-weight: bold;
        }

        .severity-medium {
            color: #facc15;
            font-weight: bold;
        }

        /* Network Visual */
        .network-visual {
            height: 350px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
            background:
                radial-gradient(circle at 20% 30%, rgba(239, 68, 68, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(239, 68, 68, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(239, 68, 68, 0.05) 0%, transparent 70%),
                repeating-linear-gradient(0deg, transparent, transparent 49px, rgba(239, 68, 68, 0.06) 50px),
                repeating-linear-gradient(90deg, transparent, transparent 49px, rgba(239, 68, 68, 0.06) 50px),
                #1f2937;
        }

        /* Why Work With Us */
        .why-us-section {
            padding: 6rem 0;
            background: #111827;
            border-top: 1px solid var(--border-color);
        }

        .value-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            padding: 2.5rem 2rem;
            border-radius: 8px;
            border-top: 3px solid var(--primary-red);
        }

        .value-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .value-card p {
            color: var(--text-muted);
            line-height: 1.7;
            font-size: 0.95rem;
        }

        /* Pricing */
        .pricing-section {
            padding: 7rem 0;
            background: var(--bg-card);
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .plan-column {
            background: var(--bg-dark);
            border-radius: 8px;
            padding: 2.5rem 2rem;
            border: 1px solid var(--border-color);
            display: flex;
            flex-direction: column;
            transition: 0.3s;
        }

        .plan-column.featured {
            border: 2px solid var(--primary-red);
            transform: scale(1.03);
            position: relative;
            z-index: 10;
        }

        .plan-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary-red);
            color: white;
            font-weight: 700;
            font-size: 0.8rem;
            padding: 0.3rem 1.2rem;
            border-radius: 20px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .plan-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: white;
        }

        .plan-desc {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 2rem;
            min-height: 40px;
        }

        .plan-features {
            list-style: none;
            margin-bottom: 2rem;
            flex-grow: 1;
        }

        .plan-features li {
            padding: 0.7rem 0;
            border-bottom: 1px solid var(--border-color);
            color: var(--text-main);
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.95rem;
        }

        .plan-features li svg {
            color: var(--primary-red);
            flex-shrink: 0;
            width: 20px;
            height: 20px;
        }

        @media(max-width: 900px) {
            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .plan-column.featured {
                transform: scale(1);
            }
        }

        /* Risk Calculator */
        .risk-section {
            padding: 7rem 0;
            background: #0c1322;
            position: relative;
            overflow: hidden;
        }

        .risk-bg-glow {
            position: absolute;
            top: -200px;
            left: 50%;
            transform: translateX(-50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(239,68,68,0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .risk-header-center {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .risk-header-center h2 {
            font-size: 2.5rem;
            margin-bottom: 0.75rem;
        }

        .risk-header-center p {
            color: var(--text-muted);
            font-size: 1.1rem;
        }

        .risk-card {
            max-width: 960px;
            margin: 0 auto;
            position: relative;
        }

        .glass-panel {
            background: rgba(30,41,59,0.7);
            backdrop-filter: blur(12px);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 3rem;
        }

        .risk-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: start;
        }

        .risk-inputs {
            display: flex;
            flex-direction: column;
        }

        .input-group {
            margin-bottom: 1.5rem;
        }

        .input-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--text-muted);
            font-size: 0.9rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .select-wrapper {
            position: relative;
        }

        .premium-select {
            width: 100%;
            padding: 0.9rem 1rem;
            background: var(--bg-dark);
            border: 1px solid var(--border-color);
            border-radius: 6px;
            color: white;
            font-family: inherit;
            font-size: 0.95rem;
            appearance: none;
            -webkit-appearance: none;
            cursor: pointer;
        }

        .premium-select:focus {
            outline: none;
            border-color: var(--primary-red);
        }

        .select-arrow {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            width: 18px;
            height: 18px;
            color: var(--text-muted);
            pointer-events: none;
        }

        .input-wrapper {
            position: relative;
        }

        .premium-input {
            width: 100%;
            padding: 0.9rem 1rem;
            padding-right: 3rem;
            background: var(--bg-dark);
            border: 1px solid var(--border-color);
            border-radius: 6px;
            color: white;
            font-family: inherit;
            font-size: 0.95rem;
        }

        .premium-input:focus {
            outline: none;
            border-color: var(--primary-red);
        }

        .input-icon {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
        }

        .input-icon svg {
            width: 20px;
            height: 20px;
        }

        .slider-container {
            margin-top: 0.75rem;
        }

        .premium-range {
            width: 100%;
            height: 4px;
            -webkit-appearance: none;
            appearance: none;
            background: var(--border-color);
            border-radius: 2px;
            outline: none;
        }

        .premium-range::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--primary-red);
            cursor: pointer;
            box-shadow: 0 0 8px rgba(239,68,68,0.4);
        }

        .btn-calculate {
            width: 100%;
            padding: 1rem;
            background: transparent;
            border: 1px solid var(--primary-red);
            color: var(--primary-red);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.95rem;
            font-weight: 700;
            letter-spacing: 0.15em;
            cursor: pointer;
            border-radius: 6px;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .btn-calculate:hover {
            background: var(--primary-red);
            color: white;
            box-shadow: 0 0 20px rgba(239,68,68,0.3);
        }

        .btn-scan-effect {
            display: none;
        }

        .risk-visual {
            position: relative;
            min-height: 280px;
        }

        .scan-overlay {
            display: none;
        }

        .result-content {
            background: rgba(15,23,42,0.8);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 2.5rem 2rem;
            text-align: center;
            position: relative;
            opacity: 0.4;
            transition: opacity 0.5s;
        }

        .result-content.active {
            opacity: 1;
        }

        .result-label {
            display: block;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--text-muted);
            margin-bottom: 1rem;
        }

        .cost-wrapper {
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 0.25rem;
            margin-bottom: 1.5rem;
        }

        .currency {
            font-size: 1.8rem;
            color: var(--primary-red);
            font-weight: 700;
            font-family: 'Space Grotesk', sans-serif;
        }

        .cost-value {
            font-size: 3rem;
            font-weight: 700;
            color: white;
            font-family: 'Space Grotesk', sans-serif;
        }

        .data-row {
            display: flex;
            justify-content: space-between;
            padding: 0.6rem 0;
            border-top: 1px solid rgba(255,255,255,0.06);
            font-size: 0.85rem;
        }

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

        .data-val {
            color: white;
            font-weight: 600;
            font-family: 'Space Grotesk', monospace;
        }

        .dec-line,
        .dec-corner {
            display: none;
        }

        @media(max-width: 768px) {
            .risk-grid {
                grid-template-columns: 1fr;
            }
            .cost-value {
                font-size: 2.2rem;
            }
        }

        .hidden {
            display: none;
        }

        .fade-in {
            animation: fadeIn 0.5s forwards;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

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

        a, button {
            transition: all 0.25s ease;
        }

        ::selection {
            background: rgba(239,68,68,0.3);
            color: white;
        }