/* TIENDA Landing Page - Premium Design System */

:root {
    /* Core Colors */
    --blue: #6366F1;
    --blue-dark: #4F46E5;
    --blue-light: #818CF8;
    --violet: #8B5CF6;
    --violet-dark: #7C3AED;
    --violet-light: #A78BFA;
    --cyan: #06B6D4;
    --cyan-light: #22D3EE;
    --green: #10B981;
    --green-light: #34D399;
    --orange: #F97316;
    --orange-light: #FB923C;
    
    /* Neutrals */
    --dark: #0F172A;
    --dark-light: #1E293B;
    --gray: #64748B;
    --gray-light: #94A3B8;
    --white: #FFFFFF;
    --off-white: #F8FAFC;
    --border: #E2E8F0;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    --gradient-hero: linear-gradient(135deg, #6366F1 0%, #8B5CF6 50%, #06B6D4 100%);
    --gradient-cta: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    --gradient-card-1: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    --gradient-card-2: linear-gradient(135deg, #F5F3FF 0%, #EDE9FE 100%);
    --gradient-card-3: linear-gradient(135deg, #ECFEFF 0%, #CFFAFE 100%);
    --gradient-card-4: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.12);
    --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.16);
    --shadow-xl: 0 32px 64px rgba(15, 23, 42, 0.2);
    --shadow-blue: 0 8px 24px rgba(99, 102, 241, 0.25);
    --shadow-violet: 0 8px 24px rgba(139, 92, 246, 0.25);
    --shadow-cyan: 0 8px 24px rgba(6, 182, 212, 0.25);
    
    /* Animations */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    background: var(--white);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--off-white);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--blue) 0%, var(--violet) 100%);
    border-radius: 10px;
}

/* Particle Canvas */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
}

/* Animated Background Blobs */
.bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: blobFloat 20s infinite;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: var(--blue);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: var(--violet);
    bottom: -150px;
    left: -150px;
    animation-delay: -5s;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: var(--cyan);
    top: 50%;
    left: 50%;
    animation-delay: -10s;
}

.blob-4 {
    width: 350px;
    height: 350px;
    background: var(--green);
    top: 20%;
    right: 20%;
    animation-delay: -15s;
}

@keyframes blobFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

/* Navigation */
.landing-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 1200px;
    transition: all var(--transition-smooth);
}

.nav-container {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.1);
    transition: all var(--transition-smooth);
}

.landing-nav.scrolled .nav-container {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.15);
}

.nav-logo {
    max-width: 120px;
    height: auto;
    transition: transform var(--transition-smooth);
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    position: relative;
    transition: all var(--transition-fast);
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--blue);
}

.nav-links a:hover::before {
    width: 100%;
}

.btn-nav-login {
    padding: 10px 24px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-blue);
    position: relative;
    overflow: hidden;
}

.btn-nav-login::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-nav-login:hover::before {
    width: 300px;
    height: 300px;
}

.btn-nav-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.4);
}

.btn-nav-login .material-icons {
    font-size: 16px;
}

/* Hero Section with Background Image */
.hero-section {
    min-height: 100vh;
    padding: 140px 20px 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/hero2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Dark overlay for better text readability */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.85) 0%,
        rgba(30, 41, 59, 0.75) 30%,
        rgba(30, 41, 59, 0.65) 60%,
        rgba(15, 23, 42, 0.85) 100%
    );
    z-index: 1;
}

/* Animated gradient overlay */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(99, 102, 241, 0.2) 0%,
        rgba(139, 92, 246, 0.15) 50%,
        rgba(6, 182, 212, 0.2) 100%
    );
    z-index: 1;
    animation: heroOverlayShift 10s ease-in-out infinite;
}

@keyframes heroOverlayShift {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.8;
    }
}

/* Grid overlay pattern */
.hero-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 2;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(60px, 60px);
    }
}

/* Glowing orbs */
.hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 2;
    animation: glowPulse 4s ease-in-out infinite;
    pointer-events: none;
}

.hero-glow-1 {
    background: rgba(99, 102, 241, 0.3);
    top: -100px;
    left: -100px;
}

.hero-glow-2 {
    background: rgba(139, 92, 246, 0.3);
    bottom: -100px;
    right: -100px;
    animation-delay: -2s;
}

