/* CSS Variables - Luxury Maroon Theme */
:root {
    --primary-gradient: linear-gradient(135deg, #8B1538 0%, #A0203A 100%);
    --primary-color: #8B1538;
    --primary-hover: #A0203A;
    --text-primary: #2C2C2C;
    --text-secondary: #666;
    --text-light: #888;
    --background-light: #FEFEFE;
    --background-accent: linear-gradient(135deg, rgba(139, 21, 56, 0.03) 0%, rgba(160, 32, 58, 0.03) 100%);
    --shadow-light: 0 15px 50px rgba(139, 21, 56, 0.08);
    --shadow-hover: 0 25px 80px rgba(139, 21, 56, 0.15);
    --border-light: rgba(139, 21, 56, 0.08);
    --transition: all 0.4s ease;
    --luxury-spacing: 2rem;
}

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

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background-light);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: all 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-spin {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(139, 21, 56, 0.2);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    scroll-behavior: smooth;
    background: var(--background-light);
    font-weight: 400;
    letter-spacing: -0.01em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.logo img {
    height: 75px;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links li a {
    font-weight: 500;
    font-size: 15px;
    color: #333;
    position: relative;
}

.nav-links li a:hover {
    color: #000;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--primary-gradient);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.nav-buttons a {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.corporate-btn {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.corporate-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 21, 56, 0.2);
}

.login-btn {
    border: 2px solid #e5e5e5;
    color: #333;
}

.login-btn:hover {
    border-color: #333;
    background: #333;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.try-now-btn {
    background: var(--primary-gradient);
    color: #fff;
    border: 2px solid transparent;
}

.try-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(139, 21, 56, 0.4);
}

/* Hero Section */
.hero {
    padding: 140px 20px 100px;
    background: var(--background-accent);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-text-content {
    text-align: left;
}

.hero-image-content {
    text-align: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    font-size: 24px;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.element-1 { top: 20%; left: 10%; animation-delay: 0s; }
.element-2 { top: 40%; right: 15%; animation-delay: 1s; }
.element-3 { top: 60%; left: 20%; animation-delay: 2s; }
.element-4 { top: 30%; right: 25%; animation-delay: 3s; }
.element-5 { top: 70%; right: 10%; animation-delay: 4s; }
.element-6 { top: 50%; left: 5%; animation-delay: 5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(5deg); }
    50% { transform: translateY(-20px) rotate(0deg); }
    75% { transform: translateY(-10px) rotate(-5deg); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    padding: 8px 20px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-light);
}

.badge-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
}

.badge-stats {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 600;
}

.hero h1 {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero-highlight {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-stats {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.stat-bubble {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 16px 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    min-width: 120px;
}

.stat-bubble:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.hero-primary {
    flex-direction: column;
    align-items: center;
    padding: 20px 32px;
}

.btn-text {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.btn-subtext {
    font-size: 12px;
    opacity: 0.9;
    font-weight: 500;
}

.hero-secondary {
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.hero-image-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.image-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.image-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--primary-gradient);
    border-radius: 26px;
    opacity: 0.3;
    animation: pulse 3s infinite;
}

.hero-thumbnail {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    border-radius: 22px;
}

.image-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    opacity: 0;
    transition: var(--transition);
}

.image-frame:hover .image-overlay {
    opacity: 1;
}

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

.play-button-hero {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 10px 30px rgba(139, 21, 56, 0.4);
    transition: var(--transition);
    cursor: pointer;
}

.play-button-hero:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(139, 21, 56, 0.6);
}

.play-indicator span {
    color: white;
    font-weight: 600;
    font-size: 14px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.trust-indicators-hero {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
}

.trust-logo {
    height: 16px;
}

.trust-item span {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 600;
}

.trust-stars {
    color: #fbbf24;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%238B1538" fill-opacity="0.03"><circle cx="30" cy="30" r="4"/></g></g></svg>');
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 20px;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-buttons a {
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 56px;
}

.hero .try-now-btn {
    background: var(--primary-gradient);
    color: #fff;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.hero .try-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 21, 56, 0.4);
}

.shopify-btn {
    border: 2px solid #e5e5e5;
    color: #333;
    background: #fff;
}

.shopify-btn:hover {
    border-color: #95bf47;
    background: #95bf47;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(149, 191, 71, 0.3);
}

.shopify-btn img {
    height: 22px;
    filter: brightness(1.2);
}

.hero-image {
    margin-top: 60px;
    text-align: center;
}

.hero-thumbnail {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease;
}

.hero-thumbnail:hover {
    transform: translateY(-10px);
}

/* How it works */
.how-it-works {
    text-align: center;
    padding: 100px 20px;
    background: #fff;
}

.how-it-works .container {
    max-width: 1200px;
    margin: 0 auto;
}

.how-it-works h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.how-it-works > p {
    font-size: 20px;
    color: #666;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

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

.step {
    position: relative;
    padding: 40px 30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.step::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: var(--primary-gradient);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.step:hover::before {
    opacity: 0.1;
}

.step h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.how-it-works-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.how-it-works-buttons a {
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 56px;
}

/* Demo Videos */
.demo-videos {
    text-align: center;
    padding: 100px 20px;
    background: var(--background-accent);
}

.demo-videos .container {
    max-width: 1200px;
    margin: 0 auto;
}

.demo-videos h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.demo-videos > p {
    font-size: 20px;
    color: #666;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

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

.video-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(139, 21, 56, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
}

.video-thumbnail:hover .play-button {
    background: rgba(139, 21, 56, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 20px 20px 10px;
    color: #1a1a1a;
}

.video-card p {
    color: #666;
    font-size: 16px;
    margin: 0 20px 20px;
    line-height: 1.5;
}

/* Mobile Navigation */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

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

/* Enhanced Call-to-Action Styles */
.cta-enhanced {
    position: relative;
    overflow: hidden;
    background: var(--primary-gradient);
    box-shadow: 0 8px 32px rgba(139, 21, 56, 0.3);
}

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

.cta-enhanced:hover::before {
    left: 100%;
}

.cta-enhanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(139, 21, 56, 0.4);
}

/* Improved Section Spacing */
section {
    scroll-margin-top: 100px;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 21, 56, 0.2), transparent);
    margin: 0 auto;
    max-width: 200px;
}

/* Enhanced Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-animation {
    animation-delay: var(--delay, 0s);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 85px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 30px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links li {
        margin: 0;
        padding: 15px 40px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links li a {
        font-size: 18px;
        display: block;
        width: 100%;
    }
    
    .nav-buttons {
        display: none;
    }
    
    .hero {
        padding: 140px 20px 100px;
        min-height: 100vh;
        justify-content: center;
    }
    
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text-content {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .floating-element {
        font-size: 18px;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .stat-bubble {
        min-width: 100px;
        padding: 12px 16px;
    }
    
    .trust-indicators-hero {
        gap: 15px;
    }
    
    .hero-image-container {
        margin-top: 20px;
    }
    
    .hero h1 {
        font-size: clamp(28px, 7vw, 48px);
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons a {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-thumbnail {
        max-width: 90%;
        margin-top: 40px;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats-banner {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 24px 16px;
    }
    
    .stat-item {
        text-align: center;
        padding: 16px 8px;
    }
    
    .stat-number {
        font-size: 32px !important;
    }
    
    .stat-label {
        font-size: 11px !important;
        margin-top: 4px;
        line-height: 1.2;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature {
        padding: 30px 25px;
    }
    
    .feature-icon {
        top: -12px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .feature-metrics {
        flex-direction: column;
        gap: 8px;
    }
    
    .guarantee-text {
        text-align: center;
    }
    
    .risk-free-guarantee {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 25px 20px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .price .amount {
        font-size: 48px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .nav-links li {
        padding: 15px 20px;
    }
    
    .hero {
        padding: 120px 15px 80px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .step, .video-card, .feature, .pricing-card {
        margin: 0 15px;
    }
    
    .hero-buttons a {
        font-size: 14px;
        padding: 14px 28px;
    }
}

/* Product Showcase Section */
.product-showcase {
    text-align: center;
    padding: 120px 20px;
    background: linear-gradient(135deg, #f8faff 0%, #fff 50%, #f0f4ff 100%);
    position: relative;
    overflow: hidden;
}

/* Carousel Styles */
.product-demo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin: 80px 0;
}

.demo-carousel {
    position: relative;
}

.carousel-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 500px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.carousel-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(139, 21, 56, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-btn.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.demo-content {
    text-align: left;
}

.luxury-badge {
    display: inline-block;
    background: var(--primary-gradient);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.demo-content h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
    line-height: 1.2;
}

.demo-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

.key-benefits {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.benefit-text {
    font-size: 14px;
    color: var(--text-secondary);
}

.benefit-text strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.results-showcase {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
}

.result-item {
    flex: 1;
}

.result-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.result-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.result-desc {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.social-proof-luxury {
    background: rgba(139, 21, 56, 0.05);
    border-left: 4px solid var(--primary-color);
    padding: 24px;
    border-radius: 0 16px 16px 0;
    margin-bottom: 32px;
}

.social-proof-luxury blockquote {
    font-size: 16px;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.6;
}

.social-proof-luxury cite {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
}

.luxury-cta {
    display: inline-block;
    padding: 16px 32px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(139, 21, 56, 0.3);
}

.luxury-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(139, 21, 56, 0.4);
    color: white;
    text-decoration: none;
}

.guarantee-section {
    margin-top: 60px;
    text-align: center;
}

.guarantee-luxury {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: rgba(46, 204, 113, 0.05);
    border: 2px solid rgba(46, 204, 113, 0.2);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee-icon {
    font-size: 48px;
}

.guarantee-content {
    text-align: left;
}

.guarantee-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 8px;
}

.guarantee-content p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

.primary-cta {
    display: inline-block;
    padding: 18px 36px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 14px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(139, 21, 56, 0.3);
}

.primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(139, 21, 56, 0.4);
    color: white;
    text-decoration: none;
}

/* Showcase Header Styles */
.product-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%238B1538" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.product-showcase .container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.showcase-header {
    margin-bottom: 80px;
}

.showcase-header h2 {
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
    line-height: 1.2;
}

.showcase-header > p {
    font-size: 22px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* Features Header */
.features-header {
    margin-bottom: 80px;
}

.stats-banner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-light);
}

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

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

.features-header h2 {
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
    line-height: 1.2;
}

.features-header > p {
    font-size: 22px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.feature {
    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    text-align: left;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
    transition: all 0.4s ease;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature:hover::before {
    transform: scaleX(1);
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.feature-primary {
    background: var(--background-accent);
    border-color: rgba(139, 21, 56, 0.2);
}

.feature-icon {
    position: absolute;
    top: -15px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(139, 21, 56, 0.3);
}

.feature-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 24px;
}

.feature-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature h4 {
    font-size: 13px;
    color: var(--primary-color);
    margin-bottom: 12px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.feature h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
    line-height: 1.3;
}

.feature p {
    color: #666;
    margin-bottom: 24px;
    line-height: 1.7;
    font-size: 16px;
}

.feature-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

.metric {
    background: rgba(139, 21, 56, 0.1);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600;
}

.social-proof {
    background: rgba(139, 21, 56, 0.05);
    border-left: 4px solid var(--primary-color);
    padding: 16px;
    margin-bottom: 24px;
    border-radius: 0 12px 12px 0;
}

.testimonial-mini .quote {
    display: block;
    font-style: italic;
    color: #333;
    font-size: 14px;
    margin-bottom: 8px;
}

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

.savings-calculator {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, rgba(39, 174, 96, 0.1) 100%);
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 24px;
    text-align: center;
}

.savings {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 4px;
}

.savings-note {
    font-size: 12px;
    color: #666;
}

.shopify-verified {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 8px 12px;
    background: rgba(149, 191, 71, 0.1);
    border-radius: 20px;
    width: fit-content;
}

.shopify-verified img {
    height: 16px;
}

.shopify-verified span {
    font-size: 12px;
    font-weight: 600;
    color: #95bf47;
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.indicator {
    font-size: 12px;
    color: #666;
    background: rgba(139, 21, 56, 0.05);
    padding: 6px 12px;
    border-radius: 16px;
    font-weight: 500;
}

.feature-cta {
    display: inline-block;
    padding: 14px 28px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(139, 21, 56, 0.3);
}

.feature-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 21, 56, 0.4);
    color: white;
    text-decoration: none;
}

.app-logo-feature {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    background: var(--background-accent);
    border-radius: 16px;
    margin-bottom: 24px;
}

.app-logo-feature img {
    width: auto;
    height: 60px;
    max-width: 150px;
}

/* Features Footer */
.features-footer {
    text-align: center;
}

.risk-free-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: rgba(46, 204, 113, 0.05);
    border: 2px solid rgba(46, 204, 113, 0.2);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee-icon {
    font-size: 48px;
}

.guarantee-text {
    text-align: left;
}

.guarantee-text h4 {
    font-size: 20px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 8px;
}

.guarantee-text p {
    color: #666;
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

.main-cta {
    display: inline-block;
    padding: 20px 40px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 16px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    box-shadow: 0 12px 40px rgba(139, 21, 56, 0.3);
    transition: all 0.3s ease;
}

.main-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(139, 21, 56, 0.4);
    color: white;
    text-decoration: none;
}

/* Pricing Section */
.pricing {
    text-align: center;
    padding: 100px 20px;
    background: var(--background-accent);
}

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

.pricing h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.pricing > p {
    font-size: 20px;
    color: #666;
    margin-bottom: 60px;
    line-height: 1.7;
}

.pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

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

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.price .currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
}

.price .amount {
    font-size: 64px;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price .period {
    font-size: 18px;
    color: #666;
    font-weight: 500;
}

.pricing-header > p {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 40px;
}

.pricing-features ul {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
}

.pricing-features li {
    padding: 12px 0;
    font-size: 16px;
    color: #333;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

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

.pricing-cta .try-now-btn {
    display: inline-block;
    padding: 16px 40px;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

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

/* In Action */
.in-action {
    text-align: center;
    padding: 80px 20px;
}

.in-action h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

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

.before, .after {
    position: relative;
}

.before img, .after img {
    width: 100%;
    max-width: 500px;
}

.before span, .after span {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
}

/* AI Solutions */
.ai-solutions {
    text-align: center;
    padding: 80px 20px;
}

.ai-solutions h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

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

.solution {
    text-align: left;
}

.solution img {
    width: 100%;
    margin-bottom: 20px;
}

.solution h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.solution p {
    color: #666;
}

.learn-more-btn {
    padding: 15px 30px;
    border-radius: 5px;
    background-color: #000;
    color: #fff;
    font-size: 16px;
}

/* Testimonials */
.testimonials {
    text-align: center;
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.testimonials h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.testimonials > p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.testimonial-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    max-width: 350px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.card > img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

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

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

.author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.author div {
    text-align: left;
}

.author strong {
    display: block;
}

.author span {
    color: #666;
}

/* Mobile Studio */
.mobile-studio {
    text-align: center;
    padding: 80px 20px;
}

.mobile-studio h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.mobile-studio p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin: 0 auto 40px;
}

.mobile-studio-buttons a {
    padding: 15px 30px;
    border-radius: 5px;
    margin: 0 10px;
    font-size: 16px;
}

.app-store-btn img {
    height: 40px;
}

/* FAQ */
.faq {
    padding: 80px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.question span {
    font-size: 18px;
    font-weight: 500;
}

.answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.answer p {
    color: #666;
    padding-top: 10px;
}

.see-all-btn {
    display: block;
    width: fit-content;
    margin: 40px auto 0;
    padding: 15px 30px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}

/* Footer */
footer {
    background-color: #000;
    color: #fff;
    padding: 80px 40px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    max-width: 300px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 20px;
}

.footer-logo p {
    color: #aaa;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-links div {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-links a {
    margin-right: 15px;
}

.social-links img {
    height: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 14px;
    color: #aaa;
}

.footer-bottom a {
    margin-left: 20px;
}

.cta-section {
    text-align: center;
    padding: 20px;
    background: rgba(139, 21, 56, 0.1);
    border-radius: 15px;
}

.cta-section h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-cta-btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--primary-gradient);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.footer-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 21, 56, 0.3);
}

/* Instant Setup Section */
.instant-setup {
    padding: 100px 20px;
    background: var(--background-light);
}

.setup-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.setup-badge {
    display: inline-block;
    background: rgba(46, 204, 113, 0.1);
    color: #27ae60;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.setup-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
    line-height: 1.2;
}

.setup-text p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

.setup-features {
    margin-bottom: 32px;
}

.setup-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.feature-check {
    width: 24px;
    height: 24px;
    background: #27ae60;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
}

.setup-feature span {
    font-size: 16px;
    color: var(--text-primary);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 21, 56, 0.05);
    padding: 8px 12px;
    border-radius: 20px;
}

.badge-icon {
    height: 16px;
}

.badge-item span {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
}

.badge-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
}

.setup-cta {
    display: inline-block;
    padding: 16px 32px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(139, 21, 56, 0.3);
}

.setup-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(139, 21, 56, 0.4);
    color: white;
    text-decoration: none;
}

.app-showcase {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
}

.app-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 32px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(139, 21, 56, 0.2);
}

.installation-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-indicator {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--background-accent);
    padding: 16px;
    border-radius: 12px;
}

.step-number {
    width: 32px;
    height: 32px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.step-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Demo Store Section */
.demo-store {
    padding: 100px 20px;
    background: var(--background-accent);
}

.demo-store-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.demo-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.demo-store-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
    line-height: 1.2;
}

.demo-store-text p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

.demo-features {
    margin-bottom: 32px;
}

.demo-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.demo-feature .feature-icon {
    font-size: 24px;
    margin-top: 4px;
    flex-shrink: 0;
}

.feature-content {
    display: flex;
    flex-direction: column;
}

.feature-content strong {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.feature-content span {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.demo-access {
    margin-bottom: 32px;
}

.access-card {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--border-light);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-light);
}

.access-header h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.access-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.access-item:last-child {
    border-bottom: none;
}

.access-item .label {
    font-weight: 500;
    color: var(--text-secondary);
}

.access-item .value {
    font-weight: 600;
    color: var(--primary-color);
    font-family: monospace;
    background: rgba(139, 21, 56, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
}

.demo-store-cta {
    display: inline-block;
    padding: 16px 32px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(139, 21, 56, 0.3);
}

.demo-store-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(139, 21, 56, 0.4);
    color: white;
    text-decoration: none;
}

