 @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');
        
        :root {
            --primary-color: #2e7d32;
            --primary-light: #60ad5e;
            --primary-dark: #005005;
            --secondary-color: #388e3c;
            --tertiary-color: #1b5e20;
            --text-color: #212121;
            --text-light: #757575;
            --accent-color: #ffc107;
            --accent-dark: #ffa000;
            --white: #ffffff;
            --light-bg: #f8f9fa;
            --light-green-bg: #e8f5e9;
            --gray-50: #fafafa;
            --gray-100: #f5f5f5;
            --gray-200: #eeeeee;
            --gray-300: #e0e0e0;
            --border-radius-sm: 6px;
            --border-radius: 12px;
            --border-radius-lg: 16px;
            --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
            --box-shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
            background-color: var(--white);
            font-size: 16px;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1rem;
        }
        
        a {
            text-decoration: none;
            color: var(--primary-color);
            transition: var(--transition);
        }
        
        a:hover {
            color: var(--primary-dark);
        }
        
        img {
            max-width: 100%;
        }
        
        .container {
            width: 100%;
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 32px;
            border-radius: var(--border-radius);
            text-align: center;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            gap: 10px;
            font-size: 1rem;
            position: relative;
            overflow: hidden;
        }
        
        .btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(100%);
            transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            z-index: 1;
        }
        
        .btn:hover::after {
            transform: translateY(0);
        }
        
        .btn span {
            position: relative;
            z-index: 2;
        }
        
        .btn i {
            position: relative;
            z-index: 2;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            color: var(--white);
            box-shadow: 0 4px 20px rgba(46, 125, 50, 0.2);
        }
        
        .btn-primary:hover {
            background-color: var(--primary-dark);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(46, 125, 50, 0.3);
        }
        
        .btn-secondary {
            background-color: var(--accent-color);
            color: var(--text-color);
            box-shadow: 0 4px 20px rgba(255, 193, 7, 0.2);
        }
        
        .btn-secondary:hover {
            background-color: var(--accent-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(255, 193, 7, 0.3);
        }
        
        .btn-outline {
            background-color: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
            padding: 12px 30px;
        }
        
        .btn-outline:hover {
            background-color: var(--primary-color);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(46, 125, 50, 0.2);
        }
        
        .btn-white {
            background-color: var(--white);
            color: var(--primary-color);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }
        
        .btn-white:hover {
            background-color: var(--gray-50);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .badge {
            display: inline-block;
            padding: 5px 14px;
            border-radius: 100px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .badge-primary {
            background-color: var(--light-green-bg);
            color: var(--primary-color);
        }
        
        .badge-accent {
            background-color: #fff8e1;
            color: #ff8f00;
        }
        
/* Header */
header {
    background-color: var(--white);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.navbar-brand img {
    height: 30px;
}

.navbar-toggler {
    display: none;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.navbar-toggler span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: var(--transition);
}

.navbar-toggler.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.navbar-collapse {
    display: flex;
    align-items: center;
    gap: 40px;
}

.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -27px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
    border-radius: 3px;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 24px;
    font-size: 0.95rem;
}

@media screen and (max-width: 991px) {
    .navbar-toggler {
        display: block;
    }
    
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        transition: left 0.3s ease;
        z-index: 1000;
    }
    
    .navbar-collapse.active {
        left: 0;
    }
    
    .navbar-nav {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .nav-link {
        font-size: 1.1rem;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-cta {
        width: 100%;
        max-width: 300px;
        padding: 14px 24px;
    }
}        
        /* Hero Section */
        .hero {
            padding-top: 100px;
            padding-bottom: 120px;
            background: linear-gradient(135deg, #f5f7fa 0%, var(--light-green-bg) 100%);
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            bottom: -150px;
            left: -150px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background-color: rgba(46, 125, 50, 0.1);
            z-index: 0;
        }
        
        .hero::after {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background-color: rgba(46, 125, 50, 0.1);
            z-index: 0;
        }
        
        .hero-content {
            text-align: center;
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .hero-subtitle-top {
            color: var(--primary-color);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 20px;
            display: inline-block;
            padding: 8px 16px;
            background-color: rgba(46, 125, 50, 0.1);
            border-radius: 100px;
            font-size: 0.8rem;
        }
        
        .hero-title {
            font-size: 4rem;
            margin-bottom: 24px;
            color: var(--text-color);
            position: relative;
            display: inline-block;
            font-weight: 800;
        }
        
        .hero-typing {
            font-size: 1.5rem;
            color: var(--primary-color);
            font-weight: 600;
            margin: 24px 0;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-light);
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto 40px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            border-radius: var(--border-radius);
            position: relative;
            z-index: 2;
            background-color: var(--white);
            overflow: hidden;
        }
        
        .hero-input {
            flex: 1;
            padding: 18px 24px;
            border: 2px solid var(--white);
            background-color: var(--white);
            border-right: none;
            font-size: 1rem;
            outline: none;
            transition: var(--transition);
            font-family: 'Plus Jakarta Sans', sans-serif;
        }
        
        .hero-input:focus {
            border-color: var(--primary-light);
        }
        
        .hero-button {
            padding: 18px 36px;
            background-color: var(--primary-color);
            color: var(--white);
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            white-space: nowrap;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1rem;
        }
        
        .hero-button:hover {
            background-color: var(--primary-dark);
        }
        
        .hero-features {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 50px;
            flex-wrap: wrap;
        }
        
        .hero-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            color: var(--text-color);
        }
        
        .hero-feature i {
            color: var(--primary-color);
            font-size: 1.2rem;
        }
        
        /* Trusted by section */
        .trusted-by {
            padding: 80px 0;
            background-color: var(--white);
            text-align: center;
            position: relative;
        }
        
        .trusted-by::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, var(--gray-300) 50%, transparent 100%);
            top: 0;
            left: 0;
        }
        
        .trusted-title {
            font-size: 1rem;
            color: var(--text-light);
            margin-bottom: 40px;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
        }
        
        .trusted-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 80px;
            flex-wrap: wrap;
            opacity: 0.75;
        }
        
        .trusted-logo {
            height: 36px;
            filter: grayscale(100%);
            transition: var(--transition);
        }
        
        .trusted-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
        }
        
        /* Pricing Section */
        .pricing {
            padding: 120px 0;
            background-color: var(--light-bg);
            position: relative;
            overflow: visible;
        }
        
        .pricing::before {
            content: '';
            position: absolute;
            top: -200px;
            left: -200px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background-color: rgba(46, 125, 50, 0.05);
            z-index: 0;
        }
        
        /* Fixed Animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate-fade-in {
            animation: fadeIn 0.8s ease forwards;
            position: relative;
            z-index: 1;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
            margin-left: auto;
            margin-right: auto;
            z-index: 5;
            display: block;
            width: 100%;
            min-height: auto;
            padding-bottom: 30px;
        }
        
        .section-badge {
            display: inline-block;
            padding: 8px 16px;
            background-color: rgba(46, 125, 50, 0.1);
            color: var(--primary-color);
            border-radius: 100px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 20px;
        }
        
        .section-title {
            font-size: 3rem;
            margin-bottom: 24px;
            color: var(--text-color);
            position: relative;
            display: inline-block;
            font-weight: 800;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 800px;
            margin: 0 auto;
        }
        
        .section-content {
            position: relative;
            z-index: 2;
        }
        
        .pricing-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 60px;
            background-color: var(--white);
            border-radius: 100px;
            padding: 6px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            max-width: 250px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 1;
        }
        
        .toggle-btn {
            padding: 12px 28px;
            background-color: transparent;
            color: var(--text-light);
            border: none;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 600;
            border-radius: 100px;
            font-size: 0.95rem;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }
        
        .toggle-btn.active {
            background-color: var(--primary-color);
            color: var(--white);
        }
        
        .pricing-plans-container {
            position: relative;
            z-index: 1;
            display: flex;
            justify-content: center;
        }
        
        .pricing-plans {
            display: flex;
            gap: 24px;
            position: relative;
            z-index: 1;
            flex-wrap: nowrap;
            max-width: 100%;
        }
        
        .pricing-plan {
            background-color: var(--white);
            border-radius: var(--border-radius-lg);
            box-shadow: var(--box-shadow);
            overflow: hidden;
            transition: var(--transition);
            position: relative;
            display: flex;
            flex-direction: column;
            flex: 1;
            min-width: 280px;
            max-width: 305px;
            border: 1px solid var(--gray-200);
        }
        
        .pricing-plan:hover {
            transform: translateY(-10px);
            box-shadow: var(--box-shadow-hover);
            border-color: var(--primary-light);
            z-index: 2;
        }
        
        .pricing-header {
            padding: 40px 30px 30px;
            text-align: center;
            border-bottom: 1px solid var(--gray-200);
            background-color: var(--white);
        }
        
        .plan-icon {
            margin-bottom: 20px;
            display: flex;
            justify-content: center;
        }
        
        .plan-icon img {
            height: 56px;
        }
        
        .plan-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            padding: 5px 14px;
            background-color: var(--light-green-bg);
            color: var(--primary-color);
            border-radius: 100px;
            font-size: 0.75rem;
            font-weight: 700;
        }
        
        .plan-name {
            font-size: 1.6rem;
            margin-bottom: 15px;
            color: var(--text-color);
            font-weight: 700;
        }
        
        .plan-price {
            font-size: 3.2rem;
            font-weight: 800;
            margin-bottom: 5px;
            color: var(--text-color);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }
        
        .plan-price-currency {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--text-light);
        }
        
        .price-period {
            font-size: 1rem;
            color: var(--text-light);
            margin-top: 5px;
        }
        
        .plan-description {
            font-size: 0.95rem;
            color: var(--text-light);
            margin-top: 20px;
            padding: 0 20px;
            line-height: 1.6;
        }
        
        .plan-features {
            padding: 30px;
            list-style: none;
            flex-grow: 1;
            margin: 0;
        }
        
        .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            color: var(--text-color);
        }
        
        .feature-item:last-child {
            margin-bottom: 0;
        }
        
        .feature-icon {
            margin-right: 15px;
            color: var(--primary-color);
            font-size: 1rem;
            position: relative;
            top: 2px;
            flex-shrink: 0;
        }
        
        .feature-text {
            font-size: 0.95rem;
        }
        
        .plan-footer {
            padding: 20px 30px 40px;
            text-align: center;
        }
        
        .popular-badge {
            position: absolute;
            top: 0;
            right: 30px;
            background-color: var(--accent-color);
            color: var(--text-color);
            padding: 10px 20px 8px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            border-radius: 0 0 12px 12px;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(255, 193, 7, 0.2);
            z-index: 3;
        }
        
        .plan-popular {
            border: 2px solid var(--primary-color);
            transform: scale(1.05);
            z-index: 3;
        }
        
        .plan-popular .pricing-header {
            background-color: var(--light-green-bg);
            border-bottom: 1px solid rgba(46, 125, 50, 0.1);
        }
        
        /* Features Section */
        .features {
            padding: 120px 0;
            background-color: var(--white);
            position: relative;
            overflow: visible;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 30px;
        }
        
        .feature-card {
            background-color: var(--white);
            border-radius: var(--border-radius-lg);
            padding: 50px 35px;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            border: 1px solid var(--gray-200);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--box-shadow-hover);
            border-color: var(--primary-light);
        }
        
        .feature-icon-wrapper {
            width: 80px;
            height: 80px;
            background-color: var(--light-green-bg);
            border-radius: var(--border-radius);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            transition: var(--transition);
        }
        
        .feature-card:hover .feature-icon-wrapper {
            background-color: var(--primary-color);
        }
        
        .feature-card:hover .feature-icon-wrapper i {
            color: var(--white);
        }
        
        .feature-icon-wrapper i {
            font-size: 32px;
            color: var(--primary-color);
            transition: var(--transition);
        }
        
        .feature-title {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--text-color);
            font-weight: 700;
        }
        
        .feature-desc {
            color: var(--text-light);
            font-size: 1rem;
            line-height: 1.7;
        }
        
        .feature-link {
            margin-top: 25px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .feature-link i {
            transition: var(--transition);
        }
        
        .feature-link:hover i {
            transform: translateX(5px);
        }
        
        /* Promo Section */
        .promo {
            padding: 120px 0;
            background-color: var(--primary-color);
            position: relative;
            overflow: hidden;
        }
        
        .promo::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 300px;
            height: 300px;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            transform: translate(150px, -150px);
        }
        
        .promo::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 200px;
            height: 200px;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            transform: translate(-100px, 100px);
        }
        
        .promo-content {
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .promo-badge {
            display: inline-block;
            padding: 8px 16px;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--white);
            border-radius: 100px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 20px;
        }
        
        .promo-title {
            font-size: 3rem;
            color: var(--white);
            margin-bottom: 24px;
            font-weight: 800;
        }
        
        .promo-desc {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 40px;
            line-height: 1.7;
        }
        
        .promo-code {
            display: inline-block;
            padding: 16px 32px;
            background-color: rgba(255, 255, 255, 0.2);
            color: var(--white);
            border-radius: var(--border-radius);
            font-weight: 700;
            font-size: 1.4rem;
            letter-spacing: 2px;
            margin: 20px 0 40px;
            border: 1px dashed rgba(255, 255, 255, 0.3);
            position: relative;
        }
        
        .promo-code::before {
            content: 'COPIAZĂ';
            position: absolute;
            top: -10px;
            right: -10px;
            background-color: var(--accent-color);
            color: var(--text-color);
            padding: 5px 10px;
            border-radius: 100px;
            font-size: 0.7rem;
            font-weight: 700;
            cursor: pointer;
        }
        
        /* Trustpilot Section */
        .trustpilot {
            padding: 120px 0;
            background-color: var(--white);
            position: relative;
            overflow: visible;
        }
        
        .trustpilot::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 200px;
            background: linear-gradient(180deg, rgba(248,249,250,0) 0%, var(--light-bg) 100%);
            z-index: 0;
        }
        
        .trustpilot-container {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .trustpilot-logo {
            height: 60px;
            margin-bottom: 40px;
        }
        
        .trustpilot-content {
            max-width: 800px;
            text-align: center;
            margin-bottom: 50px;
        }
        
        .trustpilot-title {
            font-size: 3rem;
            margin-bottom: 24px;
            font-weight: 800;
        }
        
        .trustpilot-description {
            font-size: 1.25rem;
            color: var(--text-light);
            margin-bottom: 40px;
            line-height: 1.7;
        }
        
        .trustpilot-stars {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 50px;
            gap: 5px;
        }
        
        .trustpilot-star {
            color: #00b67a;
            font-size: 2.5rem;
        }
        
        .trustpilot-rating {
            font-size: 1.25rem;
            font-weight: 700;
            margin-left: 15px;
            background-color: #00b67a;
            color: white;
            padding: 5px 15px;
            border-radius: var(--border-radius);
        }
        
        .trustpilot-cta {
            background-color: #00b67a;
            color: white;
            padding: 15px 40px;
            border-radius: var(--border-radius);
            font-weight: 600;
            font-size: 1.1rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
        }
        
        .trustpilot-cta:hover {
            background-color: #009f6b;
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 182, 122, 0.3);
        }
        
        /* Comparison Table */
        .comparison {
            padding: 120px 0;
            background-color: var(--white);
            position: relative;
            overflow: visible;
        }
        
        
        
        .table-container {
            overflow-x: auto;
            margin-top: 30px;
            box-shadow: var(--box-shadow);
            border-radius: var(--border-radius-lg);
            position: relative;
            z-index: 1;
            background-color: var(--white);
        }
        
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            background-color: var(--white);
        }
        
        .comparison-table th,
        .comparison-table td {
            padding: 22px 24px;
            text-align: center;
            border: 1px solid var(--gray-200);
        }
        
        .comparison-table th {
            background-color: var(--primary-color);
            color: var(--white);
            font-weight: 600;
            font-size: 1.1rem;
            white-space: nowrap;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .comparison-table th:first-child {
            text-align: left;
            border-top-left-radius: var(--border-radius-lg);
        }
        
        .comparison-table th:last-child {
            border-top-right-radius: var(--border-radius-lg);
        }
        
        .comparison-table tr:last-child td:first-child {
            border-bottom-left-radius: var(--border-radius-lg);
        }
        
        .comparison-table tr:last-child td:last-child {
            border-bottom-right-radius: var(--border-radius-lg);
        }
        
        .comparison-table td:first-child {
            text-align: left;
            font-weight: 600;
            color: var(--text-color);
        }
        
        .comparison-table tr:nth-child(even) {
            background-color: var(--gray-50);
        }
        
        .comparison-table tr:hover {
            background-color: var(--light-green-bg);
        }
        
        /* Solutions Section */
        .solutions {
            padding: 120px 0;
            background-color: var(--light-bg);
            position: relative;
            overflow: visible;
        }
        
        .solutions::before {
            content: '';
            position: absolute;
            bottom: -150px;
            left: -150px;
            width: 300px;
            height: 300px;
            background-color: rgba(46, 125, 50, 0.05);
            border-radius: 50%;
            z-index: 0;
        }
        
        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 30px;
            position: relative;
            z-index: 1;
        }
        
        .solution-card {
            background-color: var(--white);
            border-radius: var(--border-radius-lg);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .solution-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--box-shadow-hover);
        }
        
        .solution-content {
            padding: 35px 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .solution-badge {
            display: inline-block;
            padding: 5px 14px;
            background-color: var(--light-green-bg);
            color: var(--primary-color);
            border-radius: 100px;
            font-size: 0.75rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .solution-title {
            font-size: 1.6rem;
            margin-bottom: 20px;
            color: var(--text-color);
            font-weight: 700;
        }
        
        .solution-desc {
            color: var(--text-light);
            margin-bottom: 30px;
            font-size: 1rem;
            line-height: 1.7;
            flex-grow: 1;
        }
        
        .solution-price {
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 25px;
            font-size: 1.2rem;
        }
        
        /* Free hosting promo */
        .free-hosting {
            padding: 120px 0;
            background-color: var(--tertiary-color);
            position: relative;
            overflow: hidden;
        }
        
        .free-hosting::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 200px;
            height: 200px;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }
        
        .free-hosting::after {
            content: '';
            position: absolute;
            bottom: -150px;
            left: -150px;
            width: 300px;
            height: 300px;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }
        
        .free-hosting-content {
            display: flex;
            align-items: center;
            gap: 60px;
            position: relative;
            z-index: 1;
        }
        
        .free-hosting-text {
            flex: 1;
            color: var(--white);
        }
        
        .free-hosting-badge {
            display: inline-block;
            padding: 8px 16px;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--white);
            border-radius: 100px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 20px;
        }
        
        .free-hosting-title {
            font-size: 2.8rem;
            margin-bottom: 30px;
            font-weight: 800;
        }
        
        .free-hosting-desc {
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
            line-height: 1.8;
        }
        
        .code-block {
            flex: 1;
            background-color: rgba(0, 0, 0, 0.2);
            border-radius: var(--border-radius-lg);
            padding: 40px;
            color: var(--white);
            font-family: 'Menlo', 'Monaco', 'Courier New', monospace;
            position: relative;
        }
        
        .code-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .code-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin-right: 8px;
        }
        
        .code-dot-red {
            background-color: #ff5f57;
        }
        
        .code-dot-yellow {
            background-color: #ffbd2e;
        }
        
        .code-dot-green {
            background-color: #28c840;
        }
        
        .code-title {
            margin-left: 10px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        
        .code-content {
            line-height: 1.8;
        }
        
        .code-content .highlight {
            color: #ffcb6b;
            font-weight: 700;
        }
        
        .code-content .comment {
            color: rgba(255, 255, 255, 0.5);
        }
        
        /* FAQ Section */
        .faq {
            padding: 120px 0;
            background-color: var(--light-bg);
            position: relative;
            overflow: visible;
        }
        
        .faq::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 200px;
            background: linear-gradient(180deg, rgba(248,249,250,0) 0%, var(--white) 100%);
            z-index: 0;
        }
        
        .faq-container {
            max-width: 900px;
            margin: 30px auto 0;
            position: relative;
            z-index: 1;
        }
        
        .faq-item {
            background-color: var(--white);
            border-radius: var(--border-radius-lg);
            margin-bottom: 25px;
            box-shadow: var(--box-shadow);
            overflow: hidden;
            transition: var(--transition);
        }
        
        .faq-item:hover {
            box-shadow: var(--box-shadow-hover);
        }
        
        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px 30px;
            background-color: var(--white);
            cursor: pointer;
            transition: var(--transition);
        }
        
        .faq-question h3 {
            font-size: 1.2rem;
            margin-bottom: 0;
            color: var(--text-color);
            font-weight: 600;
            padding-right: 40px;
        }
        
        .faq-icon {
            font-size: 1.2rem;
            color: var(--primary-color);
            transition: var(--transition);
            min-width: 24px;
            text-align: center;
        }
        
        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: var(--transition);
        }
        
        .faq-answer p {
            padding: 0 0 25px;
            color: var(--text-light);
            line-height: 1.8;
        }
        
        .faq-item.active .faq-question {
            background-color: var(--light-green-bg);
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
        }
        
        /* Footer */
        .footer {
            background-color: #1b5e20;
            color: rgba(255, 255, 255, 0.8);
            padding: 100px 0 30px;
            position: relative;
        }
        
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background: linear-gradient(90deg, var(--primary-color), var(--primary-light), var(--primary-color));
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 60px;
            margin-bottom: 70px;
        }
        
        .footer-col h3 {
            color: var(--white);
            font-size: 1.4rem;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
            font-weight: 700;
        }
        
        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--accent-color);
            border-radius: 3px;
        }
        
        .footer-col p {
            margin-bottom: 20px;
            line-height: 1.8;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links li {
            margin-bottom: 15px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
        }
        
        .footer-links a:hover {
            color: var(--white);
            transform: translateX(5px);
        }
        
        .footer-links a i {
            margin-right: 10px;
            font-size: 0.9rem;
        }
        
        .footer-contact {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .footer-contact i {
            margin-right: 15px;
            color: var(--accent-color);
            margin-top: 5px;
        }
        
        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }
        
        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--white);
            border-radius: 50%;
            transition: var(--transition);
            font-size: 1.1rem;
        }
        
        .social-link:hover {
            background-color: var(--accent-color);
            color: var(--text-color);
            transform: translateY(-5px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-bottom p {
            font-size: 0.95rem;
            margin-bottom: 15px;
        }
        
        .footer-bottom a {
            color: var(--accent-color);
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 56px;
            height: 56px;
            background-color: var(--primary-color);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 999;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            font-size: 1.2rem;
        }
        
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background-color: var(--primary-dark);
            transform: translateY(-5px);
            color: var(--white);
        }
        
        /* Animation */
        @keyframes bounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }
        
        .animate-bounce {
            animation: bounce 3s ease-in-out infinite;
        }
        
        /* Responsive Design */
        @media screen and (max-width: 1400px) {
            .features-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .solutions-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .pricing-plans {
                overflow-x: auto;
                padding: 20px 0;
                gap: 20px;
            }
            
            .pricing-plan {
                min-width: 260px;
            }
        }
        
        @media screen and (max-width: 1200px) {
            .hero-title {
                font-size: 3.5rem;
            }
            
            .section-title, .promo-title, .free-hosting-title, .trustpilot-title {
                font-size: 2.5rem;
            }
            
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .solutions-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 50px;
            }
            
            .free-hosting-content {
                flex-direction: column;
            }
            
            .code-block {
                width: 100%;
                max-width: 600px;
                margin: 0 auto;
            }
        }
        
        @media screen and (max-width: 991px) {
            .hero-title {
                font-size: 3rem;
            }
            
            .hero-subtitle, .promo-desc, .trustpilot-description {
                font-size: 1.1rem;
            }
            
            .hero-form {
                max-width: 500px;
            }
            
            .section-title, .promo-title, .free-hosting-title, .trustpilot-title {
                font-size: 2.2rem;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
                max-width: 550px;
                margin-left: auto;
                margin-right: auto;
            }
            
            .feature-card {
                padding: 40px 30px;
            }
            
            .pricing-plans {
                flex-wrap: nowrap;
                overflow-x: auto;
                padding: 30px 20px;
                justify-content: flex-start;
                margin: 0 -20px;
                width: calc(100% + 40px);
            }
            
            .pricing-plan {
                min-width: 280px;
                max-width: 280px;
            }
            
            .plan-popular {
                transform: scale(1);
            }
        }
        
        @media screen and (max-width: 768px) {
            .container {
                padding: 0 25px;
            }
            
            header {
            }
            
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: var(--white);
                flex-direction: column;
                transition: var(--transition);
                padding: 40px 25px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
              	z-index: 999;
            }
            
            .nav-menu.active {
    left: 0;
}
            
            .nav-list {
                flex-direction: column;
                width: 100%;
                gap: 25px;
            }
            
            .nav-item {
                margin: 0;
                width: 100%;
                text-align: center;
            }
            
            .nav-link::after {
                display: none;
            }
            
            .client-area {
                margin: 30px 0 0;
                width: 100%;
            }
            
            .mobile-toggle {
                display: block; 
                font-size: 24px;
                cursor: pointer;
                color: var(--text-color);
            }
            
            .hero {
                padding-top: 8px;
                padding-bottom: 80px;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-typing {
                font-size: 1.3rem;
            }
            
            .hero-form {
                flex-direction: column;
                max-width: 100%;
            }
            
            .hero-input {
                width: 100%;
                border-right: 2px solid var(--white);
                border-bottom: none;
                border-top-right-radius: var(--border-radius);
                border-bottom-left-radius: 0;
            }
            
            .hero-button {
                width: 100%;
                border-bottom-left-radius: var(--border-radius);
                border-top-right-radius: 0;
            }
            
            .section-title, .promo-title, .free-hosting-title, .trustpilot-title {
                font-size: 2rem;
            }
            
            .trusted-logos {
                gap: 30px;
            }
            
            .solutions-grid {
                grid-template-columns: 1fr;
                max-width: 550px;
                margin-left: auto;
                margin-right: auto;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .faq-question h3 {
                font-size: 1.1rem;
            }
        }
        
        @media screen and (max-width: 576px) {
            .hero-title {
                font-size: 2.2rem;
            }
            
            .hero-subtitle, .section-subtitle, .promo-desc, .trustpilot-description {
                font-size: 1rem;
            }
            
            .hero-features {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }
            
            .hero-form {
                margin-bottom: 30px;
            }
            
            .section-title, .promo-title, .free-hosting-title, .trustpilot-title {
                font-size: 1.8rem;
            }
            
            .section-badge, .promo-badge, .free-hosting-badge {
                font-size: 0.7rem;
            }
            
            .pricing-toggle {
                flex-direction: column;
                gap: 10px;
                padding: 10px;
            }
            
            .toggle-btn {
                width: 100%;
                border-radius: var(--border-radius);
            }
            
            .pricing-plan {
                min-width: 260px;
            }
            
            .pricing-header {
                padding: 30px 20px 20px;
            }
            
            .plan-features {
                padding: 20px;
            }
            
            .feature-card {
                padding: 30px 25px;
            }
            
            .promo-code {
                font-size: 1.2rem;
                padding: 15px 25px;
            }
            
            .free-hosting-desc {
                font-size: 1rem;
            }
            
            .code-block {
                padding: 30px 20px;
            }
            
            .trustpilot-star {
                font-size: 2rem;
            }
            
            .trustpilot-rating {
                font-size: 1rem;
            }
            
            .back-to-top {
                bottom: 20px;
                right: 20px;
                width: 50px;
                height: 50px;
            }
        }
      
      /* Eco-friendly Section */
.eco-friendly {
    padding: 120px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, var(--light-green-bg) 100%);
    position: relative;
    overflow: hidden;
}

