/* Craftiva Website - Main Stylesheet */

/* CSS Custom Properties (Variables) */
:root {
    /* Brand Colors */
    --primary: #FF6B9D;
    --primary-dark: #C44569;
    --secondary: #6BCF7F;
    --accent: #FFD93D;
    
    /* UI Colors */
    --success: #2ed573;
    --warning: #ffa502;
    --error: #ff4757;
    --info: #3742fa;
    
    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Typography */
    --font-family: 'Nunito', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    
    /* Font Weights */
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    
    /* Line Heights */
    --line-height-tight: 1.25;
    --line-height-snug: 1.375;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.625;
    --line-height-loose: 2;
    
    /* Spacing */
    --spacing-0: 0;
    --spacing-1: 0.25rem;
    --spacing-2: 0.5rem;
    --spacing-3: 0.75rem;
    --spacing-4: 1rem;
    --spacing-5: 1.25rem;
    --spacing-6: 1.5rem;
    --spacing-8: 2rem;
    --spacing-10: 2.5rem;
    --spacing-12: 3rem;
    --spacing-16: 4rem;
    --spacing-20: 5rem;
    --spacing-24: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.125rem;
    --radius: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-3xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Nunito', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
    color: var(--gray-800);
    background: linear-gradient(135deg, #f8fafc 0%, #e8f0ff 50%, #f1f5f9 100%);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 157, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(107, 207, 127, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 40% 40%, rgba(255, 217, 61, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 60% 70%, rgba(255, 107, 157, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 30% 30%, rgba(107, 207, 127, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: floatingBubbles 20s ease-in-out infinite;
}
@keyframes floatingBubbles {
    0%, 100% { 
        background-position: 0% 0%, 100% 100%, 50% 50%, 30% 70%, 70% 30%;
    }
    25% { 
        background-position: 10% 10%, 90% 80%, 60% 40%, 40% 80%, 80% 20%;
    }
    50% { 
        background-position: 20% 30%, 80% 70%, 40% 60%, 50% 60%, 60% 40%;
    }
    75% { 
        background-position: 15% 20%, 85% 90%, 55% 45%, 35% 75%, 75% 25%;
    }
}
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 70% 10%, rgba(255, 107, 157, 0.03) 0%, transparent 30%),
        radial-gradient(circle at 10% 90%, rgba(107, 207, 127, 0.03) 0%, transparent 30%),
        radial-gradient(circle at 90% 60%, rgba(255, 217, 61, 0.03) 0%, transparent 30%);
    pointer-events: none;
    z-index: -1;
    animation: floatingBubbles 25s ease-in-out infinite reverse;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    color: var(--gray-900);
    margin-bottom: var(--spacing-4);
}

h1 { font-size: var(--font-size-5xl); }
h2 { font-size: var(--font-size-4xl); }
h3 { font-size: var(--font-size-3xl); }
h4 { font-size: var(--font-size-2xl); }
h5 { font-size: var(--font-size-xl); }
h6 { font-size: var(--font-size-lg); }

p {
    margin-bottom: var(--spacing-4);
    line-height: var(--line-height-relaxed);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

/* Container */
.container {
    width: 100%;
    max-width: min(1200px, 95vw);
    margin: 0 auto;
    padding: 0 var(--spacing-4);
}

/* Navigation Components */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-4) 0;
    max-width: min(1200px, 95vw);
    margin: 0 auto;
    padding-left: var(--spacing-4);
    padding-right: var(--spacing-4);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-xl);
    color: var(--gray-900);
}

.nav-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: contain;
}

.nav-title {
    font-weight: var(--font-weight-bold);
    color: var(--gray-900);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-8);
}

.nav-link {
    font-weight: var(--font-weight-medium);
    color: var(--gray-700);
    transition: all var(--transition-fast);
    padding: var(--spacing-2) var(--spacing-3);
    border-radius: var(--radius-md);
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(255, 107, 157, 0.05);
    transform: translateY(-1px);
}

.nav-auth {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
}

.navbar .btn-outline {
    background: transparent;
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
    padding: var(--spacing-2) var(--spacing-4);
    border-radius: var(--radius-lg);
    font-weight: var(--font-weight-medium);
    transition: all var(--transition-fast);
}

.navbar .btn-outline:hover {
    background: var(--gray-50);
    color: var(--gray-900);
    border-color: var(--gray-400);
    transform: translateY(-1px);
}

.navbar .btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    padding: var(--spacing-2) var(--spacing-5);
    border-radius: var(--radius-lg);
    font-weight: var(--font-weight-semibold);
    transition: all var(--transition-fast);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.navbar .btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), #A0306E);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: var(--spacing-2);
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    transition: all var(--transition-fast);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Visual Mockup */
.hero-mockup {
    position: relative;
    max-width: min(500px, 85vw);
    margin: 0 auto;
}

.mockup-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-2xl);
}

.mockup-header {
    background: rgba(255, 255, 255, 0.3);
    height: 60px;
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-4);
    position: relative;
    overflow: hidden;
}

.mockup-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

.mockup-chart {
    background: rgba(255, 255, 255, 0.2);
    height: 120px;
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-4);
    position: relative;
    overflow: hidden;
}

.mockup-chart::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.4));
    clip-path: polygon(0 70%, 25% 60%, 50% 80%, 75% 40%, 100% 50%, 100% 100%, 0% 100%);
    animation: chartGrow 3s ease-in-out infinite;
}

.mockup-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-3);
}

.mockup-stat {
    background: rgba(255, 255, 255, 0.3);
    height: 40px;
    border-radius: var(--radius);
    animation: pulse 2s infinite;
}

.mockup-stat:nth-child(1) { animation-delay: 0s; }
.mockup-stat:nth-child(2) { animation-delay: 0.5s; }
.mockup-stat:nth-child(3) { animation-delay: 1s; }

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

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

/* Features List */
.features-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-8);
    margin-top: var(--spacing-12);
}

.feature-item {
    padding: var(--spacing-8) 0;
    border-bottom: 1px solid var(--gray-100);
    transition: all var(--transition-normal);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item:hover {
    padding-left: var(--spacing-4);
    background: linear-gradient(90deg, transparent 0%, rgba(255, 107, 157, 0.03) 100%);
}

.feature-content {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-6);
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    animation: iconFloat 3s ease-in-out infinite;
}

.feature-item:nth-child(even) .feature-icon {
    animation-delay: 1.5s;
}

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

.feature-text {
    flex: 1;
}

.feature-title {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-3);
    color: var(--gray-900);
}

.feature-description {
    color: var(--gray-600);
    line-height: var(--line-height-relaxed);
}

/* Pricing Table */
.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--spacing-8);
    margin-top: var(--spacing-12);
    max-width: min(1200px, 95vw);
    margin-left: auto;
    margin-right: auto;
}

.pricing-plan {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-2xl);
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: auto;
}
.plan-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-6);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}
.plan-icon.basic {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}
.plan-icon.pro {
    background: linear-gradient(135deg, #ec4899, #f97316);
}
.plan-icon.enterprise {
    background: linear-gradient(135deg, #10b981, #3b82f6);
}

.pricing-plan:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.pricing-plan.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 107, 157, 0.2);
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.02), var(--white));
}

.plan-badge {
    position: absolute;
    top: var(--spacing-4);
    right: var(--spacing-4);
    background: #1a1a2e;
    color: var(--white);
    padding: var(--spacing-1) var(--spacing-3);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}
.plan-content-top {
    padding: var(--spacing-8);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    flex-grow: 1;
}
.plan-content-bottom {
    padding: var(--spacing-8);
    padding-top: 0;
    border-top: 1px solid #f1f5f9;
    margin-top: auto;
}
.plan-features {
    display: grid;
    gap: var(--spacing-3);
    margin-bottom: var(--spacing-6);
}
.plan-features .feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    padding: var(--spacing-2) 0;
}
.plan-features .feature-icon {
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    flex-shrink: 0;
}
.plan-features .feature-text {
    color: var(--gray-700);
    font-size: var(--font-size-base);
    line-height: 1.5;
}
.plan-action {
    margin-top: auto;
}
.plan-action .btn {
    width: 100%;
    padding: var(--spacing-3) var(--spacing-6);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    border-radius: var(--radius-lg);
    text-decoration: none;
    text-align: center;
    display: inline-block;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
.plan-action .btn-primary {
    background: #1a1a2e;
    color: white;
    border-color: #1a1a2e;
}
.plan-action .btn-primary:hover {
    background: #16213a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 26, 46, 0.3);
}
.plan-action .btn-outline {
    background: transparent;
    color: var(--gray-700);
    border-color: #e2e8f0;
}
.plan-action .btn-outline:hover {
    background: var(--gray-50);
    border-color: var(--gray-300);
    transform: translateY(-2px);
}

.plan-info {
    margin-bottom: var(--spacing-6);
}

.plan-name {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--gray-900);
    margin-bottom: var(--spacing-3);
    margin-top: var(--spacing-4);
}
.plan-description {
    font-size: var(--font-size-base);
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: var(--spacing-6);
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: var(--spacing-1);
    margin-bottom: var(--spacing-2);
}
.plan-price-text {
    font-size: var(--font-size-base);
    color: var(--gray-600);
    font-weight: var(--font-weight-medium);
}

.currency {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--gray-900);
}

.amount {
    font-size: var(--font-size-5xl);
    font-weight: var(--font-weight-extrabold);
    color: var(--gray-900);
    line-height: 1;
}
.plan-price-wrapper {
    margin-bottom: var(--spacing-6);
}

.period {
    font-size: var(--font-size-xl);
    color: var(--gray-500);
    font-weight: var(--font-weight-semibold);
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3);
    margin-bottom: var(--spacing-8);
    flex: 1;
}

.plan-features span {
    color: var(--gray-700);
    font-size: var(--font-size-base);
}

.plan-action {
    margin-top: auto;
}

/* Features Flow Section */
.features {
    background: transparent;
    position: relative;
}

.features-flow {
    max-width: min(1000px, 95vw);
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 1.5rem);
}

.flow-step {
    display: flex;
    align-items: center;
    gap: var(--spacing-8);
    padding: var(--spacing-8) 0;
    position: relative;
    margin-bottom: var(--spacing-12);
}

.flow-step:nth-child(even) {
    flex-direction: row-reverse;
    text-align: right;
}

.flow-step:nth-child(even) .step-content {
    text-align: right;
}

.flow-step .step-number {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    background: #1e293b;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: auto;
    opacity: 1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.step-content {
    flex: 1;
    padding: 0 var(--spacing-6);
}

.step-content h3 {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    color: var(--gray-900);
    margin-bottom: var(--spacing-4);
    line-height: 1.2;
}

.step-content p {
    font-size: var(--font-size-lg);
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 0;
}

.step-visual {
    font-size: 2.5rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-2xl);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 107, 157, 0.1);
    box-shadow: 0 8px 32px rgba(255, 107, 157, 0.15);
    transition: all 0.4s ease;
    position: relative;
}

.step-visual::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: var(--radius-2xl);
    background: linear-gradient(135deg, #FF6B9D, #6BCF7F, #FFD93D);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.flow-step:hover .step-visual::before {
    opacity: 1;
}

.flow-step:hover .step-visual {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 48px rgba(255, 107, 157, 0.25);
}

/* Responsive Design for Flow */
@media (max-width: 768px) {
    .flow-step,
    .flow-step:nth-child(even) {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-6);
    }
    
    .flow-step:nth-child(even) .step-content {
        text-align: center;
    }
    
    .flow-step .step-number {
        font-size: var(--font-size-xl);
        width: 35px;
        height: 35px;
    }
    
    .step-visual {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .step-content h3 {
        font-size: var(--font-size-2xl);
    }
    
    .step-content p {
        font-size: var(--font-size-base);
    }
}

/* Real Features Section */
.real-features {
    background: transparent;
    position: relative;
}

/* Business Features Showcase */
.business-features-showcase {
    margin-top: var(--spacing-12);
    max-width: min(1200px, 95vw);
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-20);
}

.business-feature-flow {
    display: flex;
    align-items: center;
    gap: var(--spacing-12);
    padding: var(--spacing-6);
    background: transparent;
    transition: all 0.3s ease;
    margin-bottom: var(--spacing-8);
}

.business-feature-flow.reverse {
    flex-direction: row-reverse;
}

.business-visual {
    flex-shrink: 0;
}

.business-icon-large {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.business-icon-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.business-feature-flow:hover .business-icon-large {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.business-feature-flow:hover .business-icon-large img {
    transform: scale(1.1);
}

.business-content {
    flex: 1;
}

.business-content h3 {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    background: linear-gradient(45deg, #FF6B9D, #6BCF7F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-6);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-3);
    padding: var(--spacing-3) var(--spacing-4);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    position: relative;
}

.feature-item:hover {
    background: rgba(255, 107, 157, 0.05);
    transform: translateX(8px);
}

.business-feature-flow.reverse .feature-item:hover {
    transform: translateX(-8px);
}

.feature-dot {
    color: #FF6B9D;
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 2px;
}

.feature-text {
    flex: 1;
    font-size: var(--font-size-base);
    color: var(--gray-700);
    line-height: 1.6;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .business-feature-flow {
        gap: var(--spacing-8);
        padding: var(--spacing-4);
        background: transparent;
    }
    
    .business-icon-large {
        width: 90px;
        height: 90px;
        font-size: 3.5rem;
    }
    
    .business-content h3 {
        font-size: var(--font-size-2xl);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .business-features-showcase {
        gap: var(--spacing-12);
        margin-top: var(--spacing-8);
    }
    
    .business-feature-flow,
    .business-feature-flow.reverse {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-6);
        padding: var(--spacing-4);
        background: transparent;
    }
    
    .business-icon-large {
        width: 80px;
        height: 80px;
        font-size: 3rem;
    }
    
    .business-content h3 {
        font-size: var(--font-size-xl);
        margin-bottom: var(--spacing-4);
    }
    
    .feature-item {
        padding: var(--spacing-2) var(--spacing-3);
        text-align: left;
    }
    
    .feature-item:hover,
    .business-feature-flow.reverse .feature-item:hover {
        transform: translateY(-2px);
    }
    
    .features-intro {
        text-align: center;
        margin-bottom: var(--spacing-8);
    }
    
    .features-title {
        font-size: var(--font-size-3xl);
    }
    
    .features-subtitle {
        font-size: var(--font-size-lg);
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .business-features-showcase {
        gap: var(--spacing-8);
    }
    
    .business-feature-flow {
        padding: var(--spacing-3);
        gap: var(--spacing-4);
    }
    
    .business-icon-large {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }
    
    .business-content h3 {
        font-size: var(--font-size-lg);
    }
    
    .feature-text {
        font-size: var(--font-size-sm);
    }
    
    .features-title {
        font-size: var(--font-size-2xl);
    }
    
    .features-subtitle {
        font-size: var(--font-size-base);
    }
}

/* Responsive Business Features */
@media (max-width: 768px) {
    .business-header {
        gap: var(--spacing-3);
    }
    
    .business-icon {
        font-size: 2rem;
        width: 50px;
        height: 50px;
    }
    
    .business-header h3 {
        font-size: var(--font-size-xl);
    }
    
    .features-flow {
        padding-left: var(--spacing-6);
        gap: var(--spacing-2);
    }
    
    .feature-text {
        font-size: var(--font-size-sm);
    }
}

@media (max-width: 480px) {
    .features-flow {
        padding-left: var(--spacing-4);
    }
    
    .business-feature-section {
        padding-left: 0;
    }
}
.features-intro {
    text-align: center;
    margin-bottom: var(--spacing-16);
    max-width: min(700px, 90vw);
    margin-left: auto;
    margin-right: auto;
}
.features-title {
    font-size: var(--font-size-5xl);
    font-weight: var(--font-weight-extrabold);
    color: var(--gray-900);
    margin-bottom: var(--spacing-6);
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}
.features-subtitle {
    font-size: var(--font-size-xl);
    color: var(--gray-600);
    line-height: 1.6;
    font-weight: var(--font-weight-medium);
}
.power-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-8);
    margin-bottom: var(--spacing-16);
}
.power-feature {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-3xl);
    padding: var(--spacing-8);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.power-feature::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.6s ease;
}
.power-feature:hover::before {
    left: 100%;
}
.power-feature:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 107, 157, 0.15);
    border-color: rgba(255, 107, 157, 0.3);
}
.power-feature-icon {
    margin-bottom: var(--spacing-6);
}
.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.icon-circle.reports {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
}
.icon-circle.inventory {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 8px 32px rgba(240, 147, 251, 0.3);
}
.icon-circle.pos {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 8px 32px rgba(79, 172, 254, 0.3);
}
.icon-circle.appointments {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    box-shadow: 0 8px 32px rgba(67, 233, 123, 0.3);
}
.icon-circle.forms {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    box-shadow: 0 8px 32px rgba(250, 112, 154, 0.3);
}
.icon-circle.profiles {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    box-shadow: 0 8px 32px rgba(168, 237, 234, 0.3);
}
.power-feature-title {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--gray-900);
    margin-bottom: var(--spacing-4);
    line-height: 1.3;
}
.power-feature-desc {
    font-size: var(--font-size-base);
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: var(--spacing-6);
}
.power-feature-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-2);
    justify-content: center;
}
.highlight {
    background: rgba(255, 107, 157, 0.1);
    color: var(--primary);
    padding: var(--spacing-1) var(--spacing-3);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    border: 1px solid rgba(255, 107, 157, 0.2);
}
.features-cta {
    text-align: center;
    padding: var(--spacing-12) var(--spacing-8);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-3xl);
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: min(600px, 90vw);
    margin: 0 auto;
}
.cta-title {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    color: var(--gray-900);
    margin-bottom: var(--spacing-4);
}
.cta-subtitle {
    font-size: var(--font-size-lg);
    color: var(--gray-600);
    margin-bottom: var(--spacing-8);
    line-height: 1.6;
}
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: var(--spacing-4) var(--spacing-8);
    border-radius: var(--radius-2xl);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-lg);
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(255, 107, 157, 0.3);
}
.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(255, 107, 157, 0.4);
}
.showcase-grid {
    display: grid;
    gap: var(--spacing-16);
    margin-top: var(--spacing-12);
}
.showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-10);
    align-items: center;
    padding: var(--spacing-8);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-3xl);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(255, 107, 157, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.showcase-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(255, 107, 157, 0.12);
    border-color: rgba(255, 107, 157, 0.2);
}
.showcase-item.reverse {
    grid-template-columns: 1fr 1fr;
}
.showcase-item.reverse .showcase-image {
    order: 2;
}
.showcase-item.reverse .showcase-content {
    order: 1;
}
.showcase-image {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.showcase-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}
.showcase-item:hover .showcase-image img {
    transform: scale(1.05);
}
.showcase-content {
    padding: var(--spacing-6);
}
.showcase-title {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--gray-900);
    margin-bottom: var(--spacing-4);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.showcase-description {
    font-size: var(--font-size-lg);
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--spacing-6);
    font-weight: var(--font-weight-medium);
}
.showcase-features {
    list-style: none;
    display: grid;
    gap: var(--spacing-3);
}
.showcase-features li {
    display: flex;
    align-items: center;
    font-size: var(--font-size-base);
    color: var(--gray-700);
    font-weight: var(--font-weight-medium);
    padding: var(--spacing-2) 0;
    border-bottom: 1px solid rgba(255, 107, 157, 0.1);
}
.showcase-features li:last-child {
    border-bottom: none;
}
.showcase-features li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    margin-right: var(--spacing-3);
    flex-shrink: 0;
}