.browser-frame {
    background: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    border: 1px solid var(--border-light);
}

.browser-header {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: #e5e5e5;
    border-bottom: 1px solid #ccc;
}

.browser-dots {
    display: flex;
    gap: 6px;
    margin-right: 16px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff5f57;
}

.browser-dots span:nth-child(2) {
    background: #ffbd2e;
}

.browser-dots span:nth-child(3) {
    background: #28ca42;
}

.browser-url {
    background: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    color: var(--text-secondary);
    flex: 1;
    text-align: center;
}

.browser-content {
    background: white;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-screenshot {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
}

/* OpenRouter Section */
.openrouter-section {
    padding: 120px 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.openrouter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="80" height="80" viewBox="0 0 80 80" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="openrouter-pattern" width="80" height="80" patternUnits="userSpaceOnUse"><circle cx="40" cy="40" r="2" fill="%2306b6d4" opacity="0.1"/></pattern></defs><rect width="80" height="80" fill="url(%23openrouter-pattern)"/></svg>');
    pointer-events: none;
}

.openrouter-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.partnership-badge {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-light);
}

.partner-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 16px;
}

.partner-logo {
    height: 50px;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.plus-icon {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.exclusive-tag {
    background: var(--primary-gradient);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    animation: pulse 3s infinite;
}

.openrouter-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    animation: pulse 2s infinite;
}

.openrouter-header h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
    line-height: 1.2;
}

.openrouter-header p {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.cost-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.comparison-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-light);
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
}

.competitor-card {
    border-color: #fca5a5;
}

.our-card {
    border-color: #22d3ee;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.02) 0%, rgba(34, 211, 238, 0.02) 100%);
}

.our-card::before {
    content: '✨ RECOMMENDED';
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-gradient);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.card-header {
    text-align: center;
    margin-bottom: 24px;
}

.openrouter-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.openrouter-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.card-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
}

.competitor-header h3 {
    color: #dc2626;
}

.our-header h3 {
    color: #0891b2;
}

.card-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    font-style: italic;
}

.pricing-display {
    text-align: center;
    margin-bottom: 24px;
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.price-amount.expensive {
    color: #dc2626;
}

.price-amount.affordable {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 18px;
    color: var(--text-secondary);
    margin-left: 4px;
}

.features-list {
    space-y: 12px;
}

.feature-item {
    padding: 8px 0;
    font-size: 14px;
    line-height: 1.5;
}

.feature-item.negative {
    color: #dc2626;
}

.feature-item.positive {
    color: #059669;
}

.savings-calculator-section {
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
}

.calculator-card {
    background: rgba(46, 204, 113, 0.05);
    border: 2px solid rgba(46, 204, 113, 0.2);
    border-radius: 20px;
    padding: 32px;
    max-width: 500px;
    width: 100%;
}

.calculator-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #059669;
    margin-bottom: 20px;
    text-align: center;
}

.calculation {
    space-y: 12px;
}

.calc-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(46, 204, 113, 0.1);
}

.calc-item:last-of-type {
    border-bottom: none;
    margin-bottom: 16px;
}

.calc-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.calc-value {
    font-weight: 600;
    color: #059669;
}

.calc-value.expensive {
    color: #dc2626;
}

.calc-savings {
    text-align: center;
    padding: 16px;
    background: rgba(46, 204, 113, 0.1);
    border-radius: 12px;
    color: #059669;
    font-size: 18px;
}

.openrouter-setup {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-light);
}

.setup-guide h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.setup-intro {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.setup-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.setup-step {
    background: var(--background-light);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    border: 1px solid var(--border-light);
}

.setup-step .step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin: 0 auto 16px;
}

.setup-step h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.setup-step p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.setup-warning {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(239, 68, 68, 0.05);
    border: 2px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 32px;
}

.warning-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.warning-content {
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.5;
}

.openrouter-benefits h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    text-align: center;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.benefit-card {
    background: var(--background-light);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.benefit-card .benefit-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.benefit-card h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.benefit-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

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

.openrouter-btn {
    display: inline-block;
    padding: 18px 36px;
    background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
    color: white;
    border-radius: 14px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(8, 145, 178, 0.3);
    margin-bottom: 12px;
}

.openrouter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(8, 145, 178, 0.4);
    color: white;
    text-decoration: none;
}

