/* Home Page Styles */
/* Variables y estilos base están en header.css */

body {
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--white);
}

/* Hero Section */
        .hero {
            padding: 5rem 2rem 6rem;
            background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100%;
            background: 
                radial-gradient(ellipse 80% 50% at 50% -20%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse 60% 40% at 90% 20%, rgba(16, 185, 129, 0.06) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-text {
            padding-right: 2rem;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.4rem 1rem;
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid rgba(16, 185, 129, 0.2);
            border-radius: 100px;
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--accent);
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.6s ease-out;
        }

        .hero-badge svg {
            width: 14px;
            height: 14px;
        }

        .hero-text h1 {
            font-family: var(--font-logo);
            font-size: 3.2rem;
            font-weight: 700;
            line-height: 1.15;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
            animation: fadeInUp 0.6s ease-out 0.1s both;
        }

        .hero-text h1 .gradient-text {
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-lighter));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-text p {
            font-size: 1.15rem;
            color: var(--text-gray);
            margin-bottom: 2rem;
            line-height: 1.8;
            animation: fadeInUp 0.6s ease-out 0.2s both;
        }

        .hero-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
            animation: fadeInUp 0.6s ease-out 0.3s both;
        }

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

        .cta-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.9rem 1.8rem;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
            color: white;
            border-radius: 10px;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
        }

        .cta-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
        }

        .cta-primary svg {
            width: 18px;
            height: 18px;
        }

        .cta-secondary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.9rem 1.8rem;
            background: var(--white);
            color: var(--text-dark);
            border: 1.5px solid var(--border);
            border-radius: 10px;
            font-weight: 500;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .cta-secondary:hover {
            border-color: var(--primary-blue);
            color: var(--primary-blue);
        }

        .cta-secondary svg {
            width: 18px;
            height: 18px;
        }

        /* Dashboard Preview - Professional */
        .hero-visual {
            position: relative;
            animation: fadeInUp 0.8s ease-out 0.3s both;
        }

        .dashboard-container {
            position: relative;
            transform: perspective(2000px) rotateY(-8deg) rotateX(4deg);
            transform-style: preserve-3d;
        }

        .dashboard-preview {
            background: var(--white);
            border-radius: 16px;
            box-shadow: 
                0 0 0 1px var(--border),
                0 20px 50px -10px rgba(0, 0, 0, 0.15),
                0 40px 80px -20px rgba(37, 99, 235, 0.1);
            overflow: hidden;
        }

        .dashboard-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.8rem 1rem;
            background: var(--bg-light);
            border-bottom: 1px solid var(--border);
        }

        .window-controls {
            display: flex;
            gap: 6px;
        }

        .window-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }

        .window-dot.red { background: #ff5f57; }
        .window-dot.yellow { background: #ffbd2e; }
        .window-dot.green { background: #28ca42; }

        .dashboard-tabs {
            display: flex;
            gap: 0.5rem;
        }

        .dashboard-tab {
            padding: 0.3rem 0.8rem;
            font-size: 0.7rem;
            color: var(--text-light);
            background: transparent;
            border-radius: 4px;
        }

        .dashboard-tab.active {
            background: var(--white);
            color: var(--text-dark);
            font-weight: 500;
        }

        .dashboard-body {
            padding: 1.2rem;
        }

        /* Stats Row */
        .stats-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0.8rem;
            margin-bottom: 1rem;
        }

        .stat-card {
            padding: 1rem;
            background: var(--bg-light);
            border-radius: 10px;
            border: 1px solid var(--border);
        }

        .stat-card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 0.5rem;
        }

        .stat-card-icon {
            width: 28px;
            height: 28px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .stat-card-icon.blue { 
            background: rgba(37, 99, 235, 0.1); 
            color: var(--primary-blue);
        }
        .stat-card-icon.green { 
            background: rgba(16, 185, 129, 0.1); 
            color: var(--accent);
        }
        .stat-card-icon.orange { 
            background: rgba(245, 158, 11, 0.1); 
            color: var(--warning);
        }
        .stat-card-icon.red { 
            background: rgba(239, 68, 68, 0.1); 
            color: var(--danger);
        }

        .stat-card-icon svg {
            width: 14px;
            height: 14px;
        }

        .stat-trend {
            font-size: 0.65rem;
            padding: 0.15rem 0.4rem;
            border-radius: 4px;
            font-weight: 500;
        }

        .stat-trend.up {
            background: rgba(16, 185, 129, 0.1);
            color: var(--accent);
        }

        .stat-trend.down {
            background: rgba(239, 68, 68, 0.1);
            color: var(--danger);
        }

        .stat-card-value {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.2rem;
        }

        .stat-card-label {
            font-size: 0.7rem;
            color: var(--text-gray);
        }

        /* Chart and Table Row */
        .dashboard-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 0.8rem;
        }

        .chart-card {
            background: var(--bg-light);
            border-radius: 10px;
            border: 1px solid var(--border);
            padding: 1rem;
        }

        .chart-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1rem;
        }

        .chart-title {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--text-dark);
        }

        .chart-period {
            font-size: 0.65rem;
            color: var(--text-light);
            padding: 0.2rem 0.5rem;
            background: var(--white);
            border-radius: 4px;
        }

        /* SVG Chart */
        .chart-container {
            height: 120px;
            position: relative;
        }

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

        .chart-line {
            fill: none;
            stroke: var(--primary-blue);
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .chart-area {
            fill: url(#chartGradient);
        }

        .chart-dot {
            fill: var(--primary-blue);
        }

        /* Alerts Card */
        .alerts-card {
            background: var(--bg-light);
            border-radius: 10px;
            border: 1px solid var(--border);
            padding: 1rem;
        }

        .alerts-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 0.8rem;
        }

        .alerts-title {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--text-dark);
        }

        .alerts-badge {
            font-size: 0.6rem;
            padding: 0.2rem 0.5rem;
            background: rgba(239, 68, 68, 0.1);
            color: var(--danger);
            border-radius: 4px;
            font-weight: 600;
        }

        .alert-item {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.6rem;
            background: var(--white);
            border-radius: 8px;
            margin-bottom: 0.5rem;
            border: 1px solid var(--border);
        }

        .alert-item:last-child {
            margin-bottom: 0;
        }

        .alert-icon {
            width: 28px;
            height: 28px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .alert-icon.critical {
            background: rgba(239, 68, 68, 0.1);
            color: var(--danger);
        }

        .alert-icon.warning {
            background: rgba(245, 158, 11, 0.1);
            color: var(--warning);
        }

        .alert-icon svg {
            width: 14px;
            height: 14px;
        }

        .alert-content {
            flex: 1;
            min-width: 0;
        }

        .alert-product {
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--text-dark);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .alert-stock {
            font-size: 0.6rem;
            color: var(--text-gray);
        }

        .alert-action {
            font-size: 0.55rem;
            padding: 0.25rem 0.5rem;
            background: var(--primary-blue);
            color: white;
            border-radius: 4px;
            font-weight: 500;
            white-space: nowrap;
        }

        /* Floating Elements */
        .floating-card {
            position: absolute;
            background: var(--white);
            border-radius: 12px;
            padding: 1rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            border: 1px solid var(--border);
            animation: float 4s ease-in-out infinite;
            z-index: 10;
        }

        .floating-card.notification {
            top: 10%;
            right: -30px;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            animation-delay: 0s;
        }

        .floating-card.stock-update {
            bottom: 15%;
            left: -40px;
            animation-delay: 2s;
        }

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

        .notification-icon {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

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

        .notification-text {
            font-size: 0.75rem;
        }

        .notification-title {
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.1rem;
        }

        .notification-desc {
            color: var(--text-gray);
            font-size: 0.7rem;
        }

        .stock-update-header {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
        }

        .stock-update-icon {
            width: 24px;
            height: 24px;
            background: rgba(37, 99, 235, 0.1);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-blue);
        }

        .stock-update-icon svg {
            width: 12px;
            height: 12px;
        }

        .stock-update-title {
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--text-dark);
        }

        .stock-mini-chart {
            display: flex;
            align-items: flex-end;
            gap: 3px;
            height: 30px;
        }

        .stock-bar {
            width: 8px;
            background: var(--primary-light);
            border-radius: 2px;
            transition: height 0.3s ease;
        }

        .stock-bar:nth-child(1) { height: 40%; }
        .stock-bar:nth-child(2) { height: 65%; }
        .stock-bar:nth-child(3) { height: 45%; }
        .stock-bar:nth-child(4) { height: 80%; }
        .stock-bar:nth-child(5) { height: 60%; }
        .stock-bar:nth-child(6) { height: 90%; background: var(--primary-blue); }

        /* Logos Section */
        .logos-section {
            padding: 3rem 0;
            background: var(--white);
            border-bottom: 1px solid var(--border);
            overflow: hidden;
        }

        .logos-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .logos-header p {
            font-size: 0.9rem;
            color: var(--text-gray);
            font-weight: 500;
        }

        .logos-wrapper {
            position: relative;
            width: 100%;
            overflow: hidden;
        }

        .logos-wrapper::before,
        .logos-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            width: 150px;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .logos-wrapper::before {
            left: 0;
            background: linear-gradient(90deg, var(--white) 0%, transparent 100%);
        }

        .logos-wrapper::after {
            right: 0;
            background: linear-gradient(90deg, transparent 0%, var(--white) 100%);
        }

        .logos-track {
            display: flex;
            align-items: center;
            gap: 4rem;
            animation: scroll-logos 25s linear infinite;
            width: max-content;
        }

        .logos-track:hover {
            animation-play-state: paused;
        }

        @keyframes scroll-logos {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .logo-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.8rem 1.5rem;
            background: var(--bg-light);
            border-radius: 10px;
            border: 1px solid var(--border);
            white-space: nowrap;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .logo-item:hover {
            border-color: var(--primary-light);
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
        }

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

        .logo-item span {
            font-weight: 600;
            font-size: 1rem;
            color: var(--text-dark);
        }

        /* Features Section */
        .features {
            padding: 6rem 2rem;
            background: white;
        }

        .section-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 4rem;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.4rem 1rem;
            background: rgba(37, 99, 235, 0.08);
            border-radius: 100px;
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

        .section-header h2 {
            font-family: var(--font-logo);
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .section-header p {
            font-size: 1.1rem;
            color: var(--text-gray);
        }

        .features-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .feature-card {
            padding: 2rem;
            background: white;
            border: 1px solid var(--border);
            border-radius: 16px;
            transition: all 0.3s ease;
            position: relative;
        }

        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
            border-color: var(--primary-light);
        }

        .feature-card.highlighted {
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.03), rgba(16, 185, 129, 0.03));
            border-color: var(--primary-light);
        }

        .feature-card.highlighted::before {
            content: 'Destacado';
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 0.65rem;
            font-weight: 600;
            padding: 0.25rem 0.6rem;
            background: var(--accent);
            color: white;
            border-radius: 4px;
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            background: var(--bg-light);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--primary-blue);
            border: 1px solid var(--border);
        }

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

        .feature-card h3 {
            font-size: 1.15rem;
            margin-bottom: 0.75rem;
            color: var(--text-dark);
            font-weight: 600;
        }

        .feature-card p {
            color: var(--text-gray);
            line-height: 1.7;
            font-size: 0.95rem;
        }

        /* Benefits Section */
        .benefits {
            padding: 6rem 2rem;
            background: var(--bg-light);
        }

        .benefits-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        /* Roadmap/Journey Layout */
        .benefits-roadmap {
            position: relative;
            padding: 2rem 0;
            min-height: 850px;
        }

        /* SVG Path connecting items */
        .roadmap-path {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .roadmap-path svg {
            width: 100%;
            height: 100%;
        }

        .roadmap-line-solid {
            fill: none;
            stroke: url(#roadmapGradient);
            stroke-width: 3;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .roadmap-line-glow {
            fill: none;
            stroke: #60a5fa;
            stroke-width: 4;
            stroke-linecap: round;
            stroke-linejoin: round;
            stroke-dasharray: 80 2500;
            stroke-dashoffset: 0;
            animation: travel-light 6s ease-in-out infinite;
            opacity: 0.9;
        }

        @keyframes travel-light {
            0% {
                stroke-dashoffset: 0;
                opacity: 0;
            }
            5% {
                opacity: 0.9;
            }
            95% {
                opacity: 0.9;
            }
            100% {
                stroke-dashoffset: -2500;
                opacity: 0;
            }
        }

        /* Benefit items zigzag */
        .benefits-list {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            gap: 4.5rem;
        }

        .benefit-item {
            display: flex;
            gap: 1.5rem;
            align-items: flex-start;
            padding: 1.8rem;
            background: var(--white);
            border-radius: 16px;
            border: 1px solid var(--border);
            transition: all 0.4s ease;
            max-width: 420px;
            position: relative;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }

        .benefit-item:hover {
            box-shadow: 0 12px 30px rgba(37, 99, 235, 0.12);
            transform: translateY(-4px);
            border-color: var(--primary-light);
        }

        /* Zigzag positioning */
        .benefit-item:nth-child(odd) {
            align-self: flex-start;
            margin-left: 5%;
        }

        .benefit-item:nth-child(even) {
            align-self: flex-end;
            margin-right: 5%;
        }

        .benefit-number {
            min-width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-light));
            color: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
            flex-shrink: 0;
        }

        .benefit-text h3 {
            font-size: 1.15rem;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
            font-weight: 600;
        }

        .benefit-text p {
            color: var(--text-gray);
            line-height: 1.7;
            font-size: 0.92rem;
        }

        /* Stats section below */
        .benefits-stats {
            margin-top: 4rem;
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
            border: 1px solid var(--border);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .benefit-stat-card {
            text-align: center;
            padding: 1.5rem 1rem;
            background: var(--bg-light);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .benefit-stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(37, 99, 235, 0.1);
        }

        .benefit-stat-card .stat-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 0.3rem;
        }

        .benefit-stat-card .stat-label {
            color: var(--text-gray);
            font-size: 0.85rem;
        }

        /* Responsive for benefits */
        @media (max-width: 768px) {
            .benefits-roadmap {
                min-height: auto;
            }

            .benefit-item:nth-child(odd),
            .benefit-item:nth-child(even) {
                align-self: center;
                margin-left: 0;
                margin-right: 0;
                max-width: 100%;
            }

            .roadmap-path {
                display: none;
            }

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

        /* CTA Section */
        .cta-section {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, var(--text-dark) 0%, #1e293b 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(ellipse 50% 50% at 20% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse 50% 50% at 80% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .cta-content {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .cta-content h2 {
            font-family: var(--font-logo);
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .cta-content p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.85;
            color: var(--text-light);
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            background: var(--white);
            color: var(--text-dark);
            border-radius: 10px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        }

        .cta-button svg {
            width: 18px;
            height: 18px;
        }

        /* Footer styles en footer.css */

        /* Responsive */
        @media (max-width: 1200px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .hero-text {
                padding-right: 0;
                text-align: center;
            }

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

            .dashboard-container {
                transform: none;
                max-width: 600px;
                margin: 0 auto;
            }

            .floating-card {
                display: none;
            }
        }

        @media (max-width: 1024px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .hero-text h1 {
                font-size: 2.8rem;
            }

            .stats-row {
                grid-template-columns: repeat(3, 1fr);
                gap: 1rem;
            }

            .stat-card {
                padding: 0.8rem;
            }

            .stat-card-value {
                font-size: 1.2rem;
            }

            .stat-card-label {
                font-size: 0.65rem;
            }

            .dashboard-preview {
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {
            .hero-text h1 {
                font-size: 2.2rem;
            }

            .hero-actions {
                flex-direction: column;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .stats-row {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.8rem;
            }

            .stat-card {
                padding: 0.75rem;
            }

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

            .dashboard-grid {
                grid-template-columns: 1fr;
            }

            .cta-content h2 {
                font-size: 2rem;
            }

            .cta-content p {
                font-size: 1rem;
            }

            .logo-item {
                padding: 0.6rem 1rem;
                font-size: 0.9rem;
            }

            .logo-item svg {
                width: 20px;
                height: 20px;
            }
        }

        @media (max-width: 600px) {
            .hero-badge {
                padding: 0.3rem 0.8rem;
                font-size: 0.7rem;
            }

            .hero-text h1 {
                font-size: 1.8rem;
                line-height: 1.2;
            }

            .hero-text p {
                font-size: 0.95rem;
            }

            .hero-actions {
                flex-direction: column;
                gap: 0.8rem;
            }

            .cta-primary, .cta-secondary {
                width: 100%;
                justify-content: center;
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }

            .section-header h2 {
                font-size: 1.5rem;
            }

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

            .stat-card {
                padding: 0.6rem;
            }

            .stat-card-value {
                font-size: 0.95rem;
            }

            .stat-card-label {
                font-size: 0.6rem;
            }

            .chart-title {
                font-size: 0.7rem;
            }

            .alerts-title {
                font-size: 0.7rem;
            }

            .alert-product {
                font-size: 0.6rem;
            }

            .cta-content h2 {
                font-size: 1.5rem;
            }

            .cta-content p {
                font-size: 0.9rem;
            }

            .cta-button {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }

            .benefit-item {
                max-width: 100%;
                padding: 1.2rem;
                margin-left: 0 !important;
                margin-right: 0 !important;
            }

            .benefit-item:nth-child(odd),
            .benefit-item:nth-child(even) {
                align-self: center;
            }

            .logos-track {
                gap: 2rem;
            }
        }

        @media (max-width: 480px) {
            .hero-text h1 {
                font-size: 1.5rem;
            }

            .hero-text p {
                font-size: 0.9rem;
                margin-bottom: 1.5rem;
            }

            .section-header h2 {
                font-size: 1.3rem;
            }

            .section-header p {
                font-size: 0.95rem;
            }

            .dashboard-header {
                padding: 0.6rem 0.8rem;
            }

            .dashboard-tab {
                padding: 0.2rem 0.6rem;
                font-size: 0.6rem;
            }

            .dashboard-body {
                padding: 0.8rem;
            }

            .stats-row {
                gap: 0.6rem;
            }

            .stat-card {
                padding: 0.5rem;
            }

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

            .stat-card-value {
                font-size: 0.85rem;
                margin-bottom: 0;
            }

            .stat-card-label {
                font-size: 0.55rem;
            }

            .chart-container {
                height: 100px;
            }

            .feature-card {
                padding: 1.5rem;
            }

            .feature-icon {
                width: 40px;
                height: 40px;
                margin-bottom: 1rem;
            }

            .feature-card h3 {
                font-size: 1rem;
            }

            .feature-card p {
                font-size: 0.85rem;
            }

            .cta-section {
                padding: 4rem 1rem;
            }

            .cta-content h2 {
                font-size: 1.3rem;
                margin-bottom: 0.8rem;
            }

            .cta-content p {
                font-size: 0.85rem;
                margin-bottom: 1.5rem;
            }

            .cta-button {
                padding: 0.7rem 1.2rem;
                font-size: 0.85rem;
            }
        }

        /* Scroll animations */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }