/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}



/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(226, 232, 240, 0.3);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0088cc;
    text-decoration: none;
}

.nav-logo i {
    margin-right: 0.5rem;
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #0088cc;
}

.nav-logo:hover {
    color: #006699;
    text-decoration: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: #1e293b;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #0088cc 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}



/* Add subtle hover effects for better UX */
.btn:hover {
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #64748b;
    line-height: 1.7;
    font-weight: 400;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-primary {
    background: #0088cc;
    color: white;
    box-shadow: 0 10px 25px -3px rgba(0, 136, 204, 0.4), 0 4px 6px -2px rgba(0, 136, 204, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -5px rgba(0, 136, 204, 0.5), 0 10px 20px -5px rgba(0, 136, 204, 0.3);
    background: #006699;
}

.btn-secondary {
    background: transparent;
    color: #0088cc;
    border: 2px solid #0088cc;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: #0088cc;
    color: white;
    border-color: #0088cc;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -3px rgba(0, 136, 204, 0.3);
}

.btn-outline {
    background: transparent;
    color: #0088cc;
    border: 2px solid #0088cc;
}

.btn-outline:hover {
    background: #0088cc;
    color: white;
}

/* Hero Reviews Animation */
.hero-video {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.reviews-animation-container {
    position: relative;
    width: 75%;
    max-width: 410px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reviews-animation-container:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
    box-shadow: 0 35px 70px -15px rgba(0, 0, 0, 0.2);
}

.trustpilot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.trustpilot-logo {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 1rem;
    font-weight: 700;
    color: #00b67a;
}

.trustpilot-logo i {
    color: #00b67a;
    font-size: 1.1rem;
}

.overall-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.rating-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.25rem;
}

.rating-stars i {
    color: #00b67a;
    font-size: 0.85rem;
}

.rating-text {
    font-size: 0.75rem;
    color: #666;
    font-weight: 500;
}

.reviews-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 340px;
    overflow: hidden;
    position: relative;
    transition: all 0.6s ease;
}

.reviews-container.show-all {
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 136, 204, 0.3) transparent;
}

.reviews-container.show-all::-webkit-scrollbar {
    width: 6px;
}

.reviews-container.show-all::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 3px;
}

.reviews-container.show-all::-webkit-scrollbar-thumb {
    background: rgba(0, 136, 204, 0.3);
    border-radius: 3px;
    transition: background 0.3s ease;
}

.reviews-container.show-all::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 136, 204, 0.5);
}

.review-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(30px);
    animation: slideInReview 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 136, 204, 0.2);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #0088cc, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.75rem;
}

.reviewer-details h4 {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1e293b;
}

.review-date {
    font-size: 0.7rem;
    color: #64748b;
}

.review-stars {
    display: flex;
    gap: 0.2rem;
}

.review-stars i {
    color: #00b67a;
    font-size: 0.75rem;
}

.review-text {
    font-size: 0.8rem;
    line-height: 1.5;
    color: #475569;
    margin: 0;
    font-style: italic;
}

/* Animation keyframes */
@keyframes slideInReview {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes starGlow {
    0%, 100% {
        transform: scale(1);
        color: #00b67a;
    }
    50% {
        transform: scale(1.1);
        color: #ffd700;
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    }
}

/* Staggered animation delays */
.review-card[data-delay="0"] { animation-delay: 0.3s; }
.review-card[data-delay="1"] { animation-delay: 0.7s; }
.review-card[data-delay="2"] { animation-delay: 1.1s; }
.review-card[data-delay="3"] { animation-delay: 1.5s; }
.review-card[data-delay="4"] { animation-delay: 1.9s; }
.review-card[data-delay="5"] { animation-delay: 2.3s; }
.review-card[data-delay="6"] { animation-delay: 2.7s; }
.review-card[data-delay="7"] { animation-delay: 3.1s; }
.review-card[data-delay="8"] { animation-delay: 3.5s; }
.review-card[data-delay="9"] { animation-delay: 3.9s; }

/* Star animation on hover */
.review-stars i:hover {
    animation: starGlow 0.6s ease-in-out;
}

/* Enhanced review entrance animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Enhanced review exit animation */
@keyframes fadeOutUp {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateY(-40px) scale(0.95);
    }
}