.hero-glow-3 {
    background: rgba(6, 182, 212, 0.2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -4s;
    width: 600px;
    height: 600px;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* Floating shapes */
.floating-shape {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    animation: floatShape 6s ease-in-out infinite;
}

.shape-1 {
    top: 20%;
    left: 10%;
    width: 50px;
    height: 50px;
    border: 3px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    animation-delay: 0s;
}

.shape-2 {
    top: 60%;
    right: 15%;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(6, 182, 212, 0.3);
    border-radius: 50%;
    animation-delay: -2s;
}

.shape-3 {
    bottom: 30%;
    left: 20%;
    width: 60px;
    height: 60px;
    border: 3px solid rgba(16, 185, 129, 0.3);
    transform: rotate(45deg);
    animation-delay: -4s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Hero content positioning */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: fadeInDown 0.8s ease-out;
}

.hero-badge .pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.gradient-text {
    background: linear-gradient(135deg, #A5B4FC 0%, #C4B5FD 50%, #67E8F9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: gradientShift 3s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn-primary {
    padding: 18px 36px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-blue);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(99, 102, 241, 0.5);
}

.btn-secondary {
    padding: 18px 36px;
    background: rgba(6, 182, 212, 0.2);
    color: white;
    border: 2px solid rgba(6, 182, 212, 0.5);
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all var(--transition-smooth);
    backdrop-filter: blur(20px);
}

.btn-secondary:hover {
    background: rgba(6, 182, 212, 0.3);
    border-color: rgba(6, 182, 212, 0.8);
    transform: translateY(-3px);
}

.btn-ghost {
    padding: 18px 36px;
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all var(--transition-smooth);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 32px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-smooth);
}

.stat:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #A5B4FC 0%, #C4B5FD 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 13px;
    opacity: 0.8;
    margin-top: 4px;
}

.stat-divider {
    width: 2px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 13px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouseWheel 1.5s ease-in-out infinite;
}

@keyframes mouseWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Trusted By Section */
.trusted-section {
    padding: 40px 20px;
    background: var(--white);
    position: relative;
    z-index: 1;
    border-bottom: 1px solid var(--border);
}

.trusted-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.trusted-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gray-light);
    margin-bottom: 20px;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trusted-logo {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray);
    opacity: 0.7;
    transition: all var(--transition-fast);
}

.trusted-logo:hover {
    opacity: 1;
    color: var(--blue);
}

/* Features Section */
.features-section {
    padding: 100px 20px;
    background: var(--off-white);
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    color: var(--blue);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    color: var(--gray);
    font-size: 18px;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    position: relative;
    transition: all var(--transition-smooth);
    cursor: pointer;
    border: 2px solid transparent;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:nth-child(1) {
    background: var(--gradient-card-1);
}

.feature-card:nth-child(2) {
    background: var(--gradient-card-2);
}

.feature-card:nth-child(3) {
    background: var(--gradient-card-3);
}

.feature-card:nth-child(4) {
    background: var(--gradient-card-4);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.feature-hover-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.6s;
    pointer-events: none;
}

.feature-card:hover .feature-hover-effect {
    left: 100%;
}

.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    background: white;
}

.feature-icon-wrapper.blue {
    color: var(--blue);
    box-shadow: var(--shadow-blue);
}

.feature-icon-wrapper.violet {
    color: var(--violet);
    box-shadow: var(--shadow-violet);
}

.feature-icon-wrapper.cyan {
    color: var(--cyan);
    box-shadow: var(--shadow-cyan);
}

.feature-icon-wrapper.green {
    color: var(--green);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.25);
}

.feature-icon-wrapper .material-icons {
    font-size: 32px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.feature-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

.feature-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 48px;
    font-weight: 700;
    opacity: 0.05;
    color: var(--dark);
}

/* About Section */
.about-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    position: relative;
    overflow: hidden;
}

.about-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text {
    color: white;
}

.about-text .section-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--cyan-light);
}

.about-text .section-title {
    color: white;
}

.about-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-values {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all var(--transition-smooth);
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.value-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon.blue {
    background: rgba(99, 102, 241, 0.2);
    color: var(--blue-light);
}

.value-icon.violet {
    background: rgba(139, 92, 246, 0.2);
    color: var(--violet-light);
}

.value-icon.cyan {
    background: rgba(6, 182, 212, 0.2);
    color: var(--cyan-light);
}

.value-icon .material-icons {
    font-size: 24px;
}

.value-text strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.value-text span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
    transform: rotate(-2deg);
    transition: transform var(--transition-smooth);
}

