/* 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;
    position: relative;
    z-index: 2;
}

.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 - Video Loop */
.monitor-loop-video {
    display: block;
    width: 100%;
    height: 290px;
    max-width: 414px;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 0 30px rgba(0,124,188,0.15);
}

/* 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);
}

.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: 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;
    }

    .monitor-loop-video {
        height: 200px;
    }
    
    .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 */