/* Pulse effect for new reviews */
@keyframes reviewPulse {
    0% {
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    }
    50% {
        box-shadow: 0 10px 25px -3px rgba(0, 136, 204, 0.15), 0 4px 6px -1px rgba(0, 136, 204, 0.1);
    }
    100% {
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    }
}

/* Apply pulse animation to newly visible reviews */
.review-card.new-review {
    animation: reviewPulse 2s ease-in-out;
}

/* Gradient background for active reviews */
.review-card.active {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 249, 255, 0.9) 100%);
    border: 1px solid rgba(0, 136, 204, 0.1);
}

/* Services Section */
.download-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.download-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid2" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid2)"/></svg>');
    opacity: 0.2;
    z-index: 1;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    color: #1e293b;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
}

/* Center titles for requested sections */
.how-it-works-section .section-title,
.how-to-use-section .section-title,
.faq-section .section-title,
.contact-section .section-title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.pricing-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(226, 232, 240, 0.5);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px -10px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 136, 204, 0.3);
}

.pricing-card.popular {
    border: 2px solid #0088cc;
    transform: scale(1.05);
    box-shadow: 0 20px 40px -5px rgba(0, 136, 204, 0.2);
}

.pricing-card.popular:hover {
    transform: translateY(-8px) scale(1.07);
    box-shadow: 0 30px 60px -10px rgba(0, 136, 204, 0.25);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0088cc, #06b6d4);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.4);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.package-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0088cc, #06b6d4);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.3);
}

.package-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.package-price {
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #0088cc;
}

.price-period {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

.package-description {
    text-align: center;
    margin-bottom: 2rem;
}

.package-description p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.3);
    font-size: 0.95rem;
    color: #475569;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li i {
    color: #22c55e;
    font-size: 0.9rem;
    width: 16px;
}

.pricing-btn {
    width: 100%;
    padding: 1.25rem 2rem;
    background: #0088cc;
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
    margin-top: auto;
}

.pricing-btn:hover {
    background: #006699;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.4);
}

.popular-btn {
    background: linear-gradient(135deg, #0088cc, #06b6d4);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.4);
}

.popular-btn:hover {
    background: linear-gradient(135deg, #006699, #0891b2);
    box-shadow: 0 10px 30px rgba(0, 136, 204, 0.5);
}

.pricing-footer {
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.pricing-footer p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.pricing-footer p i {
    color: #0088cc;
}

/* Download Progress Bar */
.download-progress {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 136, 204, 0.2);
}

.progress-container {
    margin-bottom: 1rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(0, 136, 204, 0.2);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4ade80, #22c55e);
    border-radius: 4px;
    width: 0%;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
}

.progress-text {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.progress-percentage {
    font-weight: 600;
    color: #22c55e;
}

.download-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #666;
}

.download-status i {
    color: #22c55e;
}

/* Download button hover effect */
.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.download-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-description {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.about-features {
    display: grid;
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(226, 232, 240, 0.5);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.15), 0 10px 20px -5px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 136, 204, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #0088cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
}

/* What is Section */
.what-is-section {
    padding: 5rem 0;
    background: #f8f9fa;
    color: #333;
    text-align: center;
}

.what-is-description {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* How It Works Section */
.how-it-works-section {
    padding: 5rem 0;
    background: white;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    position: relative;
    border: 1px solid rgba(226, 232, 240, 0.5);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #0088cc;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

.step h3 {
    margin-bottom: 1rem;
    color: #333;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* How to Use Section */
.how-to-use-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.how-to-use-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid3" width="25" height="25" patternUnits="userSpaceOnUse"><path d="M 25 0 L 0 0 0 25" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid3)"/></svg>');
    opacity: 0.2;
    z-index: 1;
}

.success-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.success-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.client-showcase {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(226, 232, 240, 0.5);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.client-showcase:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px -10px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 136, 204, 0.3);
}

.client-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0088cc, #06b6d4);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.client-showcase:hover::before {
    transform: translateX(0);
}

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

.client-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0088cc, #06b6d4);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 136, 204, 0.3);
}

.client-info {
    flex: 1;
}

.client-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.5rem 0;
}

.client-industry {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
}

.client-rating {
    text-align: right;
}

.rating-display {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.rating-number {
    font-size: 2rem;
    font-weight: 800;
    color: #00b67a;
}

.rating-stars-display {
    display: flex;
    gap: 0.2rem;
}

.rating-stars-display i {
    color: #00b67a;
    font-size: 0.9rem;
}

.client-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(240, 249, 255, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(0, 136, 204, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #0088cc;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

.client-testimonial {
    margin-bottom: 2rem;
}

.client-testimonial p {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    text-align: right;
}

.author-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
}

.visit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(0, 136, 204, 0.1);
    border: 2px solid #0088cc;
    border-radius: 12px;
    color: #0088cc;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
}

.client-showcase:hover .visit-button {
    background: #0088cc;
    color: white;
    transform: translateY(-2px);
}

.success-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(0, 136, 204, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(0, 136, 204, 0.1);
}

.success-cta p {
    font-size: 1.2rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* Video Titles */
.video-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Secondary Video Container */
.usage-video-left,
.usage-video-right {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-container-secondary {
    position: relative;
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.25);
    background: #000;
    transform: perspective(1000px) rotateY(5deg) rotateX(-5deg);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-container-secondary:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.3);
}

.video-wrapper-secondary {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
}

.video-wrapper-secondary iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-overlay-secondary {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.video-container-secondary:hover .video-overlay-secondary {
    opacity: 1;
}

.play-button-secondary {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0088cc;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.play-button-secondary:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid4" width="30" height="30" patternUnits="userSpaceOnUse"><path d="M 30 0 L 0 0 0 30" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid4)"/></svg>');
    opacity: 0.15;
    z-index: 1;
}

.faq-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.5);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 136, 204, 0.3);
}

.faq-item h3 {
    color: #1e293b;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: #0088cc;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-item p {
    color: #666;
}

.contact-form h3 {
    margin-bottom: 2rem;
    color: #333;
}

.support-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1rem 0;
    border: 1px solid rgba(0, 136, 204, 0.2);
}

.support-info p {
    margin-bottom: 0.5rem;
    color: #666;
}

.support-info p:last-child {
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.25rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #0088cc;
    box-shadow: 0 0 0 3px rgba(0, 136, 204, 0.1);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0088cc;
}

.footer-logo i {
    margin-right: 0.5rem;
    font-size: 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #0088cc;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}



/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.close:hover {
    color: #333;
}

.modal-content h2 {
    margin-bottom: 1rem;
    color: #333;
}

.modal-content p {
    margin-bottom: 2rem;
    color: #666;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-form input {
    padding: 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.modal-form input:focus {
    border-color: #0088cc;
    box-shadow: 0 0 0 3px rgba(0, 136, 204, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        border-top: 1px solid rgba(226, 232, 240, 0.3);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .reviews-animation-container {
        transform: none;
        width: 90%;
        max-width: 100%;
        padding: 1rem;
    }

    .reviews-animation-container:hover {
        transform: none;
    }

    .trustpilot-header {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
        margin-bottom: 1rem;
    }

    .overall-rating {
        align-items: center;
    }

    .review-card {
        padding: 0.75rem;
    }

    .reviewer-info {
        gap: 0.4rem;
    }

    .avatar {
        width: 28px;
        height: 28px;
        font-size: 0.65rem;
    }

    .reviews-container {
        max-height: 280px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .success-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .client-showcase {
        padding: 1.5rem;
    }
    
    .client-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .client-rating {
        text-align: center;
    }
    
    .client-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .rating-number {
        font-size: 1.5rem;
    }

    .video-container-secondary {
        transform: none;
        max-width: 100%;
    }

    .video-container-secondary:hover {
        transform: none;
    }

    .video-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
    }

    .pricing-card.popular {
        transform: none;
        margin-bottom: 1rem;
    }

    .pricing-card.popular:hover {
        transform: translateY(-4px) scale(1.02);
    }

    .package-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .package-name {
        font-size: 1.5rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .features-list li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }

    .pricing-btn {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .mockup-screen {
        width: 250px;
        height: 400px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Screen-reader only (kept out of visual flow but accessible to AI parsers and AT) */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 1px, 1px) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Modern Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.loading {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth entrance animations */
.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.slide-in-left {
    animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.slide-in-right {
    animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Hover Effects */
.feature-card,
.step,
.screenshot-placeholder {
    transition: all 0.3s ease;
}

.feature-card:hover,
.step:hover,
.screenshot-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.15), 0 10px 20px -5px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 136, 204, 0.3);
}
