:root {
            --bg-color: #030303;
            --text-main: #f0f0f0;
            --text-muted: #888888;
            --accent-color: #a3e635;
            --accent-hover: #bcf255;
            --dark-gray: #0a0a0a;
            --serif-font: 'Playfair Display', serif;
            --sans-font: 'Montserrat', sans-serif;
            --logo-font: 'Cinzel', serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-main);
            font-family: var(--sans-font);
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Typography */
        h1, h2, h3, h4 {
            font-family: var(--serif-font);
            font-weight: 400;
        }

        .accent-text {
            color: var(--accent-color);
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 30px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: linear-gradient(to bottom, rgba(3,3,3,0.9) 0%, rgba(3,3,3,0) 100%);
            transition: all 0.5s ease;
        }

        header.scrolled {
            background: rgba(3,3,3,0.98);
            padding: 20px 50px;
            border-bottom: 1px solid rgba(163, 230, 53, 0.15);
            backdrop-filter: blur(10px);
        }

        .logo {
            font-family: var(--logo-font);
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo-img {
            height: 48px;
            width: auto;
            transition: transform 0.3s ease;
        }

        .logo-img:hover {
            transform: scale(1.03);
        }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 13px;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: color 0.3s ease;
            font-weight: 500;
        }

        .nav-links a:hover {
            color: var(--accent-color);
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 40px;
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
            border: 1px solid var(--accent-color);
            color: var(--accent-color);
            background: transparent;
            cursor: pointer;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--accent-color);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            z-index: -1;
        }

        .btn:hover {
            color: #000;
        }

        .btn:hover::before {
            transform: scaleX(1);
            transform-origin: left;
        }

        /* Hero Section (Video Background) */
        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
        }

        .hero-video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translateX(-50%) translateY(-50%);
            z-index: -2;
            object-fit: cover;
            filter: brightness(0.4) contrast(1.2);
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.8) 100%);
            z-index: -1;
        }

        .hero-content {
            max-width: 1000px;
            padding: 0 20px;
        }

        .hero-subtitle {
            font-family: var(--sans-font);
            font-size: 12px;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--accent-color);
            margin-bottom: 20px;
            display: block;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 1s 0.5s forwards ease-out;
        }

        .hero-title {
            font-size: 4.5rem;
            line-height: 1.2;
            margin-bottom: 30px;
            letter-spacing: -1px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1.2s 0.8s forwards ease-out;
        }

        .slogan-wrapper {
            display: block;
            position: relative;
            height: 1.2em;
            width: 100%;
            overflow: hidden;
            margin-top: 10px;
            font-size: 0.72em; /* 28% smaller than h1 to fit long Turkish sentences */
        }

        .slogan-slide {
            position: absolute;
            left: 0;
            right: 0;
            opacity: 0;
            transform: translateY(30px);
            transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
            white-space: nowrap;
        }

        .slogan-slide.active {
            opacity: 1;
            transform: translateY(0);
        }

        .slogan-slide.exit {
            opacity: 0;
            transform: translateY(-30px);
        }

        .hero p {
            font-size: 1.1rem;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto 50px;
            font-weight: 300;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 1.2s 1.1s forwards ease-out;
        }

        .hero .btn {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 1s 1.4s forwards ease-out;
        }

        /* Scroll Animations Utility */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal-left.active {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal-right.active {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-scale {
            opacity: 0;
            transform: scale(0.95);
            transition: all 1.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal-scale.active {
            opacity: 1;
            transform: scale(1);
        }

        /* Split Sections */
        .philosophy {
            padding: 120px 0;
            background-color: var(--bg-color);
            position: relative;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 50px;
        }

        .split-section {
            display: flex;
            align-items: center;
            gap: 80px;
        }

        .split-section.reverse {
            flex-direction: row-reverse;
        }

        .split-content {
            flex: 1.1;
        }

        .split-image-wrapper {
            flex: 0.9;
            position: relative;
            overflow: hidden;
            border-radius: 4px;
        }

        /* Expand the interactive dashboard section horizontally on desktop */
        @media (min-width: 1025px) {
            #mimari .split-image-wrapper {
                flex: 1.4;
            }
            #mimari .split-content {
                flex: 0.6;
            }
        }

        /* Parallax Image Effect inside container */
        .parallax-img {
            width: 100%;
            height: 120%;
            object-fit: cover;
            display: block;
            margin-top: -10%; /* To allow room for parallax scrolling */
            transition: transform 0.1s linear;
        }

        .split-content h2 {
            font-size: 3.5rem;
            margin-bottom: 30px;
            line-height: 1.1;
        }

        .split-content p {
            color: var(--text-muted);
            font-size: 1.1rem;
            margin-bottom: 25px;
            font-weight: 300;
            max-width: 550px;
            line-height: 1.8;
        }

        .accent-line {
            width: 0; /* Animated later */
            height: 1px;
            background-color: var(--accent-color);
            margin: 30px 0;
            transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal.active .accent-line {
            width: 80px;
        }

        /* Dynamic Number Counters */
        .stats-container {
            display: flex;
            gap: 60px;
            margin-top: 50px;
        }

        .stat-item h4 {
            font-family: var(--sans-font);
            font-size: 2.5rem;
            color: var(--text-main);
            margin-bottom: 5px;
            font-weight: 300;
        }

        .stat-item p {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--accent-color);
        }

        /* Luxury Dashboard Mockup Styling */
        .luxury-dashboard {
            width: 100%;
            background: rgba(10, 10, 10, 0.7);
            border: 1px solid rgba(163, 230, 53, 0.2);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 40px rgba(163, 230, 53, 0.05);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            font-family: var(--sans-font);
            text-align: left;
        }

        .ld-window-bar {
            height: 48px;
            background: rgba(0, 0, 0, 0.5);
            border-bottom: 1px solid rgba(163, 230, 53, 0.15);
            display: flex;
            align-items: center;
            padding: 0 20px;
            justify-content: space-between;
        }

        .ld-dots {
            display: flex;
            gap: 8px;
        }

        .ld-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .ld-dot-red { background: #ff5f56; }
        .ld-dot-yellow { background: #ffbd2e; }
        .ld-dot-green { background: #27c93f; }

        .ld-title {
            color: var(--text-muted);
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 500;
        }

        .ld-status-badge {
            background: rgba(163, 230, 53, 0.1);
            border: 1px solid rgba(163, 230, 53, 0.3);
            color: var(--accent-color);
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 9px;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-weight: 600;
        }

        .ld-body {
            display: flex;
            min-height: 450px;
        }

        .ld-sidebar {
            width: 200px;
            border-right: 1px solid rgba(163, 230, 53, 0.15);
            padding: 24px 12px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            background: rgba(0,0,0,0.2);
        }

        .ld-nav-item {
            padding: 10px 14px;
            color: var(--text-muted);
            font-size: 11px;
            letter-spacing: 1px;
            text-transform: uppercase;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .ld-nav-item.active, .ld-nav-item:hover {
            background: rgba(163, 230, 53, 0.1);
            color: var(--accent-color);
        }

        .ld-content {
            flex: 1;
            padding: 24px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            background: rgba(5,5,5,0.4);
            overflow: hidden;
            position: relative;
        }

        .ld-view {
            display: none;
            flex-direction: column;
            gap: 20px;
            width: 100%;
            height: 100%;
        }

        .ld-view.active {
            display: flex;
        }

        /* Dashboard View Subcomponents */
        .ld-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 11px;
            color: var(--text-muted);
            margin-top: 10px;
        }

        .ld-table th, .ld-table td {
            padding: 12px 10px;
            text-align: left;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .ld-table th {
            color: var(--text-main);
            text-transform: uppercase;
            font-size: 9px;
            letter-spacing: 1px;
            font-weight: 600;
            border-bottom: 1px solid rgba(163, 230, 53, 0.2);
        }

        .ld-table tr:hover td {
            color: var(--text-main);
            background: rgba(255,255,255,0.02);
        }

        .ld-badge {
            padding: 3px 8px;
            border-radius: 3px;
            font-size: 9px;
            font-weight: 600;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .ld-badge-green {
            background: rgba(163, 230, 53, 0.1);
            color: var(--accent-color);
            border: 1px solid rgba(163, 230, 53, 0.2);
        }

        .ld-badge-yellow {
            background: rgba(241, 196, 15, 0.1);
            color: #f1c40f;
            border: 1px solid rgba(241, 196, 15, 0.2);
        }

        .ld-badge-red {
            background: rgba(231, 76, 60, 0.1);
            color: #e74c3c;
            border: 1px solid rgba(231, 76, 60, 0.2);
        }

        .ld-settings-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 10px;
        }

        .ld-setting-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px;
            border: 1px solid rgba(255,255,255,0.05);
            border-radius: 4px;
            background: rgba(0,0,0,0.2);
        }

        .ld-setting-info {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .ld-setting-title {
            color: var(--text-main);
            font-size: 12px;
            font-weight: 500;
        }

        .ld-setting-desc {
            color: var(--text-muted);
            font-size: 10px;
        }

        /* Toggle switch */
        .ld-switch {
            position: relative;
            display: inline-block;
            width: 38px;
            height: 22px;
            flex-shrink: 0;
        }

        .ld-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .ld-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #222;
            transition: .4s;
            border-radius: 34px;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .ld-slider:before {
            position: absolute;
            content: "";
            height: 14px;
            width: 14px;
            left: 3px;
            bottom: 3px;
            background-color: #888;
            transition: .4s;
            border-radius: 50%;
        }

        input:checked + .ld-slider {
            background-color: rgba(163, 230, 53, 0.2);
            border-color: var(--accent-color);
        }

        input:checked + .ld-slider:before {
            transform: translateX(16px);
            background-color: var(--accent-color);
        }


        .ld-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            padding-bottom: 16px;
        }

        .ld-subtitle {
            font-family: var(--serif-font);
            font-size: 18px;
            color: var(--text-main);
        }

        .ld-meta {
            color: var(--text-muted);
            font-size: 12px;
            margin-top: 4px;
        }

        .ld-tag {
            border: 1px solid rgba(255,255,255,0.1);
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 10px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .ld-metrics {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .ld-metric-card {
            background: rgba(15,15,15,0.6);
            border: 1px solid rgba(204,161,98,0.1);
            border-radius: 6px;
            padding: 16px;
        }

        .ld-m-label {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-muted);
            margin-bottom: 6px;
        }

        .ld-m-val {
            font-family: var(--serif-font);
            font-size: 20px;
            color: var(--text-main);
            font-weight: 500;
        }

        .ld-m-sub {
            font-size: 11px;
            color: #27c93f;
            font-family: var(--sans-font);
        }

        .ld-grid {
            display: grid;
            grid-template-columns: 3fr 2fr;
            gap: 16px;
        }

        .ld-card {
            background: rgba(15,15,15,0.6);
            border: 1px solid rgba(255,255,255,0.03);
            border-radius: 6px;
            padding: 16px;
        }

        .ld-card-title {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--accent-color);
            margin-bottom: 16px;
            font-weight: 600;
        }

        .ld-transcript {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .ld-chat-bubble {
            display: flex;
            gap: 12px;
            align-items: flex-start;
        }

        .ld-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(163, 230, 53, 0.15);
            color: var(--accent-color);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: 600;
            flex-shrink: 0;
            border: 1px solid rgba(163, 230, 53, 0.3);
        }

        .customer-avatar {
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-main);
            border: 1px solid rgba(255,255,255,0.1);
        }

        .ld-bubble-text {
            background: rgba(255, 255, 255, 0.03);
            padding: 10px 14px;
            border-radius: 8px;
            font-size: 12px;
            line-height: 1.5;
            color: #d1d5db;
        }

        .ld-chat-bubble.customer .ld-bubble-text {
            background: rgba(163, 230, 53, 0.05);
            border: 1px solid rgba(163, 230, 53, 0.1);
        }

        .ld-highlight-red {
            background: rgba(239, 68, 68, 0.15);
            border: 1px solid rgba(239, 68, 68, 0.3);
            color: #fca5a5;
            padding: 1px 4px;
            border-radius: 3px;
        }

        .ld-ai-alerts {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .ld-ai-alert {
            padding: 12px;
            border-radius: 4px;
            font-size: 12px;
            line-height: 1.5;
            border-left: 3px solid;
        }

        .ld-ai-alert.warning {
            background: rgba(212, 163, 89, 0.08);
            border-left-color: var(--accent-color);
            color: #e5e7eb;
        }

        .ld-ai-alert.info {
            background: rgba(255, 255, 255, 0.03);
            border-left-color: var(--text-muted);
            color: var(--text-muted);
        }

        .ld-alert-title {
            display: block;
            font-weight: 600;
            color: var(--accent-color);
            margin-bottom: 4px;
            text-transform: uppercase;
            font-size: 10px;
            letter-spacing: 1px;
        }

        /* Timeline / Process styling */
        .timeline-container {
            display: flex;
            flex-direction: column;
            gap: 60px;
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

        .timeline-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 32px;
            width: 1px;
            height: 100%;
            background: linear-gradient(to bottom, transparent, rgba(204,161,98,0.2) 20%, rgba(204,161,98,0.2) 80%, transparent);
        }

        .timeline-step {
            display: flex;
            gap: 40px;
            position: relative;
        }

        .timeline-num {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: var(--dark-gray);
            border: 1px solid var(--accent-color);
            color: var(--accent-color);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--logo-font);
            font-size: 20px;
            font-weight: 500;
            box-shadow: 0 0 20px rgba(163, 230, 53, 0.15);
            flex-shrink: 0;
            z-index: 2;
        }

        .timeline-content {
            padding-top: 12px;
        }

        .timeline-content h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--text-main);
        }

        .timeline-content p {
            color: var(--text-muted);
            font-weight: 300;
            line-height: 1.8;
            max-width: 700px;
        }

        .luxury-tags {
            display: flex;
            gap: 10px;
            margin-top: 15px;
            flex-wrap: wrap;
        }

        .luxury-tags span {
            background: rgba(163, 230, 53, 0.05);
            border: 1px solid rgba(163, 230, 53, 0.15);
            color: var(--accent-color);
            font-size: 10px;
            letter-spacing: 1px;
            text-transform: uppercase;
            padding: 4px 10px;
            border-radius: 2px;
            font-weight: 500;
        }

        /* Features */
        .features {
            padding: 120px 0;
            background-color: var(--dark-gray);
            position: relative;
        }

        .features::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(163, 230, 53, 0.2), transparent);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 50px;
            margin-top: 80px;
        }

        .feature-item {
            text-align: center;
            padding: 0 20px;
        }

        .feature-number {
            font-family: var(--logo-font);
            font-size: 1.5rem;
            color: var(--accent-color);
            margin-bottom: 30px;
            display: inline-block;
            position: relative;
        }

        .feature-number::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 1px;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }

        .feature-item:hover .feature-number::after {
            width: 40px;
        }

        .feature-item h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
        }

        .feature-item p {
            color: var(--text-muted);
            font-size: 1rem;
            font-weight: 300;
            line-height: 1.7;
        }

        /* Personas styling */
        .personas-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .persona-card {
            background: var(--dark-gray);
            border: 1px solid rgba(163, 230, 53, 0.1);
            padding: 40px 30px;
            border-radius: 4px;
            text-align: center;
            transition: all 0.4s ease;
        }

        .persona-card:hover {
            border-color: var(--accent-color);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(163, 230, 53, 0.05);
        }

        .persona-icon {
            font-size: 3rem;
            margin-bottom: 24px;
        }

        .persona-card h3 {
            font-size: 1.5rem;
            margin-bottom: 16px;
            color: var(--text-main);
        }

        .persona-card p {
            color: var(--text-muted);
            font-weight: 300;
            line-height: 1.7;
            font-size: 0.95rem;
        }

        /* Security visual styling */
        .security-visual {
            position: relative;
            width: 300px;
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .sec-ring {
            position: absolute;
            border: 1px solid rgba(163, 230, 53, 0.15);
            border-radius: 50%;
            animation: rotateRing 20s linear infinite;
        }

        .sec-ring-1 {
            width: 100%;
            height: 100%;
            border-style: dashed;
            animation-duration: 40s;
        }

        .sec-ring-2 {
            width: 80%;
            height: 80%;
            border-top-color: var(--accent-color);
            animation-duration: 20s;
            animation-direction: reverse;
        }

        .sec-ring-3 {
            width: 60%;
            height: 60%;
            border-style: dotted;
            animation-duration: 15s;
        }

        .sec-core {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: var(--bg-color);
            border: 1px solid var(--accent-color);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 40px rgba(163, 230, 53, 0.2);
            z-index: 2;
        }

        .sec-core span {
            font-size: 2.5rem;
            margin-bottom: 6px;
        }

        .sec-text {
            font-size: 8px;
            letter-spacing: 2px;
            color: var(--accent-color);
            font-weight: 600;
        }

        @keyframes rotateRing {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* Luxury comparison table styling */
        .comparison-table-wrapper {
            width: 100%;
            overflow-x: auto;
            border: 1px solid rgba(163, 230, 53, 0.15);
            border-radius: 4px;
            background: var(--dark-gray);
        }

        .luxury-table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
            font-size: 0.95rem;
        }

        .luxury-table th, .luxury-table td {
            padding: 24px 30px;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .luxury-table th {
            font-family: var(--logo-font);
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text-muted);
            border-bottom: 1px solid rgba(163, 230, 53, 0.3);
            font-weight: 500;
        }

        .feature-name {
            font-weight: 500;
            color: var(--text-main);
        }

        .luxury-table td {
            color: var(--text-muted);
            font-weight: 300;
        }

        .luxury-table th.accent-column {
            color: var(--accent-color);
            background: rgba(163, 230, 53, 0.03);
            border-bottom: 2px solid var(--accent-color);
        }

        .luxury-table td.accent-column {
            color: var(--text-main);
            background: rgba(163, 230, 53, 0.03);
            font-weight: 400;
        }

        .luxury-table tr:hover {
            background: rgba(255,255,255,0.02);
        }

        /* FAQ styling */
        .faq-container {
            max-width: 850px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .faq-item {
            border: 1px solid rgba(163, 230, 53, 0.15);
            border-radius: 4px;
            background: var(--bg-color);
            overflow: hidden;
        }

        .faq-question {
            padding: 24px 30px 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.1rem;
            color: var(--text-main);
        }

        .faq-answer {
            padding: 0 30px 24px;
        }

        .faq-answer p {
            color: var(--text-muted);
            line-height: 1.8;
            font-weight: 300;
            font-size: 0.95rem;
        }

        /* CTA Section */
        .cta-section {
            padding: 160px 0;
            text-align: center;
            position: relative;
            background: var(--bg-color);
            overflow: hidden;
        }

        .cta-section .container {
            position: relative;
            z-index: 3;
        }

        /* Slow rotating background for CTA */
        .cta-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 800px;
            height: 800px;
            transform: translate(-50%, -50%);
            background: radial-gradient(circle, rgba(163, 230, 53, 0.08) 0%, transparent 70%);
            z-index: 1;
            animation: slowRotate 30s linear infinite;
            pointer-events: none; /* Allows clicks to pass through to the form */
        }

        @keyframes slowRotate {
            0% { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
            50% { transform: translate(-50%, -50%) rotate(180deg) scale(1.1); }
            100% { transform: translate(-50%, -50%) rotate(360deg) scale(1); }
        }

        .cta-section h2 {
            font-size: 4rem;
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
            line-height: 1.1;
        }

        .cta-section .btn {
            position: relative;
            z-index: 2;
        }

        /* Luxury form styling */
        .luxury-form-container {
            max-width: 700px;
            margin: 40px auto 0;
            background: rgba(10,10,10,0.8);
            border: 1px solid rgba(163, 230, 53, 0.15);
            padding: 40px;
            backdrop-filter: blur(10px);
            border-radius: 4px;
            position: relative;
            z-index: 2;
        }

        .form-row {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }

        .luxury-form-container input, .luxury-form-container select, .luxury-form-container textarea {
            flex: 1;
            background: rgba(0,0,0,0.5);
            border: 1px solid rgba(255,255,255,0.08);
            padding: 16px 20px;
            color: var(--text-main);
            font-family: var(--sans-font);
            font-size: 11px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .luxury-form-container input:focus, .luxury-form-container select:focus, .luxury-form-container textarea:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 15px rgba(163,230,53,0.15);
        }

        .luxury-form-container select {
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a3e635' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 20px center;
            background-size: 12px;
            padding-right: 40px;
            cursor: pointer;
        }

        .luxury-form-container select option {
            background-color: #111;
            color: var(--text-main);
        }


        /* Footer */
        footer {
            padding: 100px 50px 50px;
            background-color: #000;
            border-top: 1px solid rgba(255,255,255,0.05);
            text-align: center;
            position: relative;
        }

        .footer-logo {
            font-family: var(--logo-font);
            margin-bottom: 40px;
            display: inline-block;
        }

        .footer-logo-img {
            height: 42px;
            width: auto;
            transition: transform 0.3s ease;
        }

        .footer-logo-img:hover {
            transform: scale(1.03);
        }

        .footer-text {
            color: #444;
            font-size: 0.85rem;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        /* Animations */
        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Section 4: Timeline Split Layout */
        .timeline-split-section {
            display: flex;
            align-items: flex-start;
            gap: 60px;
            margin-top: 50px;
        }

        .timeline-split-section .timeline-container {
            flex: 1.2;
            margin: 0;
            max-width: none;
        }

        .timeline-sticky-card {
            flex: 0.8;
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid rgba(163, 230, 53, 0.15);
            box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 30px rgba(163, 230, 53, 0.05);
            aspect-ratio: 1;
            background: var(--dark-gray);
        }

        .timeline-sticky-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.85) contrast(1.15);
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            display: block;
        }

        .timeline-sticky-card:hover img {
            transform: scale(1.04);
        }

        .timeline-card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(3,3,3,0.95) 0%, rgba(3,3,3,0.4) 60%, rgba(3,3,3,0) 100%);
            padding: 25px;
            border-top: 1px solid rgba(163, 230, 53, 0.1);
            backdrop-filter: blur(2px);
        }

        .timeline-card-tag {
            font-size: 10px;
            color: var(--accent-color);
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 600;
            display: block;
            margin-bottom: 5px;
        }

        .timeline-card-desc {
            font-size: 13px;
            color: var(--text-muted);
            margin: 0;
            font-family: var(--sans-font);
            line-height: 1.5;
        }

        @media (min-width: 1025px) {
            .timeline-sticky-card {
                position: sticky;
                top: 120px;
            }
        }

        /* Section 5: Feature Image Card */
        .feature-image-card {
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid rgba(163, 230, 53, 0.15);
            box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 30px rgba(163, 230, 53, 0.05);
            aspect-ratio: 1.1;
            background: var(--dark-gray);
            padding: 0 !important;
            position: relative;
            cursor: pointer;
            transition: border-color 0.4s ease, box-shadow 0.4s ease;
        }

        .feature-image-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.8) contrast(1.15);
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
            display: block;
        }

        .feature-image-card:hover img {
            transform: scale(1.05);
            filter: brightness(0.9) contrast(1.2);
        }

        .feature-image-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(3,3,3,0.9) 0%, rgba(3,3,3,0) 50%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 24px;
        }

        .feature-image-card:hover {
            border-color: var(--accent-color);
            box-shadow: 0 20px 40px rgba(163, 230, 53, 0.1), 0 0 30px rgba(163, 230, 53, 0.05);
        }

        .feature-image-overlay h3 {
            font-size: 1.4rem;
            color: var(--text-main);
            margin-bottom: 6px;
            font-family: var(--serif-font);
        }

        .feature-image-overlay p {
            font-size: 10px;
            color: var(--accent-color);
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin: 0;
            font-weight: 500;
        }

        /* Section 7: Security Robot & Overlay */
        .security-overlay-emblem {
            position: absolute;
            bottom: 25px;
            right: 25px;
            width: 80px;
            height: 80px;
            background: rgba(3, 3, 3, 0.85);
            border: 1px solid rgba(163, 230, 53, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 20px rgba(163, 230, 53, 0.2);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            z-index: 5;
            transition: border-color 0.4s ease, box-shadow 0.4s ease;
        }

        .split-image-wrapper:hover .security-overlay-emblem {
            border-color: var(--accent-color);
            box-shadow: 0 0 25px rgba(163, 230, 53, 0.4);
        }

        .split-image-wrapper:hover img {
            transform: scale(1.04);
        }

        .sec-ring-inner {
            position: absolute;
            width: 80%;
            height: 80%;
            border: 1px dashed rgba(163, 230, 53, 0.3);
            border-radius: 50%;
            animation: rotateRing 15s linear infinite;
        }

        .sec-ring-outer {
            position: absolute;
            width: 95%;
            height: 95%;
            border: 1px solid transparent;
            border-top-color: var(--accent-color);
            border-radius: 50%;
            animation: rotateRing 10s linear infinite reverse;
        }

        .sec-lock-icon {
            font-size: 1.8rem;
            z-index: 2;
            filter: drop-shadow(0 0 5px rgba(163, 230, 53, 0.3));
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero h1 { font-size: 3.5rem; }
            .split-section, .split-section.reverse { flex-direction: column; gap: 60px; }
            .split-content h2 { font-size: 2.8rem; }
            .features-grid { grid-template-columns: 1fr; gap: 70px; }
            .luxury-dashboard { max-width: 100%; }

            .timeline-split-section {
                flex-direction: column;
                gap: 40px;
            }
            .timeline-sticky-card {
                width: 100%;
                max-width: 500px;
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            header { padding: 20px; }
            .nav-links { display: none; }
            .hero h1 { font-size: 2.5rem; }
            .slogan-wrapper { font-size: 0.6em; }
            .cta-section h2 { font-size: 2.5rem; }
            .stats-container { flex-direction: column; gap: 30px; }
            .ld-body { flex-direction: column; }
            .ld-sidebar { width: 100%; border-right: none; border-bottom: 1px solid rgba(163, 230, 53, 0.15); }
            .ld-grid { grid-template-columns: 1fr; }
            .form-row { flex-direction: column; gap: 15px; }
        }