/* Modern CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    max-width: 1000px;
    width: calc(100% - 40px);
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

.logo {
    width: auto;
    height: 50px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-link {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 20px;
}

.nav-link:hover {
    color: #0066CC;
    background: rgba(0, 102, 204, 0.1);
}

.nav-cta-container {
    display: flex;
    align-items: center;
}

.nav-cta {
    background: #0066CC;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.nav-cta:hover {
    background: #004499;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 25%, #60a5fa 50%, #93c5fd 75%, #ffffff 100%);
    color: #1a1a1a;
    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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.hero-content {
    max-width: 500px;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 102, 204, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 102, 204, 0.3);
    color: #0066CC;
}

.hero-badge span {
    font-size: 14px;
    font-weight: 600;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.gradient-text {
    color: #fbbf24;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 800;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-rating {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    border: 2px solid #fbbf24;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.trustpilot-stars {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.stars-container {
    display: flex;
    gap: 5px;
}

.star {
    font-size: 24px;
    color: #e5e7eb;
    transition: color 0.3s ease;
}

.star.filled {
    color: #00b67a;
}

.star.half-filled {
    background: linear-gradient(90deg, #00b67a 50%, #e5e7eb 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-text {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.hero-rating .trustpilot-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0066CC;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 6px;
    background: rgba(0, 102, 204, 0.1);
    border: 1px solid rgba(0, 102, 204, 0.2);
}

.hero-rating .trustpilot-link:hover {
    background: rgba(0, 102, 204, 0.2);
    transform: translateY(-1px);
}

.hero-rating .trustpilot-logo {
    width: 16px;
    height: 16px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #0066CC;
    color: white;
    box-shadow: 0 4px 14px rgba(0, 102, 204, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: transparent;
    color: #0066CC;
    border: 2px solid #0066CC;
}

.btn-secondary:hover {
    background: #0066CC;
    color: white;
}

.btn-icon {
    width: 16px;
    height: 16px;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-video {
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

#vidalytics_embed_qtatMuafhXYJXHEu {
    border-radius: 12px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    max-width: 400px;
}

.image-placeholder {
    width: 100%;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.image-placeholder svg {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.image-placeholder p {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.image-placeholder span {
    font-size: 14px;
    opacity: 0.8;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-block;
    background: #0066CC;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-description {
    font-size: 18px;
    color: #ffffff;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* As Featured In Section */
.featured-in {
    padding: 60px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e40af 100%);
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    color: white;
}

.featured-header {
    text-align: center;
    margin-bottom: 40px;
}

.featured-title {
    font-size: 18px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    opacity: 0.9;
}

.featured-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.featured-track {
    display: flex;
    animation: scroll 30s linear infinite;
    gap: 40px;
    align-items: center;
}

.featured-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.featured-item:hover {
    transform: scale(1.1);
}

