:root {
    /* Brand palette adapted to logo blues */
    --primary-purple: #00A3E0; /* brand blue */
    --secondary-purple: #0077B6; /* dark blue */
    --dark-bg: #0B132B; /* deep navy */
    --darker-bg: #07111F;
    --accent: #00E5FF; /* vibrant cyan accent */
    --gradient-primary: linear-gradient(135deg, #00E5FF 0%, #00A3E0 45%, #0077B6 100%);
    --gradient-text: linear-gradient(135deg, #00E5FF 0%, #00A3E0 45%, #0077B6 100%);
    --text-light: rgba(255, 255, 255, 0.85);
    --text-muted: rgba(255, 255, 255, 0.65);
}

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

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

/* Button ghost (secondary CTA) */
.btn-ghost {
    border: 1px solid rgba(255,255,255,0.35);
    color: #0b132b;
    background: rgba(255,255,255,0.85);
    border-radius: 2rem;
    padding: 0.65rem 1.25rem;
    transition: all .25s ease;
}

.btn-ghost:hover { 
    background: #fff; 
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-2px);
}

.btn-ghost:focus-visible { 
    outline: 3px solid rgba(255,255,255,0.8); 
    outline-offset: 2px; 
}

/* Motion preferences */
@media (prefers-reduced-motion: reduce) {
    .hero-section-new::before,
    .floating-circle {
        animation: none !important;
    }
    .hero-image,
    .btn-get-started {
        transition: none !important;
    }
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #334155;
    overflow-x: hidden;
    background:
      radial-gradient(800px 400px at 100% -10%, rgba(0, 163, 224, 0.06), transparent 60%),
      radial-gradient(600px 300px at -10% 110%, rgba(0, 229, 255, 0.05), transparent 60%),
      #ffffff;
}

/* Navigation */
.navbar {
    background: rgba(11, 19, 43, 0.8) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    padding: 0.3rem 0;
    min-height: 56px;
}

/* Navbar scrolled style */
.navbar.scrolled {
    background: rgba(11, 19, 43, 0.9) !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    border-bottom-color: rgba(255,255,255,0.08);
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-text);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.navbar-brand {
    color: white !important;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Logo sizing */
.brand-logo-img {
    height: 36px;
    width: auto;
    display: block;
}

@media (max-width: 576px) {
    .brand-logo-img { height: 28px; }
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    position: relative;
    transition: color .25s ease;
}

.nav-link:hover {
    color: var(--primary-purple) !important;
}

/* Active/hover underline indicator */
.nav-link::after {
    content: '';
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: -6px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s ease;
}

.nav-link:hover::after, .nav-link.active::after, .nav-link:focus-visible::after {
    transform: scaleX(1);
}

.btn-purple {
    background: var(--primary-purple);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-purple:hover {
    background: var(--secondary-purple);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
    color: white;
}

/* Navbar Actions */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-link {
    color: var(--text-light) !important;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.btn-link:hover {
    color: var(--primary-purple) !important;
}

/* Dropdown Menu Styles */
.dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 0;
    margin-top: 0.5rem;
    min-width: 220px;
    animation: fadeInUp 0.3s ease;
}

.dropdown-item {
    color: #374151;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0 0.5rem;
    display: flex;
    align-items: center;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    color: var(--primary-purple);
    transform: translateX(5px);
}

.dropdown-item i {
    color: var(--primary-purple);
    width: 16px;
    text-align: center;
}

.dropdown-toggle::after {
    display: none;
}

.dropdown-toggle .fa-chevron-down {
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.nav-item.show .dropdown-toggle .fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-divider {
    border-top: 1px solid rgba(139, 92, 246, 0.1);
    margin: 0.5rem 1rem;
}

/* Mega Menu Styles */
.mega-dropdown .dropdown-menu {
    min-width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    padding: 2rem 0;
    margin-top: 0.5rem;
}

.mega-menu {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.mega-menu-title {
    color: #1f2937;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1rem;
    padding: 0 1.5rem;
    position: relative;
}

.mega-menu-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 1.5rem;
    width: 30px;
    height: 2px;
    background: var(--gradient-text);
    border-radius: 1px;
}

.mega-menu .dropdown-item {
    margin: 0;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    margin-bottom: 0.25rem;
}

.mega-menu .dropdown-item:hover {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    color: var(--primary-purple);
    transform: translateX(8px);
}

/* Mobile Dropdown Adjustments */
@media (max-width: 991.98px) {
    .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background: rgba(30, 27, 75, 0.95);
        border: none;
        border-radius: 0;
        box-shadow: none;
        padding: 0;
    }
    
    .dropdown-item {
        color: var(--text-light);
        padding: 0.75rem 1rem;
        margin: 0;
        border-radius: 0;
    }
    
    .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--primary-purple);
        transform: none;
    }
    
    .dropdown-item i {
        color: var(--primary-purple);
    }
    
    .mega-dropdown .dropdown-menu {
        min-width: auto;
        left: auto;
        transform: none;
        padding: 0;
    }
    
    .mega-menu {
        background: transparent;
        backdrop-filter: none;
        border: none;
        box-shadow: none;
    }
    
    .mega-menu-title {
        color: var(--text-light);
        font-size: 0.9rem;
        margin: 1rem 0 0.5rem;
        padding: 0 1rem;
    }
    
    .mega-menu-title::after {
        left: 1rem;
        width: 20px;
    }
    
    .mega-menu .dropdown-item {
        padding: 0.5rem 2rem;
        font-size: 0.9rem;
    }
    
    .mega-menu .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: none;
    }
    
    .navbar-actions {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* Hero Section New */
.hero-section-new {
    background: radial-gradient(1200px 700px at 90% -10%, rgba(0, 229, 255, 0.22), transparent 60%),
                radial-gradient(900px 500px at -10% 120%, rgba(0, 163, 224, 0.14), transparent 60%),
                #f6fbff;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section-new::before {
    content: '';
    position: absolute;
    inset: -20% -10% 0 -10%;
    background: radial-gradient(600px 300px at 10% 10%, rgba(0, 119, 182, 0.14), transparent 60%),
                radial-gradient(600px 300px at 90% 80%, rgba(0, 229, 255, 0.14), transparent 60%);
    filter: blur(40px);
    transform: translate3d(0,0,0);
    animation: heroGlow 12s ease-in-out infinite alternate;
    pointer-events: none;
}

.special-offer-badge {
    background: rgba(0, 229, 255, 0.12);
    color: #006494;
    font-weight: 600;
    border-radius: 2rem;
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    display: inline-block;
    box-shadow: 0 8px 24px rgba(0, 163, 224, 0.15);
    border: 1px solid rgba(0, 163, 224, 0.25);
}

.hero-title-new {
    font-family: 'Space Grotesk', sans-serif!important;
    font-size: 3rem;
    font-weight: 800;
    color: #23255a;
    line-height: 1.1;
}

.hero-subtitle-new {
    font-size: 1.25rem;
    color: #5a5d7a;
    max-width: 90%;
    margin: 1.5rem 0;
}

.hero-cta-new {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-get-started {
    background: linear-gradient(90deg, #00E5FF 0%, #00A3E0 50%, #0077B6 100%);
    color: #fff;
    font-weight: 700;
    border-radius: 2rem;
    padding: 0.75rem 2.5rem;
    box-shadow: 0 10px 24px rgba(0, 163, 224, 0.25), 0 4px 14px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease, background-position .4s ease;
    background-size: 200% 100%;
    background-position: 0% 50%;
}

.btn-get-started:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(0, 163, 224, 0.35), 0 6px 18px rgba(0, 0, 0, 0.12);
    background-position: 100% 50%;
}

.btn-get-started:focus-visible {
    outline: 3px solid rgba(0, 163, 224, 0.6);
    outline-offset: 2px;
}

.btn-get-started::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 40px;
    background: radial-gradient(60% 60% at 50% 50%, rgba(0, 163, 224, 0.25), transparent 70%);
    filter: blur(6px);
    opacity: 0;
    transition: opacity .3s ease;
    pointer-events: none;
}

.btn-get-started:hover::after {
    opacity: 1;
}

.no-credit-text {
    font-size: 1rem;
    color: #23255a;
    display: flex;
    align-items: center;
}

.no-credit-text i {
    color: var(--primary-purple);
}

.hero-widget {
    background: #fff;
    border-radius: 2rem;
    box-shadow: 0 8px 32px rgba(0, 163, 224, 0.18);
    padding: 2rem;
    max-width: 816px; /* 70% más ancho que 480px */
    width: 100%;
    position: relative;
    overflow: hidden; /* evita que el contenido (video/imagen) se salga del marco */
}

.hero-widget:hover {
    box-shadow: 0 24px 80px rgba(0, 163, 224, 0.28);
}

.hero-image {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px #a259ff22;
    transition: transform .6s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow .3s ease;
}

/* Ajuste para video del hero */
.hero-media {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px #a259ff22;
    transition: transform .6s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow .3s ease;
    display: block;
    aspect-ratio: 19 / 10; /* ~30% menos alto que 4:3 */
    object-fit: cover;   /* recorta el video para que cubra el contenedor */
}

.floating-circle {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 40px;
    height: 40px;
}

.floating-circle svg {
    width: 100%;
    height: 100%;
}

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

@keyframes heroGlow {
    0% { transform: translate3d(0,0,0) scale(1); }
    100% { transform: translate3d(0,-10px,0) scale(1.02); }
}

/* Why Choose Us Section New */
.why-choose-section-new {
    background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
    padding: 5rem 0;
}

.section-badge-new {
    background: #f3eaff;
    color: #7c3aed;
    font-weight: 600;
    border-radius: 2rem;
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    display: inline-block;
    box-shadow: 0 2px 8px #e0e7ff;
}

.section-title-new {
    font-size: 2.8rem;
    color: #23255a;
    font-weight: bold;
    margin-top: 1rem;
}

/* Accent underline for section titles */
.section-title-new {
    position: relative;
    display: inline-block;
}
.section-title-new::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -12px;
    width: 72px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 999px;
}

.feature-card {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    border-radius: 1.5rem;
    border: 1px solid rgba(0, 163, 224, 0.12);
    box-shadow: 0 8px 24px rgba(11,19,43,0.06);
    padding: 2.5rem 1.5rem 2rem;
    min-height: 300px;
    position: relative;
    text-align: left;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(11,19,43,0.12);
    border-color: rgba(0, 163, 224, 0.35);
}

.feature-card-icon {
    font-size: 2.5rem;
    color: #23255a;
}

.feature-card-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
    color: #ede9fe;
    font-weight: 700;
}

