* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #dc2626;
            --secondary-color: #000000;
            --accent-color: #ef4444;
            --text-light: #000000;
            --text-gray: #4b5563;
            --bg-dark: #ffffff;
            --bg-card: #f9fafb;
            --gradient-primary: linear-gradient(135deg, #dc2626, #ef4444);
            --gradient-secondary: linear-gradient(135deg, #ef4444, #f87171);
            --gradient-bg: linear-gradient(135deg, #ffffff, #f9fafb);
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: var(--bg-dark);
            color: var(--text-light);
            overflow-x: hidden;
        }

        .bg-particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: var(--accent-color);
            border-radius: 50%;
            opacity: 0.3;
            animation: float 20s infinite linear;
        }

        @keyframes float {
            0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
            10% { opacity: 0.3; }
            90% { opacity: 0.3; }
            100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(220, 38, 38, 0.1);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo-image {
            width: 35px;
            height: auto;
            object-fit: contain;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--primary-color);
        }

        .lang-switch {
            display: flex;
            gap: 0.5rem;
        }

        .lang-btn {
            background: none;
            border: 1px solid var(--primary-color);
            color: var(--text-light);
            padding: 0.5rem 1rem;
            cursor: pointer;
            transition: all 0.3s;
            border-radius: 4px;
        }

        .lang-btn.active {
            background: var(--gradient-primary);
            color: white;
        }

        .lang-btn:hover {
            background: var(--gradient-primary);
            color: white;
        }

        /* Main Content */
        main {
            margin-top: 80px;
        }

        .hero {
            padding: 2rem 2rem;
            text-align: center;
            background: var(--gradient-bg);
            position: relative;
            overflow: hidden;
            min-height: 80vh;
            display: flex;
            align-items: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 50% 50%, rgba(220, 38, 38, 0.05) 0%, transparent 70%);
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            width: 100%;
        }

        /* Hero Badge */
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(220, 38, 38, 0.1);
            border: 1px solid rgba(220, 38, 38, 0.3);
            padding: 0.5rem 1rem;
            border-radius: 25px;
            margin-bottom: 2rem;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            backdrop-filter: blur(10px);
        }

        .hero-badge i {
            font-size: 1rem;
        }

        /* Hero Title */
        .hero-title {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            font-weight: 700;
        }

        .title-main {
            display: block;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.2rem;
        }

        .title-accent {
            display: block;
            color: var(--bg-dark);
            font-weight: 300;
            font-size: 0.8em;
        }

        /* Title Divider */
        .title-divider {
            width: 60px;
            height: 2px;
            background: var(--gradient-primary);
            margin: 0 auto 2rem;
            border-radius: 1px;
        }

        /* Hero Subtitle */
        .hero-subtitle {
            font-size: 1.3rem;
            color: var(--text-gray);
            margin-bottom: 3rem;
            font-weight: 300;
            line-height: 1.4;
        }

        /* Hero Stats */
        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin: 3rem 0;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .stat-card {
            background: rgb(255 255 255 / 5%);
            border: 1px solid rgba(220, 38, 38, 0.1);
            border-radius: 12px;
            padding: 1.5rem 1rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 0.8rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            flex: 1;
            min-width: 0;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .stat-card:hover {
            transform: translateY(-3px);
            border-color: rgba(220, 38, 38, 0.3);
            box-shadow: 0 8px 25px rgba(220, 38, 38, 0.15);
        }

        .stat-icon {
            width: 40px;
            height: 40px;
            background: var(--gradient-primary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: white;
            flex-shrink: 0;
        }

        .stat-content {
            flex: 1;
            text-align: center;
        }

        .stat-number {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
            line-height: 1;
            display: inline;
        }

        .stat-plus,
        .stat-range,
        .stat-percent {
            font-size: 1.8rem;
            color: var(--primary-color);
            font-weight: 600;
        }

        .stat-label {
            color: var(--bg-dark);
            font-size: 0.85rem;
            margin-top: 0.3rem;
            display: block;
            font-weight: 400;
            line-height: 1.2;
        }

        /* Hero CTA */
        .hero-cta {
            margin-top: 3rem;
        }

        .cta-button-enhanced {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            background: var(--gradient-primary);
            color: white;
            padding: 1.2rem 2.5rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
            position: relative;
            overflow: hidden;
        }

        .cta-button-enhanced::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .cta-button-enhanced:hover::before {
            left: 100%;
        }

        .cta-button-enhanced:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(220, 38, 38, 0.4);
        }

        .cta-icon {
            font-size: 1.3rem;
        }

        .cta-text {
            font-weight: 600;
        }

        .cta-arrow {
            font-size: 1rem;
            transition: transform 0.3s ease;
        }

        .cta-button-enhanced:hover .cta-arrow {
            transform: translateX(3px);
        }

        .cta-note {
            margin-top: 1rem;
            font-size: 0.9rem;
            color: var(--bg-dark);
            font-weight: 300;
        }

        .cta-button {
            display: inline-block;
            background: var(--gradient-primary);
            color: white;
            padding: 1rem 2rem;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(220, 38, 38, 0.4);
        }

        /* Features Section */
        .features {
            padding: 5rem 2rem;
            background: var(--bg-card);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 4rem;
            font-weight: 300;
            margin-bottom: 4rem;
            margin-top: 2rem;
            color: var(--text-light);
            line-height: 1.1;
        }

        /* Individual section title fonts */
        .features .section-title {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
        }

        .how-it-works .section-title {
            font-family: 'Montserrat', sans-serif;
            font-weight: 300;
        }

        .pricing .section-title {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
        }

        .partners .section-title {
            font-family: 'Montserrat', sans-serif;
            font-weight: 500;
        }

        .faq .section-title {
            font-family: 'Montserrat', sans-serif;
            font-weight: 400;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid rgba(220, 38, 38, 0.1);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.3s;
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-color);
            box-shadow: 0 8px 25px rgba(220, 38, 38, 0.15);
        }

        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .feature-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--text-light);
        }

        .feature-description {
            color: var(--text-gray);
            line-height: 1.6;
        }

        /* How It Works */
        .how-it-works {
            padding: 5rem 2rem;
            background: white;
            position: relative;
            overflow: hidden;
        }

        .how-it-works::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 70%, rgba(220, 38, 38, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }

        /* Progress Bar */
        .progress-container {
            margin: 3rem 0 4rem;
            position: relative;
        }

        .progress-bar {
            width: 100%;
            height: 4px;
            background: rgba(220, 38, 38, 0.2);
            border-radius: 2px;
            overflow: hidden;
            margin-bottom: 1rem;
        }

        .progress-fill {
            height: 100%;
            background: var(--gradient-primary);
            width: 25%;
            border-radius: 2px;
            transition: width 0.8s ease;
        }

        .progress-text {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .progress-step {
            font-size: 0.9rem;
            color: var(--text-gray);
            transition: color 0.3s ease;
            position: relative;
        }

        .progress-step.active {
            color: var(--primary-color);
            font-weight: 600;
        }

        /* Timeline Container */
        .timeline-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .timeline-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, 
                rgba(220, 38, 38, 0.8) 0%, 
                rgba(220, 38, 38, 0.4) 50%, 
                rgba(220, 38, 38, 0.1) 100%);
            transform: translateX(-50%);
            z-index: 1;
        }

        /* Timeline Steps */
        .timeline-step {
            display: flex;
            align-items: center;
            margin-bottom: 6rem;
            position: relative;
            z-index: 2;
        }

        .timeline-step:nth-child(even) {
            flex-direction: row-reverse;
        }

        /* Step Connector - всегда по центру */
        .step-connector {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
        }

        .step-dot {
            width: 80px;
            height: 80px;
            background: white;
            border: 3px solid var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            box-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
        }

        .step-number {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-color);
            z-index: 2;
        }

        .step-pulse {
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            border: 2px solid var(--primary-color);
            border-radius: 50%;
            animation: pulse 2s infinite;
            opacity: 0.6;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 0.6;
            }
            50% {
                transform: scale(1.1);
                opacity: 0.3;
            }
            100% {
                transform: scale(1.2);
                opacity: 0;
            }
        }

        /* Step Content - левая и правая стороны */
        .step-content {
            width: calc(50% - 60px);
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        /* Левые шаги (нечетные) */
        .timeline-step:nth-child(odd) .step-content {
            margin-right: auto;
            text-align: right;
            flex-direction: row-reverse;
        }

        /* Правые шаги (четные) */
        .timeline-step:nth-child(even) .step-content {
            margin-left: auto;
            text-align: left;
            flex-direction: row;
        }

        .step-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: white;
            box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
            flex-shrink: 0;
        }

        .step-info {
            flex: 1;
        }

        .step-title {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--text-light);
            font-weight: 600;
        }

        .step-description {
            color: var(--text-gray);
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        /* Step Details */
        .step-details {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        /* Выравнивание деталей для левых шагов */
        .timeline-step:nth-child(odd) .step-details {
            align-items: flex-end;
        }

        /* Выравнивание деталей для правых шагов */
        .timeline-step:nth-child(even) .step-details {
            align-items: flex-start;
        }

        .step-time {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--primary-color);
            font-weight: 500;
        }

        .step-time i {
            font-size: 1rem;
        }

        .step-features {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        /* Выравнивание тегов для левых шагов */
        .timeline-step:nth-child(odd) .step-features {
            justify-content: flex-end;
        }

        /* Выравнивание тегов для правых шагов */
        .timeline-step:nth-child(even) .step-features {
            justify-content: flex-start;
        }

        .feature-tag {
            background: rgba(220, 38, 38, 0.1);
            color: var(--primary-color);
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 500;
            border: 1px solid rgba(220, 38, 38, 0.2);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .timeline-line {
                left: 40px;
            }

            .step-connector {
                left: 40px;
            }

            .timeline-step,
            .timeline-step:nth-child(even) {
                flex-direction: row;
            }

            .step-content,
            .timeline-step:nth-child(odd) .step-content,
            .timeline-step:nth-child(even) .step-content {
                width: calc(100% - 100px);
                margin-left: 100px;
                margin-right: 0;
                text-align: left;
                flex-direction: row;
            }

            .step-details,
            .timeline-step:nth-child(odd) .step-details,
            .timeline-step:nth-child(even) .step-details {
                align-items: flex-start;
            }

            .step-features,
            .timeline-step:nth-child(odd) .step-features,
            .timeline-step:nth-child(even) .step-features {
                justify-content: flex-start;
            }

            .step-dot {
                width: 60px;
                height: 60px;
            }

            .step-number {
                font-size: 1.4rem;
            }

            .step-content {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }

            .step-title {
                font-size: 1.4rem;
            }

            .step-description {
                font-size: 0.9rem;
            }

            .progress-text {
                flex-wrap: wrap;
                gap: 0.5rem;
                justify-content: center;
            }

            .progress-step {
                font-size: 0.8rem;
            }
        }

        @media (max-width: 480px) {
            .timeline-line {
                left: 30px;
            }

            .step-connector {
                left: 30px;
            }

            .step-content,
            .timeline-step:nth-child(odd) .step-content,
            .timeline-step:nth-child(even) .step-content {
                width: calc(100% - 80px);
                margin-left: 80px;
            }

            .step-dot {
                width: 50px;
                height: 50px;
            }

            .step-number {
                font-size: 1.2rem;
            }

            .step-icon {
                width: 50px;
                height: 50px;
                font-size: 1.4rem;
            }

            .step-title {
                font-size: 1.2rem;
            }

            .step-description {
                font-size: 0.85rem;
            }

            .feature-tag {
                font-size: 0.7rem;
                padding: 0.2rem 0.6rem;
            }
        }

        /* Generation Packages */
        .pricing {
            padding: 5rem 2rem;
            background: var(--bg-card);
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: var(--text-gray);
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .pricing-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin-top: 3rem;
            justify-content: center;
        }

        .pricing-card {
            flex: 0 0 auto;
            width: 100%;
            max-width: 350px;
            min-width: 300px;
            background: white;
            padding: 2rem;
            border-radius: 16px;
            border: 1px solid rgba(220, 38, 38, 0.1);
            text-align: center;
            position: relative;
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            min-height: 480px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        @media (min-width: 768px) {
            .pricing-card {
                width: calc(50% - 1rem);
            }
        }

        @media (min-width: 1200px) {
            .pricing-card {
                width: calc(33.333% - 1.33rem);
            }
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .pricing-card:hover::before {
            transform: scaleX(1);
        }

        .pricing-card.featured {
            border-color: var(--primary-color);
            transform: scale(1.02);
            box-shadow: 0 10px 40px rgba(220, 38, 38, 0.2);
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            border-color: var(--primary-color);
            box-shadow: 0 15px 50px rgba(220, 38, 38, 0.15);
        }

        .pricing-card.featured:hover {
            transform: scale(1.02) translateY(-8px);
            box-shadow: 0 20px 60px rgba(220, 38, 38, 0.25);
        }

        /* Package Header */
        .package-header {
            margin-bottom: 1.5rem;
            position: relative;
        }

        .plan-name {
            font-size: 1.6rem;
            margin-bottom: 0.8rem;
            color: var(--text-light);
            font-weight: 600;
        }

        .package-badge {
            display: inline-block;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .package-badge.starter {
            background: linear-gradient(135deg, #6c757d, #495057);
            color: white;
        }

        .package-badge.economy {
            background: linear-gradient(135deg, #28a745, #20c997);
            color: white;
        }

        .package-badge.popular {
            background: var(--gradient-primary);
            color: white;
            animation: pulse 2s infinite;
        }

        .package-badge.business {
            background: linear-gradient(135deg, #007bff, #0056b3);
            color: white;
        }

        .package-badge.premium {
            background: linear-gradient(135deg, #6f42c1, #e83e8c);
            color: white;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        /* Price Section */
        .price-section {
            margin-bottom: 2rem;
            padding: 1.5rem 0;
            border-bottom: 1px solid rgba(220, 38, 38, 0.1);
        }

        .price-main {
            text-align: center;
            margin-bottom: 1rem;
        }

        .plan-price {
            font-size: 3rem;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
            line-height: 1;
        }

        .package-amount {
            font-size: 1.1rem;
            color: var(--text-light);
            font-weight: 500;
        }

        .price-details {
            text-align: center;
            margin-top: 1rem;
        }

        .price-per-unit {
            font-size: 1.1rem;
            color: var(--text-light);
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .price-comparison {
            font-size: 0.9rem;
            color: var(--text-gray);
            font-style: italic;
        }

        .savings {
            font-size: 0.9rem;
            color: #28a745;
            font-weight: bold;
            background: rgba(40, 167, 69, 0.1);
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            display: inline-block;
        }

        /* Package Benefits */
        .package-benefits {
            margin-bottom: 2rem;
            flex-grow: 1;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            padding: 0.8rem 0;
            color: var(--text-gray);
            font-size: 0.95rem;
        }

        .benefit-item i {
            color: var(--primary-color);
            font-size: 1.1rem;
            width: 20px;
            text-align: center;
        }

        .benefit-item span {
            font-weight: 500;
        }

        /* Features (for English version) */
        .plan-features {
            list-style: none;
            margin-bottom: 2rem;
            flex-grow: 1;
            text-align: left;
        }

        .plan-features li {
            padding: 0.6rem 0;
            color: var(--text-gray);
            position: relative;
            padding-left: 1.5rem;
            line-height: 1.4;
        }

        .plan-features li::before {
            content: '✓';
            color: var(--primary-color);
            font-weight: bold;
            position: absolute;
            left: 0;
            top: 0.6rem;
        }

        /* CTA Button Updates */
        .pricing-card .cta-button {
            margin-top: auto;
            width: 100%;
            padding: 1rem;
            font-size: 1rem;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .pricing-card.featured .cta-button {
            background: var(--gradient-secondary);
            box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
        }

        .pricing-card.featured .cta-button:hover {
            box-shadow: 0 6px 25px rgba(239, 68, 68, 0.4);
        }

        /* Partners */
        .partners {
            padding: 5rem 2rem;
            background: white;
        }

        .partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        .partners-grid a {
            text-decoration: none;
        }
        .partner-card {
            background: var(--bg-card);
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            border: 1px solid rgba(220, 38, 38, 0.1);
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .partner-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-color);
            box-shadow: 0 8px 25px rgba(220, 38, 38, 0.15);
        }

        .partner-logo {
            width: 80px;
            height: 80px;
            /*background: var(--gradient-primary);*/
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 2rem;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .partner-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
            padding: 10px;
            background: white;
            border-radius: 50%;
        }

        .partner-logo-fallback {
            display: none;
            width: 100%;
            height: 100%;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
        }

        .partner-name {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: var(--text-light);
        }

        .partner-description {
            color: var(--text-gray);
            font-size: 0.9rem;
            text-decoration: none;
        }

        /* FAQ */
        .faq {
            padding: 5rem 2rem;
            background: var(--bg-card);
        }

        .faq-category {
            margin-bottom: 3rem;
        }

        .faq-category-title {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid rgba(220, 38, 38, 0.2);
            font-weight: 600;
        }

        .faq-item {
            margin-bottom: 1rem;
            border: 1px solid rgba(220, 38, 38, 0.1);
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
            background: white;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .faq-item:hover {
            border-color: rgba(220, 38, 38, 0.3);
            box-shadow: 0 4px 15px rgba(220, 38, 38, 0.1);
        }

        .faq-question {
            background: white;
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
            font-weight: 500;
            color: var(--text-light);
        }

        .faq-question:hover {
            background: rgba(220, 38, 38, 0.05);
        }

        .faq-question i {
            color: var(--primary-color);
            transition: transform 0.3s ease;
            font-size: 1.2rem;
        }

        .faq-question i.active {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 1.5rem;
            background: white;
            color: var(--text-gray);
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            line-height: 1.6;
        }

        .faq-answer.active {
            max-height: 300px;
            padding: 1.5rem;
        }

        /* Mobile FAQ adjustments */
        @media (max-width: 768px) {
            .faq-category-title {
                font-size: 1.5rem;
                margin-bottom: 1rem;
            }

            .faq-question {
                padding: 1rem;
                font-size: 0.95rem;
            }

            .faq-answer.active {
                padding: 1rem;
                max-height: 400px;
            }
        }

        @media (max-width: 480px) {
            .faq-category-title {
                font-size: 1.3rem;
            }

            .faq-question {
                padding: 0.8rem;
                font-size: 0.9rem;
            }

            .faq-answer.active {
                padding: 0.8rem;
            }
        }

        /* Footer */
        footer {
            background: var(--secondary-color);
            padding: 3rem 2rem 1rem;
            border-top: 1px solid rgba(220, 38, 38, 0.1);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .footer-section h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .footer-section p {
            color: #d1d5db;
            line-height: 1.6;
        }

        .footer-section a {
            color: #d1d5db;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: var(--primary-color);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(220, 38, 38, 0.1);
            color: #d1d5db;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            /* Hero Mobile Styles */
            .hero {
                padding: 4rem 1rem;
                min-height: 80vh;
            }
            
            .hero-title {
                font-size: 2.8rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
                margin-bottom: 2rem;
            }
            
            .hero-stats {
                flex-direction: column;
                gap: 1rem;
                margin: 2rem 0;
            }
            
            .stat-card {
                padding: 1.2rem 0.8rem;
                gap: 0.6rem;
            }
            
            .stat-icon {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }
            
            .stat-number {
                font-size: 1.5rem;
            }
            
            .stat-plus,
            .stat-range,
            .stat-percent {
                font-size: 1.5rem;
            }
            
            .stat-label {
                font-size: 0.8rem;
            }
            
            .cta-button-enhanced {
                padding: 1rem 2rem;
                font-size: 1rem;
            }
            
            .cta-note {
                font-size: 0.8rem;
            }
            
            .steps {
                flex-direction: column;
            }
            
            /* Mobile Section Titles */
            .section-title {
                font-size: 2.8rem;
                letter-spacing: 0.1em;
                margin-bottom: 3rem;
                margin-top: 1rem;
            }
            
            /* Mobile Pricing Adjustments */
            .pricing-grid {
                flex-direction: column;
                gap: 1.5rem;
            }
            
            .pricing-card {
                min-height: auto;
                padding: 1.5rem;
            }
            
            .pricing-card.featured {
                transform: none;
                box-shadow: 0 5px 20px rgba(220, 38, 38, 0.2);
            }
            
            .pricing-card:hover,
            .pricing-card.featured:hover {
                transform: translateY(-5px);
            }
            
            .plan-price {
                font-size: 2.5rem;
            }
            
            .section-subtitle {
                font-size: 1rem;
                padding: 0 1rem;
            }
            
            .package-badge {
                font-size: 0.7rem;
                padding: 0.3rem 0.8rem;
            }
            
            .price-section {
                padding: 1rem 0;
            }
        }

        @media (max-width: 480px) {
            /* Extra small screens - section titles */
            .section-title {
                font-size: 2.2rem;
                letter-spacing: 0.08em;
                margin-bottom: 2.5rem;
            }
            
            .pricing-card {
                padding: 1rem;
            }
            
            .plan-price {
                font-size: 2rem;
            }
            
            .package-amount {
                font-size: 1rem;
            }
            
            .price-per-unit {
                font-size: 0.9rem;
            }
            
            .savings {
                font-size: 0.8rem;
                padding: 0.2rem 0.6rem;
            }
            
            .plan-features li {
                font-size: 0.9rem;
                padding: 0.4rem 0;
            }
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Language Content */
        .lang-content {
            display: none;
        }

        .lang-content.active {
            display: block;
        }

        .glass-button {
          position: relative;
          display: inline-flex;
          align-items: center;
          justify-content: center;
          width: 350px;
          height: 180px;
          border-radius: 999px;
          cursor: pointer;
          outline: none;
          border: 1px solid rgba(255, 255, 255, 0.3);
          background: linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(255, 255, 255, 0.08) 50%,
            rgba(255, 255, 255, 0.03) 100%
          );
          backdrop-filter: url(#glass);
          -webkit-backdrop-filter: url(#glass);
          transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 2.2);
        }

        .glass-button span {
          font-family: "Orbitron", sans-serif;
          color: white;
          font-size: 2.5rem;
          font-weight: 600;
          text-transform: uppercase;
          letter-spacing: 0.1em;
          pointer-events: none;
        }

        .glass-button:hover {
          transform: scale(1.05);
        }

        .glass-button::before {
          content: "";
          position: absolute;
          inset: 0;
          background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='100%'><filter id='noise'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23noise)'/></svg>");
          opacity: 0.03;
          pointer-events: none;
          z-index: 1;
        }

        /* ========= Fire-glows ========== */

        .fire-glow {
            position: absolute;
            filter: blur(100px);
        }
        .fire-glow-1 {
            width: 700px;
            height: 700px;
            left: -200px;
            bottom: -400px;
            opacity: 0.5;
        }
        .fire-glow-2 {
            width: 800px;
            height: 800px;
            right: -200px;
            bottom: -300px;
            opacity: 0.5;
        }
        .fire-glow-3 {
            width: 900px;
            height: 900px;
            left: 50%;
            bottom: -600px;
            transform: translateX(-50%);
            opacity: 0.7;
        }
        .fire-glow-4 {
            width: 1000px;
            height: 1000px;
            left: 10%;
            bottom: -600px;
            transform: translateX(-25%);
            opacity: 0.55;
        }
        .fire-glow-5 {
            width: 1100px;
            height: 1100px;
            right: 10%;
            bottom: -700px;
            transform: translateX(25%);
            opacity: 0.55;
        }
        .fire-glow-6 {
            width: 1200px;
            height: 1200px;
            bottom: -700px;
            left: -200px;
            opacity: 1;
            transform: translateX(-50%);
            opacity: 0.7;
        }

        .container-f {
            position: relative;
            width: inherit;
            height: inherit;
        }

        .inner-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border-radius: 100%;
        }
        .inner-glow-1 {
            height: 25%;
            width: 25%;
            background-color: #dc2626;
            animation: flickerAnimation 4s ease-in-out infinite;
            z-index: 10;
        }
        .inner-glow-2 {
            height: 65%;
            width: 65%;
            background-color: #b91c1c;
            animation: flickerAnimation 3s ease-in-out infinite;
            z-index: 9;
        }
        .inner-glow-3 {
            height: 100%;
            width: 100%;
            background-color: #991b1b;
            animation: flickerAnimation 3.6s ease-in-out infinite;
        }

        @keyframes flickerAnimation {
            0%,
            100% {
                opacity: 0.9;
                scale: 0.98;
            }
            15%,
            80% {
                opacity: 1;
                scale: 1;
            }
            30%,
            60% {
                opacity: 0.8;
                scale: 1.05;
            }
            45%,
            75% {
                opacity: 0.95;
                scale: 0.97;
            }
        }

        /* ======== Sparks ======== */

        .spark {
            position: absolute;
            border-radius: 100%;
            scale: 1;
            z-index: 999;
        }

        .spark .spark-glow {
            width: 200%;
            height: 200%;
            transform: translate(-25%, -25%);
            background-color: inherit;
            border-radius: 100%;
            filter: blur(8px) brightness(1.5);
            z-index: 99;
        }

        /* Examples Gallery Section */
        .examples-gallery {
            padding: 5rem 2rem;
            background: rgb(218, 217, 217);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-wrap: wrap;
        }

        .examples-gallery::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 70%, rgba(220, 38, 38, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }

        .examples-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .example-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid rgba(220, 38, 38, 0.1);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            cursor: pointer;
            position: relative;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .example-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .example-card:hover::before {
            transform: scaleX(1);
        }

        .example-card:hover {
            transform: translateY(-8px);
            border-color: var(--primary-color);
            box-shadow: 0 15px 40px rgba(220, 38, 38, 0.15);
        }

        .example-preview {
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            background: var(--gradient-primary);
        }

        .example-preview::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.1);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .example-card:hover .example-preview::after {
            opacity: 1;
        }

        .example-icon {
            font-size: 4rem;
            z-index: 2;
            position: relative;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
            color: white;
        }

        .example-info {
            padding: 2rem;
            position: relative;
            z-index: 2;
        }

        .example-category {
            font-size: 2rem;
            margin-bottom: 1rem;
            display: inline-block;
        }

        .example-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-light);
            line-height: 1.2;
        }

        .example-description {
            color: var(--text-gray);
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .example-tech {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .tech-tag {
            background: rgba(220, 38, 38, 0.1);
            color: var(--primary-color);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 500;
            border: 1px solid rgba(220, 38, 38, 0.2);
            transition: all 0.3s ease;
        }

        .tech-tag:hover {
            background: rgba(220, 38, 38, 0.2);
            border-color: var(--primary-color);
        }

        /* Different gradient backgrounds for cards */
        .example-card:nth-child(1) .example-preview {
            background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
        }

        .example-card:nth-child(2) .example-preview {
            background: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
        }

        .example-card:nth-child(3) .example-preview {
            background: linear-gradient(135deg, #b91c1c 0%, #dc2626 100%);
        }

        .example-card:nth-child(4) .example-preview {
            background: linear-gradient(135deg, #991b1b 0%, #b91c1c 100%);
        }

        /* Mobile responsive for examples */
        @media (max-width: 768px) {
            .examples-gallery {
                padding: 4rem 1rem;
            }
            
            .examples-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                margin-top: 2rem;
            }
            
            .example-info {
                padding: 1.5rem;
            }
            
            .example-title {
                font-size: 1.25rem;
            }
            
            .example-description {
                font-size: 0.9rem;
            }
            
            .tech-tag {
                font-size: 0.75rem;
                padding: 0.375rem 0.75rem;
            }
        }

        @media (max-width: 480px) {
            .example-title {
                font-size: 1.125rem;
            }
            
            .example-description {
                font-size: 0.85rem;
            }
            
            .example-category {
                font-size: 1.5rem;
            }
            
            .example-icon {
                font-size: 3rem;
            }
        }
