/* Quimonit - Home Page Styles */
/* Color Theme: White background with #007cbc accent - matching dashboard */

:root {
    --primary: #007cbc;
    --primary-dark: #005a8a;
    --primary-light: #e6f3fa;
    --secondary: #2d3748;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius: 8px;
    --radius-lg: 12px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--white);
    color: var(--gray-800);
    line-height: 1.5;
    min-height: 100vh;
}

/* Header */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
}

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

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.2s;
    position: relative;
}

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

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--gray-600);
}

.mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    text-decoration: none;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
}

/* Hero Section */
.hero {
    position: relative;
    height: calc(100vh - 73px - 10px);
    /* Viewport height minus header minus 10px gap */
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 73px;
    /* Account for fixed header */
    margin-bottom: 10px;
    /* 10px gap to bottom of fold */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(0, 124, 188, 0.85) 0%,
            rgba(0, 90, 138, 0.5) 50%,
            rgba(45, 55, 72, 0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
    color: var(--white);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.revenue-loss {
    display: inline-block;
    font-weight: 700;
    color: #ef4444;
    font-size: 3.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    min-width: 200px;
    margin: 0.5rem 0;
}

/* Features Section */
.features-section {
    padding: 5rem 2rem;
    background: var(--white);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.features-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.feature-card {
    background: var(--gray-50);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: var(--radius);
    color: var(--primary);
}

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

.feature-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.feature-card-text {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Logo Carousel Section */
.logo-carousel-section {
    background: var(--gray-100);
    padding: 3rem 2rem;
    overflow: hidden;
}

.logo-carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.logo-carousel-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 2rem;
}

.logo-carousel {
    position: relative;
    overflow: hidden;
}

.logo-track {
    display: flex;
    gap: 4rem;
    width: max-content;
    animation: scroll 30s linear infinite;
}

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

.logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.logo-item:hover {
    opacity: 1;
}

.placeholder-logo {
    width: 240px;
    height: 80px;
    color: var(--gray-600);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Footer */
.footer {
    position: relative;
    background: url('/images/footer-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 4rem 2rem;
    min-height: 300px;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 90, 138, 0.2);
    /* Darker blue overlay at 20% opacity */
    z-index: 1;
}

.footer-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: opacity 0.2s;
}

.footer-link:hover {
    opacity: 0.8;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    color: var(--white);
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer-social a:hover {
    opacity: 1;
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-column {
        align-items: center;
        width: 100%;
    }

    .footer-column:nth-child(2) {
        display: none;
    }

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

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

    .footer-column-right {
        align-items: center;
    }
}

/* Live Stats Section */
.live-stats-section {
    background: var(--white);
    padding: 4rem 2rem;
}

.live-stats-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.live-stat-card {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.live-stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: var(--radius);
    color: var(--primary);
}

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

.live-stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.live-stat-label {
    font-size: 0.9375rem;
    color: var(--gray-600);
    font-weight: 500;
}

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

@media (max-width: 480px) {
    .live-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Why Quimonit Carousel Section */
.why-quimonit-section {
    background: #111827;
    padding: 4rem 1rem;
    overflow: hidden;
    position: relative;
}

.why-quimonit-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(0,124,188,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.why-quimonit-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.why-quimonit-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.why-quimonit-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(0,124,188,0.3);
}

.why-quimonit-subtitle {
    font-size: 1rem;
    color: #9ca3af;
}

.carousel-wrapper {
    position: relative;
    background: rgba(0,0,0,0.2);
    border-radius: 1rem;
    border: 1px solid rgba(0,124,188,0.15);
    padding: 1.5rem;
    box-shadow: 0 0 40px rgba(0,124,188,0.1);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 1rem;
}

.slide-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 320px;
    background: linear-gradient(135deg, rgba(0,124,188,0.05) 0%, rgba(0,0,0,0.2) 100%);
    border-radius: 0.75rem;
    border: 1px solid rgba(0,124,188,0.2);
    box-shadow: inset 0 0 30px rgba(0,124,188,0.05);
}

.slide-content {
    padding: 0.5rem;
}

.slide-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    text-shadow: 0 0 20px rgba(0,124,188,0.2);
}

.slide-content p {
    font-size: 0.95rem;
    color: #d1d5db;
    line-height: 1.6;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #007cbc;
    background: transparent;
    color: #007cbc;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.carousel-btn:hover {
    background: #007cbc;
    color: #fff;
    box-shadow: 0 0 20px rgba(0,124,188,0.5);
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
}

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

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: #007cbc;
    box-shadow: 0 0 12px #007cbc;
    transform: scale(1.2);
}

/* Visual: 24/7 Monitor - New Design */
.visual-247-new {
    position: relative;
    width: 240px;
    height: 170px;
    transform: scale(1.3);
}

/* Clock */
.monitor-clock {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 50px;
    height: 50px;
    background: #1f2937;
    border-radius: 50%;
    border: 3px solid #007cbc;
    box-shadow: 0 0 15px rgba(0,124,188,0.4);
    z-index: 1;
}

.clock-face {
    position: relative;
    width: 100%;
    height: 100%;
}

.clock-hand {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform-origin: bottom center;
    background: #007cbc;
    border-radius: 2px;
}

.hour-hand {
    width: 3px;
    height: 12px;
    margin-left: -1.5px;
    animation: hourSpin 12s infinite linear;
}

.minute-hand {
    width: 2px;
    height: 16px;
    margin-left: -1px;
    animation: minuteSpin 3s infinite linear;
}

.second-hand {
    width: 1px;
    height: 18px;
    margin-left: -0.5px;
    background: #ef4444;
    animation: secondSpin 1s infinite linear;
}

.clock-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

@keyframes hourSpin {
    from { transform: translateX(-50%) rotate(0deg); }
    to { transform: translateX(-50%) rotate(360deg); }
}

@keyframes minuteSpin {
    from { transform: translateX(-50%) rotate(0deg); }
    to { transform: translateX(-50%) rotate(360deg); }
}

@keyframes secondSpin {
    from { transform: translateX(-50%) rotate(0deg); }
    to { transform: translateX(-50%) rotate(360deg); }
}

/* Magnifying glasses on mockup with magnification effect */
.magnifier {
    position: absolute;
    z-index: 10;
    animation: magnifierFloat 3s ease-in-out infinite;
}

.magnifier-glass {
    width: 40px;
    height: 40px;
    background: rgba(0,124,188,0.15);
    border: 3px solid #007cbc;
    border-radius: 50%;
    box-shadow: 0 0 25px rgba(0,124,188,0.6), inset 0 0 15px rgba(0,124,188,0.3);
    position: relative;
    overflow: hidden;
}

/* Magnification - shows scaled up version of mockup */
.magnifier-content {
    position: absolute;
    width: 250%;
    height: 250%;
    top: -75%;
    left: -75%;
    background: 
        linear-gradient(#007cbc 14px, transparent 14px),
        linear-gradient(90deg, #1e293b 30%, #64748b 50%, #1e293b 70%) 0 8px / 100% 12px no-repeat,
        linear-gradient(90deg, #e2e8f0 0%, #e2e8f0 50%, transparent 50%) 0 24px / 100% 8px no-repeat,
        linear-gradient(90deg, #e2e8f0 0%, #e2e8f0 50%, transparent 50%) 0 36px / 100% 8px no-repeat,
        #f1f5f9;
    transform: scale(0.7);
    transform-origin: center;
    border-radius: 50%;
}

/* Highlight reflection */
.magnifier-glass::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, rgba(255,255,255,0.5), transparent);
    border-radius: 50%;
}

/* Handle - perpendicular to lens */
.magnifier-handle {
    position: absolute;
    width: 8px;
    height: 28px;
    background: linear-gradient(180deg, #6b7280 0%, #374151 100%);
    border-radius: 4px;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 3px 6px rgba(0,0,0,0.4);
}

.magnifier-1 {
    top: 25%;
    left: 40%;
    animation-delay: 0s;
}

.magnifier-2 {
    top: 59%;
    right: 68%;
    animation-delay: 0.5s;
}

.magnifier-3 {
    bottom: 4%;
    left: 69%;
    animation-delay: 1s;
}

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

.monitor-camera .camera-body {
    width: 28px;
    height: 20px;
    background: #374151;
    border-radius: 4px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.monitor-camera .camera-lens {
    width: 14px;
    height: 14px;
    background: #1f2937;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lens-ring {
    width: 10px;
    height: 10px;
    border: 2px solid #007cbc;
    border-radius: 50%;
    box-shadow: 0 0 8px #007cbc;
}

.lens-glass {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #007cbc;
    border-radius: 50%;
    animation: lensGlow 2s infinite;
}

@keyframes lensGlow {
    0%, 100% { box-shadow: 0 0 4px #007cbc; }
    50% { box-shadow: 0 0 12px #007cbc, 0 0 20px #007cbc; }
}

.monitor-camera .camera-base {
    width: 16px;
    height: 6px;
    background: #1f2937;
    border-radius: 2px;
    margin-top: 2px;
    margin-left: 6px;
}

/* Website Mockup */
.monitor-website {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 85px;
    background: #f8fafc;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 0 30px rgba(0,124,188,0.15);
}

.monitor-back {
    position: relative;
    z-index: 1;
}

.site-header {
    height: 14px;
    background: #007cbc;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6px;
}

.site-logo {
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 2px;
    font-size: 8px;
    font-weight: bold;
    color: #007cbc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-nav {
    display: flex;
    gap: 3px;
}

.site-nav span {
    width: 8px;
    height: 3px;
    background: rgba(255,255,255,0.7);
    border-radius: 1px;
}

.site-hero {
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.site-headline {
    width: 80%;
    height: 10px;
    background: #1e293b;
    border-radius: 2px;
}

.site-subheadline {
    width: 60%;
    height: 6px;
    background: #64748b;
    border-radius: 2px;
}

.site-cta {
    width: 45px;
    height: 10px;
    background: #007cbc;
    border-radius: 2px;
    margin-top: 2px;
}

.site-features {
    display: flex;
    justify-content: space-around;
    padding: 0 8px 6px;
}

.feature-box {
    width: 30px;
    height: 16px;
    background: #e2e8f0;
    border-radius: 2px;
}

/* Visual: Alerts */
.visual-alerts {
    position: relative;
    width: 280px;
    height: 200px;
    transform: scale(1.3);
    transform-origin: center;
}

.visual-alerts .monitor-website {
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.notification {
    position: absolute;
    background: #1f2937;
    border: 1px solid #007cbc;
    border-radius: 6px;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 0.65rem;
    animation: notifyPop 2s infinite;
    box-shadow: 0 4px 12px rgba(0,124,188,0.3);
    z-index: 10;
}

.notification svg {
    width: 12px;
    height: 12px;
    color: #007cbc;
}

.notification-1 { top: 22%; left: 47%; }
.notification-2 { top: 75%; right: 43%; animation-delay: 0.3s; }
.notification-3 { bottom: 19%; left: 19px; animation-delay: 0.6s; }
.notification-4 { bottom: 25%; right: 9%; animation-delay: 0.9s; }
.notification-5 { top: 41%; left: 14%; animation-delay: 1.2s; }
.notification-6 { top: 42%; right: 4%; animation-delay: 1.5s; }

@keyframes notifyPop {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: 0.85; }
}

/* Visual: Multi-Location */
.visual-multilocation {
    width: 320px;
    height: 160px;
}

.world-map-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.world-map-img {
    width: 200%;
    height: 200%;
    object-fit: contain;
    filter: drop-shadow(0 0 1px #007cbc);
}

.pulse-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.pulse-dot {
    fill: #007cbc;
    filter: drop-shadow(0 0 6px #007cbc);
    animation: pulseGlow 2s infinite;
}

.pulse-dot:nth-child(1) { animation-delay: 0s; }
.pulse-dot:nth-child(2) { animation-delay: 0.15s; }
.pulse-dot:nth-child(3) { animation-delay: 0.3s; }
.pulse-dot:nth-child(4) { animation-delay: 0.45s; }
.pulse-dot:nth-child(5) { animation-delay: 0.6s; }
.pulse-dot:nth-child(6) { animation-delay: 0.75s; }
.pulse-dot:nth-child(7) { animation-delay: 0.9s; }
.pulse-dot:nth-child(8) { animation-delay: 1.05s; }
.pulse-dot:nth-child(9) { animation-delay: 1.2s; }
.pulse-dot:nth-child(10) { animation-delay: 1.35s; }

@keyframes pulseGlow {
    0%, 100% { fill: #007cbc; filter: drop-shadow(0 0 2px #007cbc); }
    50% { fill: #38bdf8; filter: drop-shadow(0 0 6px #38bdf8); }
}

/* Visual: Reports */
.visual-reports {
    display: flex;
    align-items: flex-end;
    gap: 14px;
    height: 160px;
    padding: 25px;
}

.chart-bar {
    width: 24px;
    background: linear-gradient(180deg, #007cbc 0%, #005a8f 100%);
    border-radius: 4px 4px 0 0;
    animation: chartGrow 2s infinite ease-in-out;
    animation-direction: alternate;
}

.chart-bar:nth-child(1) { animation-delay: 0s; }
.chart-bar:nth-child(2) { animation-delay: 0.1s; }
.chart-bar:nth-child(3) { animation-delay: 0.2s; }
.chart-bar:nth-child(4) { animation-delay: 0.3s; }
.chart-bar:nth-child(5) { animation-delay: 0.4s; }
.chart-bar:nth-child(6) { animation-delay: 0.5s; }
.chart-bar:nth-child(7) { animation-delay: 0.6s; }

@keyframes chartGrow {
    0% { height: 15%; }
    100% { height: var(--height); }
}

/* Visual: AI */
.visual-ai {
    position: relative;
    width: 180px;
    height: 180px;
}

.ai-bot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.bot-head {
    width: 56px;
    height: 46px;
    background: transparent;
    border: 3px solid #007cbc;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: -4px;
    box-shadow: 0 0 15px rgba(0,124,188,0.3);
}

.bot-eye {
    width: 12px;
    height: 12px;
    border: 3px solid #007cbc;
    border-radius: 50%;
    background: transparent;
    animation: botBlink 3s infinite;
    box-shadow: 0 0 8px #007cbc;
}

@keyframes botBlink {
    0%, 90%, 100% { transform: scaleY(1); }
    95% { transform: scaleY(0.1); }
}

.bot-body {
    width: 68px;
    height: 56px;
    background: transparent;
    border: 3px solid #007cbc;
    border-radius: 10px 10px 18px 18px;
    box-shadow: 0 0 15px rgba(0,124,188,0.3);
}

.calc-symbol {
    position: absolute;
    font-size: 1.6rem;
    color: #007cbc;
    animation: symbolFloat 3s infinite;
    font-weight: bold;
}

.symbol-1 { top: 5%; left: 5%; animation-delay: 0s; }
.symbol-2 { top: 5%; right: 5%; animation-delay: 0.5s; }
.symbol-3 { bottom: 15%; left: 0; animation-delay: 1s; }
.symbol-4 { bottom: 15%; right: 0; animation-delay: 1.5s; }
.symbol-5 { top: 35%; left: -5%; animation-delay: 0.3s; }
.symbol-6 { top: 35%; right: -5%; animation-delay: 0.8s; }
.symbol-7 { bottom: 5%; left: 10%; animation-delay: 1.2s; }
.symbol-8 { bottom: 5%; right: 10%; animation-delay: 1.7s; }

@keyframes symbolFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.7; }
    50% { transform: translateY(-8px) rotate(8deg); opacity: 1; }
}

.data-stream {
    position: absolute;
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, transparent, #007cbc, transparent);
    animation: streamFlow 1.5s infinite;
}

.stream-1 { left: 25%; top: 20%; }
.stream-2 { right: 25%; top: 20%; animation-delay: 0.75s; }

@keyframes streamFlow {
    0% { transform: translateY(-15px); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(15px); opacity: 0; }
}

/* Visual: Priority Support - Partnership Design */
.visual-partnership {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    transform: scale(0.85);
    justify-content: center;
}

.starburst {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0%);
    width: 300px;
    height: 200px;
    z-index: 0;
    pointer-events: none;
    animation: starburstRotate 6s ease-in-out infinite;
}

@keyframes starburstRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    25% { transform: translate(-50%, -50%) rotate(10deg); }
    75% { transform: translate(-50%, -50%) rotate(-10deg); }
    100% { transform: translate(-50%, -50%) rotate(0deg); }
}

.burst-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 240px;
    background: linear-gradient(180deg, transparent 0%, rgba(0,124,188,0.4) 50%, transparent 100%);
    transform-origin: top center;
    transform: translateX(-50%) rotate(calc(var(--i) * 30deg));
    animation: burstPulse 2s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.1s);
}

@keyframes burstPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.9; }
}

.quimonit-logo {
    position: relative;
    z-index: 1;
}

.quimonit-logo img {
    width: 105px;
    height: auto;
    filter: drop-shadow(0 0 2px rgba(0,0,0,0.5));
}

.plus-sign {
    position: relative;
    z-index: 1;
    font-size: 24px;
    color: #007cbc;
    font-weight: bold;
}

    .partner-website {
        position: relative;
        z-index: 1;
        transform: scale(0.65);
        margin: 0 -20px;
    }

.partner-website .monitor-website {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
}

.ideatree-logo {
    position: relative;
    z-index: 1;
}

.ideatree-logo img {
    max-width: 100px;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.website-float .monitor-website {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
}

@keyframes floatBob {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

.lifesaver {
    position: absolute;
    bottom: 18px;
    right: 40px;
    width: 48px;
    height: 48px;
    color: #ef4444;
    animation: lifesaverBob 2s ease-in-out infinite;
    filter: drop-shadow(0 0 12px rgba(239,68,68,0.5));
}

@keyframes lifesaverBob {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .carousel-slide {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .slide-visual {
        height: 220px;
        overflow: visible;
    }
    
    .slide-content h3 {
        font-size: 1.5rem;
    }
    
    .why-quimonit-title {
        font-size: 2rem;
    }
    
    .visual-partnership {
        transform: none;
        overflow: visible;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .quimonit-logo img {
        width: 70px;
    }
    
    .ideatree-logo img {
        max-width: 70px;
    }
    
    .plus-sign {
        font-size: 20px;
    }
    
    .starburst {
        display: block;
        top: 50%;
        left: 50%;
        transform: translate(-50%, 0%);
    }
    
    .burst-line {
        height: 190px;
    }
}

/* Attribution Section */
.attribution {
    background-color: #282828;
    padding: 1.5rem 2rem;
    text-align: left;
}

.attribution p {
    color: var(--gray-400);
    font-size: 0.875rem;
    margin: 0;
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 968px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .features-title {
        font-size: 2rem;
    }

    .feature-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 1rem;
    }

    .main-nav {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.875rem;
    }

    .nav-link.active::after {
        bottom: -1rem;
    }

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

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

    .revenue-loss {
        font-size: 1.25rem;
        min-width: 150px;
    }

    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .features-section {
        padding: 3rem 1rem;
    }

    .features-title {
        font-size: 1.75rem;
    }

    .features-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        position: relative;
    }

    .main-nav {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .nav-link {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        order: 2;
    }

    .main-nav .btn {
        order: 1;
    }

    .main-nav.mobile-open .nav-link {
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        padding: 0.75rem 1rem;
        border-bottom: 1px solid var(--gray-100);
        background: white;
        z-index: 101;
    }

    .main-nav.mobile-open::after {
        content: '';
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        height: 180px;
        background: white;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        z-index: 100;
    }

    .main-nav.mobile-open .nav-link:nth-child(2) { top: calc(100% + 0px); }
    .main-nav.mobile-open .nav-link:nth-child(3) { top: calc(100% + 45px); }
    .main-nav.mobile-open .nav-link:nth-child(4) { top: calc(100% + 90px); }
    .main-nav.mobile-open .nav-link:nth-child(5) { top: calc(100% + 135px); }

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

    .feature-card-title {
        font-size: 1.25rem;
    }
}

/* What We Monitor Section */
.what-we-monitor-section {
    padding: 5rem 1.5rem;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.wwm-container {
    max-width: 1200px;
    margin: 0 auto;
}

.wwm-header {
    text-align: center;
    margin-bottom: 3rem;
}

.wwm-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.wwm-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.wwm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.wwm-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wwm-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.wwm-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

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

.wwm-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.wwm-card p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works-section {
    padding: 5rem 1.5rem;
    background: var(--gray-900);
}

.hiw-container {
    max-width: 900px;
    margin: 0 auto;
}

.hiw-header {
    text-align: center;
    margin-bottom: 3rem;
}

.hiw-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.hiw-subtitle {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.7);
}

.hiw-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hiw-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.hiw-step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), #0096c7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.hiw-step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.hiw-step-content p {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.hiw-cta {
    text-align: center;
    margin-top: 3rem;
}

.hiw-cta .btn {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* Responsive - What We Monitor & How It Works */
@media (max-width: 900px) {
    .wwm-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .wwm-grid {
        grid-template-columns: 1fr;
    }

    .wwm-title,
    .hiw-title {
        font-size: 1.75rem;
    }

    .what-we-monitor-section,
    .how-it-works-section {
        padding: 3rem 1rem;
    }

    .hiw-step {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}
/* v1.1 */