:root {
    /* Primary Colors - Professional Blue-Cyan Gradient */
    --primary-500: #2563EB;
    --primary-600: #1D4ED8;
    --primary-700: #1E40AF;
    --primary-gradient: linear-gradient(135deg, #2563EB 0%, #06B6D4 100%);
    
    /* Secondary Colors */
    --secondary-500: #06B6D4;
    --secondary-600: #0891B2;
    
    /* Accent Colors - Harmonized with primary palette */
    --accent-cyan: #0891B2;
    --accent-blue-light: #0EA5E9;
    --accent-green: #10B981;
    --accent-teal: #14B8A6;
    
    /* Neutral Colors */
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    
    /* Background */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F9FAFB;
    --bg-dark: #0F172A;
    
    /* Text */
    --text-primary: #111827;
    --text-secondary: #6B7280;
    --text-light: #9CA3AF;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
}

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

body {
    font-family: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Touch targets optimization for mobile */
button,
a,
input,
textarea,
select {
    -webkit-tap-highlight-color: rgba(37, 99, 235, 0.1);
    touch-action: manipulation;
}

/* Prevent text size adjustment on iOS */
* {
    -webkit-text-size-adjust: 100%;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.1);
    border-bottom-color: rgba(37, 99, 235, 0.15);
    background: rgba(255, 255, 255, 0.99);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.125rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1.625rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.logo svg {
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(37, 99, 235, 0.2));
}

.logo:hover svg {
    transform: rotate(5deg) scale(1.1);
}

.logo-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.01em;
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
    color: var(--primary-600);
    transform: translateY(-1px);
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle:hover {
    color: var(--primary-500);
    transform: scale(1.1);
}

.mobile-menu-toggle .menu-icon,
.mobile-menu-toggle .close-icon {
    display: block;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu-toggle .close-icon {
    display: none;
}

.mobile-menu-toggle.active .menu-icon {
    display: none;
}

.mobile-menu-toggle.active .close-icon {
    display: block;
}

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

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline {
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: var(--transition-base);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-family: inherit;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: var(--shadow-md);
}

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

.btn-primary:active {
    transform: translateY(0);
    box-shadow: var(--shadow-md);
}

.btn-primary.btn-large {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
}

.btn-secondary {
    background: var(--gray-100);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--gray-200);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gray-300);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--primary-500);
    color: var(--primary-600);
}

.btn-outline.btn-large {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 2rem 0 6rem;
    margin-top: 80px;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.5;
    margin-bottom: var(--spacing-xl);
    color: var(--text-primary);
    letter-spacing: 0.02em;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 120px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
    opacity: 0.6;
    animation: slideInRight 1s ease-out 0.5s both;
}

@keyframes slideInRight {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 120px;
        opacity: 0.6;
    }
}

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

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.8;
    letter-spacing: 0.01em;
}

.hero-actions {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: var(--spacing-xl);
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--gray-200);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

/* Hero Stats - Specific styling */
.hero .stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.hero .stat-number:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.hero .stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: var(--spacing-xs);
    font-weight: 500;
    transition: color 0.3s ease;
    letter-spacing: 0.015em;
}

.hero .stat-item:hover .stat-label {
    color: var(--primary-600);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    padding: var(--spacing-md);
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 0;
    right: 0;
    width: 280px;
    animation-delay: 0s;
}

.card-2 {
    top: 120px;
    left: 0;
    width: 240px;
    animation-delay: 2s;
}

.card-3 {
    bottom: 0;
    right: 60px;
    width: 260px;
    animation-delay: 4s;
}

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

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.card-dots {
    display: flex;
    gap: 0.5rem;
}

.card-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-300);
}

.card-content {
    background: var(--gray-50);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    min-height: 200px;
}

.mock-product {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.product-image {
    width: 100%;
    height: 120px;
    background: var(--primary-gradient);
    border-radius: var(--radius-md);
}

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

.product-title {
    height: 16px;
    background: var(--gray-300);
    border-radius: 4px;
    width: 80%;
}

.product-price {
    height: 16px;
    background: var(--gray-300);
    border-radius: 4px;
    width: 40%;
}

.chart-visual {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
}

.chart-visual::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: var(--primary-gradient);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    opacity: 0.3;
}

.dashboard-visual {
    width: 100%;
    height: 150px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xs);
    padding: var(--spacing-xs);
}

.dashboard-visual::before,
.dashboard-visual::after {
    content: '';
    background: var(--primary-gradient);
    border-radius: var(--radius-sm);
    opacity: 0.2;
}

/* Hero Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: pulse 8s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-500);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary-500);
    bottom: -150px;
    left: -150px;
    animation-delay: 2s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: var(--accent-cyan);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

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

/* Features Section */
.features {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-secondary);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

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

.feature-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 1px solid var(--gray-200);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-500);
}

.feature-card:active {
    transform: translateY(-2px);
}

.feature-icon {
    margin-bottom: var(--spacing-md);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Store Types Section */
.store-types {
    padding: var(--spacing-2xl) 0;
}

.store-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.store-type-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--gray-200);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.store-type-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-500);
}

.store-type-card:active {
    transform: translateY(-4px);
}

.store-type-card.featured {
    border-color: var(--primary-500);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
}

.badge {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    background: var(--primary-gradient);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
}

.store-type-icon {
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
}

.store-type-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.store-type-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.store-type-description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

.store-type-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.store-type-features li {
    color: var(--text-secondary);
    padding-right: var(--spacing-md);
    position: relative;
}

.store-type-features li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--primary-500);
    font-weight: 700;
}

