        :root {
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --primary-light: #3b82f6;
            --secondary: #0f172a;
            --accent: #06b6d4;
            --text: #334155;
            --text-light: #64748b;
            --bg: #ffffff;
            --bg-alt: #f8fafc;
            --border: #e2e8f0;
            --success: #10b981;
            --error: #ef4444;
            --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
            --radius: 12px;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--text);
            line-height: 1.6;
            background: var(--bg);
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid var(--border);
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 24px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--secondary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-icon {
            width: 42px;
            height: 42px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.6rem;
            font-weight: 700;
            font-family: 'Inter', sans-serif;
            box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
        }

        nav {
            display: flex;
            gap: 32px;
            align-items: center;
        }

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

        nav a:hover {
            color: var(--primary);
        }

        .nav-cta {
            background: var(--primary);
            color: white !important;
            padding: 10px 20px;
            border-radius: 8px;
            transition: background 0.2s, transform 0.2s;
        }

        .nav-cta:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
        }

        .mobile-menu-btn span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--secondary);
            margin: 5px 0;
            transition: 0.3s;
        }

        /* Hero Section */
        .hero {
            padding: 160px 0 100px;
            background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: "";
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 3rem;
            font-weight: 700;
            color: var(--secondary);
            line-height: 1.2;
            margin-bottom: 24px;
        }

        .hero-text h1 span {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-text p {
            font-size: 1.2rem;
            color: var(--text-light);
            margin-bottom: 32px;
            max-width: 500px;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 10px;
            transition: all 0.2s;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
            box-shadow: var(--shadow);
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .btn-outline {
            background: transparent;
            color: var(--secondary);
            border: 2px solid var(--border);
        }

        .btn-outline:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        .hero-image {
            position: relative;
        }

        .hero-image img {
            width: 100%;
            height: auto;
            border-radius: var(--radius);
            box-shadow: var(--shadow-lg);
        }

        .hero-badge {
            position: absolute;
            bottom: -20px;
            left: -20px;
            background: white;
            padding: 16px 24px;
            border-radius: var(--radius);
            box-shadow: var(--shadow-lg);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .hero-badge-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--success), #34d399);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }

        .hero-badge-text strong {
            display: block;
            color: var(--secondary);
            font-size: 1.1rem;
        }

        .hero-badge-text span {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        /* Stats */
        .stats {
            padding: 60px 0;
            background: var(--secondary);
        }

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

        .stat-item h3 {
            font-size: 2.5rem;
            color: white;
            font-weight: 700;
        }

        .stat-item p {
            color: rgba(255,255,255,0.7);
            font-size: 0.95rem;
            margin-top: 8px;
        }

        /* Services */
        .services {
            padding: 100px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 16px;
        }

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

        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .service-card {
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 32px;
            transition: all 0.3s;
        }

        .service-card:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-lg);
            transform: translateY(-5px);
        }

        .service-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(6, 182, 212, 0.1));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .service-card h3 {
            font-size: 1.25rem;
            color: var(--secondary);
            margin-bottom: 12px;
        }

        .service-card p {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        .service-card ul {
            margin-top: 16px;
            list-style: none;
        }

        .service-card ul li {
            padding: 6px 0;
            color: var(--text);
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .service-card ul li::before {
            content: "\2713";
            color: var(--success);
            font-weight: bold;
        }

        /* About */
        .about {
            padding: 100px 0;
            background: var(--bg-alt);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            width: 100%;
            border-radius: var(--radius);
            box-shadow: var(--shadow-lg);
        }

        .about-text h2 {
            font-size: 2.2rem;
            color: var(--secondary);
            margin-bottom: 24px;
        }

        .about-text p {
            color: var(--text-light);
            margin-bottom: 20px;
            font-size: 1.05rem;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 30px;
        }

        .about-feature {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .about-feature-icon {
            width: 40px;
            height: 40px;
            background: var(--primary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            flex-shrink: 0;
        }

        .about-feature h4 {
            font-size: 1rem;
            color: var(--secondary);
            margin-bottom: 4px;
        }

        .about-feature p {
            font-size: 0.85rem;
            color: var(--text-light);
            margin: 0;
        }

        /* Process */
        .process {
            padding: 100px 0;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 60px;
        }

        .process-step {
            text-align: center;
            position: relative;
        }

        .process-step::after {
            content: "";
            position: absolute;
            top: 40px;
            right: -15px;
            width: 30px;
            height: 2px;
            background: var(--border);
        }

        .process-step:last-child::after {
            display: none;
        }

        .process-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            font-weight: 700;
            margin: 0 auto 20px;
        }

        .process-step h3 {
            font-size: 1.1rem;
            color: var(--secondary);
            margin-bottom: 10px;
        }

        .process-step p {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        /* CTA */
        .cta {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            text-align: center;
        }

        .cta h2 {
            color: white;
            font-size: 2.2rem;
            margin-bottom: 16px;
        }

        .cta p {
            color: rgba(255,255,255,0.9);
            font-size: 1.1rem;
            margin-bottom: 30px;
        }

        .cta .btn {
            background: white;
            color: var(--primary);
        }

        .cta .btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        /* Contact */
        .contact {
            padding: 100px 0;
            background: var(--bg-alt);
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .contact-info h2 {
            font-size: 2rem;
            color: var(--secondary);
            margin-bottom: 20px;
        }

        .contact-info > p {
            color: var(--text-light);
            margin-bottom: 30px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 20px;
            background: white;
            border-radius: var(--radius);
            margin-bottom: 16px;
            box-shadow: var(--shadow);
        }

        .contact-item-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
        }

        .contact-item-text strong {
            display: block;
            color: var(--secondary);
            font-size: 1.1rem;
        }

        .contact-item-text span {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        .contact-form {
            background: white;
            padding: 40px;
            border-radius: var(--radius);
            box-shadow: var(--shadow-lg);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--secondary);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid var(--border);
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.2s;
        }

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

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-success {
            background: #ecfdf5;
            border: 1px solid var(--success);
            color: #065f46;
            padding: 16px;
            border-radius: 8px;
            margin-bottom: 20px;
        }

        .form-error {
            background: #fef2f2;
            border: 1px solid var(--error);
            color: #991b1b;
            padding: 16px;
            border-radius: 8px;
            margin-bottom: 20px;
        }

        .gdpr-checkbox {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 20px;
        }

        .gdpr-checkbox input[type="checkbox"] {
            width: 18px;
            height: 18px;
            margin-top: 3px;
            flex-shrink: 0;
            accent-color: var(--primary);
        }

        .gdpr-checkbox label {
            font-size: 0.85rem;
            color: var(--text-light);
            line-height: 1.5;
            cursor: pointer;
        }

        .gdpr-checkbox label a {
            color: var(--primary);
            text-decoration: underline;
        }

        /* Footer */
        footer {
            background: var(--secondary);
            color: white;
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand h3 {
            font-size: 1.5rem;
            margin-bottom: 16px;
        }

        .footer-brand p {
            color: rgba(255,255,255,0.7);
            font-size: 0.95rem;
            max-width: 300px;
        }

        .footer-links h4 {
            font-size: 1rem;
            margin-bottom: 20px;
        }

        .footer-links a {
            display: block;
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            padding: 6px 0;
            font-size: 0.9rem;
            transition: color 0.2s;
        }

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

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            text-align: center;
            color: rgba(255,255,255,0.5);
            font-size: 0.9rem;
        }

        /* Modal */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.6);
            z-index: 2000;
            overflow-y: auto;
            padding: 40px 20px;
        }

        .modal-overlay.active {
            display: flex;
            justify-content: center;
            align-items: flex-start;
        }

        .modal {
            background: white;
            border-radius: var(--radius);
            max-width: 800px;
            width: 100%;
            padding: 40px;
            position: relative;
            margin: auto;
        }

        .modal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 36px;
            height: 36px;
            background: var(--bg-alt);
            border: none;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text);
            transition: background 0.2s;
        }

        .modal-close:hover {
            background: var(--border);
        }

        .modal h2 {
            font-size: 1.8rem;
            color: var(--secondary);
            margin-bottom: 8px;
        }

        .modal .modal-updated {
            font-size: 0.85rem;
            color: var(--text-light);
            margin-bottom: 24px;
        }

        .modal h3 {
            font-size: 1.2rem;
            color: var(--secondary);
            margin-top: 28px;
            margin-bottom: 12px;
        }

        .modal p, .modal li {
            color: var(--text);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 12px;
        }

        .modal ul, .modal ol {
            padding-left: 24px;
            margin-bottom: 16px;
        }

        .modal li {
            margin-bottom: 6px;
        }

        /* Cookie Bar */
        .cookie-bar {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--secondary);
            color: white;
            padding: 20px;
            z-index: 1500;
            box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
        }

        .cookie-bar.active {
            display: block;
        }

        .cookie-bar-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
        }

        .cookie-bar p {
            flex: 1;
            font-size: 0.9rem;
            color: rgba(255,255,255,0.9);
            min-width: 280px;
        }

        .cookie-bar p a {
            color: var(--accent);
            text-decoration: underline;
        }

        .cookie-bar-buttons {
            display: flex;
            gap: 12px;
            flex-shrink: 0;
        }

        .cookie-bar .btn-accept {
            background: var(--primary);
            color: white;
            padding: 10px 24px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            font-size: 0.9rem;
            transition: background 0.2s;
        }

        .cookie-bar .btn-accept:hover {
            background: var(--primary-dark);
        }

        .cookie-bar .btn-reject {
            background: transparent;
            color: rgba(255,255,255,0.7);
            padding: 10px 24px;
            border: 1px solid rgba(255,255,255,0.3);
            border-radius: 8px;
            font-weight: 500;
            cursor: pointer;
            font-size: 0.9rem;
            transition: all 0.2s;
        }

        .cookie-bar .btn-reject:hover {
            color: white;
            border-color: rgba(255,255,255,0.6);
        }

        /* Mobile Responsive */
        @media (max-width: 1024px) {
            .hero-content,
            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

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

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

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

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

            .process-step::after {
                display: none;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 20px;
                gap: 16px;
                border-bottom: 1px solid var(--border);
            }

            nav.active {
                display: flex;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero {
                padding: 120px 0 60px;
            }

            .hero-text h1 {
                font-size: 2rem;
            }

            .hero-badge {
                position: relative;
                bottom: auto;
                left: auto;
                margin-top: 20px;
            }

            .services-grid,
            .stats-grid {
                grid-template-columns: 1fr;
            }

            .process-steps {
                grid-template-columns: 1fr;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

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

            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .cookie-bar-inner {
                flex-direction: column;
                text-align: center;
            }

            .modal {
                padding: 24px;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-fade-in {
            animation: fadeInUp 0.6s ease forwards;
        }
