        /* Reset & Variables */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary-green: #37ae91;
            --dark-bg: #1a1d21;
            --dark-card: #232629;
            --text-primary: #ffffff;
            --text-secondary: #94a3b8;
            --accent-blue: #00d9ff;
            --border: rgba(55, 174, 145, 0.2);
            --success: #10b981;
            --error: #ef4444;
            --font: 'Inter', system-ui, -apple-system, sans-serif;
            --radius: 12px;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            --transition: all 0.2s ease;
        }
        
        /* Base Styles */
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: var(--font);
            background: var(--dark-bg);
            color: var(--text-primary);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }
        
        /* Skip Link */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 16px;
            background: var(--primary-green);
            color: white;
            padding: 8px 16px;
            text-decoration: none;
            border-radius: var(--radius);
            font-weight: 600;
            z-index: 1001;
        }
        
        .skip-link:focus {
            top: 16px;
            outline: 3px solid var(--accent-blue);
        }
        
        /* Focus Styles */
        button:focus, input:focus, textarea:focus, select:focus, a:focus {
            outline: 2px solid var(--primary-green);
            outline-offset: 2px;
        }
        
        /* Header */
        .header {
            position: static;
            background: var(--dark-bg);
            border-bottom: 1px solid var(--border);
            padding: 1rem 0;
        }
        
        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }
        
        /* Logo Section */
        .logo-section {
            padding: 2rem 0 1rem;
            text-align: center;
            background: var(--dark-bg);
        }
        
        .main-logo {
            display: inline-block;
            transition: var(--transition);
        }
        
        .main-logo:hover {
            opacity: 0.9;
        }
        
        .main-logo-img {
            width: 600px;
            height: 600px;
            object-fit: contain;
        }
        
        /* Responsive Logo Sizes */
        @media (max-width: 768px) {
            .main-logo-img {
                width: 200px;
                height: 200px;
            }
        }
        
        @media (max-width: 480px) {
            .main-logo-img {
                width: 160px;
                height: 160px;
            }
        }
        
        .logo {
            font-size: 1rem;
            font-weight: 700;
            color: var(--primary-green);
            text-decoration: none;
            transition: var(--transition);
            width: 80px;
            height: 80px;
        }
        
        .logo:hover {
            opacity: 0.9;
        }
        
        /* Responsive Logo Sizes */
        @media (max-width: 768px) {
            .logo {
                width: 60px;
                height: 60px;
            }
        }
        
        @media (max-width: 480px) {
            .logo {
                width: 50px;
                height: 50px;
            }
        }
        
        .logo::-webkit-resizer {
            display: none;
        }
        
        /* Language Toggle */
        .lang-toggle {
            display: flex;
            background: var(--dark-card);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 4px;
        }
        
        .lang-btn {
            background: none;
            border: none;
            color: var(--text-secondary);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .lang-btn.active {
            background: var(--primary-green);
            color: white;
        }
        
        .lang-btn:hover:not(.active) {
            color: var(--text-primary);
            background: rgba(55, 174, 145, 0.1);
        }
        
        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        
        /* Hero */
        .hero {
            padding: 80px 0 60px;
            text-align: center;
            background: linear-gradient(135deg, var(--dark-bg) 0%, #1f2327 100%);
        }
        
        .hero-urgency {
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 2rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .hero-social-proof {
            color: var(--accent-blue);
            font-weight: 500;
            margin-top: 2rem;
            font-size: 1.125rem;
        }
        
        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-green) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-subtitle {
            font-size: clamp(1.125rem, 2.5vw, 1.375rem);
            color: var(--text-secondary);
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero-tagline {
            font-size: 1.125rem;
            color: var(--accent-blue);
            font-weight: 500;
            margin-bottom: 1rem;
        }
        
        /* How It Works Section */
        .how-it-works {
            padding: 80px 0;
            background: var(--dark-card);
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--text-primary);
        }
        
        .process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .process-step {
            text-align: center;
            padding: 2rem;
            background: var(--dark-bg);
            border-radius: var(--radius);
            border: 1px solid var(--border);
            position: relative;
            transition: var(--transition);
        }
        
        .process-step:hover {
            border-color: var(--primary-green);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background: var(--primary-green);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 1.5rem;
        }
        
        .process-step h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }
        
        .process-step p {
            color: var(--text-secondary);
            line-height: 1.6;
        }
        
        /* Solutions Section */
        .solutions {
            padding: 80px 0;
            background: var(--dark-bg);
        }
        
        .solutions-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        /* Solution Card */
        .solution-card {
            background: var(--dark-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 2rem;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        
        .solution-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-green), var(--accent-blue));
        }
        
        .solution-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            border-color: var(--primary-green);
        }
        
        /* Popular Badge */
        .popular-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 2;
        }
        
        /* Card Header */
        .solution-header {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.5rem;
            padding-top: 0.5rem;
        }
        
        .solution-icon {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .solution-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.9;
}
        
        .solution-content {
            flex: 1;
            min-width: 0;
        }
        
        .solution-title {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
            line-height: 1.2;
        }
        
        .solution-tagline {
            color: var(--accent-blue);
            font-weight: 500;
            font-size: 0.95rem;
            line-height: 1.3;
        }
        
        /* Price Display */
        .solution-price-section {
            margin: 1.5rem 0;
            text-align: center;
            padding: 1rem;
            background: rgba(55, 174, 145, 0.05);
            border-radius: 8px;
            border: 1px solid rgba(55, 174, 145, 0.1);
        }
        
        .solution-price {
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 0.25rem;
            margin-bottom: 0.5rem;
        }
        
        .price-currency {
            font-size: 1.2rem;
            color: var(--text-secondary);
            font-weight: 600;
        }
        
        .price-amount {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-green);
        }
        
        .price-desc {
            font-size: 0.875rem;
            color: var(--text-secondary);
        }
        
        /* Timeline Indicator */
        .timeline-indicator {
            background: rgba(0, 217, 255, 0.1);
            color: var(--accent-blue);
            padding: 0.75rem 1rem;
            border-radius: 8px;
            font-size: 0.875rem;
            font-weight: 600;
            margin: 1rem 0;
            text-align: center;
            border: 1px solid rgba(0, 217, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        
        .timeline-icon {
            width: 16px;
            height: 16px;
            object-fit: contain;
           
        }
        
        /* Features List */
        .solution-features {
            list-style: none;
            margin: 1.5rem 0;
            display: grid;
            gap: 0.75rem;
        }
        
        .solution-features li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            color: var(--text-secondary);
            line-height: 1.4;
        }
        
        .solution-features li::before {
            content: '';
            width: 16px;
            height: 16px;
            background: url('assets/sign.png') no-repeat center;
            background-size: contain;
            flex-shrink: 0;
            margin-top: 0.125rem;
            display: inline-block;
        }
        
        /* What's Included Section */
        .whats-included {
            margin: 1.5rem 0;
            padding: 1.5rem;
            background: rgba(55, 174, 145, 0.05);
            border-radius: 8px;
            border: 1px solid rgba(55, 174, 145, 0.1);
        }
        
        .whats-included h4 {
            color: var(--primary-green);
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .included-features {
            list-style: none;
            display: grid;
            gap: 0.5rem;
        }
        
        .included-features li {
            color: var(--text-secondary);
            font-size: 0.875rem;
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            line-height: 1.4;
        }
        
        .included-features li::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--primary-green);
            border-radius: 50%;
            flex-shrink: 0;
            margin-top: 0.5rem;
            display: inline-block;
        }
        
        /* Description */
        .solution-description {
            color: var(--text-secondary);
            margin: 1.5rem 0;
            line-height: 1.5;
        }
        
        /* CTA Button */
        .cta-btn {
            background: linear-gradient(135deg, var(--primary-green), #2d8f75);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            text-decoration: none;
            width: 100%;
            font-size: 1rem;
            margin-top: auto;
        }
        
        .cta-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(55, 174, 145, 0.4);
        }
        
        /* Forms */
        .form-section {
            background: var(--dark-card);
            margin: 3rem auto;
            padding: 2.5rem;
            border-radius: var(--radius);
            border: 1px solid var(--border);
            max-width: 600px;
            display: none;
        }
        
        .form-section.active {
            display: block;
        }
        
        .form-title {
            font-size: 1.75rem;
            font-weight: 600;
            margin-bottom: 2rem;
            text-align: center;
            color: var(--text-primary);
        }
        
        .form-grid {
            display: grid;
            gap: 1.5rem;
        }
        
        .form-group {
            display: flex;
            flex-direction: column;
        }
        
        .form-label {
            font-weight: 500;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
            font-size: 0.875rem;
        }
        
        .form-input,
        .form-textarea,
        .form-select {
            background: var(--dark-bg);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 0.75rem;
            color: var(--text-primary);
            font-size: 1rem;
            transition: var(--transition);
        }
        
        .form-input:focus,
        .form-textarea:focus,
        .form-select:focus {
            border-color: var(--primary-green);
            box-shadow: 0 0 0 3px rgba(55, 174, 145, 0.1);
        }
        
        .form-textarea {
            resize: vertical;
            min-height: 100px;
        }
        
        .consent-group {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin: 1.5rem 0;
        }
        
        .consent-checkbox {
            margin-top: 2px;
            accent-color: var(--primary-green);
        }
        
        .consent-label {
            color: var(--text-secondary);
            font-size: 0.875rem;
            line-height: 1.5;
        }
        
        .form-submit {
            background: var(--primary-green);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 1rem;
            position: relative;
            overflow: hidden;
        }
        
        .form-submit:hover:not(:disabled) {
            background: #2d8f75;
            transform: translateY(-1px);
        }
        
        .form-submit:disabled {
            background: var(--text-secondary);
            cursor: not-allowed;
            transform: none;
        }
        
        /* Progress Bar */
        .progress-bar {
            width: 100%;
            height: 3px;
            background: rgba(55, 174, 145, 0.2);
            border-radius: 3px;
            overflow: hidden;
            margin-top: 1rem;
            opacity: 0;
            transition: var(--transition);
        }
        
        .progress-bar.active {
            opacity: 1;
        }
        
        .progress-fill {
            height: 100%;
            background: var(--primary-green);
            width: 0%;
            transition: var(--transition);
        }
        
        /* Toast */
        .toast-container {
            position: fixed;
            top: 100px;
            right: 1rem;
            z-index: 1001;
            max-width: 350px;
        }
        
        .toast {
            background: var(--success);
            color: white;
            padding: 1rem 1.25rem;
            border-radius: 8px;
            font-weight: 500;
            margin-bottom: 0.5rem;
            transform: translateX(100%);
            transition: var(--transition);
            box-shadow: var(--shadow);
        }
        
        .toast.show {
            transform: translateX(0);
        }
        
        .toast.error {
            background: var(--error);
        }
        
        /* FAQ */
        .faq-section {
            padding: 60px 0;
            background: var(--dark-card);
            text-align: center;
        }
        
        .faq-btn {
            background: transparent;
            border: 2px solid var(--primary-green);
            color: var(--primary-green);
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .faq-btn:hover {
            background: var(--primary-green);
            color: white;
        }
        
        /* Modal */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            z-index: 2000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 1rem;
            overflow-y: auto;
        }
        
        .modal.active {
            display: flex;
        }
        
        .modal-content {
            background: var(--dark-card);
            border-radius: var(--radius);
            border: 1px solid var(--border);
            max-width: 700px;
            width: 100%;
            max-height: 95vh;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
        }
        
        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 2rem;
            border-bottom: 1px solid var(--border);
        }
        
        .modal-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 0;
        }
        
        .modal-close {
            background: none;
            border: none;
            color: var(--text-secondary);
            font-size: 1.5rem;
            cursor: pointer;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: var(--transition);
        }
        
        .modal-close:hover {
            background: rgba(55, 174, 145, 0.1);
            color: var(--primary-green);
        }
        
        .modal-body {
            padding: 1.5rem 2rem;
            flex: 1;
            overflow-y: auto;
        }
        
        .faq-grid {
            display: grid;
            gap: 1rem;
        }
        
        .faq-item {
            background: var(--dark-bg);
            border-radius: 8px;
            border: 1px solid var(--border);
            overflow: hidden;
        }
        
        .faq-question {
            background: none;
            border: none;
            width: 100%;
            text-align: left;
            padding: 1.5rem;
            font-weight: 600;
            color: var(--text-primary);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }
        
        .faq-question:hover {
            background: rgba(55, 174, 145, 0.05);
        }
        
        .faq-icon {
            color: var(--primary-green);
            transition: var(--transition);
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: var(--transition);
        }
        
        .faq-item.active .faq-answer {
            padding: 0 1.5rem 1.5rem;
            max-height: none;
            overflow: visible;
        }
        
        .faq-answer p {
            color: var(--text-secondary);
            line-height: 1.6;
            word-wrap: break-word;
            overflow-wrap: break-word;
            hyphens: auto;
        }
        
        /* Footer */
        .footer {
            background: #16181a;
            color: var(--text-secondary);
            padding: 3rem 0 2rem;
            border-top: 1px solid var(--border);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-section h3,
        .footer-section h4 {
            color: var(--text-primary);
            margin-bottom: 1rem;
            font-weight: 600;
        }
        
        .footer-section h3 {
            font-size: 1.25rem;
        }
        
        .footer-section h4 {
            font-size: 1rem;
        }
        
        .footer-address p {
            margin-bottom: 0.25rem;
            line-height: 1.4;
        }
        
        .contact-info p {
            margin-bottom: 0.5rem;
            line-height: 1.4;
        }
        
        .contact-info a {
            color: var(--primary-green);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .contact-info a:hover {
            color: var(--accent-blue);
        }
        
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        
        .footer-links a {
            color: var(--primary-green);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--accent-blue);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--border);
        }
        
        /* Responsive */
        @media (min-width: 768px) {
            .solutions-grid {
                grid-template-columns: 1fr 1fr;
                gap: 3rem;
                align-items: stretch;
            }
            
            .solution-features {
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
            }
            
            .solution-title {
                font-size: 1.5rem;
            }
            
            .form-grid {
                grid-template-columns: 1fr 1fr;
            }
            
            .form-group.full-width {
                grid-column: 1 / -1;
            }
            
            .footer-content {
                grid-template-columns: repeat(3, 1fr);
                gap: 3rem;
            }
        }
        
        @media (max-width: 768px) {
            .header-content {
                padding: 0 1rem;
            }
            
            .solution-icon {
                width: 40px;
                height: 40px;
            }
            
            .timeline-icon {
                width: 14px;
                height: 14px;
            }
            
            .hero {
                padding: 60px 0 40px;
            }
            
            .hero-urgency {
                font-size: 0.75rem;
                padding: 0.375rem 1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .process-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .process-step {
                padding: 1.5rem;
            }
            
            .solutions {
                padding: 60px 0;
            }
            
            .solution-card {
                padding: 1.5rem;
            }
            
            .solution-header {
                gap: 0.75rem;
            }
            
            .solution-title {
                font-size: 1.25rem;
            }
            
            .price-amount {
                font-size: 2rem;
            }
            
            .cta-btn {
                padding: 1.125rem 2rem;
                font-size: 1.125rem;
                min-height: 48px;
            }
            
            .lang-btn {
                padding: 12px 20px;
                font-size: 1rem;
                min-height: 44px;
            }
            
            .form-section {
                margin: 2rem 1rem;
                padding: 2rem 1.5rem;
            }
            
            .toast-container {
                left: 1rem;
                right: 1rem;
                max-width: none;
            }
            
            /* Mobile FAQ Modal Improvements */
            .modal {
                padding: 0.5rem;
            }
            
            .modal-content {
                max-height: 98vh;
                margin: 0;
                border-radius: 12px;
            }
            
            .modal-header {
                padding: 1rem 1.5rem;
                position: sticky;
                top: 0;
                background: var(--dark-card);
                z-index: 10;
            }
            
            .modal-title {
                font-size: 1.25rem;
            }
            
            .modal-body {
                padding: 1rem 1.5rem;
            }
            
            .faq-question {
                padding: 1rem;
                font-size: 0.95rem;
            }
            
            .faq-answer {
                padding: 0 1rem;
            }
            
            .faq-item.active .faq-answer {
                padding: 0 1rem 1rem;
            }
            
            .faq-answer p {
                font-size: 0.9rem;
                line-height: 1.5;
            }
        }
        
        /* Reduced Motion */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
            
            html {
                scroll-behavior: auto;
            }
        }
        
        /* Print Styles */
        @media print {
            .header, .faq-section, .footer, .toast-container, .modal {
                display: none !important;
            }
            
            body {
                background: white !important;
                color: black !important;
            }
        }

        /* Optimized Interactive Elements */
        
        /* Clean hero background */
        .hero {
            padding: 80px 0 60px;
            text-align: center;
            background: linear-gradient(135deg, var(--dark-bg) 0%, #1f2327 100%);
        }
        
        /* Subtle urgency badge without bouncing animation */
        .hero-urgency {
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 2rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
            transition: var(--transition);
        }
        
        .hero-urgency:hover {
            opacity: 0.9;
        }
        
        /* Optimized process steps */
        .process-step {
            text-align: center;
            padding: 2rem;
            background: var(--dark-bg);
            border-radius: var(--radius);
            border: 1px solid var(--border);
            transition: var(--transition);
        }
        
        .process-step:hover {
            border-color: var(--primary-green);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
        
        /* Optimized step numbers */
        .step-number {
            width: 60px;
            height: 60px;
            background: var(--primary-green);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 1.5rem;
        }
        
        /* Optimized solution cards */
        .solution-card {
            background: var(--dark-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 2rem;
            position: relative;
            transition: var(--transition);
            overflow: hidden;
        }
        
        .solution-card:hover {
            border-color: var(--primary-green);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        
    .popular-badge {
        position: absolute;
        top: 0;
        right: 2rem;
        background: linear-gradient(135deg, #ff6b35, #f7931e);
        color: white;
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transform: translateY(-50%);
        z-index: 3;
        
        /* Inlet effect styling */
        border-radius: 0 0 8px 8px;
        box-shadow: 
            0 2px 8px rgba(255, 107, 53, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
        
        /* Create the inlet cutout effect */
        clip-path: polygon(
            0 0,
            calc(100% - 8px) 0,
            100% 8px,
            100% 100%,
            8px 100%,
            0 calc(100% - 8px)
        );
    }
    
    /* Add a subtle shadow behind the inlet */
    .popular-badge::before {
        content: '';
        position: absolute;
        top: 2px;
        left: 2px;
        right: 2px;
        bottom: 2px;
        background: rgba(0, 0, 0, 0.1);
        border-radius: 0 0 6px 6px;
        z-index: -1;
        clip-path: polygon(
            0 0,
            calc(100% - 6px) 0,
            100% 6px,
            100% 100%,
            6px 100%,
            0 calc(100% - 6px)
        );
    }
    
    /* Card adjustment to accommodate inlet */
    .solution-card {
        background: var(--dark-card);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        padding: 2rem;
        transition: var(--transition);
        position: relative;
        display: flex;
        flex-direction: column;
        overflow: visible; /* Allow inlet to extend beyond card */
    }
    
    /* Add a small notch in the card border where the inlet sits */
    .solution-card[data-type="business"]::after {
        content: '';
        position: absolute;
        top: -1px;
        right: 2rem;
        width: 4rem;
        height: 2px;
        background: linear-gradient(135deg, #ff6b35, #f7931e);
        z-index: 2;
    }
    
    .solution-header {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.5rem;
        padding-top: 0.5rem;
    }
        /* Optimized CTA buttons */
        .cta-btn {
            background: linear-gradient(135deg, var(--primary-green), #2d8f7a);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }
        
        .cta-btn:hover {
            background: linear-gradient(135deg, #2d8f7a, var(--primary-green));
            box-shadow: 0 4px 12px rgba(55, 174, 145, 0.2);
        }
        
        /* Optimized form inputs */
        .form-input,
        .form-textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid var(--border);
            border-radius: 8px;
            background: var(--dark-bg);
            color: var(--text-primary);
            font-size: 1rem;
            transition: var(--transition);
            font-family: inherit;
        }
        
        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--primary-green);
            box-shadow: 0 0 0 3px rgba(55, 174, 145, 0.1);
        }
        
        /* Optimized FAQ items */
        .faq-question {
            width: 100%;
            background: var(--dark-card);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 1.5rem;
            text-align: left;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1rem;
            font-weight: 500;
            color: var(--text-primary);
        }
        
        .faq-question:hover {
            background: var(--dark-bg);
            border-color: var(--primary-green);
        }
        
        .faq-icon {
            font-size: 0.875rem;
            transition: var(--transition);
            color: var(--primary-green);
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: var(--transition);
            background: var(--dark-bg);
            border-radius: 0 0 8px 8px;
            margin-top: -1px;
        }
        
        .faq-item.active .faq-answer {
            max-height: none;
            padding: 1.5rem;
            border: 1px solid var(--primary-green);
            border-top: none;
            overflow: visible;
        }
        
        /* Optimized timeline indicator */
        .timeline-indicator {
            background: rgba(0, 217, 255, 0.1);
            color: var(--accent-blue);
            padding: 0.75rem 1rem;
            border-radius: 8px;
            font-size: 0.875rem;
            font-weight: 600;
            margin: 1.5rem 0;
            text-align: center;
            border: 1px solid rgba(0, 217, 255, 0.2);
        }
        
        /* Optimized social proof */
        .hero-social-proof {
            color: var(--accent-blue);
            font-weight: 500;
            margin-top: 2rem;
            font-size: 1.125rem;
        }
        
        /* Optimized language toggle */
        .lang-btn {
            background: none;
            border: none;
            color: var(--text-secondary);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .lang-btn.active {
            background: var(--primary-green);
            color: white;
        }
        
        .lang-btn:hover:not(.active) {
            color: var(--text-primary);
            background: rgba(55, 174, 145, 0.05);
        }
        
        /* Optimized progress bar */
        .progress-bar {
            width: 100%;
            height: 4px;
            background: var(--border);
            border-radius: 2px;
            overflow: hidden;
            margin: 1rem 0;
            opacity: 0;
            transition: var(--transition);
        }
        
        .progress-bar.active {
            opacity: 1;
        }
        
        .progress-fill {
            height: 100%;
            background: var(--primary-green);
            border-radius: 2px;
            width: 0%;
            transition: var(--transition);
        }
        
        /* Optimized toast notifications */
        .toast {
            background: var(--dark-card);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 1rem 1.5rem;
            margin-bottom: 1rem;
            color: var(--text-primary);
            font-size: 0.875rem;
            opacity: 0;
            transform: translateX(100%);
            transition: var(--transition);
            position: relative;
        }
        
        .toast::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--primary-green);
        }
        
        .toast.show {
            opacity: 1;
            transform: translateX(0);
        }
        
        .toast.error::before {
            background: #ff6b6b;
        }
        
        /* Optimized form submit button */
        .form-submit {
            background: linear-gradient(135deg, var(--primary-green), #2d8f7a);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            width: 100%;
        }
        
        .form-submit:hover:not(:disabled) {
            background: linear-gradient(135deg, #2d8f7a, var(--primary-green));
            box-shadow: 0 4px 12px rgba(55, 174, 145, 0.2);
        }
        
        .form-submit:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }
        
        /* Optimized Interactive Elements - Additional Styles */
        
        /* Field validation styles */
        .form-input.success,
        .form-textarea.success {
            border-color: var(--primary-green);
            box-shadow: 0 0 0 3px rgba(55, 174, 145, 0.1);
        }
        
        .form-input.error,
        .form-textarea.error {
            border-color: #ff6b6b;
            box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
        }
        
        .field-error {
            color: #ff6b6b;
            font-size: 0.875rem;
            margin-top: 0.5rem;
            display: none;
        }
        
        /* Selected solution card */
        .solution-card.selected {
            border-color: var(--primary-green);
            box-shadow: 0 0 0 3px rgba(55, 174, 145, 0.2);
        }
        
        /* Optimized accessibility for keyboard navigation */
        .keyboard-navigation *:focus {
            outline: 2px solid var(--primary-green);
            outline-offset: 2px;
        }
        
        /* Optimized counter */
        .counter {
            font-weight: 700;
            color: var(--primary-green);
        }
        
        /* Optimized skeleton loading */
        .skeleton {
            background: var(--border);
        }
        
        /* Optimized mobile interactions */
        @media (max-width: 768px) {
            .process-step:hover {
                transform: none;
            }
            
            .solution-card:hover {
                transform: none;
            }
            
            .cta-btn:hover {
                transform: none;
            }
        }
        
        /* Reduced motion preferences */
        @media (prefers-reduced-motion: reduce) {
            .process-step:hover,
            .solution-card:hover,
            .cta-btn:hover,
            .form-input:focus,
            .form-textarea:focus {
                transform: none;
            }
        }
        
        /* Additional fixes for card alignment and price visibility */
        .solution-card {
            position: relative;
            overflow: visible;
        }
        
        /* Ensure price is always visible and properly positioned */
        .solution-price {
            z-index: 10;
            transition: var(--transition);
        }
        
        /* Ensure cards have consistent spacing */
        .solutions-grid {
            align-items: stretch;
        }
        
        /* Make sure solution content doesn't overlap with price */
        .solution-content {
            flex: 1;
            min-width: 0; /* Prevents flex item from overflowing */
        }