/* Section Badge */
.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-600);
    margin-bottom: var(--spacing-md);
    border: 1px solid rgba(37, 99, 235, 0.2);
}

/* How It Works Section */
.how-it-works {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F9FAFB 50%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: floatOrb 20s ease-in-out infinite;
}

.bg-orb.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-500);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.bg-orb.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary-500);
    bottom: -150px;
    left: -150px;
    animation-delay: 10s;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, 50px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}

.steps-timeline-container {
    position: relative;
    margin-top: var(--spacing-2xl);
    z-index: 1;
}

.timeline-line {
    position: absolute;
    top: 120px;
    right: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(37, 99, 235, 0.2) 10%, 
        var(--primary-500) 30%, 
        var(--secondary-500) 50%,
        var(--primary-500) 70%,
        rgba(6, 182, 212, 0.2) 90%, 
        transparent 100%);
    z-index: 0;
    opacity: 0.4;
}

.timeline-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-500) 50%, 
        transparent 100%);
    opacity: 0;
    animation: timelineFlow 3s ease-in-out infinite;
}

@keyframes timelineFlow {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }
    50% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
        transform: translateX(100%);
    }
}

.steps-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-2xl);
    position: relative;
    z-index: 1;
}

.step-item-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-item-timeline::before {
    content: '';
    position: absolute;
    top: 120px;
    width: 16px;
    height: 16px;
    background: var(--primary-gradient);
    border: 3px solid white;
    border-radius: 50%;
    z-index: 3;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0), 0 2px 8px rgba(37, 99, 235, 0.2);
}

.step-item-timeline::after {
    content: '';
    position: absolute;
    top: 120px;
    width: 16px;
    height: 16px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
}

.step-item-timeline:hover::before,
.step-item-timeline.active::before {
    transform: scale(1.3);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15), 
                0 0 0 8px rgba(37, 99, 235, 0.08),
                0 4px 12px rgba(37, 99, 235, 0.3);
    border-width: 4px;
}

.step-item-timeline:hover::after,
.step-item-timeline.active::after {
    transform: scale(2.5);
    opacity: 0;
}

.step-visual {
    position: relative;
    width: 160px;
    height: 160px;
    margin-bottom: var(--spacing-xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon-wrapper {
    width: 120px;
    height: 120px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.step-item-timeline:hover .step-icon-wrapper,
.step-item-timeline.active .step-icon-wrapper {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

.step-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 2px solid var(--primary-500);
    border-radius: 50%;
    opacity: 0;
    animation: pulse 2s ease-in-out infinite;
}

.step-item-timeline:hover .step-pulse,
.step-item-timeline.active .step-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.step-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 2px solid var(--primary-500);
    border-radius: 50%;
    opacity: 0;
}

.step-item-timeline:hover .step-ripple,
.step-item-timeline.active .step-ripple {
    animation: ripple 2s ease-out infinite;
}

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

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

.step-content-timeline {
    position: relative;
    width: 100%;
    padding-top: var(--spacing-lg);
}

.step-number-timeline {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transition: all 0.4s ease;
}

.step-item-timeline:hover .step-number-timeline,
.step-item-timeline.active .step-number-timeline {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.step-title-timeline {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.step-item-timeline:hover .step-title-timeline,
.step-item-timeline.active .step-title-timeline {
    color: var(--primary-600);
}

.step-description-timeline {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.step-features {
    display: flex;
    gap: var(--spacing-xs);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-md);
}

.step-feature-tag {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(6, 182, 212, 0.08) 100%);
    color: var(--primary-700);
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    border: 1.5px solid rgba(37, 99, 235, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    box-shadow: 0 1px 3px rgba(37, 99, 235, 0.1);
}

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

.step-item-timeline:hover .step-feature-tag::before,
.step-item-timeline.active .step-feature-tag::before {
    left: 100%;
}

.step-item-timeline:hover .step-feature-tag,
.step-item-timeline.active .step-feature-tag {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.18) 0%, rgba(6, 182, 212, 0.18) 100%);
    border-color: var(--primary-500);
    border-width: 2px;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.25), 
                0 2px 6px rgba(37, 99, 235, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: var(--primary-700);
}

/* Live Stats Section */
.live-stats {
    padding: var(--spacing-2xl) 0;
    background: var(--primary-gradient);
    color: white;
    position: relative;
    overflow: hidden;
}

.live-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: var(--spacing-2xl);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    border: 2px solid rgba(255, 255, 255, 0.25);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.stat-card:hover {
    transform: translateY(-12px) scale(1.08);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--spacing-lg);
    background: rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.stat-card:hover .stat-icon {
    transform: scale(1.15) rotate(5deg);
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Live Stats - Specific styling to avoid conflicts */
.live-stats .stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: var(--spacing-sm);
    color: #FFFFFF;
    display: inline-block;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(255, 255, 255, 0.4), 
                0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.live-stats .stat-card:hover .stat-number {
    transform: scale(1.1);
    text-shadow: 0 4px 30px rgba(255, 255, 255, 0.6), 
                 0 6px 12px rgba(0, 0, 0, 0.3);
}

.live-stats .stat-label {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.01em;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.live-stats .stat-suffix {
    font-size: 1.75rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
    display: inline-block;
    margin-right: 0.25rem;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

/* Testimonials Section */
.testimonials {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-secondary);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.testimonial-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 120px;
    color: var(--primary-500);
    opacity: 0.1;
    font-family: serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.2);
    border-color: var(--primary-500);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: var(--spacing-md);
    color: #FBBF24;
}

.testimonial-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--gray-200);
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.author-name {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
    padding: var(--spacing-2xl) 0;
    background: var(--primary-gradient);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary-600);
}

.cta-section .btn-primary:hover {
    background: var(--gray-100);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-section .logo {
    margin-bottom: var(--spacing-md);
}

.footer-description {
    color: var(--gray-400);
    line-height: 1.7;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--gray-400);
}

/* Modal */
.modal {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg);
    animation: fadeIn 0.2s ease-out;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-out, visibility 0.2s ease-out;
}