.featured-logo {
    max-height: 40px;
    max-width: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.featured-item:hover .featured-logo {
    transform: scale(1.05);
}

.featured-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.featured-item a:hover {
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.featured-carousel:hover .featured-track {
    animation-play-state: paused;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8fafc;
}

.services .section-title {
    color: #1a1a1a;
    text-shadow: none;
}

.services .section-description {
    color: #666;
    text-shadow: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: #0066CC;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
    font-size: 14px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 600;
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 25%, #60a5fa 50%, #93c5fd 75%, #ffffff 100%);
    color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

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

.about-text {
    max-width: 500px;
}

.about-description {
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.about-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

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

.about-stat .stat-number {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    display: block;
    margin-bottom: 5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.about-stat .stat-label {
    font-size: 14px;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-image .image-placeholder {
    width: 300px;
    height: 300px;
    background: #0066CC;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.about-image .image-placeholder svg {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.about-image .image-placeholder p {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.about-image .image-placeholder span {
    font-size: 14px;
    opacity: 0.8;
}

.about-photo {
    width: 300px;
    height: 300px;
    border-radius: 12px;
    object-fit: cover;
    object-position: center 30%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.about-photo:hover {
    transform: scale(1.02);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #f8fafc;
}

.testimonials .section-title {
    color: #1a1a1a;
    text-shadow: none;
}

.testimonials .section-description {
    color: #666;
    text-shadow: none;
}

.testimonials-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-track {
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-slide.active {
    display: flex;
    opacity: 1;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}

.star {
    color: #fbbf24;
    font-size: 18px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.testimonial-author p {
    color: #666;
    font-size: 14px;
}

/* Featured testimonial styling */
.featured-testimonial {
    border: 2px solid #0066CC;
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.15);
    transform: scale(1.02);
}

.featured-testimonial .testimonial-text {
    font-size: 16px;
    line-height: 1.7;
}

.testimonial-source {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
}

.trustpilot-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0066CC;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 6px;
    background: rgba(0, 102, 204, 0.05);
}

.trustpilot-link:hover {
    background: rgba(0, 102, 204, 0.1);
    transform: translateY(-1px);
}

.trustpilot-logo {
    width: 16px;
    height: 16px;
}

/* Testimonials Navigation */
.testimonials-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.testimonial-nav {
    background: white;
    border: 2px solid #0066CC;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.2);
}

.testimonial-nav:hover {
    background: #0066CC;
    transform: scale(1.1);
}

.testimonial-nav:hover svg {
    color: white;
}

.testimonial-nav svg {
    width: 20px;
    height: 20px;
    color: #0066CC;
    transition: color 0.3s ease;
}

.testimonial-nav.prev {
    left: -25px;
}

.testimonial-nav.next {
    right: -25px;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #0066CC;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #0066CC;
}

.dot:hover {
    transform: scale(1.2);
}

/* Why Ecommerce Page Styles */
.why-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #1a1a1a;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.why-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(59, 130, 246, 0.15) 1px, transparent 0);
    background-size: 20px 20px;
    z-index: 1;
}

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

.why-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.why-hero-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #1a1a1a;
    text-shadow: none;
    line-height: 1.2;
}

.why-hero-description {
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 50px;
    color: #4a5568;
    text-shadow: none;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.hero-stats .stat {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-width: 150px;
}

.hero-stats .stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.hero-stats .stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 8px;
    display: block;
}

.hero-stats .stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.why-content {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    position: relative;
    overflow: hidden;
}

.why-content::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="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(0,102,204,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.4;
    z-index: 1;
}

.content-section {
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.content-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.content-section h2 {
    color: #1e3a8a;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0066CC, #60a5fa);
    border-radius: 2px;
}

.content-text {
    font-size: 18px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 25px;
    position: relative;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
    background: rgba(0, 102, 204, 0.05);
    border-radius: 12px;
    padding: 30px;
    border-left: 4px solid #0066CC;
}

.benefits-list li {
    padding: 15px 0;
    color: #374151;
    position: relative;
    padding-left: 40px;
    font-size: 18px;
    line-height: 1.7;
    font-weight: 500;
    transition: all 0.3s ease;
}

.benefits-list li:hover {
    color: #1e3a8a;
    transform: translateX(5px);
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0066CC;
    font-weight: 700;
    font-size: 24px;
    background: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.3);
}

.cta-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.3);
}

.cta-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="stars" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="rgba(255,255,255,0.2)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.cta-section h2 {
    color: white;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.cta-section .btn {
    position: relative;
    z-index: 2;
    background: white;
    color: #1e3a8a;
    font-weight: 700;
    padding: 18px 36px;
    font-size: 18px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.cta-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: #f8fafc;
}

.nav-link.active {
    color: #0066CC;
    font-weight: 600;
}

/* Get Started Section */
.get-started {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e40af 100%);
    color: white;
    text-align: center;
}

.get-started-content {
    max-width: 600px;
    margin: 0 auto;
}

.get-started-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
}

.get-started-description {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    background: white;
    color: #0066CC;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: #f8fafc;
}

/* FAQ Section Styles */
.faq {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(59, 130, 246, 0.15) 1px, transparent 0);
    background-size: 20px 20px;
    z-index: 1;
}