.about-image:hover {
    transform: rotate(0deg) scale(1.02);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.floating-badge {
    position: absolute;
    padding: 16px 24px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 3s ease-in-out infinite;
}

.floating-badge.top-right {
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.floating-badge.bottom-left {
    bottom: -20px;
    left: -20px;
    animation-delay: -1.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.floating-badge .material-icons {
    font-size: 32px;
}

.floating-badge.top-right .material-icons {
    color: var(--green);
}

.floating-badge.bottom-left .material-icons {
    color: var(--blue);
}

.floating-badge strong {
    display: block;
    font-size: 14px;
}

.floating-badge span {
    font-size: 12px;
    color: var(--gray);
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 20px;
    background: var(--white);
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--off-white);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    transition: all var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: white;
}

.testimonial-quote {
    font-size: 48px;
    font-weight: 700;
    color: var(--blue);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

.author-info strong {
    display: block;
    font-size: 14px;
}

.author-info span {
    font-size: 12px;
    color: var(--gray);
}

.testimonial-rating {
    color: #F59E0B;
    font-size: 14px;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 20px;
    background: var(--off-white);
    position: relative;
    z-index: 1;
}

.pricing-card {
    max-width: 450px;
    margin: 0 auto;
    background: white;
    border-radius: 32px;
    padding: 48px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--gradient-primary);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 40px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    margin-bottom: 12px;
}

.currency {
    font-size: 28px;
    font-weight: 700;
    color: var(--violet);
}

.amount {
    font-size: 64px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.period {
    font-size: 16px;
    color: var(--gray);
}

.trial-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
    color: #065F46;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--gray);
    transition: all var(--transition-fast);
}

.pricing-features li:hover {
    color: var(--dark);
    transform: translateX(5px);
}

.pricing-features li .material-icons {
    font-size: 20px;
}

.pricing-features li:nth-child(1) .material-icons { color: var(--blue); }
.pricing-features li:nth-child(2) .material-icons { color: var(--violet); }
.pricing-features li:nth-child(3) .material-icons { color: var(--cyan); }
.pricing-features li:nth-child(4) .material-icons { color: var(--green); }
.pricing-features li:nth-child(5) .material-icons { color: var(--blue); }
.pricing-features li:nth-child(6) .material-icons { color: var(--violet); }

.btn-start-trial {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 700;
    font-size: 16px;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-blue);
    position: relative;
    overflow: hidden;
}

.btn-start-trial::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-start-trial:hover::before {
    left: 100%;
}

.btn-start-trial:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(99, 102, 241, 0.5);
}

/* Footer */
.landing-footer {
    background: var(--dark);
    color: white;
    padding: 60px 20px 40px;
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    max-width: 120px;
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 32px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all var(--transition-smooth);
}

.social-icon:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

.social-icon .material-icons {
    font-size: 24px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all var(--transition-fast);
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-smooth);
}

.footer-links a:hover {
    color: white;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-copyright {
    font-size: 13px;
    opacity: 0.5;
}

/* Login Modal */
.login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.login-modal.active {
    display: flex;
}

.login-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.login-modal-content {
    position: relative;
    z-index: 2;
    background: white;
    border-radius: 32px;
    padding: 40px;
    width: 90%;
    max-width: 440px;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 32px 64px rgba(15, 23, 42, 0.3);
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(40px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.btn-close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--off-white);
    border: none;
    border-radius: 12px;
    padding: 10px;
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.btn-close-modal:hover {
    background: #FEE2E2;
    color: #EF4444;
    transform: rotate(90deg);
}

.login-card-header {
    text-align: center;
    margin-bottom: 32px;
}

.login-icon {
    width: 72px;
    height: 72px;
    border-radius: 24px;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-violet);
    animation: bounceIn 0.6s ease-out;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

.login-icon .material-icons {
    font-size: 36px;
}

.login-card-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.login-card-header p {
    color: var(--gray);
    font-size: 15px;
}

.alert {
    padding: 14px 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-error {
    background: #FEF2F2;
    color: #DC2626;
    border: 1px solid #FECACA;
}

.alert-success {
    background: #D1FAE5;
    color: #059669;
    border: 1px solid #A7F3D0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark);
    font-weight: 600;
    font-size: 14px;
}

.input-group {
    display: flex;
    align-items: center;
    background: var(--off-white);
    border: 2px solid var(--border);
    border-radius: 14px;
    padding: 0 16px;
    transition: all var(--transition-smooth);
    position: relative;
}

.input-group:focus-within {
    border-color: var(--violet);
    background: white;
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
    transform: translateY(-2px);
}

.input-icon {
    font-size: 20px;
    color: var(--gray);
    margin-right: 12px;
    transition: color var(--transition-smooth);
}

.input-group:focus-within .input-icon {
    color: var(--violet);
}

.input-group input {
    flex: 1;
    padding: 14px 0;
    border: none;
    background: transparent;
    font-size: 15px;
    font-family: 'Quicksand', sans-serif;
    outline: none;
}

.password-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray);
    padding: 8px;
    transition: all var(--transition-fast);
    border-radius: 8px;
}

.password-toggle:hover {
    color: var(--violet);
    background: var(--off-white);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 13px;
    color: var(--gray);
    position: relative;
    padding-left: 32px;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
    background: white;
    border: 2px solid var(--border);
    border-radius: 6px;
    transition: all var(--transition-smooth);
}

.checkbox-container:hover input ~ .checkmark {
    border-color: var(--violet);
}

.checkbox-container input:checked ~ .checkmark {
    background: var(--gradient-primary);
    border-color: transparent;
    box-shadow: var(--shadow-violet);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.forgot-link {
    color: var(--violet);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all var(--transition-fast);
    position: relative;
}

.forgot-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-smooth);
}