.eco-friendly::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(46, 125, 50, 0.1);
    z-index: 0;
}

.solar-animation {
    position: relative;
    height: 300px;
    margin: 30px auto 60px;
    max-width: 800px;
    overflow: hidden;
}

.sun-container {
    position: absolute;
    top: 20px;
    left: 50px;
    z-index: 2;
}

.sun {
    width: 80px;
    height: 80px;
    background: linear-gradient(#ffd700, #ffb700);
    border-radius: 50%;
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.6);
    position: relative;
    animation: sun-pulse 4s infinite alternate;
}

@keyframes sun-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
    }
    100% {
        transform: scale(1.1);
        box-shadow: 0 0 60px rgba(255, 215, 0, 0.8);
    }
}

.ray {
    position: absolute;
    background-color: rgba(255, 215, 0, 0.5);
    width: 4px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform-origin: 0 0;
}

.ray1 { transform: rotate(0deg) translateY(-50px); }
.ray2 { transform: rotate(45deg) translateY(-50px); }
.ray3 { transform: rotate(90deg) translateY(-50px); }
.ray4 { transform: rotate(135deg) translateY(-50px); }
.ray5 { transform: rotate(180deg) translateY(-50px); }
.ray6 { transform: rotate(225deg) translateY(-50px); }
.ray7 { transform: rotate(270deg) translateY(-50px); }
.ray8 { transform: rotate(315deg) translateY(-50px); }