.modal.active {
    display: flex !important;
    opacity: 1;
    visibility: visible;
}

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

.modal-content {
    background: white;
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-2xl);
    animation: slideUp 0.2s ease-out;
    overflow: hidden;
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--gray-200);
    flex-shrink: 0;
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-secondary);
    padding: 0.5rem;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    position: relative;
}

.modal-close:hover {
    background: var(--gray-100);
    color: var(--text-primary);
    transform: rotate(90deg);
}

.modal-close:active {
    transform: rotate(90deg) scale(0.95);
}

.modal-close svg {
    width: 20px;
    height: 20px;
}

.modal-body {
    padding: 1.25rem;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

/* Steps Container */
.steps-container {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    position: relative;
    padding: 0.5rem 0.5rem 0.75rem;
    overflow: visible;
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 28px;
    right: var(--spacing-sm);
    left: var(--spacing-sm);
    height: 2px;
    background: var(--gray-200);
    z-index: 1;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
    overflow: visible;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-bottom: 0.375rem;
    transition: all var(--transition-base);
    position: relative;
    z-index: 3;
    overflow: visible;
}

.step-number::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--primary-500);
    opacity: 0;
    transform: scale(0.8);
    transition: all var(--transition-base);
    z-index: -1;
}

.step-item.active .step-number {
    background: linear-gradient(135deg, #2563EB 0%, #06B6D4 100%);
    border-color: #2563EB;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.15),
                0 0 0 12px rgba(37, 99, 235, 0.08),
                0 4px 12px rgba(37, 99, 235, 0.25);
    z-index: 10;
}

.step-item.active .step-number::after {
    opacity: 1;
    transform: scale(1);
    border-color: #2563EB;
    border-width: 2px;
}

.step-item.completed .step-number {
    background: var(--accent-teal);
    border-color: var(--accent-teal);
    color: white;
    animation: checkmark 0.5s ease;
}

@keyframes checkmark {
    0% { transform: scale(0.8); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

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

.step-label {
    font-size: 0.6875rem;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.step-item.active .step-label {
    color: var(--primary-600);
    font-weight: 600;
}

.step-content {
    display: none;
    animation: fadeIn var(--transition-base);
    transition: opacity var(--transition-base), transform var(--transition-base);
    min-height: 0;
}

.step-content.active {
    display: flex;
    flex-direction: column;
}

#stepContentContainer {
    transition: opacity var(--transition-base), transform var(--transition-base);
    display: flex;
    flex-direction: column;
    min-height: 0;
    flex: 1;
}

.step-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.375rem;
    color: var(--text-primary);
}

.step-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.875rem;
}

/* Store Type Selection */
.store-type-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.875rem;
    margin-bottom: 1rem;
}

.store-type-option {
    padding: 1rem 0.875rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    background: white;
    position: relative;
    overflow: hidden;
}

.store-type-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: right;
    z-index: 1;
}

.store-type-option::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(6, 182, 212, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.store-type-option:hover {
    border-color: var(--primary-500);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px -2px rgba(37, 99, 235, 0.15), 0 2px 4px -1px rgba(37, 99, 235, 0.1);
}

.store-type-option:hover::before {
    transform: scaleX(1);
}

.store-type-option:hover::after {
    opacity: 1;
}

.store-type-option.selected {
    border-color: var(--primary-500);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(6, 182, 212, 0.08) 100%);
    box-shadow: 0 4px 12px -2px rgba(37, 99, 235, 0.2), 0 2px 4px -1px rgba(37, 99, 235, 0.15);
    transform: translateY(-2px);
}

.store-type-option.selected::before {
    transform: scaleX(1);
    height: 4px;
}

.store-type-option.selected::after {
    opacity: 1;
}

.store-type-option-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 0.625rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    transition: all 0.2s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.store-type-option:hover .store-type-option-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.store-type-option.selected .store-type-option-icon {
    background: var(--primary-gradient);
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.store-type-option-title {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
    position: relative;
    z-index: 2;
    transition: color 0.2s ease;
}

.store-type-option:hover .store-type-option-title {
    color: var(--primary-600);
}

.store-type-option.selected .store-type-option-title {
    color: var(--primary-700);
}

.store-type-option-description {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.4;
    position: relative;
    z-index: 2;
}

.store-type-features-mini {
    display: flex;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
    margin-top: var(--spacing-sm);
    justify-content: center;
    position: relative;
    z-index: 2;
}

.store-type-features-mini span {
    font-size: 0.75rem;
    padding: 0.375rem 0.625rem;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.store-type-option:hover .store-type-features-mini span {
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary-600);
    border-color: rgba(37, 99, 235, 0.2);
    transform: translateY(-2px);
}

.store-type-option.selected .store-type-features-mini span {
    background: rgba(37, 99, 235, 0.15);
    color: var(--primary-700);
    border-color: rgba(37, 99, 235, 0.3);
    font-weight: 600;
}

.encouragement-message {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border-radius: var(--radius-md);
    margin-top: var(--spacing-lg);
    color: var(--primary-600);
    font-weight: 600;
    opacity: 0;
    transform: translateY(-10px);
    transition: var(--transition-base);
}

.encouragement-message svg {
    flex-shrink: 0;
}

/* Error Messages */
.error-message {
    display: none;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 1rem;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--radius-md);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #dc2626;
    font-weight: 500;
    font-size: 0.875rem;
    animation: slideDown 0.3s ease;
}

