/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #8b5cf6;
    --secondary: #6366f1;
    --dark: #1e1b4b;
    --darker: #0f172a;
    --light: #f8fafc;
    --text: #334155;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 20%, #312e81 40%, #4c1d95 60%, #5b21b6 80%, #6d28d9 100%);
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 6rem 2rem 8rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 30%, rgba(139, 92, 246, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 85% 70%, rgba(99, 102, 241, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.1) 0%, transparent 60%);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    width: 100%;
    height: 120px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,160 Q360,80 720,160 T1440,160 L1440,320 L0,320 Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: bottom;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -1.5px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 2.5rem;
    line-height: 1.75;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    display: inline-block;
    padding: 1.1rem 3.5rem;
    background: linear-gradient(135deg, #a855f7, #8b5cf6, #6366f1);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4), 0 0 0 0 rgba(139, 92, 246, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 0.3px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #9333ea, #7c4ee6, #5558e1);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.5);
}

/* Products Section */
.products-section {
    padding: 3rem 0 5rem 0;
    background: #ffffff;
    position: relative;
    margin-top: 0;
    z-index: 10;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 0;
}

.product-card {
    background: white;
    border-radius: 24px;
    padding: 0;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.08);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 160px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(99, 102, 241, 0.05));
    z-index: 0;
}

.product-card:hover {
    box-shadow: 0 15px 50px rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.2);
}

.product-icon {
    width: 120px;
    height: 120px;
    margin: 2rem auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.product-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: #4c1d95;
    margin-bottom: 1rem;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.product-description {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.product-price {
    margin-bottom: 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.03), rgba(99, 102, 241, 0.03));
    border-top: 1px solid rgba(139, 92, 246, 0.1);
}

.price-label {
    display: block;
    font-size: 0.8rem;
    color: #8b5cf6;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 1.5rem;
}

.btn-product {
    display: block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    margin: 0 auto;
    max-width: 200px;
}

.btn-product:hover {
    background: linear-gradient(135deg, #9333ea, #7c4ee6);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

/* Support Section */
.support-section {
    padding: 5rem 0;
    background: #ffffff;
}

.support-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.support-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.support-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #8b5cf6;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.support-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e1b4b;
    line-height: 1.2;
    margin: 0;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.support-desc {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.8;
    margin: 0;
}

.support-link {
    color: #1e1b4b;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
    margin-top: 0.5rem;
    display: inline-block;
}

.support-link:hover {
    color: #8b5cf6;
}

.support-illustration {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.support-image {
    width: 100%;
    height: auto;
}

/* Experts Section */
.experts-section {
    padding: 5rem 0;
    background: #ffffff;
}

.experts-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.experts-illustration {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.experts-image {
    width: 100%;
    height: auto;
}

.experts-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.experts-title-1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e1b4b;
    line-height: 1.2;
    margin: 0;
}

.experts-title-2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e1b4b;
    line-height: 1.2;
    margin: 0;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.experts-desc {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.8;
    margin: 0;
}

/* Global Locations Section */
.global-locations-section {
    padding: 5rem 0;
    background: #ffffff;
}

.global-locations-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e1b4b;
    margin-bottom: 1.5rem;
}

.global-locations-desc {
    text-align: center;
    font-size: 1.1rem;
    color: #1e1b4b;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.global-locations-map-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.global-locations-map {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
}

/* Location Markers */
.location-marker {
    position: absolute;
    cursor: pointer;
    z-index: 10;
}

.marker-dot {
    width: 16px;
    height: 16px;
    background: #ff6b35;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.location-marker:hover .marker-dot {
    transform: scale(1.3);
}

.location-popup {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 8px;
    padding: 1rem;
    min-width: 220px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transform: translateX(-50%) translateY(10px);
    z-index: 20;
}

.location-marker.active .location-popup {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.popup-arrow {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
}

.popup-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e2e8f0;
}

.popup-flag {
    font-size: 1.2rem;
    line-height: 1;
}

.popup-location {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e1b4b;
}

.popup-ip {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 0.75rem;
}

.popup-ip strong {
    color: #1e1b4b;
    font-weight: 700;
}

.popup-downloads {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.download-link {
    color: #8b5cf6;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.download-link:hover {
    color: #7c3aed;
    text-decoration: underline;
}

.global-locations-note {
    text-align: left;
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    padding: 0 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #8b5cf6, #6366f1);
    border-radius: 4px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(99, 102, 241, 0.1));
    border-radius: 20px;
    padding: 1rem;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--text);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero {
        min-height: 550px;
        padding: 4rem 1.5rem 6rem;
    }

    .hero-title {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        line-height: 1.6;
    }

    .btn-primary {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }

    .products-section {
        padding: 2rem 0 3rem 0;
        margin-top: 0;
    }
    
    .hero::after {
        height: 80px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .support-section {
        padding: 3rem 0;
    }

    .support-wrapper {
        grid-template-columns: 1fr !important;
        gap: 3rem;
        padding: 0 1.5rem;
    }

    .support-illustration {
        order: -1;
    }

    .support-title {
        font-size: 2rem;
        text-align: center;
    }

    .support-label {
        text-align: center;
    }

    .support-desc {
        text-align: center;
    }

    .support-link {
        text-align: center;
    }

    .experts-section {
        padding: 3rem 0;
    }

    .experts-wrapper {
        grid-template-columns: 1fr !important;
        gap: 3rem;
        padding: 0 1.5rem;
    }

    .experts-illustration {
        order: -1;
    }

    .experts-title-1,
    .experts-title-2 {
        font-size: 2rem;
        text-align: center;
    }

    .experts-desc {
        text-align: center;
    }

    .global-locations-section {
        padding: 3rem 0;
    }

    .global-locations-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .global-locations-desc {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 1.5rem;
    }

    .global-locations-map-wrapper {
        margin-bottom: 1.5rem;
    }

    .global-locations-note {
        font-size: 0.85rem;
        padding: 0 1.5rem;
        text-align: center;
    }

    .location-popup {
        min-width: 200px;
        padding: 0.875rem;
    }

    .popup-location {
        font-size: 0.9rem;
    }

    .download-link {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 1rem 5rem;
    }

    .hero-title {
        font-size: 1.9rem;
        letter-spacing: -0.5px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .btn-primary {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    .products-section {
        margin-top: 0;
        padding: 1.5rem 0 3rem 0;
    }
    
    .hero::after {
        height: 60px;
    }

    .support-section {
        padding: 2.5rem 0;
    }

    .support-wrapper {
        gap: 2rem;
        padding: 0 1rem;
    }

    .support-title {
        font-size: 1.75rem;
    }

    .support-desc {
        font-size: 0.95rem;
    }

    .experts-section {
        padding: 2.5rem 0;
    }

    .experts-wrapper {
        gap: 2rem;
        padding: 0 1rem;
    }

    .experts-title-1,
    .experts-title-2 {
        font-size: 1.75rem;
    }

    .experts-desc {
        font-size: 0.95rem;
    }

    .faq-section-main {
        padding: 2.5rem 0;
    }

    .faq-main-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .faq-tabs {
        grid-template-columns: 1fr !important;
        gap: 0.5rem;
        padding: 0 0.5rem;
    }

    .faq-tab {
        padding: 1rem;
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        gap: 1rem;
    }

    .tab-icon {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
    }

    .tab-icon svg {
        width: 18px;
        height: 18px;
    }

    .faq-tab span {
        font-size: 0.85rem;
    }

    .faq-category-title {
        font-size: 1.5rem;
    }

    .faq-category-desc {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }

    .faq-questions-grid {
        grid-template-columns: 1fr !important;
        gap: 0.75rem;
        padding: 0 0.5rem;
    }

    .faq-item {
        padding: 1rem 1.25rem;
    }

    .faq-question {
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 1.25rem;
    }

    .faq-item-wrapper.active .faq-answer {
        max-height: 1000px;
        padding: 0 1.25rem 1.25rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }

    .testimonials-section {
        padding: 3rem 0;
    }

    .testimonials-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .testimonial-wrapper {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .testimonial-quote-icon {
        font-size: 4rem;
        align-self: flex-start;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .testimonial-author {
        text-align: left;
    }

    .trustpilot-widget-wrapper {
        padding: 0 1rem;
        min-height: 300px;
    }

    .global-locations-section {
        padding: 2.5rem 0;
    }

    .global-locations-title {
        font-size: 1.75rem;
    }

    .testimonials-section {
        padding: 2.5rem 0;
    }

    .testimonials-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .testimonial-wrapper {
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .testimonial-quote-icon {
        font-size: 3.5rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .testimonial-author {
        font-size: 0.9rem;
    }

    .rating-text {
        font-size: 0.9rem;
    }

    .rating-stars .star {
        font-size: 1.25rem;
    }

    .trustpilot-widget-wrapper {
        padding: 0 0.5rem;
        min-height: 280px;
    }

    .global-locations-desc {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .global-locations-note {
        font-size: 0.8rem;
        padding: 0 1rem;
    }

    .location-popup {
        min-width: 180px;
        padding: 0.75rem;
        bottom: 20px;
    }

    .popup-header {
        margin-bottom: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .popup-location {
        font-size: 0.85rem;
    }

    .popup-ip {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .download-link {
        font-size: 0.8rem;
    }

    .marker-dot {
        width: 14px;
        height: 14px;
        border: 2px solid white;
    }

    .faq-section-main {
        padding: 3rem 0;
    }

    .faq-main-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .faq-tabs {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 0 1rem;
    }

    .faq-tab {
        padding: 1rem 0.75rem;
    }

    .tab-icon {
        width: 40px;
        height: 40px;
    }

    .tab-icon svg {
        width: 20px;
        height: 20px;
    }

    .faq-tab span {
        font-size: 0.85rem;
    }

    .faq-category-title {
        font-size: 1.75rem;
    }

    .faq-category-desc {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .faq-questions-grid {
        grid-template-columns: 1fr !important;
        gap: 0.875rem;
        padding: 0 1rem;
    }
}

/* FAQ Section Main */
.faq-section-main {
    padding: 5rem 0;
    background: #ffffff;
}

.faq-main-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e1b4b;
    margin-bottom: 3rem;
}

/* FAQ Tabs */
.faq-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.faq-tab {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
}

.faq-tab:hover {
    border-color: #8b5cf6;
    transform: translateY(-2px);
}

.faq-tab.active {
    background: rgba(139, 92, 246, 0.05);
    border-color: #8b5cf6;
    border-width: 3px;
}

.tab-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    transition: all 0.3s ease;
}

.faq-tab.active .tab-icon {
    background: #8b5cf6;
    color: white;
}

.faq-tab:not(.active) .tab-icon {
    color: #475569;
    background: #f1f5f9;
}

.tab-icon svg {
    width: 24px;
    height: 24px;
}

.faq-tab span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
    transition: color 0.3s ease;
}

.faq-tab.active span {
    color: #8b5cf6;
}

/* FAQ Content */
.faq-content-wrapper {
    position: relative;
    min-height: 400px;
}

.faq-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.faq-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-category-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: #1e1b4b;
    margin-bottom: 1rem;
}

.faq-category-desc {
    text-align: center;
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-questions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item-wrapper {
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid rgba(139, 92, 246, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-wrapper:hover {
    border-color: rgba(139, 92, 246, 0.3);
}

.faq-item-wrapper.active {
    background: white;
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.1);
}

.faq-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(139, 92, 246, 0.05);
}

.faq-item-wrapper.active .faq-item {
    background: rgba(139, 92, 246, 0.05);
}

.faq-question {
    font-size: 1rem;
    font-weight: 600;
    color: #1e1b4b;
    flex: 1;
    line-height: 1.5;
}

.faq-icon {
    font-size: 0.75rem;
    color: #8b5cf6;
    margin-left: 1rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item-wrapper.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item-wrapper.active .faq-answer {
    max-height: 1000px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: #ffffff;
}

.testimonials-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e1b4b;
    margin-bottom: 3rem;
}

.trustpilot-widget-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 350px;
}

.trustpilot-widget {
    width: 100%;
}

.testimonial-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 2.5rem;
    padding: 0 2rem;
    position: relative;
}

.testimonial-quote-icon {
    font-size: 6rem;
    font-weight: 700;
    color: #1e1b4b;
    line-height: 1;
    flex-shrink: 0;
    margin-top: -0.5rem;
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #1e1b4b;
    line-height: 1.8;
    margin: 0;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #1e1b4b;
    text-align: right;
    margin: 0;
    font-weight: 600;
}

.testimonial-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.pagination-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-dot.active {
    background: #1e1b4b;
    width: 10px;
    height: 10px;
}

.testimonial-rating {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.rating-text {
    font-size: 1rem;
    color: #1e1b4b;
    margin: 0;
    font-weight: 600;
}

.rating-stars {
    display: flex;
    gap: 0.25rem;
}

.rating-stars .star {
    font-size: 1.5rem;
    color: #22c55e;
    line-height: 1;
}

/* No smooth scrolling for better performance */

