:root {
    --primary-color: #4f46e5;
    --secondary-color: #f59e0b;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --dark-color: #1e293b;
    --light-gray: #f8fafc;
    --medium-gray: #64748b;
    --border-color: #e2e8f0;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #ffffff;
}

.navbar {
    background: white;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    border-bottom: 1px solid #e2e8f0;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 40px;
    max-width: 250px;
    object-fit: contain;
}

.navbar-trust {
    display: flex;
    align-items: center;
}

.trust-badges {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.trust-item i {
    font-size: 1rem;
}

.trust-text {
    font-weight: 500;
    white-space: nowrap;
}

.btn-primary-navbar {
    background: linear-gradient(45deg, #10b981, #34d399);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    white-space: nowrap;
    height: 42px;
    margin-top: 1px;
}

.btn-primary-navbar:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    color: white;
}

.navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    border-radius: 6px;
    margin: 0;
    text-align: center;
    min-width: 120px;
}

.navbar-nav .nav-link:hover {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.navbar-nav .nav-link i {
    color: #10b981;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 12px;
    padding: 0.5rem 0;
    min-width: 280px;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, #f0fff4 0%, #e6fffa 100%);
    color: var(--dark-color);
}

.dropdown-logo {
    height: 24px;
    width: 80px;
    object-fit: contain;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.hero-section {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 50%, #718096 100%);
    padding: 1.5rem 0;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 40vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><circle cx="350" cy="100" r="150" fill="rgba(255,255,255,0.05)"/><circle cx="300" cy="300" r="100" fill="rgba(255,255,255,0.03)"/><path d="M200,0 L400,0 L400,400 L0,400 Z" fill="rgba(255,255,255,0.02)"/></svg>') no-repeat center right;
    background-size: contain;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 400;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
}

.hero-feature i {
    font-size: 1.2rem;
    color: #68d391;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: linear-gradient(45deg, #38b2ac, #4fd1c7);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(56, 178, 172, 0.3);
    color: white;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 1rem;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
}

.hero-or {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 0.9rem;
}

.provider-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.provider-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}

.provider-card.featured {
    border-color: #10b981;
    transform: scale(1.1);
    box-shadow: 0 8px 40px rgba(16, 185, 129, 0.2);
    position: relative;
}

.provider-card.featured::before {
    content: '#1 WINNAAR';
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(45deg, #10b981, #34d399);
    color: white;
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    z-index: 10;
}

.provider-card.featured .price {
    color: #10b981;
    font-size: 2.2rem;
}

.provider-card.second .price {
    color: #3b82f6;
    font-size: 2.1rem;
}

.provider-card.third .price {
    color: #f59e0b;
    font-size: 2.1rem;
}

.provider-card.second {
    border-color: #3b82f6;
    box-shadow: 0 4px 25px rgba(59, 130, 246, 0.15);
    transform: scale(1.02);
}

.provider-card.second:hover {
    transform: scale(1.02) translateY(-8px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.25);
}

.provider-card.second::before {
    content: '#2';
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(45deg, #3b82f6, #6366f1);
    color: white;
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    z-index: 10;
}

.provider-card.third {
    border-color: #f59e0b;
    box-shadow: 0 4px 25px rgba(245, 158, 11, 0.15);
    transform: scale(1.02);
}

.provider-card.third:hover {
    transform: scale(1.02) translateY(-8px);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.25);
}

.provider-card.third::before {
    content: '#3';
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(45deg, #f59e0b, #fbbf24);
    color: white;
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    z-index: 10;
}

.provider-logo {
    height: 60px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.provider-logo img {
    max-height: 100%;
    max-width: 200px;
    object-fit: contain;
}

.rating {
    margin-bottom: 1rem;
}

.rating .stars {
    color: var(--secondary-color);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
}

.rating-score {
    color: var(--medium-gray);
    font-size: 0.9rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.price-period {
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.features-list li i {
    color: var(--success-color);
    margin-right: 0.5rem;
    width: 20px;
}

.btn-primary-custom {
    background: linear-gradient(45deg, #10b981, #34d399);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    color: white;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    color: white;
}

.btn-secondary-custom {
    background: linear-gradient(45deg, #3b82f6, #6366f1);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    color: white;
}

.btn-secondary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    color: white;
}

.btn-xel-custom {
    background: linear-gradient(45deg, #f59e0b, #fbbf24);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    color: white;
}

.btn-xel-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    color: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

.detailed-review {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
    margin-bottom: 3rem;
    overflow: hidden;
}

.review-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.review-content {
    padding: 2rem;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.pros, .cons {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
}

.pros ul, .cons ul {
    text-align: left;
    margin: 0;
    padding-left: 1.2rem;
}

.pros li, .cons li {
    text-align: left;
    margin-bottom: 0.5rem;
}

.pros h5 {
    color: var(--success-color);
    margin-bottom: 1rem;
}

.cons h5 {
    color: var(--danger-color);
    margin-bottom: 1rem;
}

.faq-section {
    background: var(--light-gray);
    padding: 4rem 0;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 1.5rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, #2d3748 100%);
    color: white;
    padding: 3rem 0 2rem;
}

.footer-brand h4 {
    font-weight: 700;
    font-size: 1.8rem;
}

.footer-stats .stat-item {
    padding: 1rem;
}

.footer-stats .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.footer-stats .stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.25rem;
}

.footer-stats i {
    font-size: 1.2rem;
}

.footer-trust {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    font-size: 0.9rem;
}

.comparison-section {
    background: white;
    padding: 4rem 0;
}

.comparison-table-wrapper {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-bottom: 2rem;
}

.comparison-table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
    table-layout: fixed;
}

.comparison-table th {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 1.5rem 1rem;
    text-align: center;
    font-weight: 600;
    border-bottom: 2px solid #e2e8f0;
    width: 25%;
}

.comparison-table th:first-child {
    width: 25%;
}

.comparison-table th:first-child {
    text-align: left;
    background: var(--dark-color);
    color: white;
}

.comparison-table .winner-col {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border-left: 3px solid #10b981;
    border-right: 3px solid #10b981;
}

.comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-table td:first-child {
    text-align: left;
    background: #f8fafc;
    font-weight: 500;
}

.provider-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.table-logo {
    height: 30px;
    width: 100px;
    object-fit: contain;
    object-position: center;
}

.winner-badge {
    background: linear-gradient(45deg, #10b981, #34d399);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
}

.second-badge {
    background: linear-gradient(45deg, #64748b, #94a3b8);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
}

.third-badge {
    background: linear-gradient(45deg, #64748b, #94a3b8);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
}

.price-cell {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
}

.comparison-cta {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    padding: 2rem;
}

.guide-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guide-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.guide-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.guide-item h4 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.wordpress-stats {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.stat-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(45deg, #10b981, #34d399);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
}

.comparison-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-3px);
}

.comparison-card h5 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.trend-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.trend-item:hover {
    transform: translateY(-3px);
}

.trend-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.trend-header i {
    font-size: 1.5rem;
}

.trend-header h4 {
    margin: 0;
    color: var(--dark-color);
    font-weight: 600;
}

.cta-box {
    background: linear-gradient(135deg, #f0fff4 0%, #e6fffa 100%);
    border: 2px solid #10b981;
    border-radius: 16px;
    padding: 3rem 2rem;
}

.review-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.review-logo img {
    max-height: 100%;
    max-width: 200px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .navbar-trust {
        display: none;
    }
    
    .btn-primary-navbar {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-section {
        min-height: 35vh;
        padding: 1rem 0;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-or {
        order: -1;
    }
    
    .provider-card.featured {
        transform: scale(1.05);
    }
    
    .provider-card.featured::before {
        top: -8px;
        right: -8px;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .provider-card.second::before,
    .provider-card.third::before {
        top: -8px;
        right: -8px;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
    }
    
    .provider-logo {
        height: 50px;
    }
    
    .review-logo {
        height: 60px;
    }
    
    .comparison-table-wrapper {
        overflow-x: auto;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .table-logo {
        height: 25px;
        max-width: 80px;
    }
    
    .comparison-cta {
        padding: 1.5rem;
    }
}