.faq .container {
    position: relative;
    z-index: 2;
}

.faq .section-title {
    color: #1a1a1a;
    text-shadow: none;
}

.faq .section-description {
    color: #4a5568;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-question:hover {
    background: rgba(59, 130, 246, 0.05);
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: 'Raleway', sans-serif;
}

.faq-toggle {
    font-size: 24px;
    font-weight: 300;
    color: #3b82f6;
    transition: all 0.3s ease;
    user-select: none;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: #3b82f6;
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(248, 250, 252, 0.8);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    margin: 0;
    padding-top: 20px;
    line-height: 1.6;
    color: #4a5568;
    font-size: 16px;
}

.video-container {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    border-radius: 10px;
    width: 100%;
    height: 315px;
}

.video-container div[id] {
    border-radius: 10px;
    overflow: hidden;
}

/* FAQ Responsive Design */
@media (max-width: 768px) {
    .faq {
        padding: 80px 0;
    }
    
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 25px 20px 25px;
    }
    
    .faq-answer p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-question h3 {
        font-size: 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 18px 20px;
    }
    
    .video-container iframe {
        height: 200px;
    }
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 18px;
    font-weight: 700;
}

.footer-description {
    color: #999;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #0066CC;
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #999;
    font-size: 14px;
}

.footer-contact {
    color: #999;
    font-size: 14px;
}