.ray {
    animation: ray-pulse 3s infinite alternate;
}

@keyframes ray-pulse {
    0% { height: 80px; opacity: 0.5; }
    100% { height: 120px; opacity: 0.8; }
}

.ray:nth-child(odd) {
    animation-delay: 0.5s;
}

.solar-panels {
    position: absolute;
    bottom: 50px;
    left: 50px;
    display: flex;
    gap: 15px;
    z-index: 3;
}

.panel {
    width: 100px;
    height: 60px;
    background: linear-gradient(135deg, #003366 0%, #0066cc 100%);
    border: 1px solid #001f3f;
    position: relative;
    transform: perspective(500px) rotateX(30deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-25deg);
    transition: 0.5s;
    animation: panel-shine 3s infinite;
}

@keyframes panel-shine {
    0% { left: -100%; }
    20%, 100% { left: 150%; }
}

.panel:nth-child(2) .panel::before {
    animation-delay: 0.3s;
}

.panel:nth-child(3) .panel::before {
    animation-delay: 0.6s;
}

.panel:nth-child(4) .panel::before {
    animation-delay: 0.9s;
}

.panel1 { animation-delay: 0s; }
.panel2 { animation-delay: 0.3s; }
.panel3 { animation-delay: 0.6s; }
.panel4 { animation-delay: 0.9s; }

.server-rack {
    position: absolute;
    right: 50px;
    bottom: 50px;
    width: 150px;
    height: 200px;
    background-color: #2c3e50;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 20px;
    z-index: 3;
}

.server {
    width: 100%;
    height: 30px;
    background-color: #34495e;
    border-radius: 5px;
    position: relative;
}

.server::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #2ecc71;
    box-shadow: 0 0 10px rgba(46, 204, 113, 0.8);
    animation: server-pulse 2s infinite alternate;
}

