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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #0a0a12;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Navigation Styles */
.navbar {
    background: #1a252f;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

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

.nav-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #FFD700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.nav-logo:hover {
    color: #FFF700;
    transition: color 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 6px;
    position: relative;
}

.nav-link:hover {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
}

.nav-link.active {
    color: #FFD700;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 5px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #FFD700;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
        height: 60px;
    }

    .nav-logo {
        font-size: 1.5rem;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background: #1a252f;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        padding: 40px 20px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }

    .nav-links.mobile-open {
        transform: translateX(0);
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 15px 20px;
        font-size: 1.1rem;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.05);
        margin-bottom: 10px;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(255, 215, 0, 0.15);
        color: #FFD700;
        border-bottom: none;
    }

    .nav-link.active {
        background: rgba(255, 215, 0, 0.2);
        border-left: 4px solid #FFD700;
    }
}

/* Background Animation */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: #FFD700;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: #4ECDC4;
    top: 60%;
    right: 15%;
    animation-delay: -2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: #FF8B94;
    bottom: 20%;
    left: 60%;
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
    }
    66% {
        transform: translateY(10px) rotate(240deg);
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 40px 0;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 20px;
    margin: 20px 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.logo-icon {
    font-size: 3rem;
    filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.3));
}

.logo h1 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFD700, #FF8C00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
}

.tagline {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.description {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* Launch Date */
.launch-date {
    margin: 40px 0;
}

.label {
    display: block;
    font-size: 1.1rem;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: 600;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.time-unit {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 20px;
    min-width: 100px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.time-unit:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.6);
}

.number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFD700;
    line-height: 1;
}

.unit {
    font-size: 0.9rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features Section */
.features {
    padding: 80px 0;
    text-align: center;
}

.features h3 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 50px;
    font-weight: 700;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.3));
}

.feature-card h4 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 1rem;
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    margin: 80px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.newsletter h3 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.newsletter p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 40px;
}

.email-form {
    max-width: 500px;
    margin: 0 auto;
}

.input-group {
    display: flex;
    gap: 0;
    margin-bottom: 15px;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

#email {
    flex: 1;
    padding: 18px 25px;
    border: none;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    outline: none;
}

#email::placeholder {
    color: #666;
}

.submit-btn {
    padding: 18px 35px;
    background: #FFD700;
    color: #1a1a1a;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    background: #FFC700;
    transform: translateX(-2px);
}

.submit-btn:active {
    transform: scale(0.98);
}

.btn-loader {
    display: none;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid #1a1a1a;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.privacy-note {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

.success-message {
    display: none;
    padding: 20px;
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 10px;
    color: #4CAF50;
    font-weight: 600;
    margin-top: 20px;
}

/* Footer */
.footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 80px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

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

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

.social-links a {
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

.copyright {
    color: #888;
    font-size: 0.9rem;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 30px 20px;
        margin: 15px 0;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1.5rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .countdown {
        gap: 15px;
    }
    
    .time-unit {
        min-width: 80px;
        padding: 15px;
    }
    
    .number {
        font-size: 2rem;
    }
    
    .features h3 {
        font-size: 2rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .newsletter {
        padding: 40px 20px;
        margin: 40px 0;
    }
    
    .main-tool-card {
        padding: 20px;
    }
    
    .preview-container {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }
    
    .preview-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
    
    .other-tools-section h3 {
        font-size: 1.8rem;
    }
    
    .newsletter h3 {
        font-size: 2rem;
    }
    
    .input-group {
        flex-direction: column;
        border-radius: 15px;
    }
    
    #email {
        border-radius: 15px 15px 0 0;
    }
    
    .submit-btn {
        border-radius: 0 0 15px 15px;
    }
    
    .footer-links {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .logo {
        flex-direction: column;
        gap: 10px;
    }
    
    .logo-icon {
        font-size: 2.5rem;
    }
    
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .tagline {
        font-size: 1.3rem;
    }
    
    .time-unit {
        min-width: 70px;
        padding: 12px;
    }
    
    .number {
        font-size: 1.8rem;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .newsletter {
        padding: 30px 15px;
    }
}

/* New Button Styles for Launch */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.primary-btn, .secondary-btn {
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 180px;
    justify-content: center;
}

.primary-btn {
    background: #FFD700;
    color: #1a1a1a;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.primary-btn:hover {
    background: #FFC700;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.secondary-btn {
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.1);
}

.secondary-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.2);
}

/* CTA Section Styles */
.cta-section {
    max-width: 800px;
    margin: 0 auto;
}

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

.highlight-box {
    background: rgba(255, 215, 0, 0.08);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.highlight-box h4 {
    font-size: 1.8rem;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: 700;
}

.highlight-box p {
    color: #cccccc;
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.6;
}

.start-btn {
    background: #4ECDC4;
    color: white;
    border: none;
    padding: 16px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.3);
}

.start-btn:hover {
    background: #44A08D;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(78, 205, 196, 0.4);
}

.info-text {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.8;
}

.info-text p {
    margin: 0;
}

/* Mobile responsiveness for new elements */
@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .primary-btn, .secondary-btn {
        width: 100%;
        max-width: 280px;
        min-width: auto;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .highlight-box {
        padding: 30px 20px;
    }
    
    .highlight-box h4 {
        font-size: 1.5rem;
    }
}

/* Main Tool Section Styles */
.main-tool-section {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

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

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

.tool-header p {
    font-size: 1.2rem;
    color: #bbb;
    margin-bottom: 20px;
}

.usage-indicator {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 0.9rem;
    color: #888;
}

.main-tool-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.upload-section {
    margin-bottom: 30px;
}

.upload-area {
    border: 2px solid #e1e5e9;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.upload-area:hover {
    border-color: #4285f4;
    background: linear-gradient(135deg, #e8f0fe 0%, #d2e3fc 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.15);
}

.upload-area.has-file {
    border-color: #34a853;
    background: linear-gradient(135deg, #e6f4ea 0%, #ceead6 100%);
    color: #137333;
    box-shadow: 0 4px 16px rgba(52, 168, 83, 0.12);
}

.upload-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.upload-text {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.file-input {
    display: none;
}

.progress-container {
    display: none;
    margin: 20px 0;
}

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

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    width: 0%;
    transition: width 0.3s ease;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.status-message {
    text-align: center;
    margin: 15px 0;
    padding: 10px;
    border-radius: 8px;
    font-weight: 500;
}

.status-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.status-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.status-message.info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.preview-area {
    display: none;
    margin: 30px 0;
}

.preview-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    margin-bottom: 20px;
    align-items: center;
}

.preview-box {
    background: #ffffff;
    border: 1px solid #e8eaed;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

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

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.preview-box h4 {
    margin: 0;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 600;
}

.preview-badge {
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.preview-badge.original {
    background: #e3f2fd;
    color: #1565c0;
}

.preview-badge.result {
    background: #e8f5e8;
    color: #2e7d32;
}

.preview-image-wrapper {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px dashed #dee2e6;
    margin-bottom: 10px;
}

.preview-img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 6px;
    object-fit: contain;
}

.preview-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    color: white;
    font-weight: bold;
}

.arrow-icon {
    font-size: 18px;
}

.btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn::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;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn:hover::before {
    left: 100%;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-download {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    margin-bottom: 15px;
    text-transform: none;
    letter-spacing: 0;
}

.btn-download:hover {
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

.other-tools-section {
    max-width: 1200px;
    margin: 80px auto 60px;
    padding: 0 20px;
}

.other-tools-section h3 {
    text-align: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* Dynamic Product Demo Styles */
.demo-showcase {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px 20px;
    margin: 0;
    position: relative;
    overflow: hidden;
}

/* Before/After Comparison Styles */
.before-after-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.before-after-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.image-container {
    text-align: center;
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transform: scale(0.95);
    transition: all 0.3s ease;
}

.image-container:hover {
    transform: scale(1);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.image-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    color: #333;
}

.label-icon {
    font-size: 1.3rem;
}

.image-frame {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.comparison-image {
    width: 280px;
    height: 200px;
    object-fit: cover;
    display: block;
    border-radius: 15px;
}

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}

.vs-content {
    background: rgba(255,255,255,0.9);
    border-radius: 50px;
    padding: 15px 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
}

.magic-wand {
    font-size: 1.5rem;
    margin-bottom: 5px;
    animation: pulse 2s infinite;
}

.vs-text {
    font-weight: 700;
    font-size: 0.9rem;
    color: #667eea;
    margin-bottom: 5px;
}

.arrow {
    font-size: 1.2rem;
    color: #764ba2;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.demo-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.demo-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

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

.demo-header h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.demo-header p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto;
}

.demo-animation-area {
    background: rgba(255,255,255,0.95);
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
}

.demo-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
}

.demo-image-container {
    text-align: center;
    position: relative;
}

.demo-label {
    margin-bottom: 20px;
    padding: 15px 20px;
    border-radius: 16px;
    display: inline-block;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.original-label {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
}

.result-label {
    background: linear-gradient(135deg, #51cf66 0%, #40c057 100%);
    color: white;
}

.demo-icon {
    font-size: 1.3rem;
    margin-right: 8px;
}

.demo-text {
    font-size: 1.1rem;
    display: block;
}

.demo-subtext {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 4px;
}

.demo-image-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    background: #f8f9fa;
    padding: 20px;
}

.demo-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.demo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(102, 126, 234, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-radius: 16px;
}

.processing-indicator {
    text-align: center;
    color: white;
}

.ai-scanning-line {
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    margin: 20px auto;
    border-radius: 2px;
}

.ai-text {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 15px;
}

.success-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #51cf66 0%, #40c057 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(81, 207, 102, 0.4);
    transform: scale(0);
    transition: transform 0.3s ease;
}

.success-icon {
    margin-right: 5px;
}

.magic-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.arrow-content {
    text-align: center;
}

.magic-wand {
    font-size: 2rem;
    margin-bottom: 10px;
    animation: sparkle 2s ease-in-out infinite;
}

.arrow-line {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.arrow-tip {
    font-size: 2rem;
    color: #667eea;
    animation: arrowPulse 1.5s ease-in-out infinite;
}

.transformation-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #667eea;
    margin-top: 5px;
}

.demo-cta {
    text-align: center;
}

.demo-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 5px;
}

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

.demo-try-btn {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #333;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 20px;
}

.demo-try-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
}

.demo-guarantee {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

/* Animations */
@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

@keyframes arrowPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes scanningEffect {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(300%); }
}

@keyframes successPulse {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .demo-showcase {
        padding: 30px 15px;
    }
    
    .before-after-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .comparison-image {
        width: 250px;
        height: 180px;
    }
    
    .vs-divider {
        transform: rotate(90deg);
        min-width: 80px;
    }
    
    .demo-header h2 {
        font-size: 2.2rem;
    }
    
    .demo-animation-area {
        padding: 40px 20px;
    }
    
    .demo-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .magic-arrow {
        order: 2;
    }
    
    .demo-image-container.result {
        order: 3;
    }
    
    .arrow-tip {
        transform: rotate(90deg);
    }
    
    .demo-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .demo-try-btn {
        padding: 16px 32px;
        font-size: 1.1rem;
    }
    
    .hero-subtext {
        margin-top: 20px;
        font-size: 0.95rem;
        color: #2c3e50;
        font-weight: 600;
        text-shadow: none;
        background: rgba(255,255,255,0.95);
        padding: 12px 20px;
        border-radius: 12px;
        display: inline-block;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        border: 1px solid rgba(255,255,255,0.2);
    }
}

/* Demo Comparison Styles */
.demo-comparison {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 20px;
    margin: 0;
    min-height: 500px;
    overflow: hidden;
    transition: all 0.5s ease;
}

.comparison-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

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

.comparison-label {
    background: rgba(255,255,255,0.9);
    color: #2c3e50;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: inline-block;
}

.image-wrapper {
    background: white;
    border-radius: 15px;
    padding: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

.comparison-img {
    width: 450px;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.comparison-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.arrow-icon {
    font-size: 2rem;
    color: white;
    animation: pulse 2s infinite;
}

.magic-text {
    background: rgba(255,255,255,0.9);
    color: #667eea;
    padding: 6px 12px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.8rem;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Mobile responsive for demo comparison */
@media (max-width: 768px) {
    .comparison-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .comparison-arrow {
        transform: rotate(90deg);
    }
    
    .comparison-img {
        width: 350px;
        height: 270px;
    }
}

/* Hero Subtext Styles */
.hero-subtext {
    margin-top: 20px !important;
    font-size: 0.95rem !important;
    color: #2c3e50 !important;
    font-weight: 600 !important;
    text-shadow: none !important;
    background: rgba(255,255,255,0.95) !important;
    padding: 12px 20px !important;
    border-radius: 12px !important;
    display: inline-block !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
}

/* Social Proof Section Styles */
.social-proof-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 20px;
    margin: 0;
    position: relative;
}

.social-proof-container {
    max-width: 1200px;
    margin: 0 auto;
}

.social-proof-header {
    text-align: center;
    margin-bottom: 60px;
}

.social-proof-header h3 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-proof-header p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.trust-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.trust-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 5px;
}

.stars {
    font-size: 1.2rem;
    margin: 5px 0;
}

.trust-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Testimonials Waterfall Layout */
.testimonials-waterfall {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
    grid-auto-rows: max-content;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: translateY(0);
}

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

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2, #667eea);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.user-info {
    flex: 1;
}

.user-name {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2px;
    font-size: 1rem;
}

.user-title {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 5px;
}

.user-location {
    font-size: 0.8rem;
    color: #999;
    display: flex;
    align-items: center;
}

.location-flag {
    margin-right: 5px;
}

.rating {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.rating-stars {
    color: #FFD700;
    margin-right: 8px;
    font-size: 1rem;
}

.rating-time {
    font-size: 0.8rem;
    color: #999;
    margin-left: auto;
}

.testimonial-content {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

.testimonial-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.testimonial-tag {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.load-more-testimonials {
    text-align: center;
}

.load-more-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

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

/* Mobile Responsive for Social Proof */
@media (max-width: 768px) {
    .social-proof-section {
        padding: 60px 15px;
    }
    
    .social-proof-header h3 {
        font-size: 2rem;
    }
    
    .trust-indicators {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonials-waterfall {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
}

/* New Testimonials Section Styles */
.testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 20px;
    margin: 0;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-header h3 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.testimonials-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.testimonial-item {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.testimonial-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.testimonial-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-rating {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 3px;
}

.author-role {
    font-size: 0.9rem;
    color: #666;
}

/* Responsive for New Testimonials */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-item {
        padding: 25px;
    }
    
    .testimonials-header h3 {
        font-size: 2rem;
    }
}