.footer-contact a {
    color: white;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        top: 10px;
        width: calc(100% - 20px);
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: calc(100% - 40px);
        background: white;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding: 30px 20px;
        transition: left 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-radius: 20px;
        margin: 0 20px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-video {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-rating {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .get-started-title {
        font-size: 36px;
    }
    
    .get-started-description {
        font-size: 18px;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 16px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-navigation {
        display: none;
    }
    
    .testimonials-dots {
        margin-top: 20px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Visualizers and Interactive Elements */

/* Animated Counters */
.stat-number {
    transition: all 0.3s ease;
}

.stat-number.animate {
    animation: countUp 2s ease-out;
}

@keyframes countUp {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Growth Chart */
.chart-container {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.chart-header {
    text-align: center;
    margin-bottom: 30px;
}

.chart-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.chart-header p {
    color: #666;
    font-size: 16px;
}

.growth-chart {
    display: flex;
    justify-content: space-between;
    align-items: end;
    height: 300px;
    margin-bottom: 20px;
    padding: 20px 0;
}

.chart-bar {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 10px;
    position: relative;
}

.bar-fill {
    background: linear-gradient(135deg, #0066CC, #60a5fa);
    border-radius: 8px 8px 0 0;
    width: 100%;
    position: relative;
    overflow: hidden;
}


.bar-label {
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 10px;
    font-size: 14px;
}

.bar-value {
    font-weight: 700;
    color: #0066CC;
    margin-top: 5px;
    font-size: 16px;
}

.chart-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

/* Individual Platform Visualizers */
.platform-visualizer {
    background: white;
    border-radius: 16px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.platform-visualizer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066CC, #60a5fa);
}

.ebay-visualizer::before {
    background: linear-gradient(90deg, #0066CC, #3b82f6);
}

.tiktok-visualizer::before {
    background: linear-gradient(90deg, #ff0050, #ff4081);
}

.platform-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
}

.platform-icon {
    width: 60px;
    height: 60px;
    background: #f8fafc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.ebay-visualizer .platform-icon {
    color: #0066CC;
}

.ebay-visualizer .platform-icon svg .cls-1 {
    fill: #0968f6;
}

.ebay-visualizer .platform-icon svg .cls-2 {
    fill: #92c821;
}

.ebay-visualizer .platform-icon svg .cls-3 {
    fill: #f02d2d;
}

.ebay-visualizer .platform-icon svg .cls-4 {
    fill: #ffbd14;
}

.tiktok-visualizer .platform-icon {
    color: #ff0050;
}

.platform-icon svg {
    width: 30px;
    height: 30px;
}

.platform-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.platform-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #0066CC;
}

.stat-card .stat-number {
    font-size: 28px;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 8px;
    display: block;
}

.stat-card .stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.demographic-breakdown {
    background: #f8fafc;
    border-radius: 12px;
    padding: 25px;
    border-left: 4px solid #0066CC;
}

.demographic-breakdown h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.demographic-bars {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.demographic-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.demo-label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    min-width: 120px;
}

.demo-bar {
    flex: 1;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.demo-fill {
    height: 100%;
    background: linear-gradient(90deg, #0066CC, #60a5fa);
    border-radius: 4px;
    transition: width 1.5s ease-out;
}

.tiktok-visualizer .demo-fill {
    background: linear-gradient(90deg, #ff0050, #ff4081);
}

.demo-percentage {
    font-size: 14px;
    font-weight: 700;
    color: #1e3a8a;
    min-width: 40px;
    text-align: right;
}

.tiktok-visualizer .demo-percentage {
    color: #ff0050;
}

/* Dropshipping Model Comparison */
.dropshipping-comparison {
    background: white;
    border-radius: 16px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.dropshipping-comparison::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #34d399);
}

.comparison-header {
    text-align: center;
    margin-bottom: 40px;
}

.comparison-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.comparison-header p {
    color: #666;
    font-size: 16px;
}

.models-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.model-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 30px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

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

.model-card.traditional {
    border-color: #ef4444;
}

.model-card.our-model {
    border-color: #10b981;
}

.model-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e5e7eb;
}

.model-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.model-card.traditional .model-icon {
    color: #ef4444;
}

.model-card.our-model .model-icon {
    color: #10b981;
}

.model-icon svg {
    width: 24px;
    height: 24px;
}

.model-header h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    flex: 1;
}

.risk-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.risk-badge.high {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.risk-badge.low {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

.model-flow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.flow-step {
    background: white;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    min-width: 120px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.step-number {
    width: 30px;
    height: 30px;
    background: #0066CC;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin: 0 auto 10px;
}

.model-card.our-model .step-number {
    background: #10b981;
}

.flow-step h5 {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.flow-step p {
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
}

.money-flow {
    font-size: 14px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
}

.money-flow.positive {
    background: #f0fdf4;
    color: #16a34a;
}

.money-flow.negative {
    background: #fef2f2;
    color: #dc2626;
}

.money-flow.neutral {
    background: #f8fafc;
    color: #6b7280;
}

.flow-arrow {
    font-size: 20px;
    color: #0066CC;
    font-weight: 700;
}

.model-risks,
.model-benefits {
    background: white;
    border-radius: 8px;
    padding: 20px;
    border-left: 4px solid;
}

.model-risks {
    border-left-color: #ef4444;
}

.model-benefits {
    border-left-color: #10b981;
}

.model-risks h5,
.model-benefits h5 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.model-risks ul,
.model-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.model-risks li,
.model-benefits li {
    padding: 5px 0;
    color: #374151;
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

.model-risks li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
}

.model-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.comparison-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.summary-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 25px;
    border: 2px solid transparent;
}

.summary-card.traditional-summary {
    border-color: #ef4444;
}

.summary-card.our-summary {
    border-color: #10b981;
}

.summary-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    text-align: center;
}

.summary-stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.summary-stats .stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e5e7eb;
}

.summary-stats .stat:last-child {
    border-bottom: none;
}

.summary-stats .label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.summary-stats .value {
    font-size: 14px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
}

.summary-stats .value.negative {
    background: #fef2f2;
    color: #dc2626;
}

.summary-stats .value.positive {
    background: #f0fdf4;
    color: #16a34a;
}

.summary-stats .value.high-risk {
    background: #fef2f2;
    color: #dc2626;
}

.summary-stats .value.low-risk {
    background: #f0fdf4;
    color: #16a34a;
}

.comparison-header {
    text-align: center;
    margin-bottom: 40px;
}

.comparison-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.comparison-header p {
    color: #666;
    font-size: 16px;
}

.platforms-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
}

.platform-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.platform-card.tiktok {
    border-color: #ff0050;
}

.platform-card.ebay {
    border-color: #0066CC;
}

.platform-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.platform-card.tiktok .platform-icon {
    color: #ff0050;
}

.platform-card.ebay .platform-icon {
    color: #0066CC;
}

.platform-icon svg {
    width: 30px;
    height: 30px;
}

.platform-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.platform-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

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

.stat-item .stat-number {
    font-size: 18px;
    font-weight: 700;
    color: #0066CC;
    margin-bottom: 5px;
}

.stat-item .stat-label {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.demographic-info h5 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.age-groups {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.age-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.age-range {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.age-bar {
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.age-fill {
    height: 100%;
    background: linear-gradient(90deg, #0066CC, #60a5fa);
    border-radius: 4px;
    transition: width 1.5s ease-out;
}

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vs-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0066CC, #60a5fa);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

/* Profit Calculator */
.profit-calculator {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.calculator-header {
    text-align: center;
    margin-bottom: 30px;
}

.calculator-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.calculator-header p {
    color: #666;
    font-size: 16px;
}

.calculator-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.input-group label {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 14px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.currency {
    position: absolute;
    left: 12px;
    color: #666;
    font-weight: 600;
    z-index: 1;
}

.input-wrapper input[type="number"] {
    width: 100%;
    padding: 12px 12px 12px 25px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.input-wrapper input[type="number"]:focus {
    outline: none;
    border-color: #0066CC;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.input-wrapper input[type="range"] {
    flex: 1;
    margin-right: 15px;
}

.range-value {
    font-weight: 700;
    color: #0066CC;
    font-size: 16px;
    min-width: 40px;
    text-align: center;
}

.calculator-results {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.result-card {
    background: #f8fafc;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.result-card.highlight {
    background: linear-gradient(135deg, #0066CC, #60a5fa);
    color: white;
    border-color: #0066CC;
}

.result-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    opacity: 0.8;
}

.result-value {
    font-size: 24px;
    font-weight: 700;
    color: #0066CC;
}

.result-card.highlight .result-value {
    color: white;
}

.calculator-note {
    margin-top: 20px;
    padding: 15px;
    background: #f0f9ff;
    border-radius: 8px;
    border-left: 4px solid #0066CC;
}

.calculator-note p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design for Visualizers */
@media (max-width: 768px) {
    .platforms-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .vs-divider {
        order: 2;
    }
    
    .vs-circle {
        width: 50px;
        height: 50px;
        font-size: 12px;
    }
    
    .calculator-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .growth-chart {
        height: 250px;
    }
    
    .chart-bar {
        margin: 0 5px;
    }
    
    .platform-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .platform-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .chart-container,
    .platform-comparison,
    .profit-calculator {
        padding: 20px;
        margin: 20px 0;
    }
    
    .growth-chart {
        height: 200px;
    }
    
    .result-value {
        font-size: 20px;
    }
    
    .platform-stats-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
/* Legal Pages Styles */
.legal-hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%) !important;
    position: relative;
    padding: 120px 0 80px !important;
    text-align: center;
    color: #1a1a1a !important;
    overflow: hidden;
}

.legal-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 60 60"><defs><pattern id="dots" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1" fill="rgba(102,126,234,0.1)"/></pattern></defs><rect width="60" height="60" fill="url(%23dots)"/></svg>');
    opacity: 0.4;
    z-index: 1;
}

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

.legal-hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    color: #1a1a1a !important;
    font-family: 'Raleway', sans-serif !important;
}

.legal-hero-description {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
    color: #1a1a1a !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-family: 'Raleway', sans-serif !important;
}

.legal-hero-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.last-updated {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-family: 'Raleway', sans-serif;
    color: #1a1a1a;
}

.legal-content {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%) !important;
    position: relative;
    padding: 80px 0 !important;
    min-height: 100vh;
}

.legal-content::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 60 60"><defs><pattern id="dots" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1" fill="rgba(102,126,234,0.1)"/></pattern></defs><rect width="60" height="60" fill="url(%23dots)"/></svg>');
    opacity: 0.4;
    z-index: 1;
}

.legal-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.legal-main-container {
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 20px !important;
    padding: 60px !important;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    position: relative;
    z-index: 2;
}

.legal-section {
    background: transparent;
    border-radius: 0;
    padding: 0;
    margin-bottom: 40px;
    box-shadow: none;
    border: none;
    position: relative;
    transition: none;
}

.legal-section:not(:last-child) {
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 30px;
}

.legal-section:hover {
    transform: none;
    box-shadow: none;
}

.legal-section h2 {
    color: #1a1a1a;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
    font-family: 'Raleway', sans-serif;
}

.legal-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #1e3a8a, #3b82f6);
    border-radius: 2px;
}

.legal-section h3 {
    color: #1a1a1a;
    font-size: 22px;
    font-weight: 600;
    margin: 25px 0 15px 0;
    position: relative;
    padding-bottom: 10px;
    font-family: 'Raleway', sans-serif;
}

.legal-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #1e3a8a, #3b82f6);
    border-radius: 1px;
}

.legal-section p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 16px;
    font-family: 'Raleway', sans-serif;
}

.legal-list {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.legal-list li {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    font-family: 'Raleway', sans-serif;
}

.legal-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #3b82f6;
    font-weight: bold;
    font-size: 16px;
    background: #eff6ff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.legal-section a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-family: 'Raleway', sans-serif;
}

.legal-section a:hover {
    color: #1e3a8a;
    text-decoration: underline;
}

.important-notice {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    padding: 24px;
    border-radius: 12px;
    margin: 24px 0;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
    border-left: 4px solid #b91c1c;
}

.important-notice p {
    margin: 0;
    font-weight: 600;
    line-height: 1.6;
    font-family: 'Raleway', sans-serif;
}

/* Legal Pages Mobile Styles */
@media (max-width: 768px) {
    .legal-hero {
        padding: 100px 0 60px;
    }
    
    .legal-hero-title {
        font-size: 36px;
    }
    
    .legal-hero-description {
        font-size: 18px;
    }
    
    .legal-content {
        padding: 60px 0;
    }
    
    .legal-section {
        padding: 25px;
        margin-bottom: 20px;
    }
    
    .legal-section h2 {
        font-size: 24px;
    }
    
    .legal-section h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .legal-hero-title {
        font-size: 28px;
    }
    
    .legal-hero-description {
        font-size: 16px;
    }
    
    .legal-section {
        padding: 20px;
    }
    
    .legal-section h2 {
        font-size: 22px;
    }
    
    .legal-section h3 {
        font-size: 18px;
    }
}

/* ========================================
   COMPREHENSIVE MOBILE OPTIMIZATION
   ======================================== */

/* Mobile Navigation */
@media (max-width: 768px) {
    .navbar {
        top: 10px;
        width: calc(100% - 20px);
        border-radius: 25px;
        padding: 0 15px;
    }
    
    .nav-container {
        justify-content: space-between;
        align-items: center;
        height: 60px;
    }
    
    .nav-logo {
        order: 1;
    }
    
    .nav-logo .logo {
        height: 35px;
        width: auto;
    }
    
    .nav-toggle {
        display: flex;
        order: 3;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 999;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu .nav-link {
        margin: 15px 0;
        font-size: 18px;
        font-weight: 600;
        color: #1a1a1a;
        text-decoration: none;
        padding: 10px 20px;
        border-radius: 25px;
        transition: all 0.3s ease;
    }
    
    .nav-menu .nav-link:hover {
        background: rgba(0, 102, 204, 0.1);
        color: #0066CC;
    }
    
    .nav-cta-container {
        display: none;
    }
    
    /* Mobile Logo in Navigation */
    .nav-logo .logo {
        content: url('assets/logos/1x1 png.png');
        height: 40px;
        width: 40px;
        border-radius: 8px;
    }
}

/* Mobile Hero Section */
@media (max-width: 768px) {
    .hero {
        padding: 120px 0 80px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .hero-rating {
        margin-top: 30px;
        padding: 15px;
        flex-direction: column;
        gap: 10px;
    }
}

/* Mobile Services Section */
@media (max-width: 768px) {
    .services {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 25px;
        text-align: center;
    }
    
    .service-card h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .service-card p {
        font-size: 14px;
        line-height: 1.5;
    }
}

/* Mobile About Section */
@media (max-width: 768px) {
    .about {
        padding: 60px 0;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .stat-item {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 14px;
    }
}

/* Mobile Testimonials */
@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonial-card {
        padding: 25px;
        margin: 0 10px;
    }
    
    .testimonial-text {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .testimonial-author {
        font-size: 14px;
    }
}

/* Mobile FAQ Section */
@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-answer {
        padding: 0 20px 20px;
    }
    
    .faq-answer p {
        font-size: 14px;
        line-height: 1.5;
    }
}

/* Mobile Footer */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .footer-section p, .footer-section a {
        font-size: 14px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Mobile Why Ecommerce Page */
@media (max-width: 768px) {
    .why-ecommerce-hero {
        padding: 120px 0 60px;
    }
    
    .why-ecommerce-hero h1 {
        font-size: 28px;
        line-height: 1.2;
    }
    
    .why-ecommerce-hero p {
        font-size: 16px;
    }
    
    .content-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .section-description {
        font-size: 16px;
        line-height: 1.5;
    }
    
    .chart-container {
        padding: 20px;
        margin: 20px 0;
    }
    
    .chart-bars {
        flex-direction: column;
        gap: 15px;
    }
    
    .chart-bar {
        width: 100%;
        height: 60px;
    }
    
    .platform-visualizer {
        padding: 20px;
        margin: 20px 0;
    }
    
    .platform-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .profit-calculator {
        padding: 20px;
        margin: 20px 0;
    }
    
    .calculator-inputs {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Mobile Legal Pages */
@media (max-width: 768px) {
    .legal-hero {
        padding: 100px 0 40px;
    }
    
    .legal-hero-title {
        font-size: 28px;
        line-height: 1.2;
    }
    
    .legal-hero-description {
        font-size: 16px;
    }
    
    .legal-main-container {
        margin: 20px;
        padding: 20px;
    }
    
    .legal-section {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .legal-section h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .legal-section h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .legal-section p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .back-to-home {
        top: 20px;
        left: 20px;
        padding: 10px 15px;
        font-size: 14px;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .faq-question {
        padding: 12px 15px;
    }
    
    .faq-question h3 {
        font-size: 14px;
    }
    
    .chart-container {
        padding: 15px;
    }
    
    .platform-visualizer {
        padding: 15px;
    }
    
    .profit-calculator {
        padding: 15px;
    }
    
    .legal-main-container {
        margin: 15px;
        padding: 15px;
    }
    
    .legal-section {
        padding: 15px;
    }
    
    .legal-section h2 {
        font-size: 18px;
    }
    
    .legal-section h3 {
        font-size: 16px;
    }
    
    .legal-section p {
        font-size: 13px;
    }
}

/* Why Ecommerce Page Mobile Styles */
    .why-hero-title {
        font-size: 36px;
    }
    
    .why-hero-description {
        font-size: 18px;
    }
    
    .hero-stats {
        gap: 30px;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats .stat {
        min-width: 200px;
    }
    
    .content-section {
        padding: 30px 20px;
        margin-bottom: 60px;
    }
    
    .content-section h2 {
        font-size: 28px;
    }
    
    .content-text {
        font-size: 16px;
    }
    
    .benefits-list {
        padding: 20px;
    }
    
    .benefits-list li {
        font-size: 16px;
        padding: 12px 0;
    }
    
    .cta-section {
        padding: 40px 20px;
        margin-top: 60px;
    }
    
    .cta-section h2 {
        font-size: 28px;
    }
    
    .cta-section p {
        font-size: 18px;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }