/* Z-Monitor Promotion Page Styling */

:root {
    --z-bg: #0a0e17;
    --z-card-bg: rgba(255, 255, 255, 0.05);
    --z-primary: #4fd1c5;
    --z-secondary: #63b3ed;
    --z-accent: #f56565;
    --z-text: #e2e8f0;
    --z-text-muted: #a0aec0;
    --z-border: rgba(255, 255, 255, 0.1);
}

.z-body {
    background-color: var(--z-bg);
    color: var(--z-text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: hidden;
}

.z-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.z-hero {
    position: relative;
    padding: 100px 0;
    background: radial-gradient(circle at center, rgba(79, 209, 197, 0.1) 0%, transparent 70%);
    overflow: hidden;
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    text-align: left;
}

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

.hero-image {
    flex: 1;
    max-width: 500px;
}

.z-hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--z-border);
    transition: all 0.3s ease;
}

.z-hero-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 60px rgba(79, 209, 197, 0.2);
}

.z-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, var(--z-primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--z-text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-badge {
    margin-top: 50px;
}

.z-hero-actions {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.z-hero-actions a:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(79, 209, 197, 0.4) !important;
}

/* Responsive for Hero Section */
@media (max-width: 992px) {
    .hero-content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-text {
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .z-hero-actions {
        flex-direction: column;
        gap: 20px;
        justify-content: center;
    }

    .z-hero-actions a {
        margin-left: 0 !important;
    }
}

/* Feature Sections */
.z-section {
    padding: 80px 0;
}

.z-section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--z-primary);
}

.z-section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--z-text-muted);
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.z-highlight-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.z-highlight-card:hover {
    transform: translateY(-5px);
    border-color: var(--z-primary);
    box-shadow: 0 15px 40px rgba(79, 209, 197, 0.2);
}

.z-highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--z-primary), transparent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.highlight-icon {
    width: 60px;
    height: 60px;
    background: rgba(79, 209, 197, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--z-primary);
    font-size: 1.5rem;
}

.z-highlight-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--z-text);
}

.z-highlight-card p {
    color: var(--z-text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
}

.highlight-features {
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--z-text-muted);
    font-size: 0.95rem;
}

.feature-item .fas {
    color: var(--z-primary);
    margin-right: 10px;
    font-size: 1rem;
}

/* Performance Indicators */
.z-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.z-indicator-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.z-indicator-card:hover {
    transform: translateY(-5px);
    border-color: var(--z-primary);
    box-shadow: 0 10px 30px rgba(79, 209, 197, 0.2);
}

.indicator-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.indicator-icon {
    font-size: 2rem;
    margin-right: 15px;
    color: var(--z-primary);
}

.indicator-progress {
    position: relative;
    display: inline-block;
}

.progress-ring {
    transform: rotate(-90deg);
}

.progress-ring-circle {
    fill: transparent;
    stroke-width: 3;
    stroke-dasharray: 169.65;
    stroke-dashoffset: 169.65;
    transition: stroke-dashoffset 2s ease-in-out;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--z-primary);
}

.indicator-name {
    display: block;
    font-size: 1rem;
    font-weight: bold;
    color: var(--z-text);
    margin-bottom: 5px;
}

.indicator-desc {
    display: block;
    font-size: 0.85rem;
    color: var(--z-text-muted);
}

/* Usage Flow */
.usage-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.usage-step {
    flex: 1;
    min-width: 250px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.usage-step:hover {
    transform: translateY(-5px);
    border-color: var(--z-primary);
    box-shadow: 0 10px 30px rgba(79, 209, 197, 0.2);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--z-primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.step-content {
    margin-top: 10px;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--z-primary);
}

.step-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--z-text);
}

.step-description {
    color: var(--z-text-muted);
    line-height: 1.6;
}

.usage-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--z-primary), transparent);
    margin: 20px 0;
    display: none;
}

@media (min-width: 768px) {
    .usage-connector {
        display: block;
    }
}

/* Scroll Reveal Animation */
.z-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.z-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .z-hero h1 {
        font-size: 2.5rem;
    }

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

    .z-section-title {
        font-size: 2rem;
    }

    .z-section-subtitle {
        font-size: 1rem;
    }

    .usage-flow {
        flex-direction: column;
        gap: 40px;
    }

    .usage-connector {
        width: 2px;
        height: 40px;
        background: linear-gradient(180deg, var(--z-primary), transparent);
    }
}

@media (max-width: 576px) {
    .z-hero {
        padding: 60px 0;
    }

    .z-hero h1 {
        font-size: 2rem;
    }

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

    .z-section {
        padding: 50px 0;
    }

    .z-section-title {
        font-size: 1.8rem;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .z-highlight-card {
        padding: 30px 20px;
    }
}

/* Additional styling for Z-Monitor specific features */
.highlight-icon .fas-video {
    color: var(--z-primary);
}

.highlight-icon .fas-heartbeat {
    color: var(--z-primary);
}

.highlight-icon .fas-bell {
    color: var(--z-primary);
}

.highlight-icon .fas-brain {
    color: var(--z-primary);
}

.highlight-icon .fas-image {
    color: var(--z-primary);
}

.highlight-icon .fas-shield-alt {
    color: var(--z-primary);
}