/**
 * AI Product Creator Theme Styles
 * 
 * @package AI_Product_Creator
 * @version 1.0.0
 */

/* CSS Variables */
:root {
    --apc-primary: #7c3aed;
    --apc-primary-dark: #6d28d9;
    --apc-secondary: #3b82f6;
    --apc-background: #ffffff;
    --apc-background-alt: #f9fafb;
    --apc-foreground: #1f2937;
    --apc-foreground-muted: #6b7280;
    --apc-border: #e5e7eb;
    --apc-card: #ffffff;
    --apc-card-border: #f3f4f6;
    --apc-radius: 0.5rem;
    --apc-radius-lg: 1rem;
    --apc-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --apc-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --apc-font-sans: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--apc-font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--apc-foreground);
    background-color: var(--apc-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--apc-foreground);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.25rem; }

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--apc-primary);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--apc-primary-dark);
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container-sm {
    max-width: 800px;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-primary {
    background: var(--apc-primary);
    color: #fff;
    border-color: var(--apc-primary);
}

.btn-primary:hover {
    background: var(--apc-primary-dark);
    color: #fff;
    transform: scale(1.02);
}

.btn-white {
    background: #fff;
    color: var(--apc-primary);
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--apc-primary);
}

.btn-outline {
    background: transparent;
    color: var(--apc-foreground);
    border-color: var(--apc-border);
}

.btn-outline:hover {
    background: var(--apc-background-alt);
    color: var(--apc-foreground);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--apc-border);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 1rem;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--apc-foreground);
}

.logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--apc-primary) 0%, var(--apc-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.logo-text {
    font-weight: 700;
    font-size: 1.125rem;
}

.nav-links {
    display: none;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
}

.nav-menu a {
    font-size: 0.875rem;
    color: var(--apc-foreground-muted);
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: var(--apc-foreground);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.language-switcher,
.language-switcher-manual {
    display: flex;
    align-items: center;
    border: 1px solid var(--apc-border);
    border-radius: 0.375rem;
    overflow: hidden;
}

.language-switcher ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.language-switcher li a,
.lang-btn {
    display: block;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--apc-foreground);
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
}

.language-switcher li.current-lang a,
.lang-btn.active {
    background: var(--apc-primary);
    color: white;
}

.language-switcher li a:hover,
.lang-btn:hover {
    background: var(--apc-muted);
}

.nav-actions .btn {
    display: none;
}

@media (min-width: 640px) {
    .nav-actions .btn {
        display: inline-flex;
    }
}

.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--apc-foreground);
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu {
    display: none;
    padding: 1rem;
    background: var(--apc-background);
    border-bottom: 1px solid var(--apc-border);
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    list-style: none;
    margin-bottom: 1rem;
}

.mobile-nav-menu a {
    display: block;
    padding: 0.5rem 0;
    color: var(--apc-foreground-muted);
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.language-switcher.mobile,
.language-switcher-manual.mobile {
    align-self: flex-start;
}

/* Hero Section */
.hero-section {
    min-height: 85vh;
    padding: 8rem 1rem 4rem;
    background: linear-gradient(135deg, var(--apc-primary) 0%, #4f46e5 50%, var(--apc-secondary) 100%);
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content {
    color: #fff;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 40rem;
    margin-bottom: 2rem;
}

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

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
    opacity: 0.8;
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Trust Badges Strip - 10X Funnel Element */
.trust-badges-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 0.375rem;
    padding: 0.5rem 0.75rem;
}

.trust-badge svg {
    flex-shrink: 0;
}

.trust-badge span {
    font-size: 0.75rem;
    font-weight: 500;
}

/* Hero Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-mockup {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 100%;
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #eab308; }
.dot.green { background: #22c55e; }

.mockup-title {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 0.5rem;
}

.mockup-content {
    background: var(--apc-card);
    border-radius: 0.75rem;
    padding: 1rem;
    color: var(--apc-foreground);
}

.mockup-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.mockup-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--apc-primary);
}

.mockup-feature strong {
    display: block;
    font-size: 0.875rem;
}

.mockup-feature span {
    font-size: 0.75rem;
    color: var(--apc-foreground-muted);
}

.mockup-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.mockup-stats .stat {
    background: var(--apc-background-alt);
    padding: 0.75rem;
    border-radius: 0.5rem;
    text-align: center;
}

.mockup-stats strong {
    display: block;
    font-size: 1.25rem;
    background: linear-gradient(135deg, var(--apc-primary) 0%, var(--apc-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mockup-stats span {
    font-size: 0.75rem;
    color: var(--apc-foreground-muted);
}

.mockup-button {
    width: 100%;
    padding: 0.75rem;
    background: var(--apc-primary);
    color: #fff;
    border: none;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
}

/* Stats Section */
.stats-section {
    padding: 3rem 0;
    border-bottom: 1px solid var(--apc-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

.stat-item svg {
    color: var(--apc-primary);
    margin-bottom: 0.5rem;
}

.stat-item strong {
    display: block;
    font-size: 1.875rem;
    background: linear-gradient(135deg, var(--apc-primary) 0%, var(--apc-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item span {
    font-size: 0.875rem;
    color: var(--apc-foreground-muted);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: var(--apc-background-alt);
    border: 1px solid var(--apc-border);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--apc-foreground-muted);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--apc-foreground-muted);
    max-width: 40rem;
    margin: 0 auto;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: var(--apc-background-alt);
}

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

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: var(--apc-card);
    border: 1px solid var(--apc-card-border);
    border-radius: var(--apc-radius-lg);
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--apc-shadow-lg);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--apc-primary);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 0.75rem;
}

.feature-card > p {
    color: var(--apc-foreground-muted);
    margin-bottom: 1rem;
}

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

.feature-card li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.feature-card li svg {
    color: var(--apc-primary);
    flex-shrink: 0;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
    background: var(--apc-background-alt);
}

/* Countdown Banner - 10X Funnel Element */
.countdown-banner {
    background: linear-gradient(135deg, var(--apc-primary) 0%, var(--apc-secondary) 100%);
    border-radius: 0.5rem;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    color: #fff;
}

.countdown-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.countdown-icon svg {
    animation: pulse 2s infinite;
}

.countdown-text {
    font-weight: 600;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.countdown-unit {
    text-align: center;
    background: rgba(255,255,255,0.2);
    border-radius: 0.25rem;
    padding: 0.25rem 0.5rem;
    min-width: 3rem;
}

.countdown-value {
    display: block;
    font-size: 1.25rem;
    font-weight: bold;
}

.countdown-label {
    font-size: 0.625rem;
    text-transform: uppercase;
    opacity: 0.8;
}

.countdown-separator {
    font-size: 1.25rem;
    font-weight: bold;
}

.countdown-urgency {
    background: rgba(255,255,255,0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

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

.pricing-grid {
    display: grid;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    background: var(--apc-card);
    border: 1px solid var(--apc-card-border);
    border-radius: var(--apc-radius-lg);
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.pricing-card.popular {
    border: 2px solid var(--apc-primary);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--apc-primary) 0%, var(--apc-secondary) 100%);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-card h3 {
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--apc-foreground-muted);
}

.pricing-card .sites {
    font-size: 0.875rem;
    color: var(--apc-foreground-muted);
    margin-bottom: 0.5rem;
}

.pricing-card .description {
    font-size: 0.875rem;
    color: var(--apc-foreground-muted);
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
}

.pricing-card li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.pricing-card li svg {
    color: var(--apc-primary);
    flex-shrink: 0;
}

.guarantee-text {
    text-align: center;
    font-size: 0.875rem;
    color: var(--apc-foreground-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
}

.testimonials-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--apc-card);
    border: 1px solid var(--apc-card-border);
    border-radius: var(--apc-radius-lg);
    padding: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--apc-shadow-lg);
}

/* Testimonial Result Badge - 10X Funnel Element */
.testimonial-result-badge {
    position: absolute;
    top: -0.75rem;
    left: 1rem;
    background: linear-gradient(135deg, var(--apc-primary) 0%, var(--apc-secondary) 100%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
}

/* Verified Badge - 10X Funnel Element */
.verified-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--apc-primary);
    color: #fff;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin-left: 0.25rem;
}

.verified-badge svg {
    width: 10px;
    height: 10px;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: var(--apc-primary);
}

.quote {
    font-style: italic;
    color: var(--apc-foreground-muted);
    margin-bottom: 1.5rem;
}

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

.avatar {
    width: 40px;
    height: 40px;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--apc-primary);
}

.author strong {
    display: block;
    font-size: 0.875rem;
}

.author span {
    font-size: 0.75rem;
    color: var(--apc-foreground-muted);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--apc-background-alt);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--apc-card);
    border: 1px solid var(--apc-card-border);
    border-radius: var(--apc-radius);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--apc-foreground);
}

.faq-question svg {
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1rem;
    color: var(--apc-foreground-muted);
}

.faq-item.open .faq-answer {
    display: block;
}

/* Guarantee Section - 10X Funnel Element */
.guarantee-section {
    padding: 4rem 0;
    background: var(--apc-background);
}

.guarantee-card {
    text-align: center;
    background: var(--apc-card);
    border: 2px solid var(--apc-primary);
    border-radius: var(--apc-radius-lg);
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
}

.guarantee-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--apc-primary) 0%, var(--apc-secondary) 100%);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    color: #fff;
}

.guarantee-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--apc-foreground);
}

.guarantee-card > p {
    color: var(--apc-foreground-muted);
    margin-bottom: 1.5rem;
}

.guarantee-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 0.75rem;
    text-align: left;
    max-width: 320px;
    margin: 0 auto;
}

.guarantee-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.guarantee-list svg {
    color: var(--apc-primary);
    flex-shrink: 0;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(59, 130, 246, 0.08) 100%);
    text-align: center;
}

.cta-icon {
    width: 64px;
    height: 64px;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--apc-primary);
    margin: 0 auto 1.5rem;
}

.cta-section p {
    font-size: 1.125rem;
    color: var(--apc-foreground-muted);
    max-width: 40rem;
    margin: 0 auto 2rem;
}

/* Final CTA */
.final-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--apc-primary) 0%, var(--apc-secondary) 100%);
    text-align: center;
    color: #fff;
}

.final-cta h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.final-cta > .container > p:first-of-type {
    opacity: 0.9;
    margin-bottom: 2rem;
}

.final-trust {
    font-size: 0.875rem;
    opacity: 0.7;
    margin-top: 1rem;
}

/* Footer */
.site-footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--apc-border);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-brand .site-logo {
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 0.875rem;
    color: var(--apc-foreground-muted);
    margin-bottom: 0.5rem;
}

.footer-ecosystem {
    font-size: 0.875rem;
    color: var(--apc-foreground-muted);
}

.footer-links h4 {
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--apc-foreground-muted);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--apc-foreground);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--apc-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--apc-foreground-muted);
    margin: 0;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    background: var(--apc-background-alt);
    border: 1px solid var(--apc-border);
    border-radius: 9999px;
    font-size: 0.75rem;
    color: var(--apc-foreground-muted);
}

/* Sticky Mobile CTA - 10X Funnel Element */
.sticky-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--apc-card);
    border-top: 1px solid var(--apc-border);
    padding: 0.75rem 1rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-mobile-content {
    display: flex;
    gap: 0.75rem;
}

.sticky-mobile-content .btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

@media (min-width: 640px) {
    .sticky-mobile-cta {
        display: none;
    }
}

/* Exit Intent Modal - 10X Funnel Element */
.exit-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.exit-modal-card {
    background: var(--apc-card);
    border-radius: var(--apc-radius-lg);
    padding: 2rem;
    max-width: 400px;
    width: 100%;
    text-align: center;
    position: relative;
    animation: fadeInUp 0.3s ease;
}

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

.exit-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--apc-foreground-muted);
    transition: color 0.2s;
}

.exit-modal-close:hover {
    color: var(--apc-foreground);
}

.exit-modal-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--apc-primary) 0%, var(--apc-secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #fff;
}

.exit-modal-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.exit-modal-subtitle {
    font-size: 1.125rem;
    color: var(--apc-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.exit-modal-discount {
    background: var(--apc-background-alt);
    border-radius: var(--apc-radius);
    padding: 1rem;
    margin-bottom: 1rem;
}

.exit-modal-discount .discount-value {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--apc-primary);
}

.exit-modal-discount .discount-label {
    font-size: 0.75rem;
    color: var(--apc-foreground-muted);
}

.exit-modal-cta {
    width: 100%;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.exit-modal-dismiss {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--apc-foreground-muted);
    font-size: 0.875rem;
    text-decoration: underline;
}

.exit-modal-dismiss:hover {
    color: var(--apc-foreground);
}

/* WooCommerce */
.woocommerce-content {
    padding: 6rem 0 4rem;
}

/* Page Content */
.page-content {
    padding: 6rem 0 4rem;
}

.entry-title {
    margin-bottom: 2rem;
}

.entry-content {
    max-width: 800px;
}