.cta-note {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    font-style: italic;
}

/* Contact Us Section */
.contact-us {
    padding: 100px 20px;
    background: var(--background-light);
}

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

.contact-header h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
    line-height: 1.2;
}

.contact-header p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.contact-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.contact-details {
    text-align: left;
}

.contact-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

.phone-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px 12px;
    background: rgba(139, 21, 56, 0.05);
    border-radius: 8px;
}

.phone-item:last-child {
    margin-bottom: 0;
}

.country {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 14px;
}

.office-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding: 8px 12px;
    background: rgba(139, 21, 56, 0.05);
    border-radius: 8px;
}

.office-item:last-child {
    margin-bottom: 0;
}

.office-flag {
    font-size: 20px;
    flex-shrink: 0;
}

.office-location {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 16px;
}

.contact-cta {
    text-align: center;
    background: var(--background-accent);
    border-radius: 24px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
}

.contact-cta h4 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.contact-cta p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.contact-install-btn {
    display: inline-block;
    padding: 16px 32px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(139, 21, 56, 0.3);
}

.contact-install-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(139, 21, 56, 0.4);
    color: white;
    text-decoration: none;
}

/* Mobile Responsiveness for New Sections */
@media (max-width: 768px) {
    .product-demo {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .demo-content {
        text-align: center;
    }
    
    .key-benefits {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .results-showcase {
        flex-direction: column;
        gap: 20px;
    }
    
    .setup-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .guarantee-luxury {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .guarantee-content {
        text-align: center;
    }
    
    .demo-store-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .cost-comparison {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .setup-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .openrouter-section {
        padding: 80px 20px;
    }
    
    .openrouter-setup {
        padding: 24px;
    }
    
    .setup-warning {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-card {
        padding: 24px;
    }
    
    .contact-details {
        text-align: center;
    }
    
    .phone-item {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .office-item {
        justify-content: center;
    }
    
    .contact-cta {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .stats-banner {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 20px 16px;
        text-align: center;
    }
    
    .stat-item {
        background: rgba(255, 255, 255, 0.8);
        border-radius: 12px;
        padding: 20px 16px;
        border: 1px solid var(--border-light);
    }
    
    .stat-number {
        font-size: 28px !important;
        display: block;
        margin-bottom: 6px;
    }
    
    .stat-label {
        font-size: 12px !important;
        font-weight: 600;
    }
}
