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

        body {
            font-family: 'Montserrat', sans-serif;
            font-size: 15px;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }

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

        /* Language Switcher */
        .language-switcher {
            position: fixed;
            right: 20px;
            top: 80px;
            z-index: 9999;
            background-color: #1e293b;
            border-radius: 12px;
            padding: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .language-switcher button {
            background: transparent;
            border: 2px solid #334155;
            color: #94a3b8;
            padding: 10px 15px;
            border-radius: 8px;
            cursor: pointer;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 0.9em;
            transition: all 0.3s ease;
            min-width: 60px;
        }

        .language-switcher button:hover {
            border-color: #fb00a2;
            color: #ffffff;
            background-color: rgba(251, 0, 162, 0.1);
        }

        .language-switcher button.active {
            background: linear-gradient(90deg, #fb00a2, #9b00a2);
            border-color: transparent;
            color: #ffffff;
        }

        /* Header */
        header {
            padding: 5px 0;
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
            color: #fb00a2;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #0a0d17 0%, #1e293b 100%);
            padding: 60px 0;
        }

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

        .hero-left h1 {
            font-size: 38px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .hero-left h1 span {
            color: #fb00a2;
        }

        .hero-left .subtitle {
            font-size: 18px;
            color: #fb00a2;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .hero-left p {
            font-size: 16px;
            color: #cbd5e1;
            margin-bottom: 25px;
        }

        .hero-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-top: 30px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            font-size: 14px;
            color: #e2e8f0;
        }

        .feature-item:before {
            content: "✓";
            color: #fb00a2;
            font-weight: 700;
            font-size: 18px;
            margin-right: 10px;
        }

        /* Form Container */
        .form-wrapper {
            display: none;
        }

        .form-wrapper.active {
            display: block;
        }

        .form-container {
            background: linear-gradient(135deg, #0a0d17 0%, #1e293b 100%);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(251, 0, 162, 0.3);
        }

        .form-container h2 {
            color: #fff;
            font-size: 24px;
            margin-bottom: 8px;
            font-weight: 700;
        }

        .form-container .form-subtitle {
            color: rgba(255,255,255,0.8);
            margin-bottom: 25px;
            font-size: 14px;
        }

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

        .form-group label {
            display: none;
        }

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

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 14px 16px;
            border: 1px solid #334155;
            border-radius: 10px;
            font-family: 'Montserrat', sans-serif;
            font-size: 15px;
            background: #1e293b;
            color: #ffffff;
            transition: all 0.3s;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #94a3b8;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #fb00a2;
            box-shadow: 0 0 0 3px rgba(251, 0, 162, 0.2);
        }

        .form-group select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%2394a3b8'%3E%3Cpath d='M6 8L0 0h12z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
            background-size: 12px;
            padding-right: 40px;
            cursor: pointer;
        }

        .form-group select option {
            background-color: #1e293b;
            color: #ffffff;
        }

        .form-group select option:first-child {
            color: #94a3b8;
        }

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

        /* Service Selection */
        .service-label {
            display: block !important;
            color: #cbd5e1;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 12px;
        }

        .service-options {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .service-option {
            display: flex;
            align-items: center;
        }

        .service-option input[type="checkbox"] {
            appearance: none;
            width: 20px;
            height: 20px;
            border: 2px solid #94a3b8;
            border-radius: 50%;
            cursor: pointer;
            position: relative;
            margin-right: 8px;
            flex-shrink: 0;
            transition: all 0.2s;
            background: transparent;
        }

        .service-option input[type="checkbox"]:checked {
            border-color: #fb00a2;
            background: #fb00a2;
        }

        .service-option input[type="checkbox"]:checked::before {
            content: '✓';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #ffffff;
            font-size: 12px;
            font-weight: 700;
        }

        .service-option label {
            display: block !important;
            color: #e2e8f0;
            font-size: 14px;
            cursor: pointer;
            font-weight: 400;
        }

        .submit-btn {
            width: 100%;
            padding: 16px;
            background: linear-gradient(90deg, #fb00a2, #9b00a2);
            color: #ffffff;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            font-family: 'Montserrat', sans-serif;
            margin-top: 10px;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(251, 0, 162, 0.4);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        /* Messages */
        .mauticform-error,
        .mauticform-message {
            display: none;
            margin-bottom: 15px;
            padding: 12px 16px;
            border-radius: 10px;
            font-size: 14px;
            text-align: center;
        }

        .mauticform-error:not(:empty) {
            display: block;
            background-color: rgba(248, 113, 113, 0.1);
            border: 1px solid #f87171;
            color: #f87171;
        }

        .mauticform-message:not(:empty) {
            display: block;
            background-color: rgba(74, 222, 128, 0.1);
            border: 1px solid #4ade80;
            color: #4ade80;
        }

        .mauticform-errormsg {
            color: #f87171;
            font-size: 12px;
            margin-top: 5px;
            display: block;
        }

        /* Services Section */
        .services {
            padding: 80px 0;
            background: #fff;
        }

        .services h2 {
            text-align: center;
            font-size: 36px;
            margin-bottom: 15px;
            color: #1a1a1a;
        }

        .services h2 span {
            color: #fb00a2;
        }

        .services-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px;
            color: #666;
            font-size: 16px;
        }

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

        .service-card {
            padding: 35px 30px;
            border-radius: 15px;
            background: #f8f9fa;
            transition: all 0.3s;
            border: 2px solid transparent;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(251, 0, 162, 0.15);
            border-color: #fb00a2;
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #fb00a2 0%, #9b00a2 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 32px;
        }

        .service-card h3 {
            font-size: 19px;
            margin-bottom: 15px;
            color: #1a1a1a;
            font-weight: 600;
        }

        .service-card p {
            color: #666;
            font-size: 14px;
            line-height: 1.7;
        }

        /* Benefits Section */
        .benefits {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
        }

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

        .benefits h2 {
            font-size: 36px;
            margin-bottom: 25px;
            color: #1a1a1a;
        }

        .benefits h2 span {
            color: #fb00a2;
        }

        .benefits-list {
            list-style: none;
        }

        .benefits-list li {
            padding: 18px 0;
            padding-left: 40px;
            position: relative;
            color: #555;
            font-size: 15px;
            border-bottom: 1px solid #eee;
        }

        .benefits-list li:last-child {
            border-bottom: none;
        }

        .benefits-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #fb00a2;
            font-weight: 700;
            font-size: 22px;
        }

        .benefits-image {
            position: relative;
        }

        .benefits-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(251, 0, 162, 0.15);
        }

        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #fb00a2 0%, #9b00a2 100%);
            text-align: center;
            color: #fff;
        }

        .cta-section h2 {
            font-size: 36px;
            margin-bottom: 15px;
        }

        .cta-section p {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.95;
        }

        .cta-btn {
            display: inline-block;
            padding: 18px 45px;
            background: #fff;
            color: #fb00a2;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 700;
            font-size: 16px;
            transition: all 0.3s;
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        /* Footer */
        footer {
            padding: 30px 0;
            background: #1a1a1a;
            color: #fff;
            text-align: center;
        }

        footer p {
            margin-bottom: 10px;
            font-size: 14px;
        }

        .footer-keywords {
            font-size: 12px;
            color: #888;
            max-width: 900px;
            margin: 15px auto 0;
            line-height: 1.8;
        }

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

            .hero-left h1 {
                font-size: 32px;
            }

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

            .form-container {
                padding: 30px 25px;
            }

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

            .services h2,
            .benefits h2,
            .cta-section h2 {
                font-size: 28px;
            }

            .hero {
                min-height: auto;
                padding: 40px 0;
            }

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

            .language-switcher {
                right: 10px;
                top: 70px;
                padding: 6px;
            }

            .language-switcher button {
                padding: 8px 12px;
                font-size: 0.85em;
                min-width: 50px;
            }
        }

        @media (max-width: 480px) {
            .hero-left h1 {
                font-size: 26px;
            }

            .form-container {
                padding: 25px 20px;
            }

            .form-container h2 {
                font-size: 20px;
            }

            .service-options {
                flex-direction: column;
            }
        }

        .grecaptcha-badge {
            visibility: visible !important;
            opacity: 0.8;
        }
 