/* ============================================
   NYASACV ULTRA-MODERN DESIGN SYSTEM V2.0
   Innovation-First Approach
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    /* Premium Color Palette */
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --hero-gradient: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #764ba2 100%);
    --accent-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --premium-gradient: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);

    /* Solid Colors */
    --primary: #667eea;
    --secondary: #f5576c;
    --accent: #00d4ff;
    --dark: #0f1419;
    --darker: #0a0e13;

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);

    /* Shadows - Premium Quality */
    --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-medium: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-large: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 30px 90px rgba(0, 0, 0, 0.16);
    --shadow-colored: 0 20px 60px rgba(102, 126, 234, 0.3);
    --shadow-glow: 0 0 40px rgba(102, 126, 234, 0.6);

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.5rem;
    --space-6: 2rem;
    --space-8: 3rem;
    --space-12: 4rem;
    --space-16: 6rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
}

/* ============================================
   GLOBAL RESETS & BASE
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #ffffff;
    color: #1a202c;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   PREMIUM NAVIGATION
   ============================================ */

.nav-ultra {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 1rem 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-ultra.scrolled {
    padding: 0.75rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
}

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

.nav-link-ultra {
    position: relative;
    color: #4a5568;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-link-ultra::after {
    content: '';
    position: absolute;
    bottom: 0.25rem;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link-ultra:hover {
    color: var(--primary);
    background: rgba(102, 126, 234, 0.06);
}

.nav-link-ultra:hover::after {
    width: 50%;
}

/* ============================================
   HERO SECTION - PREMIUM
   ============================================ */

.hero-ultra {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    padding: 8rem 0 6rem;
}

.hero-ultra::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 150%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.hero-ultra::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(255,255,255,1), transparent);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.8s ease-out;
}

.hero-title-ultra {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin: 1.5rem 0;
    letter-spacing: -0.03em;
    animation: slideUp 0.8s ease-out 0.2s both;
}

.hero-title-ultra .highlight {
    position: relative;
    display: inline-block;
}

.hero-title-ultra .highlight::after {
    content: '';
    position: absolute;
    bottom: 0.125rem;
    left: 0;
    width: 100%;
    height: 0.75rem;
    background: rgba(255, 255, 255, 0.3);
    z-index: -1;
    transform: skewX(-12deg);
}

.hero-subtitle-ultra {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    animation: slideUp 0.8s ease-out 0.4s both;
}

.hero-image-ultra {
    position: relative;
    animation: slideUp 0.8s ease-out 0.6s both;
}

.hero-image-ultra img {
    border-radius: var(--radius-2xl);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.6s ease;
}

.hero-image-ultra:hover img {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

/* Floating Elements */
.floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.floating-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 10%;
    animation: float 15s ease-in-out infinite;
}

.floating-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation: float 20s ease-in-out infinite reverse;
}

.floating-3 {
    width: 80px;
    height: 80px;
    top: 40%;
    left: 15%;
    animation: float 18s ease-in-out infinite;
}

/* ============================================
   PREMIUM BUTTONS
   ============================================ */

.btn-ultra {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 1rem 2rem;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    letter-spacing: 0.02em;
}

.btn-ultra::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-ultra:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary-ultra {
    background: white;
    color: var(--primary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.btn-primary-ultra:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    color: var(--primary);
}

.btn-secondary-ultra {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.btn-secondary-ultra:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    color: white;
}

.btn-gradient-ultra {
    background: var(--accent-gradient);
    color: white;
    box-shadow: var(--shadow-colored);
}

.btn-gradient-ultra:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 60px rgba(245, 87, 108, 0.4);
    color: white;
}

/* ============================================
   FEATURE SECTION - INNOVATIVE
   ============================================ */

.section-ultra {
    padding: 8rem 0;
    position: relative;
}

.section-title-ultra {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle-ultra {
    text-align: center;
    color: #718096;
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 5rem;
    line-height: 1.7;
}

.feature-card-ultra {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

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

.feature-card-ultra:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.feature-icon-ultra {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.feature-card-ultra:hover .feature-icon-ultra {
    transform: scale(1.1) rotate(5deg);
}

.feature-title-ultra {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a202c;
}

.feature-description-ultra {
    color: #718096;
    line-height: 1.7;
    font-size: 1rem;
}

/* ============================================
   TEMPLATE CARDS - ULTRA PREMIUM
   ============================================ */

.template-card-ultra {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    cursor: pointer;
}

.template-card-ultra::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.template-card-ultra:hover::before {
    opacity: 1;
}

.template-card-ultra:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.template-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.template-card-ultra:hover .template-image {
    transform: scale(1.1);
}

.template-overlay-ultra {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 2;
}

.template-card-ultra:hover .template-overlay-ultra {
    opacity: 1;
    transform: translateY(0);
}

.template-name {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.template-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: var(--premium-gradient);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-medium);
    z-index: 3;
    letter-spacing: 0.05em;
}

/* ============================================
   PRICING - MODERN & CLEAN
   ============================================ */

.pricing-card-ultra {
    background: white;
    border-radius: var(--radius-2xl);
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-medium);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pricing-card-ultra::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--primary-gradient);
    border-radius: var(--radius-2xl);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.pricing-card-ultra:hover::before {
    opacity: 1;
}

.pricing-card-ultra:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.pricing-featured {
    background: var(--primary-gradient);
    color: white;
    transform: scale(1.05);
}

.pricing-featured::after {
    content: 'MOST POPULAR';
    position: absolute;
    top: 1.5rem;
    right: -2rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    padding: 0.5rem 3rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    transform: rotate(45deg);
    box-shadow: var(--shadow-medium);
}

.price-amount {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    margin: 1.5rem 0;
    letter-spacing: -0.02em;
}

.price-amount sup {
    font-size: 2rem;
    vertical-align: super;
}

/* ============================================
   STATISTICS SECTION
   ============================================ */

.stats-ultra {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    padding: 4rem 0;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #718096;
    font-size: 1.125rem;
    font-weight: 600;
}

/* ============================================
   TESTIMONIAL - MODERN
   ============================================ */

.testimonial-ultra {
    background: linear-gradient(135deg, #f6f8fb 0%, #ffffff 100%);
    border-radius: var(--radius-2xl);
    padding: 4rem 3rem;
    box-shadow: var(--shadow-large);
    position: relative;
    overflow: hidden;
}

.testimonial-ultra::before {
    content: '"';
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 10rem;
    font-family: Georgia, serif;
    color: rgba(102, 126, 234, 0.08);
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-size: 1.5rem;
    line-height: 1.7;
    color: #2d3748;
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: var(--shadow-medium);
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.25rem;
}

.testimonial-role {
    color: #718096;
    font-size: 1rem;
}

/* ============================================
   CTA SECTION - PREMIUM
   ============================================ */

.cta-ultra {
    background: var(--hero-gradient);
    border-radius: var(--radius-2xl);
    padding: 5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-ultra::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 15s ease-in-out infinite;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    position: relative;
    z-index: 1;
}

/* ============================================
   FOOTER - MODERN
   ============================================ */

.footer-ultra {
    background: #0a0e13;
    color: #a0aec0;
    padding: 5rem 0 2rem;
    margin-top: 8rem;
}

.footer-logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.footer-heading {
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.footer-link {
    color: #a0aec0;
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: white;
    padding-left: 0.5rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

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

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .hero-ultra {
        padding: 6rem 0 4rem;
    }

    .section-ultra {
        padding: 4rem 0;
    }

    .feature-card-ultra {
        margin-bottom: 2rem;
    }

    .pricing-card-ultra {
        margin-bottom: 2rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

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

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* ============================================
   HERO TEMPLATES SLIDER - ULTRA MODERN
   ============================================ */

.templates-slider-ultra {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--radius-2xl);
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.3);
}

.slider-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.slider-item.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
    z-index: 10;
}

.template-preview-card {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    background: white;
}

.premium-badge-slider {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.625rem 1.25rem;
    background: var(--premium-gradient);
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    z-index: 20;
    letter-spacing: 0.05em;
    animation: pulse 2s ease-in-out infinite;
}

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

.template-preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.template-preview-card:hover .template-preview-img {
    transform: scale(1.08);
}

.template-preview-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95), rgba(118, 75, 162, 0.95));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 3rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.template-preview-card:hover .template-preview-overlay {
    opacity: 1;
}

.template-preview-name {
    color: white;
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.template-preview-card:hover .template-preview-name {
    transform: translateY(0);
}

/* Slider Controls */
.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 30;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    color: var(--primary);
}

.slider-control:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.slider-prev {
    left: -30px;
}

.slider-next {
    right: -30px;
}

.slider-control svg {
    width: 28px;
    height: 28px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 30;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.slider-dot.active {
    width: 40px;
    border-radius: 6px;
    background: white;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
}

/* Responsive Slider */
@media (max-width: 1024px) {
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
    
    .slider-control {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .templates-slider-ultra {
        max-width: 100%;
    }
    
    .slider-control {
        width: 40px;
        height: 40px;
    }
    
    .slider-control svg {
        width: 20px;
        height: 20px;
    }
    
    .template-preview-name {
        font-size: 1.5rem;
    }
    
    .slider-dots {
        bottom: -50px;
    }
}

/* Hero Slider Adjustments */
.hero-image-ultra .templates-slider-ultra {
    max-width: 600px;
    margin: 0;
}

.hero-image-ultra .slider-container {
    aspect-ratio: 3 / 4;
}

.hero-image-ultra .slider-control {
    width: 50px;
    height: 50px;
}

.hero-image-ultra .slider-prev {
    left: 10px;
}

.hero-image-ultra .slider-next {
    right: 10px;
}

.hero-image-ultra .slider-dots {
    bottom: -50px;
}

/* ============================================
   HERO MOCKUP SHOWCASE - PROFESSIONAL 3D
   ============================================ */

.hero-mockup-container {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideUp 0.8s ease-out 0.6s both;
}

.mockup-stack {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 550px;
}

.mockup-card {
    position: absolute;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mockup-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.mockup-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Stacked Card Positioning */
.mockup-1 {
    z-index: 3;
    transform: translateX(0) translateY(0) rotate(0deg) scale(1);
}

.mockup-2 {
    z-index: 2;
    transform: translateX(-30px) translateY(30px) rotate(-5deg) scale(0.95);
    opacity: 0.9;
}

.mockup-3 {
    z-index: 1;
    transform: translateX(-60px) translateY(60px) rotate(-10deg) scale(0.9);
    opacity: 0.7;
}

/* Hover Effects */
.mockup-stack:hover .mockup-1 {
    transform: translateX(20px) translateY(-10px) rotate(2deg) scale(1.02);
}

.mockup-stack:hover .mockup-2 {
    transform: translateX(-20px) translateY(40px) rotate(-7deg) scale(0.97);
}

.mockup-stack:hover .mockup-3 {
    transform: translateX(-50px) translateY(70px) rotate(-12deg) scale(0.92);
}

/* Shine Effect */
.mockup-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: translateX(-100%);
    transition: transform 1s;
}

.mockup-card:hover .mockup-shine {
    transform: translateX(100%);
}

/* Premium Badge */
.premium-floating-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    z-index: 10;
    letter-spacing: 0.05em;
    animation: pulse 2s ease-in-out infinite;
}

/* Floating Feature Badges */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    font-size: 0.875rem;
    font-weight: 600;
    color: #667eea;
    z-index: 5;
    animation: floatBadge 3s ease-in-out infinite;
}

.floating-badge svg {
    width: 20px;
    height: 20px;
}

.badge-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.badge-2 {
    top: 50%;
    right: -15%;
    animation-delay: 1s;
}

.badge-3 {
    bottom: 15%;
    right: -10%;
    animation-delay: 2s;
}

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

/* Responsive */
@media (max-width: 992px) {
    .hero-mockup-container {
        height: 500px;
        margin-top: 3rem;
    }
    
    .mockup-stack {
        max-width: 350px;
        height: 450px;
    }
    
    .floating-badge {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-mockup-container {
        height: 400px;
    }
    
    .mockup-stack {
        max-width: 280px;
        height: 380px;
    }
    
    .mockup-2 {
        transform: translateX(-20px) translateY(20px) rotate(-5deg) scale(0.95);
    }
    
    .mockup-3 {
        transform: translateX(-40px) translateY(40px) rotate(-10deg) scale(0.9);
    }
}

}

.mockup-stack {
    max-width: 400px;
    height: 500px;
}

}

.badge-2 {
    top: 45%;
    right: -15%;
}

.badge-3 {
    bottom: 10%;
    right: -10%;
}

}

.badge-2 {
    top: 45%;
    right: -15%;
}

.badge-3 {
    bottom: 10%;
    right: -10%;
}

/* Reset hero padding to normal */
.hero-ultra {
    min-height: 100vh;
    padding: 8rem 0 6rem;
}

.hero-ultra .container {
    padding-top: 0 !important;
}

/* Move ONLY the right mockup section up */
.hero-mockup-container {
    height: 600px;
    margin-top: -450px;
}

.mockup-stack {
    max-width: 450px;
    height: 550px;
    margin-top: 0;
}

/* Adjust floating badges positioning */
.badge-1 {
    top: 8%;
    right: -10%;
}

.badge-2 {
    top: 50%;
    right: -15%;
}

.badge-3 {
    bottom: 15%;
    right: -10%;
}