/* Pricing Section */
.pricing {
    padding: var(--spacing-24) 0;
    background: transparent;
}

/* About Section */
.about {
    background: transparent;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 6vw, 4rem);
    align-items: center;
    padding: 0 var(--spacing-4);
}

.about-description {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-relaxed);
    color: var(--gray-800);
    margin-bottom: var(--spacing-8);
    font-weight: var(--font-weight-normal);
}

.about-description strong {
    color: var(--gray-900);
    font-weight: var(--font-weight-bold);
}

.about-description em {
    color: var(--primary);
    font-style: italic;
    font-weight: var(--font-weight-medium);
}

.growth-together {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.05), rgba(107, 207, 127, 0.05));
    padding: var(--spacing-6);
    border-radius: var(--radius-xl);
    border-left: 4px solid var(--primary);
    margin-bottom: var(--spacing-6);
}

.growth-together h3 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    background: linear-gradient(45deg, #FF6B9D, #6BCF7F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-3);
}

.growth-together p {
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    color: var(--gray-700);
    font-weight: var(--font-weight-normal);
}

.growth-together p strong {
    color: var(--primary);
    font-weight: var(--font-weight-bold);
}

.growth-together p em {
    background: linear-gradient(45deg, #FF6B9D, #6BCF7F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
    font-weight: var(--font-weight-semibold);
}

.about-values {
    margin-top: var(--spacing-10);
    text-align: center;
}

.values-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-12);
    flex-wrap: wrap;
    margin-top: var(--spacing-8);
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 200px;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-8px);
}

.value-icon {
    font-size: 3rem;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6B9D, #6BCF7F, #FFD93D);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-4);
    box-shadow: 0 8px 32px rgba(255, 107, 157, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.value-item:hover .value-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 12px 40px rgba(255, 107, 157, 0.4);
}

.value-icon::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, #FF6B9D, #6BCF7F, #FFD93D);
    border-radius: var(--radius-full);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-item:hover .value-icon::after {
    opacity: 0.3;
}

.value-content h4 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    background: linear-gradient(45deg, #FF6B9D, #6BCF7F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-2);
    line-height: 1.3;
}

.value-content p {
    color: var(--gray-700);
    line-height: var(--line-height-relaxed);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-normal);
}

/* Mobile responsive for values */
@media (max-width: 768px) {
    .values-flow {
        flex-direction: column;
        gap: var(--spacing-8);
    }
    
    .value-item {
        max-width: 280px;
    }
    
    .value-content h4 {
        font-size: var(--font-size-base);
    }
    
    .value-content p {
        font-size: var(--font-size-xs);
    }
}

.craftiva-logo-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-12);
    text-align: center;
    min-height: 400px;
}

.logo-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-8);
    animation: logoFloat 6s ease-in-out infinite;
}

.craftiva-logo {
    width: 180px;
    height: 180px;
    border-radius: var(--radius-3xl);
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.3);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 3;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
}

.craftiva-logo:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 25px 80px rgba(255, 107, 157, 0.4);
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.15));
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.3) 0%, rgba(107, 207, 127, 0.2) 50%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 4s ease-in-out infinite;
    z-index: 1;
}

.logo-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.6;
}

.ring-1 {
    width: 220px;
    height: 220px;
    border-color: rgba(255, 107, 157, 0.4);
    animation: ringRotate 20s linear infinite;
}

.ring-2 {
    width: 260px;
    height: 260px;
    border-color: rgba(107, 207, 127, 0.3);
    animation: ringRotate 30s linear infinite reverse;
}

.ring-3 {
    width: 300px;
    height: 300px;
    border-color: rgba(255, 217, 61, 0.2);
    animation: ringRotate 40s linear infinite;
}

.logo-text {
    animation: fadeInUp 1s ease-out 0.5s both;
}

.logo-brand {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-black);
    background: linear-gradient(45deg, #FF6B9D, #6BCF7F, #FFD93D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-3);
    letter-spacing: -0.02em;
    animation: textShimmer 3s ease-in-out infinite;
}

.logo-tagline {
    font-size: var(--font-size-lg);
    color: var(--gray-600);
    font-style: italic;
    font-weight: var(--font-weight-medium);
    opacity: 0.8;
}

/* Animations */
@keyframes logoFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-10px) rotate(2deg); 
    }
}

@keyframes glowPulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
}

@keyframes ringRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

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

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

/* Mobile responsive for logo showcase */
@media (max-width: 768px) {
    .craftiva-logo {
        width: 140px;
        height: 140px;
    }
    
    .logo-glow {
        width: 160px;
        height: 160px;
    }
    
    .ring-1 { width: 180px; height: 180px; }
    .ring-2 { width: 210px; height: 210px; }
    .ring-3 { width: 240px; height: 240px; }
    
    .logo-brand {
        font-size: var(--font-size-3xl);
    }
    
    .logo-tagline {
        font-size: var(--font-size-base);
    }
}



/* Form Styles */
.contact-form {
    background: var(--gray-50);
    padding: var(--spacing-8);
    border-radius: var(--radius-2xl);
}

.form-group {
    margin-bottom: var(--spacing-6);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-2);
    font-weight: var(--font-weight-medium);
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-3);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-base);
    transition: border-color var(--transition-fast);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer Logo */
.footer-logo {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-xl);
    object-fit: contain;
    margin-bottom: var(--spacing-4);
}

/* Button Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-2);
    padding: var(--spacing-3) var(--spacing-6);
    border: 1px solid transparent;
    border-radius: var(--radius-lg);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    user-select: none;
    white-space: nowrap;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
}

.btn-primary:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--primary-dark), #A0306E);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

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

.btn-outline:hover:not(:disabled) {
    background: var(--primary);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
}

.btn-secondary:hover:not(:disabled) {
    background: var(--gray-50);
    border-color: var(--gray-400);
}

.btn-large {
    padding: var(--spacing-4) var(--spacing-8);
    font-size: var(--font-size-lg);
}

.btn-small {
    padding: var(--spacing-2) var(--spacing-4);
    font-size: var(--font-size-sm);
}

.btn-full {
    width: 100%;
}

/* Navigation Components */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-normal);
    padding: var(--spacing-3) 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-4) 0;
    max-width: min(1200px, 95vw);
    margin: 0 auto;
    padding-left: var(--spacing-4);
    padding-right: var(--spacing-4);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-xl);
    color: var(--gray-900);
}

.nav-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-8);
}

.nav-link {
    font-weight: var(--font-weight-medium);
    color: var(--gray-700);
    transition: all var(--transition-fast);
    padding: var(--spacing-2) var(--spacing-3);
    border-radius: var(--radius-md);
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(255, 107, 157, 0.05);
    transform: translateY(-1px);
}

.nav-auth {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
}

.navbar .btn-outline {
    background: transparent;
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
    padding: var(--spacing-2) var(--spacing-4);
    border-radius: var(--radius-lg);
    font-weight: var(--font-weight-medium);
    transition: all var(--transition-fast);
}

.navbar .btn-outline:hover {
    background: var(--gray-50);
    color: var(--gray-900);
    border-color: var(--gray-400);
    transform: translateY(-1px);
}

.navbar .btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    padding: var(--spacing-2) var(--spacing-5);
    border-radius: var(--radius-lg);
    font-weight: var(--font-weight-semibold);
    transition: all var(--transition-fast);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.navbar .btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), #A0306E);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: var(--spacing-2);
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    transition: all var(--transition-fast);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Language Selector */
.language-selector {
    position: fixed;
    top: 50%;
    right: var(--spacing-4);
    transform: translateY(-50%);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2);
    background: rgba(255, 255, 255, 0.95);
    padding: var(--spacing-3);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
}

.lang-btn {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    font-size: var(--font-size-lg);
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-btn:hover {
    background: rgba(255, 107, 157, 0.1);
    border-color: var(--primary);
    transform: scale(1.1);
}

.lang-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    padding: clamp(3rem, 8vh, 5rem) 0;
    position: relative;
    overflow: hidden;
    animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 70% 30%, rgba(107, 207, 127, 0.1) 0%, transparent 60%),
        linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.05) 50%, transparent 60%);
    animation: floatingElements 12s ease-in-out infinite;
    opacity: 0.8;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: meshMove 20s linear infinite;
    opacity: 0.4;
}

@keyframes heroGlow {
    0% { filter: brightness(1) saturate(1); }
    50% { filter: brightness(1.05) saturate(1.1); }
    100% { filter: brightness(1) saturate(1); }
}

@keyframes floatingElements {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }
    33% { 
        transform: translate(20px, -15px) scale(1.02);
        opacity: 0.9;
    }
    66% { 
        transform: translate(-15px, 10px) scale(0.98);
        opacity: 0.7;
    }
}

@keyframes meshMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 8vw, 6rem);
    align-items: center;
    position: relative;
    z-index: 1;
    padding: clamp(2rem, 5vw, 4rem) clamp(2rem, 5vw, 3rem);
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    z-index: 2;
}

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

.hero-title {
    font-size: clamp(2.5rem, 6vw, 3.75rem);
    font-weight: var(--font-weight-extrabold);
    color: var(--white);
    line-height: 1.4;
    margin-bottom: clamp(1rem, 3vh, 1.5rem);
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.2),
        0 8px 16px rgba(0, 0, 0, 0.1);
    animation: titleEntrance 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes titleEntrance {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    60% {
        opacity: 0.8;
        transform: translateY(-5px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: rgba(255, 255, 255, 0.95);
    line-height: var(--line-height-relaxed);
    margin-bottom: clamp(1.5rem, 4vh, 2rem);
    padding: 0 clamp(0.5rem, 2vw, 1rem);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: subtitleEntrance 1.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes subtitleEntrance {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-cta {
    display: flex;
    gap: clamp(0.75rem, 3vw, 1rem);
    margin-bottom: clamp(2rem, 5vh, 3rem);
    flex-wrap: wrap;
    justify-content: center;
}

.hero-stats {
    display: flex;
    gap: var(--spacing-8);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-extrabold);
    color: var(--white);
    display: block;
}

.stat-label {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.8);
}

.hero-visual {
    animation: slideInRight 1s ease-out;
}

.hero-mockup {
    position: relative;
    max-width: min(500px, 85vw);
    margin: 0 auto;
}

.mockup-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
}

.mockup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.pulse-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: var(--radius-full);
    animation: pulse 2s infinite;
}

.pulse-1 { top: 20%; right: 25%; animation-delay: 0s; }
.pulse-2 { top: 50%; left: 15%; animation-delay: 0.7s; }
.pulse-3 { bottom: 30%; right: 20%; animation-delay: 1.4s; }

/* Gradient Text */
.gradient-text {
    background: linear-gradient(45deg, #FFD93D 0%, #FFFFFF 25%, #6BCF7F 50%, #FFFFFF 75%, #FFD93D 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShine 3s ease-in-out infinite;
    font-weight: var(--font-weight-extrabold);
    display: inline-block;
    margin-left: 0.3em;
    white-space: nowrap;
}

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

/* Section Styles */
.section {
    padding: var(--spacing-24) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-16);
}

.section-title {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-extrabold);
    color: var(--gray-900);
    margin-bottom: var(--spacing-4);
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--gray-600);
    max-width: min(600px, 90vw);
    margin: 0 auto;
}

/* Card Components */
.card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-6);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-normal);
}

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

/* Footer */
.footer {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-top: 1px solid rgba(255, 107, 157, 0.2);
    padding: var(--spacing-12) 0 var(--spacing-8);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 107, 157, 0.05) 0%, 
        rgba(107, 207, 127, 0.05) 50%, 
        rgba(255, 217, 61, 0.05) 100%);
    pointer-events: none;
}

.footer-compact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-8);
    position: relative;
    z-index: 2;
}

.footer-brand-mini {
    display: flex;
    align-items: center;
    gap: var(--spacing-4);
    transition: all 0.2s ease;
}

.footer-brand-mini:hover {
    transform: translateY(-2px);
}

.mini-logo-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-logo {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-lg);
    object-fit: contain;
    transition: all 0.2s ease;
    z-index: 2;
    position: relative;
}

.mini-logo-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.3), rgba(107, 207, 127, 0.2), rgba(255, 217, 61, 0.3));
    border-radius: 50%;
    animation: mini-pulse 2s ease-in-out infinite;
    z-index: 1;
}

.footer-brand-mini:hover .mini-logo {
    transform: scale(1.1) rotate(5deg);
}

.brand-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-1);
}

.brand-name-mini {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    background: linear-gradient(45deg, #FF6B9D, #6BCF7F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1.2;
}

.brand-tagline-mini {
    font-size: var(--font-size-sm);
    color: var(--gray-600);
    margin: 0;
    font-style: italic;
}

.footer-contacts-row {
    display: flex;
    align-items: center;
    gap: var(--spacing-4);
}

.contact-floating {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    padding: var(--spacing-2) var(--spacing-4);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-full);
    text-decoration: none;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-floating::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.3s ease;
}

.contact-floating:hover::before {
    left: 100%;
}

.contact-floating:hover {
    transform: translateY(-2px) scale(1.02);
    text-decoration: none;
}

.email-floating {
    color: #FF6B9D;
}

.email-floating:hover {
    background: linear-gradient(45deg, #FF6B9D, #FF8FA3);
    color: white;
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.3);
}

.whatsapp-floating {
    color: #25D366;
}

.whatsapp-floating:hover {
    background: linear-gradient(45deg, #6BCF7F, #25D366);
    color: white;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.instagram-floating {
    color: #FF6B9D;
}

.instagram-floating:hover {
    background: linear-gradient(45deg, #FF6B9D, #FFD93D);
    color: white;
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.3);
}

.contact-icon-mini {
    font-size: var(--font-size-lg);
    transition: transform 0.2s ease;
}

.contact-floating:hover .contact-icon-mini {
    transform: scale(1.2);
}

/* Professional logo styles */
.contact-logo-mini {
    width: 24px;
    height: 24px;
    object-fit: contain;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1) saturate(1);
}

.contact-floating:hover .contact-logo-mini {
    transform: scale(1.15) rotate(5deg);
    filter: brightness(1.1) saturate(1.2);
}

.whatsapp-logo {
    filter: brightness(0.9) hue-rotate(10deg);
}

.instagram-logo {
    filter: brightness(0.95) contrast(1.1);
}

.whatsapp-floating:hover .whatsapp-logo {
    filter: brightness(1.2) saturate(1.3) drop-shadow(0 2px 4px rgba(37, 211, 102, 0.4));
}

.instagram-floating:hover .instagram-logo {
    filter: brightness(1.2) saturate(1.3) drop-shadow(0 2px 4px rgba(255, 107, 157, 0.4));
}

.contact-text {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
}

.footer-legal-mini {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--spacing-1);
    text-align: right;
}

.copyright-mini {
    font-size: var(--font-size-xs);
    color: var(--gray-700);
    margin: 0;
    font-weight: var(--font-weight-medium);
}

.made-with {
    font-size: var(--font-size-xs);
    color: var(--gray-600);
    margin: 0;
    font-style: italic;
}

@keyframes mini-pulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Footer scroll animations - Simplified */
.footer-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.hidden { display: none !important; }
.block { display: block !important; }
.flex { display: flex !important; }
.grid { display: grid !important; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }

.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

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

/* Back to Home Button */
.back-home {
    position: fixed;
    top: var(--spacing-4);
    left: var(--spacing-4);
    width: 48px;
    height: 48px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    box-shadow: var(--shadow);
    transition: all var(--transition-fast);
    z-index: 1000;
}

.back-home:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        padding: clamp(2rem, 6vh, 4rem) 0;
        min-height: 90vh;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: clamp(2rem, 6vh, 4rem);
        padding: clamp(1rem, 4vw, 2rem);
        max-width: 100%;
    }
    
    /* Responsive global para todos los títulos */
    h1, h2, h3, .section-title, .showcase-title, .features-title {
        font-size: clamp(1.5rem, 4vw, 2.5rem) !important;
        line-height: 1.2 !important;
        text-align: center;
        margin-bottom: var(--spacing-4);
    }
    
    .about-description, .showcase-description, p {
        font-size: clamp(0.9rem, 3vw, 1rem) !important;
        line-height: 1.5 !important;
        text-align: center;
        padding: 0 var(--spacing-2);
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-title {
        font-size: clamp(2rem, 5vw, 3rem) !important;
        line-height: 1.1 !important;
        margin-bottom: clamp(0.75rem, 2vh, 1rem);
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 3.5vw, 1.25rem) !important;
        margin-bottom: clamp(1.5rem, 4vh, 2rem);
        padding: 0 clamp(0.5rem, 2vw, 1rem);
        line-height: 1.4;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: clamp(0.75rem, 3vw, 1rem);
    }
    
    .hero-tagline .tagline-text {
        font-size: clamp(0.9rem, 3vw, 1.125rem);
    }
    
    .language-selector {
        top: var(--spacing-4);
        right: var(--spacing-3);
        transform: none;
        flex-direction: row;
        padding: var(--spacing-2);
        gap: var(--spacing-1);
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(8px);
    }
    
    .lang-btn {
        width: 36px;
        height: 36px;
        font-size: var(--font-size-base);
    }
    
    /* Container adjustments for tablet */
    .container {
        padding: clamp(2rem, 4vh, 3rem) var(--spacing-6) 0;
        max-width: 100%;
    }
    
    .navbar {
        padding: 0 var(--spacing-6);
    }
    
    /* Section spacing adjustments - this will be overridden by media queries */
    .hero {
        padding: clamp(2rem, 6vh, 4rem) 0;
    }
    
    .real-features {
        padding: var(--spacing-16) 0;
    }
}

@media (max-width: 768px) {
    /* Fix for hero title text wrapping */
    .hero-title {
        display: block;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .gradient-text {
        display: inline;
        margin-left: 0;
        white-space: normal;
    }
    
    .nav-menu {
        position: fixed;
        top: 73px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: var(--spacing-4);
        border-top: 1px solid var(--gray-200);
        box-shadow: var(--shadow-lg);
        z-index: 9999;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
        max-height: calc(100vh - 73px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-auth {
        width: 100%;
        justify-content: center;
        margin-top: var(--spacing-4);
        padding-top: var(--spacing-4);
        border-top: 1px solid var(--gray-200);
    }
    
    .hero {
        padding: clamp(1.5rem, 4vh, 3rem) 0;
        min-height: 85vh;
        margin-top: 73px; /* Evitar que el menú tape el contenido */
    }
    
    .hero-container {
        gap: clamp(1.5rem, 4vh, 2.5rem);
        padding: clamp(1rem, 4vw, 1.5rem);
        max-width: 100%;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 5vw, 2.5rem) !important;
        line-height: 1.3 !important;
        margin-bottom: clamp(0.75rem, 2vh, 1.25rem);
        word-spacing: 0.1em;
        letter-spacing: -0.02em;
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 4vw, 1.1rem) !important;
        margin-bottom: clamp(1rem, 3vh, 1.5rem);
        padding: 0 clamp(0.5rem, 2vw, 0.75rem);
        line-height: 1.5;
    }
    
    .hero-tagline .tagline-text {
        font-size: clamp(0.85rem, 3.5vw, 1rem);
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: clamp(0.5rem, 2vw, 0.75rem);
    }
    
    .phone-showcase {
        height: clamp(300px, 40vh, 400px);
    }
    
    /* Botones mejorados para tablets */
    .hero-buttons {
        justify-content: center;
        flex-direction: row;
        flex-wrap: wrap;
        gap: var(--spacing-3);
    }
    
    .store-button {
        flex: 0 1 auto;
        min-width: 180px;
    }
    
    /* Container improvements for mobile */
    .container {
        padding: clamp(1.5rem, 3vh, 2.5rem) var(--spacing-4) 0;
        max-width: 100%;
    }
    
    /* Asegurar visibilidad de todos los elementos */
    .section-title,
    .showcase-title,
    .features-title {
        font-size: clamp(1.5rem, 5vw, 2rem) !important;
        line-height: 1.2 !important;
        margin-bottom: var(--spacing-4);
        text-align: center;
    }
    
    /* Mejorar legibilidad del texto */
    p, .feature-text, .showcase-description {
        font-size: clamp(0.9rem, 3vw, 1rem) !important;
        line-height: 1.5 !important;
        margin-bottom: var(--spacing-4);
    }
    
    /* Arreglar z-index issues */
    .hero {
        position: relative;
        z-index: 1;
    }
    
    .navbar {
        z-index: 1000;
    }
    }
    
    .navbar {
        padding: 0 var(--spacing-4);
    }
    
    /* Section spacing for mobile */
    .real-features {
        padding: var(--spacing-12) 0;
    }
    
    .feature-content {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-4);
    }
    
    .pricing-table {
        grid-template-columns: 1fr;
        gap: var(--spacing-4);
    }
    
    .pricing-plan {
        padding: var(--spacing-6);
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .section {
        padding: var(--spacing-16) 0;
    }
    
    .section-title {
        font-size: var(--font-size-3xl);
    }
    
    .footer {
        padding: var(--spacing-8) 0 var(--spacing-6);
    }
    
    .footer-compact {
        flex-direction: column;
        gap: var(--spacing-6);
        text-align: center;
    }
    
    .footer-brand-mini {
        justify-content: center;
    }
    
    .mini-logo {
        width: 40px;
        height: 40px;
    }
    
    .mini-logo-pulse {
        width: 50px;
        height: 50px;
    }
    
    .brand-name-mini {
        font-size: var(--font-size-base);
    }
    
    .footer-contacts-row {
        justify-content: center;
        gap: var(--spacing-3);
    }
    
    .contact-floating {
        padding: var(--spacing-2) var(--spacing-3);
    }
    
    .contact-text {
        font-size: var(--font-size-xs);
    }
    
    .contact-logo-mini {
        width: 20px;
        height: 20px;
    }
    
    .contact-floating:hover .contact-logo-mini {
        transform: scale(1.1) rotate(3deg);
    }
    
    .footer-legal-mini {
        align-items: center;
        text-align: center;
    }
    
}

/* CSS suelto eliminado - ya está en media queries correspondientes */
    
    .footer-contacts-row {
        gap: var(--spacing-2);
        flex-wrap: wrap;
    }
    
    .contact-floating {
        padding: var(--spacing-1) var(--spacing-2);
        gap: var(--spacing-1);
    }
    
    .contact-icon-mini {
        font-size: var(--font-size-base);
    }
    
    .contact-logo-mini {
        width: 18px;
        height: 18px;
    }
    
    .contact-floating:hover .contact-logo-mini {
        transform: scale(1.05);
    }
    
    .contact-text {
        display: none;
    }
    
}

/* ===== WEBFLOW-INSPIRED STYLES ===== */

/* Estilos duplicados eliminados - hero-grid debe ser hero-container */

.hero-content {
    max-width: min(600px, 90vw);
}

/* Estilos duplicados eliminados - se mantienen los originales del hero */

.hero-tagline {
    margin-bottom: var(--spacing-8);
}

.tagline-text {
    font-size: 1.5rem;
    font-weight: var(--font-weight-extrabold);
    font-style: italic;
    display: inline-block;
    padding: var(--spacing-4) var(--spacing-10);
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-full);
    border: 2px solid rgba(255, 107, 157, 0.8);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    animation: shimmer 4s ease-in-out infinite;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    box-shadow: 0 8px 32px rgba(255, 107, 157, 0.4);
}

.tagline-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: left 1s ease;
}

.tagline-text:hover::before {
    left: 100%;
}

.tagline-text em {
    background: linear-gradient(45deg, #E85A8A, #d3efd8, #E8C02A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
    font-style: normal;
    font-weight: var(--font-weight-black);
    filter: brightness(1.2) contrast(1.1);
}

@keyframes shimmer {
    0%, 100% { 
        box-shadow: 0 8px 32px rgba(255, 107, 157, 0.6), 0 0 20px rgba(255, 107, 157, 0.4);
        border-color: rgba(255, 107, 157, 0.9);
    }
    33% { 
        box-shadow: 0 8px 32px rgba(107, 207, 127, 0.6), 0 0 20px rgba(107, 207, 127, 0.4);
        border-color: rgba(107, 207, 127, 0.9);
    }
    66% { 
        box-shadow: 0 8px 32px rgba(255, 217, 61, 0.6), 0 0 20px rgba(255, 217, 61, 0.4);
        border-color: rgba(255, 217, 61, 0.9);
    }
}

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

.hero-buttons {
    display: flex;
    gap: var(--spacing-4);
    margin-bottom: var(--spacing-8);
}

.store-button {
    text-decoration: none;
}

.store-badge {
    background: #000;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 140px;
    transition: transform 0.2s ease;
}

.store-badge:hover {
    transform: translateY(-2px);
}

.store-badge.google-play {
    background: #000;
}

.store-text-small {
    font-size: 0.75rem;
    opacity: 0.8;
}

.store-text-large {
    font-size: 1rem;
    font-weight: 600;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: clamp(50vh, 60vh, 70vh);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideInRight 1s ease-out;
}

/* Phone Showcase - Mockup realista con animaciones espectaculares */
.phone-showcase {
    position: relative;
    width: 100%;
    height: clamp(400px, 60vh, 600px);
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}


/* Mockup del teléfono */
.phone-mockup {
    position: relative;
    animation: phoneIntro 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    transform: translateY(50px) rotateX(10deg);
    opacity: 0;
}




@keyframes phoneIntro {
    to {
        transform: translateY(0) rotateX(0deg);
        opacity: 1;
    }
}

/* Efecto de partículas brillantes */
.phone-mockup .sparkles {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    pointer-events: none;
    z-index: 4;
}


.phone-mockup .sparkles::before,
.phone-mockup .sparkles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(255, 217, 61, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    animation: sparkle 3s infinite;
    opacity: 0;
    box-shadow: 0 0 10px rgba(255, 217, 61, 0.5);
}

.phone-mockup .sparkles::before {
    top: 20%;
    left: 10%;
    animation-delay: 0.5s;
}

.phone-mockup .sparkles::after {
    bottom: 30%;
    right: 15%;
    animation-delay: 1.5s;
}

@keyframes sparkle {
    0%, 100% { 
        opacity: 0; 
        transform: translateY(0) scale(0.5);
    }
    50% { 
        opacity: 1; 
        transform: translateY(-10px) scale(1.5);
    }
}

/* Partículas sutiles de celebración */
.phone-showcase .confetti {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 5;
    opacity: 0;
    animation: confettiShow 1s ease-out 2.5s forwards;
}

.phone-showcase .confetti::before,
.phone-showcase .confetti::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: linear-gradient(45deg, #FFD93D, #FF6B9D);
    border-radius: 50%;
    animation: particleFall 3s ease-out 2.5s forwards;
    opacity: 0;
    box-shadow: 
        0 0 10px rgba(255, 217, 61, 0.6),
        0 0 20px rgba(255, 107, 157, 0.4);
}

.phone-showcase .confetti::before {
    top: -20px;
    left: 30%;
}

.phone-showcase .confetti::after {
    top: -20px;
    right: 30%;
    animation-delay: 3s;
    background: linear-gradient(45deg, #6BCF7F, #FFD93D);
    box-shadow: 
        0 0 10px rgba(107, 207, 127, 0.6),
        0 0 20px rgba(255, 217, 61, 0.4);
}

@keyframes confettiShow {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes particleFall {
    0% {
        opacity: 1;
        transform: translateY(-20px) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(200px) scale(0.3);
    }
}

/* Frame del teléfono - responsive con vh y % */
.phone-frame {
    width: clamp(200px, 25vw, 280px);
    height: clamp(400px, 50vh, 540px);
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    border-radius: clamp(25px, 3vw, 35px);
    padding: clamp(15px, 2vh, 20px) clamp(10px, 1.5vw, 15px);
    position: relative;
    box-shadow: 
        0 0 0 3px #333,
        0 0 0 4px #555,
        0 clamp(15px, 3vh, 25px) clamp(30px, 5vh, 50px) rgba(0, 0, 0, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.phone-frame:hover {
    transform: translateY(-5px) rotateY(2deg);
    box-shadow: 
        0 0 0 3px #444,
        0 0 0 4px #666,
        0 35px 70px rgba(255, 107, 157, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

/* Parte superior del teléfono */
.phone-top {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.speaker {
    width: 60px;
    height: 5px;
    background: linear-gradient(90deg, #333, #666, #333);
    border-radius: 3px;
    position: relative;
}

.camera {
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, #111 30%, #444 70%, #222 100%);
    border-radius: 50%;
    position: relative;
}

.camera::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, #000 20%, transparent 50%);
    border-radius: 50%;
}

/* Pantalla del teléfono - responsive */
.phone-screen {
    width: 100%;
    height: calc(100% - clamp(20px, 4vh, 30px));
    background: #000;
    border-radius: clamp(15px, 2.5vw, 25px);
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 clamp(5px, 1vh, 10px) rgba(0, 0, 0, 0.5);
}

.screen-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.screen-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(0.9) rotateY(20deg);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.screen-image.active {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
}

/* Botón home eliminado - no hacía nada */

/* Indicadores de pantalla mejorados */
.screen-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
}

.indicator:hover {
    background: rgba(255, 107, 157, 0.6);
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(255, 107, 157, 0.4);
}

.indicator.active {
    background: rgba(255, 107, 157, 1);
    box-shadow: 
        0 0 15px rgba(255, 107, 157, 0.6),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
    transform: scale(1.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.indicator.active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    animation: indicatorGlow 2s ease-in-out infinite;
}

@keyframes indicatorGlow {
    0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

/* Efecto de resplandor del teléfono */
.phone-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, 
        rgba(255, 107, 157, 0.2) 0%,
        rgba(255, 217, 61, 0.2) 25%,
        rgba(107, 207, 127, 0.2) 50%,
        rgba(255, 107, 157, 0.2) 75%,
        rgba(255, 217, 61, 0.2) 100%
    );
    background-size: 400% 400%;
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: phoneGlowRotate 6s ease-in-out infinite;
    filter: blur(20px);
}

.phone-mockup:hover .phone-glow {
    opacity: 1;
}

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

/* Iconos flotantes eliminados para diseño más limpio */

/* === RESPONSIVE LIMPIO CON VH/VW === */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: clamp(2rem, 4vh, 4rem);
        text-align: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .phone-showcase {
        height: clamp(350px, 45vh, 450px);
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 90vh;
        padding: clamp(2rem, 8vh, 4rem) 0;
    }
    
    .phone-showcase {
        height: clamp(300px, 40vh, 380px);
    }
}

/* Estilos antiguos eliminados - ahora usando mockup realista de teléfono */

/* Estilos responsive antiguos eliminados - ahora usando nuevo sistema */

/* Estilos antiguos eliminados - ahora usando diseño simple */

/* Responsive antigua eliminada - ahora usando diseño simple */

.device-frame {
    /* Frame eliminado para mejor apariencia */
    height: 100%;
    position: relative;
}

.device-screen {
    /* Screen simplificado */
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.device-screenshot {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 16px;
    transition: transform 0.4s ease;
}

.device-mockup:hover .device-screenshot {
    transform: scale(1.02);
}

/* Animación antigua eliminada - reemplazada por gentleFloat */

/* Intro Section */
.intro-section {
    padding: clamp(3rem, 8vh, 5rem) 0;
    background: transparent;
    text-align: center;
}

.intro-content {
    max-width: min(800px, 90vw);
    margin: 0 auto clamp(2rem, 6vh, 4rem);
    padding: 0 var(--spacing-4);
}

.intro-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: var(--font-weight-extrabold);
    color: var(--gray-900);
    margin-bottom: var(--spacing-6);
    line-height: 1.2;
}

.intro-description {
    font-size: var(--font-size-xl);
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 0;
}

.workflows-section {
    margin-top: var(--spacing-16);
}

.workflows-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-12);
    text-align: center;
    background: linear-gradient(45deg, #FF6B9D, #6BCF7F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.workflows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-8);
    max-width: 900px;
    margin: 0 auto;
}

.workflow-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 157, 0.1);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-8);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.workflow-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.workflow-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 107, 157, 0.2);
    border-color: rgba(255, 107, 157, 0.3);
}

.workflow-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-4);
    margin-bottom: var(--spacing-6);
    text-align: left;
}

.workflow-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FF6B9D, #6BCF7F);
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.3);
}

.workflow-header h4 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--gray-900);
    margin: 0;
    line-height: 1.3;
}

.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4);
}

.step {
    display: flex;
    align-items: center;
    gap: var(--spacing-4);
    text-align: left;
    padding: var(--spacing-3);
    border-radius: var(--radius-lg);
    transition: background-color 0.2s ease;
}

.step:hover {
    background: rgba(255, 107, 157, 0.05);
}

.step-number {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #334155;
    color: white;
    font-size: 0.7rem;
    font-weight: var(--font-weight-bold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.step-text {
    font-size: var(--font-size-base);
    color: var(--gray-700);
    line-height: 1.5;
    flex: 1;
}

/* Responsive Design for Intro Section */
@media (max-width: 768px) {
    .workflows-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-6);
    }
    
    .workflow-card {
        padding: var(--spacing-6);
    }
    
    .workflow-header {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-3);
    }
    
    .workflow-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .intro-section {
        padding: clamp(2rem, 5vh, 3rem) 0;
    }
    
    .intro-content {
        padding: 0 var(--spacing-3);
        max-width: 95vw;
    }
    
    .intro-title {
        font-size: clamp(1.75rem, 5vw, 2rem) !important;
        line-height: 1.2;
    }
    
    .workflows-title {
        font-size: clamp(1.5rem, 4vw, 1.75rem) !important;
    }
    
    .workflow-card {
        padding: clamp(1rem, 4vw, 1.5rem);
    }
    
    /* Features Section Responsive */
    .features {
        padding: clamp(2rem, 5vh, 3rem) 0;
    }
    
    .features-flow {
        padding: 0 var(--spacing-3);
    }
    
    .flow-step {
        gap: clamp(1rem, 4vw, 2rem);
        padding: clamp(1.5rem, 4vh, 2rem) 0;
        margin-bottom: clamp(2rem, 5vh, 3rem);
    }
    
    /* About Section Responsive */
    .about-content {
        grid-template-columns: 1fr;
        gap: clamp(2rem, 5vh, 3rem);
        text-align: center;
    }
    
    .about-description {
        font-size: clamp(0.9rem, 3vw, 1rem) !important;
        text-align: center;
        padding: 0 var(--spacing-3);
    }
    
    .growth-together {
        text-align: left;
        margin: 0 auto;
        max-width: 90%;
    }
}

/* Business Types Section */
.business-types {
    margin-top: var(--spacing-12);
    text-align: center;
}

.types-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-4);
    margin-bottom: var(--spacing-8);
    flex-wrap: wrap;
}

.types-label {
    font-size: var(--font-size-lg);
    color: var(--gray-600);
    font-weight: var(--font-weight-medium);
}

.types-carousel {
    display: flex;
    align-items: center;
    gap: clamp(0.5rem, 2vw, 0.75rem);
    padding: clamp(0.5rem, 2vw, 0.75rem) clamp(1rem, 4vw, 1.5rem);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 107, 157, 0.1);
    flex-wrap: wrap;
    justify-content: center;
}

.type-item {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-2);
    padding: var(--spacing-2) var(--spacing-3);
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
    cursor: pointer;
}

.type-item:hover {
    background: rgba(255, 107, 157, 0.1);
    transform: scale(1.05);
}

.type-item.active {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.2), rgba(107, 207, 127, 0.2));
    animation: pulse 2s infinite;
}

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

.type-emoji {
    font-size: 1.5rem;
    display: inline-block;
    animation: bounce 3s infinite;
}

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

.type-name {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    color: var(--gray-800);
}

.type-separator {
    color: var(--gray-400);
    font-size: 0.8rem;
}