.forgot-link:hover::after {
    width: 100%;
}

.btn-login {
    width: 100%;
    padding: 16px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Quicksand', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-violet);
    position: relative;
    overflow: hidden;
}

.btn-login::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-login:hover::before {
    left: 100%;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(139, 92, 246, 0.4);
}

.register-link {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: var(--gray);
}

.register-link a {
    color: var(--violet);
    text-decoration: none;
    font-weight: 700;
    transition: color var(--transition-fast);
}

.register-link a:hover {
    color: var(--blue);
}

/* Animation Classes */
.animate-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Shine Effect */
.shine {
    position: relative;
    overflow: hidden;
}

.shine::after {
    content: '';
    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%
    );
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-container {
        padding: 10px 16px;
    }
    
    .nav-logo {
        max-width: 100px;
    }
    
    .btn-nav-login {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .btn-nav-login span {
        display: none;
    }
    
    .hero-section {
        padding: 120px 16px 60px;
        background-position: center;
        background-size: cover;
    }
    
    .hero-section::before {
        background: linear-gradient(
            135deg,
            rgba(15, 23, 42, 0.9) 0%,
            rgba(30, 41, 59, 0.8) 100%
        );
    }
    
    .hero-title {
        font-size: 36px;
        letter-spacing: -1px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-ghost {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        font-size: 15px;
        padding: 16px 28px;
    }
    
    .hero-stats {
        gap: 16px;
    }
    
    .stat {
        padding: 16px 24px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pricing-card {
        padding: 32px 24px;
    }
    
    .amount {
        font-size: 48px;
    }
    
    .footer-links {
        gap: 20px;
    }
    
    .login-modal-content {
        padding: 32px 24px;
    }
    
    .login-card-header h2 {
        font-size: 24px;
    }
    
    .floating-badge {
        display: none;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .hero-glow {
        width: 300px;
        height: 300px;
        filter: blur(80px);
    }
    
    .hero-glow-3 {
        width: 400px;
        height: 400px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .trusted-logos {
        gap: 20px;
    }
    
    .trusted-logo {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .landing-nav {
        top: 10px;
    }
    
    .hero-section {
        padding: 100px 16px 40px;
        background-position: center;
    }
    
    .hero-section::before {
        background: rgba(15, 23, 42, 0.9);
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 10px 18px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 12px;
    }
    
    .stat {
        width: 100%;
        max-width: 200px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 15px;
    }
    
    .feature-card {
        padding: 24px;
    }
    
    .pricing-card {
        padding: 24px 16px;
    }
    
    .amount {
        font-size: 40px;
    }
    
    .login-modal-content {
        padding: 24px 16px;
    }
    
    .login-icon {
        width: 56px;
        height: 56px;
        border-radius: 18px;
    }
    
    .login-icon .material-icons {
        font-size: 28px;
    }
    
    .form-options {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .hero-glow {
        opacity: 0.2;
    }
    
    .floating-shape {
        display: none;
    }
}