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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #1a1a2e;
    background: linear-gradient(135deg, #ffeeff 0%, #e6f0ff 50%, #f0e6ff 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 32px rgba(139, 92, 246, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 12px 40px rgba(139, 92, 246, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 8px 32px rgba(139, 92, 246, 0.3);
    }
}

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

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

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

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

.navbar {
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

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

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

.logo-image {
    height: 40px;
    width: auto;
}

/* User menu styles */
.user-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #667eea;
}

.user-name {
    font-weight: 500;
    color: #2d3748;
}

.logout-btn {
    background: transparent;
    color: #667eea;
    border: 1px solid #667eea;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.logout-btn:hover {
    background: #667eea;
    color: white;
}

.cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.cta-button.large {
    padding: 16px 40px;
    font-size: 18px;
    margin-top: 30px;
}

.hero {
    padding: 60px 0;
    text-align: center;
}

.hero h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(135deg, #1a1a2e 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.input-wrapper {
    max-width: 700px;
    margin: 0 auto 60px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.supported-platforms {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.platform-text {
    font-size: 16px;
    color: #666;
}

.platform-logos {
    display: flex;
    gap: 20px;
    align-items: center;
}

.platform-logo {
    height: 30px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.platform-logo:hover {
    opacity: 1;
}

.input-section {
    display: flex;
    gap: 12px;
}

.link-input {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 16px;
    background: white;
    transition: border-color 0.3s;
}

.link-input:focus {
    outline: none;
    border-color: #667eea;
}

.generate-button {
    background: #ff4b8b;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.generate-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.generate-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 75, 139, 0.4);
}

.generate-button:hover:before {
    left: 100%;
}

.preview-section {
    margin-top: 80px;
}

.before-after-container {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.before-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    animation: slideInFromLeft 0.8s ease-out 0.6s both;
}

.before-card h3 {
    font-size: 20px;
    color: #666;
    margin-bottom: 24px;
    text-align: center;
    font-weight: 500;
}

.after-card {
    background: linear-gradient(135deg, #a855f7 0%, #8b5cf6 100%);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.3);
    color: white;
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    animation: slideInFromRight 0.8s ease-out 0.6s both, pulse 4s ease-in-out infinite 1.4s;
}

.after-card h3 {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    text-align: center;
    font-weight: 500;
}

.product-preview {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.product-image-small {
    width: 100px;
    height: 140px;
    object-fit: contain;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 10px;
}

.plain-listing {
    flex: 1;
}

.skeleton-line {
    background: #e5e7eb;
    height: 14px;
    border-radius: 8px;
    margin-bottom: 12px;
}

.skeleton-line.long { width: 100%; }
.skeleton-line.medium { width: 85%; }
.skeleton-line.short { width: 70%; }
.skeleton-line.tiny { width: 50%; display: inline-block; }

.rating-placeholder {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 16px 0;
}

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

.arrow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.arrow-icon {
    opacity: 0.7;
    transition: transform 0.3s ease;
}

.arrow-container:hover .arrow-icon {
    transform: translateX(5px);
}

.enhanced-listing h2 {
    font-size: 32px;
    margin-bottom: 24px;
    text-align: center;
    font-weight: 700;
}

.product-image-large {
    width: 100%;
    max-width: 280px;
    height: 320px;
    object-fit: contain;
    margin: 20px auto 30px;
    display: block;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.benefits {
    margin-top: 24px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 17px;
    background: rgba(255, 255, 255, 0.15);
    padding: 16px 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: transform 0.2s ease;
}

.benefit-item:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.2);
}

.benefit-item .icon {
    font-size: 24px;
    filter: grayscale(0%);
}

.features {
    padding: 80px 0;
}

.feature-grid {
    display: grid;
    gap: 40px;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 30px;
}

.infographic-examples {
    display: flex;
    gap: 40px;
    justify-content: center;
}

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

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.icon-circle.orange {
    background: #ffa500;
    color: white;
}

.icon-circle.green {
    background: #10b981;
    color: white;
}

.info-text h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.info-text p {
    color: #666;
    font-size: 14px;
}

.product-gallery {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.gallery-item {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item:nth-child(1) {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
}

.gallery-item:nth-child(2) {
    background: linear-gradient(135deg, #f472b6 0%, #ec4899 100%);
}

.gallery-item:nth-child(3) {
    background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
}

.testimonials {
    padding: 80px 0;
}

.stats-section {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

.stat-item h3 {
    font-size: 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 16px;
    color: #666;
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #1a1a2e 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

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

.visual-showcase {
    text-align: center;
    margin-top: 80px;
}

.visual-showcase h3 {
    font-size: 32px;
    margin-bottom: 40px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.showcase-item {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.showcase-item:hover {
    transform: translateY(-5px);
}

.showcase-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
}

.showcase-item p {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.testimonial-card .stars {
    color: #ffa500;
    font-size: 20px;
    margin-bottom: 15px;
    display: block;
}

.testimonial-card p {
    font-size: 18px;
    font-style: italic;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.6;
}

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

.cta-section {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.cta-section h2 {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-section p {
    font-size: 20px;
    color: #666;
    margin-bottom: 30px;
}

.cta-subtext {
    font-size: 16px;
    color: #999;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .supported-platforms {
        flex-direction: column;
        gap: 10px;
    }
    
    .platform-logos {
        gap: 15px;
    }
    
    .platform-logo {
        height: 25px;
    }
    
    .input-section {
        flex-direction: column;
    }
    
    .before-after-container {
        flex-direction: column;
    }
    
    .arrow-container {
        transform: rotate(90deg);
        padding: 20px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-item h3 {
        font-size: 36px;
    }
    
    .features-grid,
    .showcase-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section h2 {
        font-size: 36px;
    }
}

/* Trust Badges */
.trust-badges {
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.badges-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #333;
    animation: fadeInUp 0.6s ease-out;
}

.badge-item:nth-child(1) { animation-delay: 0.1s; }
.badge-item:nth-child(2) { animation-delay: 0.2s; }
.badge-item:nth-child(3) { animation-delay: 0.3s; }
.badge-item:nth-child(4) { animation-delay: 0.4s; }

.badge-icon {
    font-size: 24px;
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: white;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto 80px;
    position: relative;
}

.step-item {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    animation: fadeInUp 0.8s ease-out;
}

.step-item:nth-child(1) { animation-delay: 0.2s; }
.step-item:nth-child(3) { animation-delay: 0.4s; }
.step-item:nth-child(5) { animation-delay: 0.6s; }

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 32px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: pulse 3s ease-in-out infinite;
}

.step-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

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

.step-connector {
    flex: 0 0 100px;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.step-connector::after {
    content: '';
    position: absolute;
    right: -10px;
    top: -4px;
    width: 0;
    height: 0;
    border-left: 10px solid #764ba2;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.results-preview {
    text-align: center;
}

.results-preview h3 {
    font-size: 32px;
    margin-bottom: 40px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.result-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    padding: 40px;
    border-radius: 20px;
    animation: fadeInUp 0.8s ease-out;
}

.result-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.result-metric {
    font-size: 48px;
    font-weight: bold;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.result-label {
    font-size: 18px;
    color: #666;
}

/* Success Metrics */
.success-metrics {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.metric-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 280px;
}

.metric-card.success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.metric-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.metric-card ul {
    list-style: none;
}

.metric-card li {
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vs-divider {
    font-size: 32px;
    font-weight: bold;
    color: #667eea;
}

/* Pricing */
.pricing {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff4b8b;
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.price {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 30px;
}

.price span {
    font-size: 18px;
    font-weight: normal;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-card li {
    margin-bottom: 15px;
    font-size: 16px;
}

.pricing-button {
    background: #667eea;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.pricing-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.pricing-button.featured {
    background: white;
    color: #667eea;
}

/* FAQ */
.faq {
    padding: 100px 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    padding: 30px;
    border-radius: 16px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

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

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .badges-wrapper {
        gap: 20px;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .step-connector {
        display: none;
    }
    
    .success-metrics {
        flex-direction: column;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Loader Styles */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-container {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 90%;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 30px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-text h3 {
    font-size: 24px;
    color: #1a1a2e;
    margin-bottom: 15px;
    font-weight: 600;
}

.loader-text p {
    color: #666;
    font-size: 16px;
    margin-bottom: 25px;
}

.loader-progress {
    width: 100%;
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
    width: 0%;
    animation: progress 3s ease-in-out infinite;
}

@keyframes progress {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}