.feature-card-title {
    color: #23255a;
    font-weight: bold;
    margin: 1.5rem 0 0.5rem;
}

.feature-card-text {
    color: #5a5d7a;
    margin-bottom: 1rem;
}

.feature-card-link {
    color: #23255a;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.feature-card-link:hover {
    color: #7c3aed;
}

/* Shop Layout Section */
.shop-layout-section {
    padding: 100px 0;
    background: var(--dark-bg);
    color: white;
    overflow: hidden;
}

.shop-content {
    padding-right: 2rem;
}

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

.shop-mockups {
    position: relative;
}

.mockup-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    max-width: 600px;
}

.mockup {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.mockup:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.mockup-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 15px;
    text-align: center;
}

.shop-page {
    grid-column: 1 / 3;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.product-item {
    aspect-ratio: 1;
    background: var(--gradient-primary);
    border-radius: 8px;
    opacity: 0.7;
}

.product-detail {
    display: flex;
    gap: 15px;
}

.product-image {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 8px;
}

.product-info {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    height: 60px;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart-item {
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.floating-robot-small {
    position: absolute;
    top: -20px;
    right: -30px;
    animation: float 4s ease-in-out infinite;
}

.robot-mini {
    width: 80px;
    height: 100px;
}

.robot-head-mini {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    border-radius: 12px;
    margin: 0 auto 5px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.eye-mini {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
}

.robot-body-mini {
    width: 30px;
    height: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 8px;
    margin: 0 auto;
}

/* Blog Section */
.blog-section {
    padding: 100px 0;
    background: white;
}

.section-badge {
    display: inline-block;
    padding: 1rem 2rem;
    border: 2px solid var(--primary-purple);
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform .3s ease, box-shadow .3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.blog-image img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform .6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.blog-card:hover .blog-image img { 
    transform: scale(1.08); 
}

.blog-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(11, 19, 43, 0.35) 100%);
    opacity: 0;
    transition: opacity .3s ease;
}

.blog-card:hover .blog-image::after { opacity: 1; }

.blog-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 0;
}

.creative-bg {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
}

.animation-bg {
    background: linear-gradient(135deg, #4834d4 0%, #686de0 100%);
}

.creative-bg-2 {
    background: linear-gradient(135deg, #ff9ff3 0%, #f368e0 100%);
}

.blog-category {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.blog-category.creative {
    background: var(--primary-purple);
}

.blog-category.animation {
    background: var(--secondary-purple);
}

.blog-content {
    padding: 2rem;
}

.blog-date {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-content h4 {
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.learn-more {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 500;
    transition: transform .25s ease, color .25s ease;
}

.learn-more:hover {
    color: var(--secondary-purple);
    transform: translateX(5px);
}

/* Trusted By Section */
.trusted-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f6fbff 0%, #eef7ff 100%);
}

.brand-logo {
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 15px;
    height: 120px;
}

.brand-logo:hover {
    background: white;
    box-shadow: 0 20px 50px rgba(0, 163, 224, 0.18);
    transform: translateY(-5px) scale(1.05); /* sube y agranda un poco */
}

.brand-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
}

.brand-subtext {
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 2px;
}

.brand-accent {
    font-size: 0.7rem;
    color: #ef4444;
    margin-top: 2px;
}

.brand-icon {
    color: #fbbf24;
    margin-left: 5px;
}

/* Footer */
.footer {
    background: radial-gradient(1000px 600px at 90% -10%, rgba(0, 229, 255, 0.12), transparent 60%),
                linear-gradient(180deg, #0B132B 0%, #07111F 100%);
    color: white;
    padding: 80px 0 30px;
    position: relative;
}

.footer h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.newsletter-form .input-group {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

.newsletter-form .form-control {
    background: transparent;
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
}

.newsletter-form .form-control::placeholder {
    color: var(--text-muted);
}

.newsletter-form .form-control:focus {
    background: transparent;
    border: none;
    box-shadow: none;
    color: white;
}

.btn-arrow {
    background: var(--primary-purple);
    border: none;
    padding: 0.75rem 1.5rem;
    color: white;
    border-radius: 0 50px 50px 0;
}

.btn-arrow:hover {
    background: var(--secondary-purple);
    color: white;
}

.form-check-input:checked {
    background-color: var(--primary-purple);
    border-color: var(--primary-purple);
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-bottom {
    padding-top: 2rem;
}

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

.footer-links-bottom a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links-bottom a:hover {
    color: var(--primary-purple);
}

.scroll-to-top {
    position: absolute;
    bottom: 30px;
    right: 30px;
}

.btn-scroll-top {
    width: 50px;
    height: 50px;
    background: var(--primary-purple);
    border: none;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-scroll-top:hover {
    background: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 229, 255, 0.35);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    z-index: 1100;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 32px rgba(37, 211, 102, 0.5);
    background: #22c55e;
}

.whatsapp-float:focus-visible {
    outline: 3px solid rgba(37, 211, 102, 0.6);
    outline-offset: 3px;
}

@media (max-width: 576px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 24px;
        right: 14px;
        bottom: 14px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes heroGlow {
    0% { transform: translate3d(0,0,0) scale(1); }
    100% { transform: translate3d(0,-10px,0) scale(1.02); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title-new {
        font-size: 2.5rem;
    }
    
    .hero-subtitle-new {
        font-size: 1.1rem;
    }
    
    .section-badge {
        font-size: 1.2rem;
        padding: 0.75rem 1.5rem;
    }
    
    .section-badge-new {
        font-size: 0.9rem;
        padding: 0.4rem 1.2rem;
    }
    
    .section-title-new {
        font-size: 2.2rem;
    }
    
    .hero-cta-new {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .shop-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .mockup-container {
        grid-template-columns: 1fr;
    }
    
    .shop-page {
        grid-column: 1;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .floating-robot-small {
        display: none;
    }
    
    .brand-logo {
        height: 80px;
        padding: 1rem 0.5rem;
    }
    
    .brand-text {
        font-size: 1rem;
    }
    
    .feature-card {
        min-height: 280px;
        padding: 2rem 1.5rem;
    }
    
    .feature-card-icon {
        font-size: 2rem;
    }
    
    .feature-card-number {
        font-size: 2rem;
        top: 1rem;
        right: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title-new {
        font-size: 2rem;
    }
    
    .section-title-new {
        font-size: 1.8rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .hero-widget {
        padding: 1.5rem;
        max-width: 100%;
    }
    
    .btn-get-started {
        padding: 0.6rem 2rem;
        font-size: 1rem;
    }
}