.error-message svg {
    flex-shrink: 0;
    color: #dc2626;
}

/* Animations */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

@keyframes pulse-error {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
}

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

.template-option {
    position: relative;
    overflow: hidden;
}

.template-option svg {
    width: 20px;
    height: 20px;
}

.template-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform var(--transition-base);
    transform-origin: right;
}

.template-option:hover::before,
.template-option.selected::before {
    transform: scaleX(1);
}

/* Form Elements */
.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.375rem;
    color: var(--text-primary);
    font-size: 0.875rem;
}

.form-input {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    font-family: inherit;
    transition: all var(--transition-fast);
    background: white;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    transform: translateY(-1px);
}

.form-input:hover:not(:focus) {
    border-color: var(--gray-300);
}

.form-input::placeholder {
    color: var(--text-light);
}

.form-input:invalid:not(:placeholder-shown) {
    border-color: #ef4444;
}

.form-input:valid:not(:placeholder-shown) {
    border-color: var(--success-color, #10b981);
}

textarea.form-input {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

/* Review Section - Professional UI Design */
.review-content-container {
    background: transparent;
    padding: 0;
    border-radius: 0;
    margin-bottom: 0;
}

.review-container {
    width: 100%;
}

.review-info-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.review-info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.875rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: all 0.2s ease;
}

.review-info-row:hover {
    background: white;
    border-color: var(--primary-300);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.08);
}

.review-info-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 0 0 auto;
    min-width: 0;
}

.review-info-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-600);
}

.review-info-icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

.review-info-label span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
}

.review-info-value {
    flex: 1;
    text-align: left;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    word-break: break-word;
    min-width: 0;
}

.domain-text {
    color: var(--text-primary);
    font-weight: 600;
}

.domain-ext {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.875rem;
}

/* Legacy support - backward compatibility */
.review-summary-minimal,
.review-summary-compact,
.review-summary {
    width: 100%;
}

.review-list-minimal,
.review-list-compact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.review-item-minimal,
.review-item-compact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.875rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: all 0.2s ease;
}

.review-item-minimal:hover,
.review-item-compact:hover {
    background: white;
    border-color: var(--primary-300);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.08);
}

.review-dot,
.review-item-icon-compact {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-item-text,
.review-item-content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-item-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.review-item-value-compact,
.review-item-value {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-actions {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 2px solid var(--gray-100);
    flex-shrink: 0;
    position: sticky;
    bottom: 0;
    background: white;
    z-index: 10;
}

.form-actions .btn-primary,
.form-actions .btn-secondary {
    flex: 1;
    min-width: 120px;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.form-actions .btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.form-actions .btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.form-actions .btn-primary:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.form-actions .btn-secondary {
    background: white;
    color: var(--text-primary);
    border: 2px solid var(--gray-300);
}

.form-actions .btn-secondary:hover {
    background: var(--gray-50);
    border-color: var(--gray-400);
    transform: translateY(-1px);
}

.form-actions .btn-secondary:active {
    transform: translateY(0);
}

.form-actions .btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-xl);
    }
    
    .hero-visual {
        height: 400px;
        margin-top: var(--spacing-xl);
    }
    
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 0.025em;
    }
    
    .hero-description {
        letter-spacing: 0.012em;
    }
}

