/* Pixeon - Modern AI Photo Magic Website */
/* ======================================= */

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

:root {
    --primary: #8B5CF6;
    --primary-light: #A78BFA;
    --primary-dark: #7C3AED;
    --secondary: #EC4899;
    --secondary-light: #F472B6;
    --accent: #06B6D4;
    --accent-light: #22D3EE;
    --dark: #0F0F1A;
    --darker: #07070D;
    --card: rgba(255, 255, 255, 0.03);
    --card-hover: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(139, 92, 246, 0.3);
    --text: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.6);
    --text-subtle: rgba(255, 255, 255, 0.4);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--darker);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 50% 80%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: orbFloat 25s infinite ease-in-out;
    will-change: transform;
}

.orb-1 {
    width: 700px;
    height: 700px;
    background: rgba(139, 92, 246, 0.25);
    top: -300px;
    left: -200px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: rgba(236, 72, 153, 0.2);
    top: 40%;
    right: -150px;
    animation-delay: -8s;
}

.orb-3 {
    width: 600px;
    height: 600px;
    background: rgba(6, 182, 212, 0.15);
    bottom: -250px;
    left: 25%;
    animation-delay: -16s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(60px, -60px) scale(1.1); }
    50% { transform: translate(-40px, 40px) scale(0.95); }
    75% { transform: translate(40px, 60px) scale(1.05); }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(7, 7, 13, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 12px 40px;
    background: rgba(7, 7, 13, 0.95);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--text);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.logo-img {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--text);
}

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

.btn-cta {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--text) !important;
    padding: 12px 28px;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.btn-cta::after {
    display: none !important;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 40px 100px;
    position: relative;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--text);
    color: var(--dark);
    padding: 18px 36px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.2);
}

.btn-primary.btn-large {
    padding: 20px 48px;
    font-size: 1.15rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text);
    padding: 18px 36px;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.stats {
    display: flex;
    gap: 50px;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-item p {
    color: var(--text-subtle);
    font-size: 0.95rem;
    margin-top: 6px;
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    perspective: 1500px;
}

.phone-frame {
    width: 320px;
    height: 660px;
    background: linear-gradient(145deg, #1f1f35 0%, #0f0f1a 100%);
    border-radius: 50px;
    padding: 12px;
    box-shadow: 
        0 60px 120px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    margin: 0 auto;
    transform: rotateY(-12deg) rotateX(5deg);
    animation: phoneFloat 8s ease-in-out infinite;
    transform-style: preserve-3d;
}

@keyframes phoneFloat {
    0%, 100% { transform: rotateY(-12deg) rotateX(5deg) translateY(0); }
    50% { transform: rotateY(-12deg) rotateX(5deg) translateY(-25px); }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--dark);
    border-radius: 42px;
    overflow: hidden;
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 32px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
}

.app-content {
    padding: 60px 16px 16px;
    height: 100%;
}

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

.app-header h2 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.app-header p {
    font-size: 0.8rem;
    color: var(--text-subtle);
}

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

.style-card {
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #667eea, #764ba2);
    transition: transform 0.3s ease;
}

.style-card:hover {
    transform: scale(1.05);
}

.style-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.style-card .label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 12px 12px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    font-size: 0.75rem;
    font-weight: 600;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 16px;
    animation: floatingCard 10s ease-in-out infinite;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.floating-card.card-1 {
    top: 5%;
    right: -80px;
    animation-delay: -3s;
}

.floating-card.card-2 {
    bottom: 15%;
    left: -100px;
    animation-delay: -6s;
}

@keyframes floatingCard {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.floating-card img {
    width: 85px;
    height: 85px;
    border-radius: 14px;
    object-fit: cover;
    display: block;
}

.floating-card span {
    display: block;
    margin-top: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}

/* Showcase Section */
.showcase-section {
    padding: 100px 0;
    background: var(--dark);
}

.comparison-slider {
    max-width: 900px;
    margin: 0 auto;
}

.comparison-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.comparison-before,
.comparison-after {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--card);
}

.comparison-before img,
.comparison-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comparison-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
}

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

.section-header .badge {
    display: inline-block;
    background: rgba(139, 92, 246, 0.15);
    color: var(--primary-light);
    padding: 10px 22px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.section-header h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Styles Section */
.styles-section {
    padding: 120px 0;
    position: relative;
}

.styles-categories {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.category-btn {
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover {
    background: var(--card-hover);
    color: var(--text);
    border-color: var(--border-hover);
}

.category-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent;
    color: var(--text);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.styles-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.showcase-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 1;
}

.showcase-item:hover {
    transform: translateY(-10px);
    border-color: var(--border-hover);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.showcase-image {
    width: 100%;
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
    position: relative;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 50%, rgba(0, 0, 0, 0.7));
}

.showcase-content {
    padding: 20px;
}

.showcase-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.showcase-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Features Section */
.features-section {
    padding: 120px 0;
    background: var(--dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px 32px;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    background: var(--card-hover);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials-section {
    padding: 120px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-5px);
}

.stars {
    font-size: 1.1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card > p {
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.testimonial-author .avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.testimonial-author strong {
    display: block;
    font-weight: 600;
}

.testimonial-author span {
    color: var(--text-subtle);
    font-size: 0.85rem;
}

/* CTA Section */
.cta-section {
    padding: 140px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, transparent 60%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

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

.cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cta-content > p {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.cta-note {
    margin-top: 20px;
    color: var(--text-subtle);
    font-size: 0.9rem;
}

/* Footer */
footer {
    padding: 80px 0 30px;
    border-top: 1px solid var(--border);
    background: var(--darker);
}

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

.footer-brand p {
    color: var(--text-muted);
    margin-top: 16px;
    line-height: 1.7;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--card-hover);
    border-color: var(--border-hover);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    color: var(--text-subtle);
    font-weight: 600;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 14px;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    color: var(--text-subtle);
    font-size: 0.9rem;
}

/* Animation Classes */
.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .styles-showcase {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    nav {
        padding: 16px 24px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    
    .hero-text p {
        margin: 0 auto 40px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .stats {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(7, 7, 13, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        border-bottom: 1px solid var(--border);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .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(5px, -5px);
    }
    
    .hero {
        padding: 120px 24px 80px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .styles-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .comparison-images {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .footer-brand p {
        margin: 16px auto 0;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .section-header .badge {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
    
    .styles-categories {
        gap: 8px;
    }
    
    .category-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .showcase-content {
        padding: 16px;
    }
    
    .feature-card {
        padding: 28px 24px;
    }
    
    .testimonial-card {
        padding: 24px;
    }
}

/* Legal & Support Pages */
.legal-page,
.support-page {
    padding: 140px 24px 80px;
    min-height: 100vh;
}

.legal-content,
.support-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1,
.support-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.legal-content .date {
    color: var(--text-subtle);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin: 40px 0 15px;
    color: var(--text);
}

.legal-content p,
.legal-content ul {
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-content ul {
    margin-left: 24px;
}

.legal-content li {
    margin-bottom: 10px;
}

.legal-content a {
    color: var(--primary-light);
}

.support-content .subtitle {
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 60px;
    font-size: 1.1rem;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.support-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    transition: all 0.3s ease;
}

.support-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
}

.support-card h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.support-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-section h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--border-hover);
}

.faq-item h4 {
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.7;
}

.contact-section {
    text-align: center;
    margin-top: 60px;
    padding: 48px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    border-radius: 24px;
    border: 1px solid var(--border);
}

.contact-section h2 {
    margin-bottom: 16px;
    font-size: 1.8rem;
}

.contact-section p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.contact-section a {
    color: var(--primary-light);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-section a:hover {
    color: var(--text);
}

@media (max-width: 768px) {
    .support-grid {
        grid-template-columns: 1fr;
    }
}

/* Styles More */
.styles-more {
    text-align: center;
    margin-top: 50px;
    padding: 24px 32px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 100px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.styles-more p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

/* Featured Feature Card */
.feature-card.featured {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(236, 72, 153, 0.1));
    border-color: rgba(139, 92, 246, 0.3);
}

.feature-card.featured .feature-icon {
    background: linear-gradient(135deg, #8B5CF6, #EC4899, #06B6D4);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

.feature-card.featured h3 {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Before/After Section */
.before-after-section {
    padding: 120px 0;
    background: var(--dark);
}

.before-after-showcase {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.ba-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.ba-card {
    position: relative;
    width: 350px;
    aspect-ratio: 1;
    border-radius: 24px;
    overflow: hidden;
    background: var(--card);
    border: 1px solid var(--border);
    transition: all 0.4s ease;
}

.ba-card:hover {
    transform: scale(1.03);
    border-color: var(--border-hover);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.ba-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
}

.ba-after .ba-label {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.ba-arrow {
    font-size: 3rem;
    color: var(--primary);
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { transform: translateX(0); opacity: 1; }
    50% { transform: translateX(10px); opacity: 0.6; }
}

@media (max-width: 900px) {
    .ba-item {
        flex-direction: column;
        gap: 20px;
    }
    
    .ba-card {
        width: 100%;
        max-width: 350px;
    }
    
    .ba-arrow {
        transform: rotate(90deg);
    }
    
    @keyframes arrowPulse {
        0%, 100% { transform: rotate(90deg) translateX(0); opacity: 1; }
        50% { transform: rotate(90deg) translateX(10px); opacity: 0.6; }
    }
}