/* ============================================
   CART BELL - ULTRA MODERN LANDING PAGE CSS
   With Advanced Animations
============================================ */

/* ============================================
   CSS CUSTOM PROPERTIES (THEMES)
============================================ */
:root {
    /* Core Colors */
    --primary: #6366f1;
    --primary-rgb: 99, 102, 241;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #06b6d4;
    --secondary-rgb: 6, 182, 212;
    --accent: #f472b6;
    --accent-2: #a855f7;
    --success: #10b981;
    --success-rgb: 16, 185, 129;
    --warning: #f59e0b;
    --error: #ef4444;
    --whatsapp: #25d366;
    --whatsapp-rgb: 37, 211, 102;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
    --gradient-secondary: linear-gradient(135deg, #06b6d4 0%, #6366f1 100%);
    --gradient-glow: linear-gradient(135deg, rgba(99, 102, 241, 0.4) 0%, rgba(168, 85, 247, 0.4) 100%);

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --transition-fast: 0.15s var(--ease-out-expo);
    --transition-base: 0.3s var(--ease-out-expo);
    --transition-slow: 0.5s var(--ease-out-expo);
    --transition-slower: 0.8s var(--ease-out-expo);

    /* Typography */
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 2px 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);

    /* Theme Colors (Light Mode) */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-card: rgba(255, 255, 255, 0.9);
    --bg-card-hover: rgba(248, 250, 252, 1);
    --bg-overlay: rgba(255, 255, 255, 0.95);

    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-tertiary: #64748b;
    --text-muted: #94a3b8;

    --border-primary: rgba(0, 0, 0, 0.1);
    --border-secondary: rgba(0, 0, 0, 0.05);
    --border-hover: rgba(0, 0, 0, 0.15);

    --glow-primary: rgba(99, 102, 241, 0.3);
    --glow-secondary: rgba(168, 85, 247, 0.2);
}

/* ============================================
   RESET & BASE
============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background var(--transition-slow), color var(--transition-slow);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* ============================================
   CONTAINER
============================================ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ============================================
   CURSOR GLOW EFFECT
============================================ */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--glow-primary) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

.cursor-glow.active {
    opacity: 0.08;
}

/* ============================================
   ANIMATED BACKGROUND
============================================ */
.bg-animation {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.bg-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 20%, rgba(var(--primary-rgb), 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(168, 85, 247, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 50% 50%, rgba(var(--secondary-rgb), 0.04) 0%, transparent 50%);
    animation: bgPulse 15s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.1) rotate(2deg); opacity: 0.8; }
}

.bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--border-secondary) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-secondary) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 100% 70% at 50% 30%, black 0%, transparent 70%);
    animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.bg-orbs {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: rgba(var(--primary-rgb), 0.08);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: rgba(168, 85, 247, 0.06);
    bottom: -150px;
    right: -150px;
    animation-delay: -7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: rgba(var(--secondary-rgb), 0.05);
    top: 50%;
    left: 50%;
    animation-delay: -14s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 40px) scale(0.95); }
    75% { transform: translate(30px, 20px) scale(1.02); }
}

/* Particles */
.bg-particles {
    position: absolute;
    inset: 0;
}

/* ============================================
   BUTTONS
============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 14px 28px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-base);
}

.btn:hover svg {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(var(--primary-rgb), 0.4);
}

.btn-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    border-radius: inherit;
    z-index: -1;
    filter: blur(15px);
    opacity: 0.5;
    transition: opacity var(--transition-base);
}

.btn-glow:hover::before {
    opacity: 0.8;
}

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

.btn-outline:hover {
    background: var(--bg-card);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.btn-ghost {
    background: rgba(0, 0, 0, 0.03);
    color: var(--text-primary);
    border: 1px solid var(--border-primary);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: var(--border-hover);
}

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

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

.play-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-icon svg {
    width: 12px;
    height: 12px;
    margin-left: 2px;
    color: white;
}

/* ============================================
   HEADER & NAVIGATION
============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: transform 0.3s ease, background 0.3s ease, padding 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: var(--space-sm) 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header.hidden {
    transform: translateY(-100%);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-icon::before {
    content: '';
    position: absolute;
    inset: 2px;
    background: var(--bg-primary);
    border-radius: calc(var(--radius-md) - 2px);
    transition: background var(--transition-slow);
}

.logo-icon svg {
    width: 22px;
    height: 22px;
    position: relative;
    z-index: 1;
    color: var(--primary);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

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

.logo-img {
    height: 40px;
    width: auto;
}

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

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: var(--space-sm) 0;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

.nav-link:hover {
    color: var(--text-primary);
}

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

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

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1001;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

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

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

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

/* Body menu open state */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
    position: relative;
    overflow: hidden;
}

.badge-glow {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0.1;
    animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% { opacity: 0.05; }
    50% { opacity: 0.15; }
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    position: relative;
}

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

.badge-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.badge-new {
    padding: 2px 8px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
}

/* Hero Title */
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
}

.title-line {
    display: block;
}

.word {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px) rotateX(-40deg);
    animation: wordReveal 0.8s var(--ease-out-expo) forwards;
    animation-delay: calc(var(--i) * 0.1s);
}

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

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

/* Hero Description */
.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

/* Animate In */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    animation: animateIn 0.8s var(--ease-out-expo) forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes animateIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.stat-item {
    position: relative;
}

.stat-value-wrapper {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    display: block;
    margin-top: var(--space-sm);
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: var(--border-primary);
}

/* Hero CTA */
.hero-cta {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

/* Hero Trust */
.hero-trust {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.trust-avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid var(--bg-primary);
    margin-left: -12px;
    animation: avatarPop 0.5s var(--ease-spring) forwards;
    animation-delay: calc(var(--i) * 0.1s);
    opacity: 0;
    transform: scale(0);
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-count {
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
}

@keyframes avatarPop {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.trust-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trust-stars {
    display: flex;
    gap: 2px;
}

.trust-stars svg {
    width: 14px;
    height: 14px;
    color: var(--warning);
}

.trust-text span {
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

/* ============================================
   HERO VISUAL
============================================ */
.hero-visual {
    position: relative;
    perspective: 1000px;
}

.visual-wrapper {
    position: relative;
    animation: floatVisual 6s ease-in-out infinite;
}

@keyframes floatVisual {
    0%, 100% { transform: translateY(0) rotateX(0); }
    50% { transform: translateY(-20px) rotateX(2deg); }
}

/* Dashboard Card */
.dashboard-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
}

.card-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(255, 255, 255, 0.03) 45%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.03) 55%,
        transparent 60%
    );
    animation: shine 6s ease-in-out infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    50%, 100% { transform: translateX(100%); }
}

.card-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid var(--border-secondary);
    background: rgba(0, 0, 0, 0.03);
}

.card-dots {
    display: flex;
    gap: 6px;
}

.card-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.card-dots span:nth-child(1) { background: #ff5f57; }
.card-dots span:nth-child(2) { background: #febc2e; }
.card-dots span:nth-child(3) { background: #28c840; }

.card-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    flex: 1;
    text-align: center;
}

.card-status {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: rgba(var(--success-rgb), 0.15);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--success);
}

.status-dot {
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.card-body {
    padding: var(--space-lg);
}

/* Mini Stats */
.mini-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.mini-stat {
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mini-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
}

.mini-label {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    display: block;
    margin-top: 2px;
}

.mini-trend {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: var(--radius-sm);
}

.mini-trend.up {
    background: rgba(var(--success-rgb), 0.15);
    color: var(--success);
}

/* Chart Container */
.chart-container {
    height: 80px;
    margin-bottom: var(--space-lg);
}

.chart-svg {
    width: 100%;
    height: 100%;
}

.chart-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 2s var(--ease-out-expo) forwards 0.5s;
}

@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

.chart-dot {
    animation: dotPulse 2s ease-in-out infinite 2.5s;
}

@keyframes dotPulse {
    0%, 100% { r: 4; opacity: 1; }
    50% { r: 6; opacity: 0.7; }
}

/* Activity Feed */
.activity-feed {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.activity-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    opacity: 0;
    transform: translateX(20px);
    animation: slideIn 0.5s var(--ease-out-expo) forwards;
    animation-delay: calc(1s + var(--i) * 0.2s);
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.activity-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.activity-icon svg {
    width: 18px;
    height: 18px;
}

.activity-icon.whatsapp {
    background: rgba(var(--whatsapp-rgb), 0.15);
    color: var(--whatsapp);
}

.activity-icon.recovered {
    background: rgba(var(--success-rgb), 0.15);
    color: var(--success);
}

.activity-info {
    flex: 1;
}

.activity-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    display: block;
}

.activity-time {
    font-size: 0.75rem;
    color: var(--text-tertiary);
}

.activity-amount {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.activity-amount.success {
    color: var(--success);
}

/* Floating Cards */
.float-card {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: floatCard 6s ease-in-out infinite;
    z-index: 10;
}

.float-1 {
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.float-2 {
    bottom: 80px;
    left: -60px;
    animation-delay: -2s;
}

.float-3 {
    top: 50%;
    right: -80px;
    animation-delay: -4s;
}

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

.float-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.float-icon svg {
    width: 20px;
    height: 20px;
}

.float-icon.ai {
    background: rgba(var(--primary-rgb), 0.15);
    color: var(--primary);
}

.float-icon.success {
    background: rgba(var(--success-rgb), 0.15);
    color: var(--success);
}

.float-icon.email {
    background: rgba(var(--secondary-rgb), 0.15);
    color: var(--secondary);
}

.float-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    display: block;
}

.float-sub {
    font-size: 0.75rem;
    color: var(--text-tertiary);
}

/* Decorative Elements */
.deco-ring {
    position: absolute;
    border: 1px solid var(--border-secondary);
    border-radius: 50%;
    pointer-events: none;
}

.ring-1 {
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ringPulse 8s ease-in-out infinite;
}

.ring-2 {
    width: 350px;
    height: 350px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ringPulse 8s ease-in-out infinite 0.5s;
}

@keyframes ringPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.1; }
}