@keyframes server-pulse {
    0% { background-color: #2ecc71; box-shadow: 0 0 5px rgba(46, 204, 113, 0.6); }
    100% { background-color: #27ae60; box-shadow: 0 0 15px rgba(46, 204, 113, 0.9); }
}

.server1 .server::after { animation-delay: 0s; }
.server2 .server::after { animation-delay: 0.3s; }
.server3 .server::after { animation-delay: 0.6s; }

.energy-path {
    position: absolute;
    left: -250px;
    top: 40%;
    width: 250px;
    height: 3px;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.5) 0%, rgba(46, 204, 113, 0.8) 100%);
}

.energy-path::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ffd700;
    animation: energy-flow 3s infinite linear;
}

@keyframes energy-flow {
    0% { left: 0; background-color: #ffd700; }
    100% { left: 100%; background-color: #2ecc71; }
}

.eco-benefits {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
}

.eco-benefit {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--box-shadow);
    flex: 1;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 20px;
}

.eco-benefit:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.eco-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light-green-bg);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.eco-text h3 {
    margin-bottom: 10px;
    color: var(--text-color);
    font-size: 1.3rem;
}

.eco-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

@media screen and (max-width: 991px) {
    .solar-animation {
        height: 500px;
    }
    
    .sun-container {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .solar-panels {
        left: 50%;
        transform: translateX(-50%);
        bottom: 200px;
    }
    
    .server-rack {
        left: 50%;
        transform: translateX(-50%);
        bottom: 30px;
    }
    
    .energy-path {
        left: 50%;
        transform: translateX(-50%) rotate(90deg);
        top: 52%;
        width: 120px;
    }
    
    .eco-benefits {
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    .solar-animation {
        height: 450px;
    }
    
    .solar-panels {
        flex-wrap: wrap;
        width: 240px;
        gap: 10px;
        justify-content: center;
    }
    
    .panel {
        width: 100px;
        height: 50px;
    }
}

@media screen and (max-width: 576px) {
    .solar-animation {
        height: 400px;
    }
    
    .sun {
        width: 60px;
        height: 60px;
    }
    
    .ray {
        height: 60px;
    }
    
    @keyframes ray-pulse {
        0% { height: 60px; opacity: 0.5; }
        100% { height: 90px; opacity: 0.8; }
    }
    
    .panel {
        width: 80px;
        height: 40px;
    }
    
    .solar-panels {
        width: 180px;
    }
    
    .server-rack {
        width: 120px;
        height: 160px;
    }
}
 /* Performance Section Styles */
    .performance {
        padding: 80px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        position: relative;
        overflow: hidden;
    }

    .performance::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(139, 195, 74, 0.1) 0%, transparent 70%);
        border-radius: 50%;
    }

    .performance-wrapper {
        background: white;
        border-radius: 16px;
        padding: 60px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    }

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

    .performance-content {
        position: relative;
        z-index: 1;
    }

    .section-header-inline {
        margin-bottom: 30px;
    }

    .section-header-inline .section-badge {
        display: inline-block;
        background: rgba(139, 195, 74, 0.1);
        color: var(--primary-color);
        padding: 6px 16px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .section-header-inline .section-title {
        font-size: 36px;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 0;
        line-height: 1.2;
    }

    .performance-description {
        font-size: 18px;
        line-height: 1.7;
        color: var(--text-light);
        margin-bottom: 25px;
    }

    .performance-note {
        font-size: 16px;
        line-height: 1.6;
        color: var(--text-light);
        margin-bottom: 35px;
    }

    .performance-cta {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 30px;
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .performance-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(139, 195, 74, 0.3);
    }

    .performance-image {
        position: relative;
    }

    .performance-screenshot {
        width: 100%;
        height: auto;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        transition: transform 0.3s ease;
    }

    .performance-screenshot:hover {
        transform: scale(1.02);
    }

    .image-caption {
        text-align: center;
        margin-top: 15px;
        font-size: 14px;
        color: var(--text-light);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .image-caption i {
        color: var(--primary-color);
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .performance-wrapper {
            padding: 40px;
        }
        
        .performance-container {
            grid-template-columns: 1fr;
            gap: 40px;
        }
        
        .performance-image {
            order: -1;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .section-header-inline .section-title {
            font-size: 30px;
        }
    }

    @media (max-width: 768px) {
        .performance {
            padding: 60px 0;
        }
        
        .performance-wrapper {
            padding: 30px;
        }
        
        .section-header-inline .section-title {
            font-size: 26px;
        }
        
        .performance-description {
            font-size: 16px;
        }
    }

    @media (max-width: 480px) {
        .performance-wrapper {
            padding: 20px;
            border-radius: 12px;
        }
        
        .performance-cta {
            width: 100%;
            justify-content: center;
        }
    }
    </style>

<style>
/* Performance Section Styles */
/* Performance Section Styles */
.performance {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.performance::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 195, 74, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.performance-wrapper {
    background: white;
    border-radius: 16px;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

.performance-content {
    position: relative;
    z-index: 1;
}

.section-header-inline {
    margin-bottom: 30px;
}

.section-header-inline .section-badge {
    display: inline-block;
    background: rgba(139, 195, 74, 0.1);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-header-inline .section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0;
    line-height: 1.2;
}

.performance-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 25px;
}

.performance-note {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 35px;
}

.performance-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.performance-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 195, 74, 0.3);
}

.performance-image {
    position: relative;
}

.performance-screenshot {
    width: 100%;
    height: auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.performance-screenshot:hover {
    transform: scale(1.02);
}

.image-caption {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.image-caption i {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .performance-wrapper {
        padding: 40px;
    }
    
    .performance-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .performance-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .section-header-inline .section-title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .performance {
        padding: 60px 0;
    }
    
    .performance-wrapper {
        padding: 30px;
    }
    
    .section-header-inline .section-title {
        font-size: 26px;
    }
    
    .performance-description {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .performance-wrapper {
        padding: 20px;
    }
    
    .performance-cta {
        width: 100%;
        justify-content: center;
    }
}
/* Language Link Style */
.language-link {
    font-weight: 600;
    display: flex !important;
    align-items: center;
    gap: 6px;
}

.language-link img {
    display: inline-block;
    vertical-align: middle;
}
/* Domain checker */
.domain-checker-container {
        max-width: 500px;
        margin: 0 auto 20px;
        position: relative;
    }
    
    .domain-status {
        display: none;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 10px 16px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 12px;
        animation: slideDown 0.3s ease;
    }
    
    .domain-status i {
        font-size: 16px;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .domain-status.checking {
        display: flex;
        color: #ff9800;
        background: rgba(255, 152, 0, 0.1);
        border: 1px solid rgba(255, 152, 0, 0.2);
    }
    
    .domain-status.available {
        display: flex;
        color: #4caf50;
        background: rgba(76, 175, 80, 0.1);
        border: 1px solid rgba(76, 175, 80, 0.2);
    }
    
    .domain-status.taken {
        display: flex;
        color: #f44336;
        background: rgba(244, 67, 54, 0.1);
        border: 1px solid rgba(244, 67, 54, 0.2);
    }
    
    .domain-checker {
        position: relative;
        display: flex;
        align-items: center;
        background: white;
        border-radius: 12px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        overflow: hidden;
    }
    
    .domain-input-wrapper {
        position: relative;
        flex: 1;
        display: flex;
        align-items: center;
    }
    
    .domain-input {
        width: 100%;
        padding: 16px 60px 16px 20px;
        border: 2px solid transparent;
        font-size: 16px;
        font-family: 'Plus Jakarta Sans', sans-serif;
        outline: none;
        transition: all 0.3s ease;
    }
    
    .domain-input:focus {
        border-color: var(--primary-light);
    }
    
    .domain-suffix {
        position: absolute;
        right: 20px;
        color: #757575;
        font-weight: 600;
        font-size: 16px;
        pointer-events: none;
    }
    
    .domain-loader {
        width: 14px;
        height: 14px;
        border: 2px solid currentColor;
        border-top-color: transparent;
        border-radius: 50%;
        animation: spin 0.8s linear infinite;
    }
    
    @keyframes spin {
        to { transform: rotate(360deg); }
    }
    
    .domain-register-btn {
        padding: 16px 32px;
        background: var(--primary-color);
        color: white;
        border: none;
        font-weight: 600;
        font-size: 16px;
        cursor: pointer;
        transition: all 0.3s ease;
        white-space: nowrap;
        display: none;
        text-decoration: none;
        font-family: 'Plus Jakarta Sans', sans-serif;
    }
    
    .domain-register-btn.show {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: scale(0.95);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }
    
    .domain-register-btn:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
    }
    
    /* Mobile responsive */
    @media (max-width: 768px) {
        .hero-form {
            display: none;
        }
        
        .domain-checker-container {
            max-width: 100%;
        }
        
        .domain-checker {
            flex-direction: column;
        }
        
        .domain-input-wrapper {
            width: 100%;
        }
        
        .domain-register-btn.show {
            width: 100%;
            justify-content: center;
            border-radius: 0 0 12px 12px;
        }
        
        .domain-status {
            font-size: 13px;
            padding: 8px 12px;
        }
    }