.types-features {
    display: flex;
    justify-content: center;
    gap: var(--spacing-4);
    flex-wrap: wrap;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-2);
    padding: var(--spacing-2) var(--spacing-4);
    background: rgba(107, 207, 127, 0.1);
    border-radius: var(--radius-full);
    border: 1px solid rgba(107, 207, 127, 0.3);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(107, 207, 127, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 207, 127, 0.2);
}

.tag-icon {
    color: #6BCF7F;
    font-weight: bold;
}

.feature-tag span:last-child {
    color: var(--gray-700);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
}

/* Workflows Showcase */
.workflows-showcase {
    margin: var(--spacing-16) 0;
    max-width: min(1200px, 95vw);
    margin-left: auto;
    margin-right: auto;
}

.workflow-flow {
    display: flex;
    align-items: center;
    gap: var(--spacing-12);
    margin-bottom: var(--spacing-16);
    padding: var(--spacing-8);
}

.workflow-flow.reverse {
    flex-direction: row-reverse;
}

.workflow-visual {
    flex-shrink: 0;
}

.workflow-icon-large {
    font-size: 4rem;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.15), rgba(107, 207, 127, 0.15));
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.workflow-icon-large::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B9D, #6BCF7F);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.workflow-flow:hover .workflow-icon-large::before {
    opacity: 0.3;
}

.workflow-content {
    flex: 1;
}

.workflow-content h3 {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    color: var(--gray-900);
    margin-bottom: var(--spacing-6);
    background: linear-gradient(45deg, #FF6B9D, #6BCF7F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4);
}

.step-flow {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    font-size: var(--font-size-lg);
    color: var(--gray-700);
    line-height: 1.6;
}

.step-bullet {
    color: #FF6B9D;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Responsive Business Types & Workflows */
@media (max-width: 768px) {
    .types-header {
        flex-direction: column;
        gap: var(--spacing-3);
    }
    
    .types-carousel {
        padding: clamp(0.5rem, 3vw, 1rem) clamp(0.75rem, 3vw, 1rem);
        gap: clamp(0.25rem, 1.5vw, 0.5rem);
        flex-wrap: wrap;
    }
    
    .type-item {
        padding: var(--spacing-1) var(--spacing-2);
    }
    
    .type-emoji {
        font-size: 1.2rem;
    }
    
    .type-name {
        font-size: var(--font-size-sm);
    }
    
    .types-features {
        gap: var(--spacing-2);
    }
    
    .feature-tag {
        padding: var(--spacing-1) var(--spacing-3);
        font-size: var(--font-size-xs);
    }
    
    .workflow-flow,
    .workflow-flow.reverse {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-6);
    }
    
    .workflow-icon-large {
        font-size: 3rem;
        width: 80px;
        height: 80px;
    }
    
    .workflow-content h3 {
        font-size: var(--font-size-2xl);
    }
}

@media (max-width: 480px) {
    .types-carousel {
        padding: clamp(0.75rem, 4vw, 1rem);
        gap: clamp(0.25rem, 2vw, 0.5rem);
        flex-wrap: wrap;
        max-width: 95vw;
        margin: 0 auto;
    }
    
    .type-separator {
        display: none;
    }
    
    .type-item {
        flex: 0 0 auto;
        min-width: max-content;
    }
}

/* Phone App Interface */
.app-header {
    padding: var(--spacing-3) 0;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: var(--spacing-4);
}

.user-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
}

.user-name {
    font-weight: 600;
    color: var(--gray-800);
}

.balance-section {
    margin: var(--spacing-6) 0;
}

.balance-card {
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
    padding: var(--spacing-6);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.balance-amount {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: var(--spacing-2);
}

.card-brand {
    position: absolute;
    bottom: var(--spacing-4);
    right: var(--spacing-4);
    font-weight: 700;
    opacity: 0.7;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3);
}

.action-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: var(--spacing-3) var(--spacing-4);
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
}

.action-btn.secondary {
    background: #f1f5f9;
    color: var(--gray-700);
}

/* Dashboard Interface */
.dashboard-header h3 {
    color: var(--gray-800);
    margin-bottom: var(--spacing-4);
    font-size: 1.25rem;
    font-weight: 600;
}

.dashboard-cards {
    display: flex;
    gap: var(--spacing-3);
    margin-bottom: var(--spacing-6);
}

.dash-card {
    flex: 1;
    padding: var(--spacing-4);
    border-radius: 12px;
    color: white;
    position: relative;
}

.dash-card.red {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.dash-card.blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.card-amount {
    font-size: 1.25rem;
    font-weight: 700;
    display: block;
}

.expenditure-section h4 {
    color: var(--gray-800);
    margin-bottom: var(--spacing-4);
    font-weight: 600;
}

.expense-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    padding: var(--spacing-3) 0;
    border-bottom: 1px solid #f1f5f9;
}

.expense-icon {
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

.expense-icon.food { background: #10b981; }
.expense-icon.clothing { background: #6366f1; }
.expense-icon.travel { background: #374151; }

.expense-category {
    flex: 1;
    color: var(--gray-700);
}

.expense-amount {
    font-weight: 600;
    color: var(--gray-800);
}

/* Chart Interface */
.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-4);
}

.chart-amount {
    font-weight: 700;
    color: var(--primary);
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 120px;
    margin-bottom: var(--spacing-4);
}

.chart-bar {
    flex: 1;
    background: var(--primary);
    border-radius: 4px 4px 0 0;
    min-height: 20px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.chart-bar.active {
    opacity: 1;
    background: var(--primary);
}

.chart-categories {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2);
}

.category-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    padding: var(--spacing-2);
    border-radius: 8px;
    opacity: 0.7;
}

.category-item.active {
    background: #f1f5f9;
    opacity: 1;
}

.category-icon {
    width: 16px;
    height: 16px;
    border-radius: 2px;
}

/* Geometric Shapes - Removed for cleaner design */
.geometric-shapes {
    display: none;
}

/* Value Section */
.value-section {
    padding: var(--spacing-24) 0;
    background: transparent;
}

.value-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-16) auto;
}

.value-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--spacing-6);
    line-height: 1.2;
}

.value-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
    max-width: min(600px, 90vw);
    margin: 0 auto;
}

.value-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-12);
}

.value-feature {
    text-align: center;
}

.feature-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-6) auto;
    color: white;
}

.feature-circle.blue {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.feature-circle.red {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.feature-circle.dark {
    background: linear-gradient(135deg, #1f2937, #111827);
}

.value-feature h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--spacing-4);
}

.value-feature p {
    color: var(--gray-600);
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

/* Design Section */
.design-showcase {
    background: transparent;
    overflow: hidden;
    position: relative;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-20);
    align-items: center;
}

.showcase-content {
    max-width: 580px;
}

.content-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: var(--spacing-2) var(--spacing-4);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-6);
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
}

.showcase-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: var(--font-weight-extrabold);
    color: var(--gray-900);
    line-height: 1.1;
    margin-bottom: var(--spacing-6);
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--primary) 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.showcase-description {
    font-size: var(--font-size-xl);
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--spacing-10);
}

.showcase-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-6);
}

.feature-highlight {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-4);
    padding: var(--spacing-4);
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
    position: relative;
}

.feature-highlight:hover {
    background: rgba(255, 107, 157, 0.05);
    transform: translateX(8px);
}

.feature-icon {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 157, 0.1);
    border-radius: var(--radius-xl);
    flex-shrink: 0;
}

.feature-info h4 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--gray-900);
    margin-bottom: var(--spacing-1);
}

.feature-info p {
    font-size: var(--font-size-base);
    color: var(--gray-600);
    margin: 0;
}

.showcase-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.visual-container {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.mobile-preview {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    animation: gentleFloat 6s ease-in-out infinite;
}

.mobile-preview .phone-frame {
    width: clamp(180px, 22vw, 240px);
    height: clamp(360px, 45vh, 460px);
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    border-radius: clamp(22px, 2.8vw, 30px);
    padding: clamp(12px, 1.8vh, 18px) clamp(8px, 1.2vw, 12px);
    box-shadow: 
        0 0 0 2px rgba(255, 255, 255, 0.1),
        0 20px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-preview .phone-frame:hover {
    transform: scale(1.05) rotateY(-3deg);
    box-shadow: 
        0 0 0 2px rgba(255, 107, 157, 0.3),
        0 25px 50px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.mobile-preview .phone-top {
    position: absolute;
    top: clamp(8px, 1.2vh, 12px);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: clamp(8px, 1.5vw, 12px);
    z-index: 3;
}

.mobile-preview .speaker {
    width: clamp(35px, 6vw, 50px);
    height: clamp(4px, 0.6vh, 6px);
    background: linear-gradient(90deg, #666, #999, #666);
    border-radius: 10px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
}

.mobile-preview .camera {
    width: clamp(8px, 1.2vw, 12px);
    height: clamp(8px, 1.2vw, 12px);
    background: radial-gradient(circle, #1a1a1a 30%, #333 70%, #555);
    border-radius: 50%;
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 2px rgba(0, 0, 0, 0.5);
    position: relative;
}

.mobile-preview .camera::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(107, 207, 127, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.preview-screen {
    border-radius: 0 0 15px 15px;
    overflow: hidden;
    position: relative;
    height: 400px;
}

.mobile-preview .phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 107, 157, 0.15) 0%,
        rgba(107, 207, 127, 0.1) 50%,
        transparent 70%
    );
    z-index: 1;
    opacity: 0.6;
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.05); }
}

.mobile-preview .phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: clamp(15px, 2.2vw, 22px);
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.mobile-preview .screen-content {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: clamp(15px, 2.2vw, 22px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-preview .mobile-screenshot {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: clamp(15px, 2.2vw, 22px);
    max-width: 100%;
    max-height: 100%;
}

.mobile-preview .phone-frame:hover .mobile-screenshot {
    transform: scale(1.02);
}

.floating-element {
    position: absolute;
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    animation: floatElement 6s ease-in-out infinite;
}

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

.elem-2 {
    top: 30%;
    left: -15%;
    animation-delay: 2s;
}

.elem-3 {
    bottom: 30%;
    right: -5%;
    animation-delay: 4s;
}

.elem-4 {
    bottom: 10%;
    left: -10%;
    animation-delay: 6s;
}

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

/* Responsive Design for Showcase */
@media (max-width: 768px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-12);
        text-align: center;
    }
    
    .showcase-content {
        order: 2;
        max-width: none;
    }
    
    .showcase-visual {
        order: 1;
    }
    
    .visual-container {
        max-width: 320px;
        margin: 0 auto;
    }
    
    .mobile-preview .phone-frame {
        transform: none !important;
        width: clamp(160px, 25vw, 200px);
        height: clamp(320px, 50vh, 380px);
    }
    
    .mobile-preview .phone-frame:hover {
        transform: scale(1.02) !important;
    }
    
    .floating-element {
        display: none;
    }
    
    .showcase-title {
        font-size: 2rem;
    }
    
    .showcase-features {
        gap: var(--spacing-4);
    }
    
    .feature-highlight {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .visual-container {
        max-width: 280px;
    }
    
    .preview-screen {
        height: 250px;
    }
    
    .showcase-title {
        font-size: 1.75rem;
    }
    
    .showcase-description {
        font-size: var(--font-size-base);
    }
}

.phone-screen {
    padding: var(--spacing-4);
    height: 100%;
}

.chart-app {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4);
    height: 100%;
}

.chart-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--spacing-3);
    align-items: center;
    padding: var(--spacing-4);
    background: #f8fafc;
    border-radius: 12px;
}

.chart-label {
    color: var(--gray-700);
    font-weight: 500;
}

.chart-value {
    color: var(--gray-900);
    font-weight: 700;
}

.chart-bar-container {
    grid-column: 1 / -1;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    margin-top: var(--spacing-2);
}

.chart-bar {
    height: 100%;
    border-radius: 4px;
    transition: width 0.5s ease;
}

.chart-bar.blue { background: #3b82f6; }
.chart-bar.red { background: #ef4444; }
.chart-bar.dark { background: #374151; }

.circle-bg {
    display: none;
}

.design-content {
    max-width: min(500px, 85vw);
}

.design-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--spacing-6);
    line-height: 1.2;
}

.design-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Responsive Styles for New Design */
@media (max-width: 1024px) {
    .hero-container, .design-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-6);
        text-align: center;
    }
    
    .hero-visual {
        order: -1;
        margin-bottom: var(--spacing-6);
    }
    
    .phone-showcase {
        height: 450px;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 var(--spacing-4);
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem) !important;
        line-height: 1.2 !important;
        margin-bottom: var(--spacing-4);
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 3vw, 1.1rem) !important;
        margin-bottom: var(--spacing-4);
    }
    
    .section-title {
        font-size: clamp(1.5rem, 4vw, 2rem) !important;
        line-height: 1.2 !important;
        text-align: center;
        margin-bottom: var(--spacing-4);
    }
    
    .device-mockup.dashboard {
        width: 300px;
        height: 350px;
    }
    
    .device-mockup.phone {
        width: 240px;
        height: 480px;
    }
    
    .device-mockup.chart-phone {
        width: 200px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
        padding: var(--spacing-12) 0;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 var(--spacing-4);
    }
    
    .hero-container, .design-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-6);
        text-align: center;
    }
    
    .hero-visual {
        order: -1;
        margin-bottom: var(--spacing-6);
    }
    
    .phone-showcase {
        height: 450px;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 var(--spacing-4);
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem) !important;
        line-height: 1.2 !important;
        margin-bottom: var(--spacing-4);
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 3vw, 1.1rem) !important;
        margin-bottom: var(--spacing-4);
    }
    
    .section-title {
        font-size: clamp(1.5rem, 4vw, 2rem) !important;
        line-height: 1.2 !important;
        text-align: center;
        margin-bottom: var(--spacing-4);
    }
    
    .hero-title {
        font-size: clamp(2rem, 6vw, 3rem) !important;
        line-height: 1.2 !important;
        margin-bottom: var(--spacing-6);
        font-weight: var(--font-weight-extrabold);
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 3vw, 1.25rem) !important;
        line-height: 1.5;
        margin-bottom: var(--spacing-6);
        max-width: 100%;
    }
    
    .hero-buttons {
        display: flex !important;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-4);
        margin-bottom: var(--spacing-8);
        width: 100%;
    }
    
    .store-button {
        display: inline-block !important;
        width: 100%;
        max-width: 200px;
        text-decoration: none;
    }
    
    .store-badge {
        display: flex !important;
        flex-direction: column;
        background: #000 !important;
        color: white !important;
        padding: 14px 20px !important;
        border-radius: 12px !important;
        text-align: center;
        min-width: 160px !important;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }
    
    .store-badge:hover {
        background: #333 !important;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    }
    
    .store-text-small {
        font-size: 0.75rem !important;
        opacity: 0.8;
        margin-bottom: 2px;
    }
    
    .store-text-large {
        font-size: 1rem !important;
        font-weight: 600;
    }
    
    .hero-tagline {
        display: block !important;
        margin: var(--spacing-6) 0 !important;
    }
    
    .tagline-text {
        font-size: 1.1rem !important;
        font-style: italic;
    }
    
    .design-grid {
        gap: var(--spacing-8);
    }
    
    .design-mockup {
        order: -1;
    }
    
    .mockup-container {
        height: 350px;
    }
    
    .phone-mockup {
        width: 220px;
        height: 380px;
    }
    
    .showcase-item {
        grid-template-columns: 1fr;
        gap: var(--spacing-6);
        text-align: center;
        padding: var(--spacing-6);
    }
    
    .showcase-item.reverse {
        grid-template-columns: 1fr;
    }
    
    .showcase-item.reverse .showcase-image,
    .showcase-item.reverse .showcase-content {
        order: initial;
    }
    
    .showcase-content {
        padding: var(--spacing-4);
    }
    
    .showcase-title {
        font-size: var(--font-size-xl);
    }
    
    .pricing-table {
        grid-template-columns: 1fr;
        gap: var(--spacing-6);
    }
    
    .pricing-plan.featured {
        transform: none;
        order: -1;
    }
}

@media (max-width: 480px) {
    /* Container improvements for small mobile */
    .container {
        padding: clamp(1rem, 2vh, 1.5rem) var(--spacing-3) 0;
        max-width: 100%;
    }
    
    /* Ocultar hero-visual solo en móviles pequeños */
    .hero-visual {
        display: none;
    }
    
    .hero {
        padding: clamp(1rem, 3vh, 2rem) 0;
        min-height: 80vh;
    }
    
    .hero-container {
        gap: clamp(1rem, 3vh, 2rem);
        padding: clamp(0.75rem, 3vw, 1.25rem);
        max-width: 100%;
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: clamp(1.25rem, 6vw, 2rem) !important;
        line-height: 1.4 !important;
        margin-bottom: clamp(0.75rem, 2vh, 1rem);
        word-break: break-word;
        hyphens: auto;
    }
    
    .hero-subtitle {
        font-size: clamp(0.85rem, 4.5vw, 1rem) !important;
        margin-bottom: clamp(0.75rem, 2vh, 1rem);
        padding: 0 clamp(0.25rem, 1.5vw, 0.5rem);
    }
    
    .hero-buttons {
        gap: var(--spacing-3);
        padding: 0 var(--spacing-4);
    }
    
    .store-badge {
        min-width: 180px !important;
        padding: 16px 24px !important;
    }
    
    .store-text-small {
        font-size: 0.7rem !important;
    }
    
    .store-text-large {
        font-size: 0.95rem !important;
    }
    
    .value-title {
        font-size: 1.75rem;
    }
    
    .design-title {
        font-size: 1.75rem;
    }
    
    .devices-container {
        transform: scale(0.7);
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .feature-circle {
        width: 60px;
        height: 60px;
    }
    
    .feature-circle svg {
        width: 24px;
        height: 24px;
    }
    
    .mockup-container {
        height: 300px;
    }
    
    .phone-mockup {
        width: 200px;
        height: 340px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .language-selector,
    .back-home,
    .hero-visual,
    .footer {
        display: none !important;
    }
    
    .hero {
        background: var(--white) !important;
        color: var(--gray-900) !important;
        min-height: auto;
    }
    
    .hero-title,
    .hero-subtitle {
        color: var(--gray-900) !important;
    }
    
    .section {
        padding: var(--spacing-8) 0;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --gray-600: #000000;
        --gray-400: #000000;
    }
    
    .btn-outline {
        border-width: 2px;
    }
}

/* Dark mode preference (basic support) */
@media (prefers-color-scheme: dark) {
    /* This would be implemented if dark mode is required */
}