/* Hero Scroll */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    animation: fadeIn 1s ease 1.5s both;
}

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

.hero-scroll span {
    font-size: 0.8rem;
    color: var(--text-tertiary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid var(--border-primary);
    border-radius: var(--radius-full);
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: var(--radius-full);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(12px); opacity: 0.3; }
}

/* ============================================
   LOGOS SECTION
============================================ */
.logos-section {
    padding: var(--space-3xl) 0;
    border-top: 1px solid var(--border-secondary);
    border-bottom: 1px solid var(--border-secondary);
    overflow: hidden;
}

.logos-label {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-tertiary);
    margin-bottom: var(--space-xl);
}

.logos-slider {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.logos-track {
    display: flex;
    gap: var(--space-3xl);
    width: max-content;
    will-change: transform;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-tertiary);
    white-space: nowrap;
    opacity: 0.6;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
    flex-shrink: 0;
    padding: var(--space-md) var(--space-lg);
}

.logo-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

.logo-item svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.logo-item.text-logo {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text-secondary);
    padding: var(--space-sm) var(--space-md);
}

.logo-item.text-logo span {
    background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-item.text-logo:hover span {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   SECTION COMMON STYLES
============================================ */
section {
    padding: var(--space-4xl) 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 6px 16px;
    background: rgba(var(--primary-rgb), 0.1);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.section-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.section-title span {
    display: block;
}

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

/* ============================================
   FEATURES SECTION
============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--primary-rgb), 0.3);
    box-shadow: 0 20px 40px rgba(var(--primary-rgb), 0.15);
}

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

.card-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(var(--primary-rgb), 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.feature-card:hover .card-bg {
    opacity: 1;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    position: relative;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    position: relative;
    z-index: 1;
}

.feature-icon.whatsapp {
    background: linear-gradient(135deg, rgba(var(--whatsapp-rgb), 0.2), rgba(var(--whatsapp-rgb), 0.05));
    color: var(--whatsapp);
}

.feature-icon.email {
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.2), rgba(var(--primary-rgb), 0.05));
    color: var(--primary);
}

.feature-icon.ai {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(168, 85, 247, 0.05));
    color: var(--accent-2);
}

.feature-icon.analytics {
    background: linear-gradient(135deg, rgba(var(--secondary-rgb), 0.2), rgba(var(--secondary-rgb), 0.05));
    color: var(--secondary);
}

.feature-icon.coupon {
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.2), rgba(244, 114, 182, 0.05));
    color: var(--accent);
}

.feature-icon.integration {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.05));
    color: var(--warning);
}

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

.feature-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.feature-list .check {
    width: 18px;
    height: 18px;
    background: rgba(var(--success-rgb), 0.15);
    border-radius: 50%;
    position: relative;
}

.feature-list .check::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
}

/* ============================================
   HOW IT WORKS
============================================ */
.steps-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.steps-line {
    position: absolute;
    top: 40px;
    left: 16.66%;
    right: 16.66%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent-2), var(--accent));
    opacity: 0.3;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 40px rgba(var(--primary-rgb), 0.4);
}

.step-number span {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -6px;
    border: 2px solid rgba(var(--primary-rgb), 0.3);
    border-radius: 50%;
    animation: stepPulse 2s ease-out infinite;
}

@keyframes stepPulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.3); opacity: 0; }
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-md);
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.step-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   DASHBOARD SECTION
============================================ */
.dashboard-showcase {
    max-width: 1000px;
    margin: 0 auto;
}

.dashboard-window {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.window-header {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-md) var(--space-lg);
    background: rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid var(--border-secondary);
}

.window-dots {
    display: flex;
    gap: 8px;
}

.window-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.window-dots span:nth-child(1) { background: #ff5f57; }
.window-dots span:nth-child(2) { background: #febc2e; }
.window-dots span:nth-child(3) { background: #28c840; }

.window-tabs {
    display: flex;
    gap: var(--space-sm);
    flex: 1;
    justify-content: center;
}

.window-tabs .tab {
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-tertiary);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.window-tabs .tab:hover {
    color: var(--text-primary);
    background: var(--bg-tertiary);
}

.window-tabs .tab.active {
    color: white;
    background: var(--primary);
}

.window-body {
    padding: var(--space-xl);
}

.dash-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.dash-stat {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-secondary);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.dash-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dash-stat-icon svg {
    width: 24px;
    height: 24px;
}

.dash-stat-icon.revenue {
    background: rgba(var(--success-rgb), 0.15);
    color: var(--success);
}

.dash-stat-icon.carts {
    background: rgba(var(--primary-rgb), 0.15);
    color: var(--primary);
}

.dash-stat-icon.rate {
    background: rgba(168, 85, 247, 0.15);
    color: var(--accent-2);
}

.dash-stat-icon.messages {
    background: rgba(var(--secondary-rgb), 0.15);
    color: var(--secondary);
}

.dash-stat-info {
    flex: 1;
}

.dash-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
}

.dash-stat-label {
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

.dash-stat-trend {
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.dash-stat-trend.up {
    background: rgba(var(--success-rgb), 0.15);
    color: var(--success);
}

.dash-stat-trend.neutral {
    background: var(--bg-card);
    color: var(--text-tertiary);
}

.dash-chart {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-secondary);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

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

.chart-header h4 {
    font-size: 1rem;
    font-weight: 600;
}

.chart-legend {
    display: flex;
    gap: var(--space-lg);
}

.chart-legend span {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

.chart-legend .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.chart-legend .dot.primary {
    background: var(--primary);
}

.chart-legend .dot.secondary {
    background: var(--secondary);
}

.chart-area {
    height: 200px;
}

.chart-area svg {
    width: 100%;
    height: 100%;
}

.line-animate {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 2s var(--ease-out-expo) forwards;
}

/* Tab Content */
.tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}

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

/* Carts Table Styles */
.carts-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
}

.carts-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.carts-table th,
.carts-table td {
    padding: var(--space-md) var(--space-lg);
    text-align: left;
    border-bottom: 1px solid var(--border-secondary);
}

.carts-table th {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.carts-table tbody tr {
    background: var(--bg-card);
    transition: background 0.2s ease;
}

.carts-table tbody tr:hover {
    background: var(--bg-tertiary);
}

.customer-info {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.customer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
}

.customer-details {
    display: flex;
    flex-direction: column;
}

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

.customer-email {
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

.cart-value {
    font-weight: 600;
    color: var(--success);
}

.status-badge {
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
}

.status-badge.pending {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.status-badge.sent {
    background: rgba(var(--primary-rgb), 0.15);
    color: var(--primary);
}

.status-badge.recovered {
    background: rgba(var(--success-rgb), 0.15);
    color: var(--success);
}

.action-btn {
    padding: 6px 14px;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    background: var(--primary);
    color: white;
    transition: all 0.2s ease;
}

.action-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.3);
}

.action-btn.secondary {
    background: var(--secondary);
}

.action-btn.secondary:hover {
    box-shadow: 0 4px 12px rgba(var(--secondary-rgb), 0.3);
}

.action-btn.success {
    background: var(--success);
}

.action-btn.success:hover {
    box-shadow: 0 4px 12px rgba(var(--success-rgb), 0.3);
}

/* Analytics Styles */
.analytics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.analytics-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-secondary);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

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

.analytics-header h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.analytics-header .period {
    font-size: 0.8rem;
    color: var(--text-tertiary);
    background: var(--bg-card);
    padding: 4px 10px;
    border-radius: var(--radius-md);
}

.analytics-bars {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.bar-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

.bar-label span:first-child {
    color: var(--text-secondary);
}

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

.bar-track {
    height: 8px;
    background: var(--bg-card);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: var(--radius-full);
    transition: width 1s var(--ease-out-expo);
}

.bar-fill.whatsapp {
    background: linear-gradient(90deg, #25d366, #128c7e);
}

.bar-fill.email {
    background: linear-gradient(90deg, var(--primary), var(--accent-2));
}

.bar-fill.sms {
    background: linear-gradient(90deg, var(--secondary), #ff6b6b);
}

/* Circle Chart Styles */
.circle-chart-wrapper {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.circle-chart {
    position: relative;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.circle-chart svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.circle-bg {
    fill: none;
    stroke: var(--bg-card);
    stroke-width: 10;
}

.circle-progress {
    fill: none;
    stroke: url(#circleGradient);
    stroke-width: 10;
    stroke-linecap: round;
    transition: stroke-dashoffset 1s var(--ease-out-expo);
    stroke: #10b981;
}

.circle-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.circle-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.circle-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-tertiary);
    margin-top: 2px;
}

.circle-legend {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    flex: 1;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: var(--bg-card);
    border-radius: var(--radius-md);
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.legend-dot.recovered {
    background: #10b981;
}

.legend-dot.pending {
    background: #f59e0b;
}

.legend-dot.lost {
    background: #ef4444;
}

.legend-text {
    flex: 1;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.legend-value {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}

/* Analytics Stats Row */
.analytics-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.analytics-stat-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-secondary);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.analytics-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: rgba(var(--primary-rgb), 0.15);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.analytics-stat-icon svg {
    width: 22px;
    height: 22px;
}

.analytics-stat-icon.email-icon {
    background: rgba(168, 85, 247, 0.15);
    color: #a855f7;
}

.analytics-stat-icon.whatsapp-icon {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
}

.analytics-stat-icon.success-icon {
    background: rgba(var(--success-rgb), 0.15);
    color: var(--success);
}

.analytics-stat-info {
    display: flex;
    flex-direction: column;
}

.analytics-stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.analytics-stat-label {
    font-size: 0.75rem;
    color: var(--text-tertiary);
}

.chart-legend .dot.success {
    background: #10b981;
}

.chart-legend .dot.warning {
    background: var(--primary);
    opacity: 0.3;
}

/* ============================================
   COMPARISON SECTION
============================================ */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    max-width: 900px;
    margin: 0 auto;
}

.comparison-card {
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    position: relative;
    overflow: hidden;
}

.comparison-card.without {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.comparison-card.with {
    background: rgba(var(--success-rgb), 0.05);
    border: 1px solid rgba(var(--success-rgb), 0.2);
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.comparison-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-icon svg {
    width: 24px;
    height: 24px;
}

.comparison-card.without .comparison-icon {
    background: rgba(239, 68, 68, 0.15);
    color: var(--error);
}

.comparison-card.with .comparison-icon {
    background: rgba(var(--success-rgb), 0.15);
    color: var(--success);
}

.comparison-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-secondary);
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-list li::before {
    content: '';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    border-radius: 50%;
    background-size: 10px;
    background-position: center;
    background-repeat: no-repeat;
}

.comparison-card.without .comparison-list li::before {
    background-color: rgba(239, 68, 68, 0.15);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23ef4444' stroke-width='3'%3E%3Cpath d='M18 6L6 18M6 6l12 12'/%3E%3C/svg%3E");
}

.comparison-card.with .comparison-list li::before {
    background-color: rgba(var(--success-rgb), 0.15);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
}

/* ============================================
   PRICING SECTION
============================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-2xl);
    padding: var(--space-xl);
    position: relative;
    transition: all var(--transition-base);
}

.pricing-card:hover {
    transform: translateY(-8px);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 60px rgba(var(--primary-rgb), 0.2);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
}

.pricing-header {
    text-align: center;
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--border-secondary);
    margin-bottom: var(--space-xl);
}

.pricing-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.pricing-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    margin-bottom: var(--space-sm);
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-top: 8px;
}

.pricing-price .amount {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-desc {
    font-size: 0.9rem;
    color: var(--text-tertiary);
}

.pricing-features {
    margin-bottom: var(--space-xl);
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.pricing-features li svg {
    width: 18px;
    height: 18px;
    color: var(--success);
    flex-shrink: 0;
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    max-width: 700px;
    margin: var(--space-3xl) auto 0;
    padding: var(--space-xl);
    background: rgba(var(--success-rgb), 0.05);
    border: 1px solid rgba(var(--success-rgb), 0.2);
    border-radius: var(--radius-xl);
}

.guarantee-icon {
    flex-shrink: 0;
}

.guarantee-icon svg {
    width: 48px;
    height: 48px;
    color: var(--success);
}

.guarantee-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.guarantee-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* ============================================
   FAQ SECTION
============================================ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: var(--border-hover);
}

.faq-item.active {
    border-color: rgba(var(--primary-rgb), 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-lg);
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--text-tertiary);
    transition: transform var(--transition-base);
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 var(--space-lg) var(--space-lg);
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   CTA SECTION
============================================ */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-gradient {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0.1;
}

.cta-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}

.cta-content {
    position: relative;
    text-align: center;
    padding: var(--space-3xl) 0;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.cta-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.cta-note {
    font-size: 0.9rem;
    color: var(--text-tertiary);
}

/* ============================================
   FOOTER
============================================ */
.footer {
    padding: var(--space-4xl) 0 var(--space-xl);
    border-top: 1px solid var(--border-secondary);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer-brand p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 400px;
}

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

.footer-nav a {
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
    font-weight: 500;
}

.footer-nav a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border-secondary);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--text-tertiary);
}

.footer-bottom p a {
    color: var(--text-tertiary);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.footer-badges {
    display: flex;
    gap: var(--space-lg);
}

.footer-badges span,
.footer-badge-link {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.85rem;
    color: var(--text-tertiary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-badge-link:hover {
    color: var(--primary);
}

.footer-badges svg {
    width: 16px;
    height: 16px;
}

/* ============================================
   BACK TO TOP
============================================ */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: 999;
    box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.4);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
}

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

/* --- TABLETS LANDSCAPE (1024px) --- */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

    .hero-visual {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-text {
        max-width: 100%;
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-badge {
        margin: 0 auto var(--space-lg);
    }

    /* Hide scroll indicator on tablets - overlaps with stacked content */
    .hero-scroll {
        display: none;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dash-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Hide all floating cards on tablets */
    .float-card {
        display: none;
    }

    .deco-ring {
        display: none;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-xl);
    }

    .footer-brand {
        align-items: center;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Dashboard adjustments */
    .dashboard-showcase {
        max-width: 100%;
    }

    .window-body {
        padding: var(--space-lg);
    }

    /* Comparison grid */
    .comparison-grid {
        max-width: 100%;
    }

    /* Pricing adjustments */
    .pricing-grid {
        max-width: 100%;
    }
}

/* --- TABLETS PORTRAIT (768px) --- */
@media (max-width: 768px) {
    /* Container padding adjustment */
    .container {
        padding: 0 var(--space-lg);
    }

    /* Section spacing reduction */
    section {
        padding: var(--space-3xl) 0;
    }

    /* Navigation mobile menu */
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-overlay);
        backdrop-filter: blur(20px);
        padding: 100px var(--space-xl) var(--space-xl);
        flex-direction: column;
        gap: var(--space-lg);
        justify-content: flex-start;
        align-items: center;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        font-size: 1.25rem;
        padding: var(--space-md) 0;
    }

    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }

    /* Header CTA button hidden on mobile */
    .nav-actions .btn-primary {
        display: none;
    }

    /* Hero section */
    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-stats {
        /* flex-direction: column; */
        align-items: center;
        gap: var(--space-md);
    }

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

    .stat-divider {
        display: none;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-trust {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .trust-avatars {
        justify-content: center;
    }

    .trust-text {
        align-items: center;
        text-align: center;
    }

    /* Hero scroll indicator */
    .hero-scroll {
        display: none;
    }

    /* Dashboard card in hero */
    .dashboard-card {
        max-width: 100%;
    }

    .mini-stats {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .mini-stat {
        padding: var(--space-sm);
    }

    .chart-container {
        height: 60px;
    }

    .activity-item {
        padding: var(--space-sm);
    }

    /* Logos section */
    .logos-section {
        padding: var(--space-2xl) 0;
    }

    .logos-label {
        font-size: 0.85rem;
        padding: 0 var(--space-md);
    }

    /* Section headers */
    .section-header {
        margin-bottom: var(--space-2xl);
    }

    .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .section-desc {
        font-size: 1rem;
    }

    /* Features grid - single column */
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .feature-card {
        padding: var(--space-lg);
    }

    /* Steps - single column */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .steps-line {
        display: none;
    }

    .step-number {
        width: 60px;
        height: 60px;
    }

    .step-number span {
        font-size: 1.25rem;
    }

    /* Dashboard section */
    .dash-stats {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .dash-stat {
        padding: var(--space-md);
    }

    .dash-stat-value {
        font-size: 1.25rem;
    }

    .dash-chart {
        padding: var(--space-md);
    }

    .chart-area {
        height: 150px;
    }

    .chart-legend {
        flex-wrap: wrap;
        gap: var(--space-sm);
    }

    /* Analytics grid */
    .analytics-grid {
        grid-template-columns: 1fr;
    }

    .analytics-stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }

    .analytics-stat-card {
        padding: var(--space-md);
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }

    .analytics-stat-value {
        font-size: 1.1rem;
    }

    .analytics-stat-label {
        font-size: 0.7rem;
    }

    .circle-chart-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: var(--space-lg);
    }

    .circle-legend {
        width: 100%;
    }

    /* Carts table - hide less important columns */
    .carts-table-wrapper {
        margin: 0 calc(var(--space-lg) * -1);
        padding: 0 var(--space-sm);
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .carts-table {
        min-width: 500px;
    }

    .carts-table th,
    .carts-table td {
        padding: var(--space-sm) var(--space-md);
        font-size: 0.8rem;
    }

    .carts-table th:nth-child(2),
    .carts-table td:nth-child(2) {
        display: none;
    }

    .customer-info {
        gap: var(--space-sm);
    }

    .customer-avatar {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }

    .customer-name {
        font-size: 0.85rem;
    }

    .customer-email {
        font-size: 0.7rem;
    }

    .action-btn {
        padding: 4px 10px;
        font-size: 0.75rem;
    }

    /* Comparison grid */
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .comparison-card {
        padding: var(--space-lg);
    }

    /* Pricing grid */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-card {
        padding: var(--space-lg);
    }

    .pricing-price .amount {
        font-size: 3rem;
    }

    .pricing-guarantee {
        flex-direction: column;
        text-align: center;
        padding: var(--space-lg);
    }

    /* FAQ grid */
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-question {
        padding: var(--space-md);
        font-size: 0.95rem;
    }

    .faq-answer p {
        padding: 0 var(--space-md) var(--space-md);
        font-size: 0.9rem;
    }

    /* CTA section */
    .cta-content {
        padding: var(--space-2xl) 0;
    }

    .cta-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    /* Footer */
    .footer {
        padding: var(--space-2xl) 0 var(--space-lg);
    }

    .footer-brand .logo {
        justify-content: center;
    }

    .footer-nav {
        gap: var(--space-md);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    /* Back to top */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

/* --- MOBILE (480px) --- */
@media (max-width: 480px) {
    /* Container with smaller padding */
    .container {
        padding: 0 var(--space-md);
    }

    /* Reduce section spacing */
    section {
        padding: var(--space-2xl) 0;
    }

    /* Header */
    .header {
        padding: var(--space-sm) 0;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
    }

    .logo-icon svg {
        width: 18px;
        height: 18px;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .logo-img {
        height: 34px;
    }

    .mobile-toggle {
        width: 38px;
        height: 38px;
    }

    /* Hero */
    .hero {
        padding: 100px 0 40px;
    }

    .hero-badge {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .badge-new {
        font-size: 0.65rem;
        padding: 2px 6px;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .stat-value {
        font-size: 1.75rem;
    }

    .stat-suffix {
        font-size: 1rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 14px 24px;
    }

    .avatar {
        width: 36px;
        height: 36px;
        margin-left: -10px;
    }

    /* Section headers */
    .section-tag {
        font-size: 0.8rem;
        padding: 4px 12px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-desc {
        font-size: 0.9rem;
    }

    /* Features */
    .feature-icon {
        width: 48px;
        height: 48px;
    }

    .feature-icon svg {
        width: 24px;
        height: 24px;
    }

    .feature-title {
        font-size: 1.1rem;
    }

    .feature-desc {
        font-size: 0.9rem;
    }

    /* Steps */
    .step-number {
        width: 56px;
        height: 56px;
    }

    .step-number span {
        font-size: 1.1rem;
    }

    .step-icon {
        width: 50px;
        height: 50px;
    }

    .step-title {
        font-size: 1.1rem;
    }

    .step-desc {
        font-size: 0.9rem;
    }

    /* Dashboard */
    .window-tabs {
        gap: var(--space-xs);
    }

    .window-tabs .tab {
        padding: 6px 10px;
        font-size: 0.75rem;
    }

    .window-body {
        padding: var(--space-md);
    }

    .dash-stat-icon {
        width: 40px;
        height: 40px;
    }

    .dash-stat-value {
        font-size: 1.1rem;
    }

    .dash-stat-label {
        font-size: 0.7rem;
    }

    .analytics-stats-row {
        grid-template-columns: 1fr;
    }

    .analytics-stat-card {
        flex-direction: row;
        text-align: left;
    }

    /* Circle chart smaller */
    .circle-chart {
        width: 100px;
        height: 100px;
    }

    .circle-value {
        font-size: 1.25rem;
    }

    /* Comparison */
    .comparison-header h3 {
        font-size: 1.1rem;
    }

    .comparison-list li {
        font-size: 0.9rem;
        padding: var(--space-sm) 0;
    }

    /* Pricing */
    .pricing-name {
        font-size: 1.1rem;
    }

    .pricing-price .currency {
        font-size: 1.25rem;
    }

    .pricing-price .amount {
        font-size: 2.5rem;
    }

    .pricing-features li {
        font-size: 0.9rem;
        padding: var(--space-sm) 0;
    }

    /* FAQ */
    .faq-question {
        padding: var(--space-md);
        font-size: 0.9rem;
    }

    .faq-question svg {
        width: 18px;
        height: 18px;
    }

    .faq-answer p {
        font-size: 0.85rem;
    }

    /* CTA */
    .cta-title {
        font-size: 1.4rem;
    }

    .cta-desc {
        font-size: 0.95rem;
    }

    /* Footer */
    .footer-brand p {
        font-size: 0.9rem;
    }

    .footer-nav a {
        font-size: 0.85rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }

    .footer-badges span {
        font-size: 0.8rem;
    }
}

/* --- SMALL MOBILE (360px and below) --- */
@media (max-width: 360px) {
    /* Minimal padding */
    .container {
        padding: 0 var(--space-sm);
    }

    /* Further reduce spacing */
    section {
        padding: var(--space-xl) 0;
    }

    /* Header adjustments */
    .logo-icon {
        width: 32px;
        height: 32px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .logo-img {
        height: 30px;
    }

    .mobile-toggle {
        width: 34px;
        height: 34px;
    }

    /* Hero */
    .hero {
        padding: 90px 0 30px;
    }

    .hero-badge {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-xs);
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .stat-suffix {
        font-size: 0.9rem;
    }

    .btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .btn svg {
        width: 16px;
        height: 16px;
    }

    .avatar {
        width: 32px;
        height: 32px;
        margin-left: -8px;
        border-width: 2px;
    }

    .trust-stars svg {
        width: 12px;
        height: 12px;
    }

    .trust-text span {
        font-size: 0.75rem;
    }

    /* Sections */
    .section-tag {
        font-size: 0.75rem;
        padding: 4px 10px;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .section-desc {
        font-size: 0.85rem;
    }

    /* Feature cards */
    .feature-card {
        padding: var(--space-md);
    }

    .feature-icon {
        width: 44px;
        height: 44px;
        margin-bottom: var(--space-md);
    }

    .feature-title {
        font-size: 1rem;
    }

    .feature-desc {
        font-size: 0.85rem;
        margin-bottom: var(--space-md);
    }

    .feature-list li {
        font-size: 0.8rem;
    }

    /* Dashboard window */
    .window-header {
        padding: var(--space-sm) var(--space-md);
        gap: var(--space-sm);
    }

    .window-dots span {
        width: 8px;
        height: 8px;
    }

    .window-tabs .tab {
        padding: 4px 8px;
        font-size: 0.7rem;
    }

    .window-body {
        padding: var(--space-sm);
    }

    .dash-stat {
        padding: var(--space-sm);
        gap: var(--space-sm);
    }

    .dash-stat-icon {
        width: 36px;
        height: 36px;
    }

    .dash-stat-icon svg {
        width: 18px;
        height: 18px;
    }

    /* Pricing */
    .pricing-card {
        padding: var(--space-md);
    }

    .pricing-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
        top: -12px;
    }

    .pricing-price .amount {
        font-size: 2.25rem;
    }

    .pricing-guarantee {
        padding: var(--space-md);
    }

    .guarantee-icon svg {
        width: 40px;
        height: 40px;
    }

    .guarantee-text h4 {
        font-size: 1rem;
    }

    .guarantee-text p {
        font-size: 0.85rem;
    }

    /* Back to top smaller */
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 16px;
        right: 16px;
    }

    .back-to-top svg {
        width: 18px;
        height: 18px;
    }
}

/* ============================================
   PREVENT HORIZONTAL SCROLL - ALL DEVICES
============================================ */
html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

/* ============================================
   TOUCH DEVICE OPTIMIZATIONS
============================================ */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects that don't work on touch */
    .feature-card:hover {
        transform: none;
    }

    .btn-primary:hover {
        transform: none;
    }

    .pricing-card:hover {
        transform: none;
    }

    /* Increase tap targets */
    .nav-link {
        padding: var(--space-md) var(--space-sm);
    }

    .faq-question {
        min-height: 48px;
    }

    .btn {
        min-height: 44px;
    }

    /* Disable cursor glow on touch */
    .cursor-glow {
        display: none !important;
    }
}

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

    .word {
        opacity: 1;
        transform: none;
    }

    .animate-in {
        opacity: 1;
        transform: none;
    }

    .chart-line {
        stroke-dashoffset: 0;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ============================================
   PRINT STYLES
============================================ */
@media print {
    .bg-animation,
    .cursor-glow,
    .back-to-top,
    .header,
    .hero-scroll {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .container {
        max-width: 100%;
    }
}