@media (max-width: 768px) {
    .nav-content {
        gap: var(--spacing-sm);
        flex-wrap: nowrap;
    }
    
    .mobile-menu-toggle {
        display: block;
        order: -1; /* Put menu button first */
        margin-left: 0;
        flex-shrink: 0;
    }
    
    .logo {
        order: 0; /* Logo comes after menu button */
        margin-right: 0; /* Keep logo next to menu button */
        margin-left: 0; /* Keep logo next to menu button */
        flex-shrink: 0;
    }
    
    .nav-actions {
        order: 1; /* Actions come last */
        flex-shrink: 0;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        right: 0;
        left: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px) saturate(180%);
        flex-direction: column;
        padding: var(--spacing-lg);
        gap: var(--spacing-md);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-bottom: 1px solid rgba(37, 99, 235, 0.1);
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links a {
        width: 100%;
        text-align: center;
        padding: var(--spacing-sm) var(--spacing-md);
        border-radius: var(--radius-md);
        font-size: 1rem;
    }
    
    .nav-links a:hover {
        background: var(--gray-100);
        transform: none;
    }
    
    .nav-links a::before {
        display: none;
    }
    
    .nav-actions {
        gap: var(--spacing-xs);
    }
    
    .nav-actions .btn-secondary {
        display: none;
    }
    
    .nav-actions .btn-primary {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }
    
    .logo {
        font-size: 1.375rem;
    }
    
    .logo svg {
        width: 32px;
        height: 32px;
    }
    
    .hero {
        padding: 1.5rem 1rem 3rem;
        margin-top: 70px;
    }
    
    .hero-content {
        gap: var(--spacing-xl);
        padding: 0;
    }
    
    .hero-text {
        padding: 0;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.4;
        margin-bottom: var(--spacing-md);
        letter-spacing: 0.03em;
        padding: 0 0.5rem;
    }
    
    .hero-title::after {
        width: 60px;
        height: 3px;
        margin-top: var(--spacing-xs);
        bottom: -12px;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: var(--spacing-lg);
        letter-spacing: 0.015em;
        padding: 0 0.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: var(--spacing-sm);
        width: 100%;
        margin-bottom: var(--spacing-lg);
        padding: 0 0.5rem;
    }
    
    .hero-actions button {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        letter-spacing: 0.02em;
    }
    
    .hero-actions .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: var(--spacing-md);
        margin-top: var(--spacing-lg);
        padding: var(--spacing-md) 0.5rem 0;
        border-top: 1px solid var(--gray-200);
        justify-content: space-around;
    }
    
    .hero .stat-item {
        flex: 1;
        text-align: center;
        min-width: 0;
    }
    
    .hero .stat-number {
        font-size: 1.5rem;
        margin-bottom: 0.375rem;
        letter-spacing: 0.01em;
    }
    
    .hero .stat-label {
        font-size: 0.8125rem;
        margin-top: 0;
        letter-spacing: 0.01em;
    }
    
    .hero-visual {
        height: 200px;
        margin-top: var(--spacing-lg);
        display: none; /* Hide visual on mobile to save space */
    }
    
    .section-header {
        margin-bottom: var(--spacing-xl);
    }
    
    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .section-description {
        font-size: 0.9375rem;
    }
    
    .features-grid,
    .store-types-grid,
    .stats-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .feature-card,
    .store-type-card {
        padding: var(--spacing-lg);
    }
    
    .store-type-icon {
        width: 56px;
        height: 56px;
        margin-bottom: var(--spacing-sm);
    }
    
    .store-type-icon svg {
        width: 56px;
        height: 56px;
    }
    
    .store-type-title {
        font-size: 1.25rem;
    }
    
    .store-type-description {
        font-size: 0.875rem;
    }
    
    .steps-timeline {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        padding: var(--spacing-lg) 0;
    }
    
    .timeline-line {
        display: none;
    }
    
    .step-item-timeline::before {
        display: none;
    }
    
    .step-visual {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }
    
    .step-icon-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .step-content-timeline {
        text-align: center;
    }
    
    .step-feature-tag {
        font-size: 0.75rem;
        padding: 0.375rem 0.625rem;
    }
    
    .live-stats {
        padding: var(--spacing-xl) 0;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.875rem;
    }
    
    .testimonial-card {
        padding: var(--spacing-lg);
    }
    
    .testimonial-text {
        font-size: 0.9375rem;
    }
    
    .cta-section {
        padding: var(--spacing-xl) 0;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-description {
        font-size: 0.9375rem;
    }
    
    .step-indicator {
        flex-wrap: nowrap;
        gap: 0.5rem;
        margin-bottom: 1rem;
        padding: 0.5rem 0.25rem 0.625rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .step-indicator::-webkit-scrollbar {
        display: none;
    }
    
    .step-indicator::before {
        display: none;
    }
    
    .step-item {
        flex: 0 0 auto;
        min-width: 70px;
    }
    
    .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
        margin-bottom: 0.375rem;
    }
    
    .step-label {
        font-size: 0.625rem;
        line-height: 1.2;
    }
    
    .step-title {
        font-size: 1.125rem;
        margin-bottom: var(--spacing-xs);
    }
    
    .step-description {
        font-size: 0.875rem;
        margin-bottom: var(--spacing-md);
    }
    
    /* Horizontal scrollable store type options on tablet */
    .store-type-selection {
        display: flex;
        flex-direction: row;
        gap: 0.75rem;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: var(--gray-300) transparent;
        padding-bottom: 0.5rem;
        scroll-snap-type: x mandatory;
    }
    
    .store-type-selection::-webkit-scrollbar {
        height: 4px;
    }
    
    .store-type-selection::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .store-type-selection::-webkit-scrollbar-thumb {
        background: var(--gray-300);
        border-radius: 2px;
    }
    
    .store-type-option {
        flex: 0 0 auto;
        width: 220px;
        min-width: 220px;
        max-width: 220px;
        padding: var(--spacing-md);
        border-radius: var(--radius-md);
        scroll-snap-align: start;
    }
    
    .store-type-option-icon {
        width: 48px;
        height: 48px;
        margin-bottom: var(--spacing-sm);
    }
    
    .store-type-option-title {
        font-size: 1rem;
        margin-bottom: var(--spacing-xs);
    }
    
    .store-type-option-description {
        font-size: 0.8125rem;
        line-height: 1.5;
    }
    
    .form-group {
        margin-bottom: var(--spacing-md);
    }
    
    .form-label {
        font-size: 0.875rem;
        margin-bottom: var(--spacing-xs);
    }
    
    .form-input {
        padding: 0.75rem;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: var(--radius-md);
    }
    
    .form-actions {
        flex-direction: column-reverse;
        gap: var(--spacing-xs);
        position: sticky;
        bottom: 0;
        background: white;
        padding-top: var(--spacing-sm);
        margin-top: var(--spacing-md);
        border-top: 1px solid var(--gray-200);
    }
    
    .form-actions button {
        width: 100%;
        padding: 0.875rem 1.25rem;
        font-size: 0.9375rem;
        font-weight: 600;
    }
    
    .encouragement-message {
        padding: var(--spacing-sm);
        margin-bottom: var(--spacing-md);
        font-size: 0.875rem;
        border-radius: var(--radius-md);
    }
    
    .modal {
        padding: 0;
        align-items: flex-end;
    }
    
    .modal-content {
        margin: 0;
        max-width: 100%;
        width: 100%;
        max-height: 95vh;
        border-radius: var(--radius-xl) var(--radius-xl) 0 0;
        display: flex;
        flex-direction: column;
    }
    
    .modal-header {
        padding: var(--spacing-md) var(--spacing-md) var(--spacing-sm);
        position: sticky;
        top: 0;
        background: white;
        z-index: 10;
        border-bottom: 1px solid var(--gray-200);
    }
    
    .modal-title {
        font-size: 1.125rem;
        font-weight: 700;
    }
    
    .modal-close {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: var(--radius-md);
    }
    
    .modal-body {
        padding: var(--spacing-md);
        flex: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .review-item-minimal,
    .review-item-compact {
        padding: 0.375rem 0;
        gap: 0.5rem;
        font-size: 0.8125rem;
    }
    
    .review-dot,
    .review-item-icon-compact {
        width: 6px;
        height: 6px;
    }
    
    .review-item-text,
    .review-item-content {
        font-size: 0.8125rem;
    }
    
    .review-item-text strong,
    .review-item-label {
        font-size: 0.8125rem;
    }
    
    .review-item-label {
        font-size: 0.75rem;
    }
    
    .review-item-value {
        font-size: 0.875rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
}

/* Performance optimizations for mobile */
@media (max-width: 768px) {
    /* Disable expensive animations on mobile */
    * {
        animation-duration: 0.3s !important;
        transition-duration: 0.2s !important;
    }
    
    /* Disable backdrop-filter on mobile (expensive) */
    .navbar,
    .nav-links,
    .help-drawer,
    .modal-backdrop {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: rgba(255, 255, 255, 0.98) !important;
    }
    
    /* Disable floating animations on mobile */
    .floating-card,
    .gradient-orb,
    .bg-orb {
        animation: none !important;
        will-change: auto !important;
    }
    
    /* Simplify transforms */
    .hero-visual {
        display: none;
    }
    
    /* Reduce blur effects */
    .hero-background,
    .how-it-works-bg {
        filter: none !important;
    }
    
    /* Fast modal animations on mobile - instant show */
    .modal {
        animation: none !important;
        backdrop-filter: none !important;
        background: rgba(0, 0, 0, 0.6) !important;
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }
    
    .modal.active {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .modal:not(.active) {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }
    
    .modal-content {
        animation: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
    
    /* Instant step content display on mobile */
    #stepContentContainer {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    
    .step-content {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    
    /* Compact modal on mobile */
    .modal-content {
        max-width: 100%;
        max-height: 100vh;
        border-radius: 0;
        margin: 0;
    }
    
    .modal-header {
        padding: 0.875rem 1rem;
    }
    
    .modal-title {
        font-size: 1.125rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    /* Compact step indicator on mobile */
    .step-indicator {
        margin-bottom: 1rem;
        padding: 0.5rem 0.25rem 0.625rem;
    }
    
    .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
    
    .step-label {
        font-size: 0.625rem;
    }
    
    /* Horizontal scrollable store type options on mobile */
    .store-type-selection {
        display: flex;
        flex-direction: row;
        gap: 0.75rem;
        margin-bottom: 0.875rem;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: var(--gray-300) transparent;
        padding-bottom: 0.5rem;
        scroll-snap-type: x mandatory;
    }
    
    .store-type-selection::-webkit-scrollbar {
        height: 4px;
    }
    
    .store-type-selection::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .store-type-selection::-webkit-scrollbar-thumb {
        background: var(--gray-300);
        border-radius: 2px;
    }
    
    .store-type-selection::-webkit-scrollbar-thumb:hover {
        background: var(--gray-400);
    }
    
    .store-type-option {
        flex: 0 0 auto;
        width: 200px;
        min-width: 200px;
        max-width: 200px;
        padding: 0.875rem 0.75rem;
        scroll-snap-align: start;
    }
    
    .store-type-option-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.5rem;
    }
    
    .store-type-option-title {
        font-size: 0.875rem;
    }
    
    .store-type-option-description {
        font-size: 0.6875rem;
    }
    
    /* Compact forms on mobile */
    .form-group {
        margin-bottom: 0.875rem;
    }
    
    .form-input {
        padding: 0.5625rem 0.75rem;
        font-size: 0.875rem;
    }
    
    /* Compact review on mobile */
    .review-content-container {
        padding: 0.875rem;
        margin-bottom: 0.875rem;
    }
    
    .review-item-card,
    .review-item-compact {
        padding: 0.625rem;
        gap: 0.625rem;
    }
    
    .review-item-icon,
    .review-item-icon-compact {
        width: 32px;
        height: 32px;
    }
    
    .review-item-icon-compact svg,
    .review-item-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .review-item-value-compact,
    .review-item-value {
        font-size: 0.8125rem;
    }
    
    .review-item-label {
        font-size: 0.6875rem;
    }
    
    .review-title-compact,
    .review-header-title {
        font-size: 0.9375rem;
    }
    
    .review-note-compact,
    .review-note {
        padding: 0.5rem;
        font-size: 0.6875rem;
    }
    
    /* Fixed form actions on mobile */
    .form-actions {
        position: sticky;
        bottom: 0;
        background: white;
        margin-top: 1rem;
        padding-top: 0.875rem;
        padding-bottom: 0.5rem;
        border-top: 1px solid var(--gray-200);
        box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
    }
    
    .form-actions button {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .navbar {
        padding: 0;
    }
    
    .nav-content {
        padding: 0.875rem 0;
    }
    
    .logo {
        font-size: 1.25rem;
    }
    
    .logo svg {
        width: 28px;
        height: 28px;
    }
    
    .hero {
        padding: 1.25rem 0.75rem 2.5rem;
        margin-top: 65px;
    }
    
    .hero-content {
        gap: var(--spacing-lg);
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.35;
        margin-bottom: var(--spacing-sm);
        letter-spacing: 0.025em;
        padding: 0 0.25rem;
    }
    
    .hero-title::after {
        width: 50px;
        height: 2.5px;
        bottom: -10px;
    }
    
    .hero-description {
        font-size: 0.9375rem;
        line-height: 1.65;
        margin-bottom: var(--spacing-md);
        letter-spacing: 0.012em;
        padding: 0 0.25rem;
    }
    
    .hero-actions {
        margin-bottom: var(--spacing-md);
        padding: 0 0.25rem;
    }
    
    .hero-actions button {
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
        letter-spacing: 0.015em;
    }
    
    .hero-stats {
        gap: var(--spacing-sm);
        padding: var(--spacing-sm) 0.25rem 0;
        margin-top: var(--spacing-md);
    }
    
    .hero .stat-number {
        font-size: 1.375rem;
        letter-spacing: 0.01em;
    }
    
    .hero .stat-label {
        font-size: 0.75rem;
        letter-spacing: 0.01em;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-description {
        font-size: 0.875rem;
    }
    
    .feature-card,
    .store-type-card {
        padding: var(--spacing-md);
    }
    
    .store-type-icon {
        width: 48px;
        height: 48px;
    }
    
    .store-type-icon svg {
        width: 48px;
        height: 48px;
    }
    
    .step-visual {
        width: 100px;
        height: 100px;
    }
    
    .step-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .modal-content {
        max-height: 98vh;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }
    
    .modal-header {
        padding: var(--spacing-sm) var(--spacing-sm) var(--spacing-xs);
    }
    
    .modal-title {
        font-size: 1rem;
    }
    
    .modal-body {
        padding: var(--spacing-sm);
    }
    
    .step-indicator {
        margin-bottom: var(--spacing-sm);
        padding-top: 8px;
    }
    
    .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
    
    .step-label {
        font-size: 0.6875rem;
    }
    
    .step-title {
        font-size: 1rem;
    }
    
    .step-description {
        font-size: 0.8125rem;
    }
    
    /* Horizontal scrollable store type options on small phones */
    .store-type-selection {
        display: flex;
        flex-direction: row;
        gap: 0.625rem;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: var(--gray-300) transparent;
        padding-bottom: 0.5rem;
        scroll-snap-type: x mandatory;
    }
    
    .store-type-selection::-webkit-scrollbar {
        height: 3px;
    }
    
    .store-type-selection::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .store-type-selection::-webkit-scrollbar-thumb {
        background: var(--gray-300);
        border-radius: 2px;
    }
    
    .store-type-option {
        flex: 0 0 auto;
        width: 180px;
        min-width: 180px;
        max-width: 180px;
        padding: var(--spacing-sm);
        scroll-snap-align: start;
    }
    
    .store-type-option-icon {
        width: 40px;
        height: 40px;
    }
    
    .store-type-option-title {
        font-size: 0.9375rem;
    }
    
    .store-type-option-description {
        font-size: 0.75rem;
    }
    
    .form-input,
    .form-textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 0.625rem;
    }
    
    .form-actions {
        padding-top: var(--spacing-xs);
        margin-top: var(--spacing-sm);
    }
    
    .form-actions button {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .review-item-minimal,
    .review-item-card.modern-card,
    .review-item-compact {
        padding: 0.3125rem 0;
        gap: 0.4375rem;
        font-size: 0.75rem;
    }
    
    .review-dot,
    .review-item-icon,
    .review-item-icon-compact {
        width: 5px;
        height: 5px;
    }
    
    .review-item-text,
    .review-item-content {
        font-size: 0.75rem;
    }
    
    .review-item-text strong,
    .review-item-label {
        font-size: 0.75rem;
    }
    
    .review-item-value-compact,
    .review-item-value {
        font-size: 0.75rem;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 0.625rem;
    }
    
    .form-actions .btn-primary,
    .form-actions .btn-secondary {
        width: 100%;
        padding: 0.875rem 1.25rem;
        font-size: 0.9375rem;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-outline {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
}

/* Floating Help Button */
.floating-help-btn {
    position: fixed !important;
    bottom: 2rem;
    left: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563EB 0%, #06B6D4 100%);
    border: 3px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35),
                0 2px 8px rgba(37, 99, 235, 0.25),
                0 0 0 0 rgba(37, 99, 235, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    cursor: pointer;
    z-index: 1500 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
}

.floating-help-btn::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(6, 182, 212, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.floating-help-btn:hover::before {
    opacity: 1;
    animation: pulse-ring 2s ease-out infinite;
}

.floating-help-btn:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.45),
                0 4px 12px rgba(37, 99, 235, 0.35),
                0 0 0 4px rgba(37, 99, 235, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 1);
}

.floating-help-btn:active {
    transform: translateY(-2px) scale(1);
}

.floating-help-btn .help-icon,
.floating-help-btn .close-icon {
    width: 28px;
    height: 28px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    z-index: 2;
    pointer-events: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.floating-help-btn .help-icon {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
    display: block;
}

.floating-help-btn .close-icon {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-90deg) scale(0.8);
    display: block;
}

.floating-help-btn.active .help-icon {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg) scale(0.8);
    pointer-events: none;
}

.floating-help-btn.active .close-icon {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
    pointer-events: none;
}

.floating-help-btn svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Help Drawer */
.help-drawer {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 0;
    height: 0;
    z-index: 1501;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.help-drawer.active {
    width: 400px;
    height: auto;
    max-height: 600px;
    pointer-events: all;
}

.help-drawer-content {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 600px;
    display: flex;
    flex-direction: column;
}

.help-drawer.active .help-drawer-content {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.help-drawer-header {
    background: linear-gradient(135deg, #2563EB 0%, #06B6D4 100%);
    padding: var(--spacing-lg);
    text-align: center;
    position: relative;
    color: white;
}

.help-header-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--spacing-sm);
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    animation: iconBounce 0.6s ease-out;
}

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

.help-drawer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    color: white;
}

.help-drawer-body {
    padding: var(--spacing-lg);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    flex: 1;
}

.help-message {
    margin-bottom: var(--spacing-md);
}

.help-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.help-features {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
    justify-content: center;
}

.help-feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.5rem 0.75rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    flex: 0 0 auto;
}

.help-feature-item:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.help-feature-item svg {
    color: var(--primary-500);
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.help-feature-item span {
    font-size: 0.8125rem;
    color: var(--text-primary);
    font-weight: 500;
    white-space: nowrap;
}

.help-whatsapp-btn {
    width: 100%;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: visible;
}

.help-whatsapp-btn .whatsapp-btn-content {
    width: 100%;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 16px rgba(37, 211, 102, 0.35),
        0 2px 8px rgba(37, 211, 102, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.help-whatsapp-btn .whatsapp-btn-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.25) 50%, 
        transparent 100%);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.help-whatsapp-btn:hover .whatsapp-btn-content {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 24px rgba(37, 211, 102, 0.45),
        0 3px 12px rgba(37, 211, 102, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #2EE67A 0%, #1BA085 100%);
    border-color: rgba(255, 255, 255, 0.35);
}

.help-whatsapp-btn:hover .whatsapp-btn-content::before {
    left: 100%;
}

.help-whatsapp-btn:active .whatsapp-btn-content {
    transform: translateY(0);
    box-shadow: 
        0 2px 8px rgba(37, 211, 102, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.help-whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%);
    transition: left 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.help-whatsapp-btn::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.4) 0%, 
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(8px);
}

.help-whatsapp-btn:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45),
                0 3px 12px rgba(37, 211, 102, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #2EE67A 0%, #1BA085 100%);
    border-color: rgba(255, 255, 255, 0.35);
}

.help-whatsapp-btn:hover::before {
    left: 100%;
}

.help-whatsapp-btn:hover::after {
    opacity: 0.6;
}

.help-whatsapp-btn:active {
    transform: translateY(0) scale(0.99);
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.whatsapp-icon-wrapper {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.whatsapp-icon-wrapper svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    display: block;
    color: white;
}

.whatsapp-icon-wrapper svg path {
    fill: currentColor;
    stroke: none;
}

.help-whatsapp-btn:hover .whatsapp-icon-wrapper {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.4);
}

.help-whatsapp-btn:hover .whatsapp-icon-wrapper svg {
    transform: scale(1.05);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.help-whatsapp-btn:active .whatsapp-icon-wrapper {
    transform: scale(0.98);
}

.help-whatsapp-btn:active .whatsapp-icon-wrapper svg {
    transform: scale(0.98);
}

.whatsapp-text {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
    font-weight: 600;
    flex: 1;
    text-align: center;
}

.help-whatsapp-btn:hover .whatsapp-text {
    transform: translateX(-2px);
}

/* Responsive Help Drawer */
@media (max-width: 768px) {
    .floating-help-btn {
        width: 56px;
        height: 56px;
        bottom: 1.5rem;
        left: 1.5rem;
        border-width: 2.5px;
    }
    
    .floating-help-btn .help-icon,
    .floating-help-btn .close-icon {
        width: 24px;
        height: 24px;
    }
    
    .help-drawer {
        bottom: 1.5rem;
        left: 1.5rem;
        right: 1.5rem;
    }
    
    .help-drawer.active {
        width: auto;
        max-width: none;
    }
    
    .help-drawer-content {
        max-height: 70vh;
    }
    
    .help-drawer-header {
        padding: var(--spacing-md);
    }
    
    .help-header-icon {
        width: 48px;
        height: 48px;
    }
    
    .help-drawer-title {
        font-size: 1.125rem;
    }
    
    .help-drawer-body {
        padding: var(--spacing-md);
    }
    
    .help-text {
        font-size: 0.875rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .help-features {
        gap: var(--spacing-xs);
        margin-bottom: var(--spacing-sm);
    }
    
    .help-feature-item {
        padding: 0.375rem 0.625rem;
    }
    
    .help-feature-item svg {
        width: 14px;
        height: 14px;
    }
    
    .help-feature-item span {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .floating-help-btn {
        width: 52px;
        height: 52px;
        bottom: 1rem;
        left: 1rem;
        border-width: 2px;
    }
    
    .floating-help-btn .help-icon,
    .floating-help-btn .close-icon {
        width: 22px;
        height: 22px;
    }
    
    .help-drawer {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
    }
    
    .help-drawer-content {
        max-height: 75vh;
    }
    
    .help-drawer-header {
        padding: var(--spacing-sm);
    }
    
    .help-header-icon {
        width: 40px;
        height: 40px;
    }
    
    .help-drawer-title {
        font-size: 1rem;
    }
    
    .help-drawer-body {
        padding: var(--spacing-sm);
    }
}

