/* Modern Landing Page - Motor Monitoring */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #dc2626;
    --primary-dark: #991b1b;
    --primary-light: #ef4444;
    --secondary: #dc2626;
    --accent: #06b6d4;
    --success: #dc2626;
    --warning: #f59e0b;
    --danger: #ef4444;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--gray-200);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.logo:hover {
    opacity: 0.8;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
    margin-left: 48px;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    transition: color 0.2s;
}

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

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: var(--gray-100);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
}

.lang-toggle:hover {
    background: var(--gray-200);
}

.lang-icon {
    font-size: 18px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 140px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.hero-simple {
    min-height: auto;
    padding: 120px 0 80px;
    text-align: center;
}

.hero-simple .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-simple h1 {
    font-size: 3rem;
    margin-bottom: 24px;
}

.hero-simple .hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
}

@media (max-width: 768px) {
    .hero-simple {
        padding: 100px 0 60px;
    }

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

    .hero-simple .hero-subtitle {
        font-size: 1.125rem;
    }
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(20, 184, 166, 0.08) 0%, transparent 50%);
    background-size: 200% 200%;
    animation: gradientMove 15s ease infinite;
    pointer-events: none;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.hero-content {
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(20, 184, 166, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--gray-900);
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--gray-700);
    border-color: var(--gray-300);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--gray-50);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

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

/* Dashboard Mockup */
.dashboard-mockup {
    position: relative;
    animation: fadeInUp 1s ease;
}

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

.mockup-window {
    background: white;
    border-radius: 16px;
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.window-header {
    display: flex;
    gap: 8px;
    padding: 16px;
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
}

.window-content {
    padding: 20px 16px;
}

.metric-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.metric-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--gray-50);
    border-radius: 10px;
    border: 1px solid var(--gray-200);
}

.metric-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 18px;
    flex-shrink: 0;
}

.metric-icon.operational {
    background: rgba(16, 185, 129, 0.1);
}

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

.metric-icon.critical {
    background: rgba(239, 68, 68, 0.1);
}

.metric-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
}

.metric-label {
    font-size: 0.7rem;
    color: var(--gray-600);
    white-space: nowrap;
}

.chart-area {
    margin-bottom: 24px;
    height: 150px;
}

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

.chart-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 2s ease forwards;
}

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

.chart-area {
    opacity: 0;
    animation: fadeIn 1s ease 0.5s forwards;
}

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

.equipment-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.equipment-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--gray-50);
    border-radius: 8px;
    border: 1px solid var(--gray-200);
}

.equipment-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.equipment-status.online {
    background: var(--success);
    box-shadow: 0 0 8px var(--success);
}

.equipment-status.warning {
    background: var(--warning);
    box-shadow: 0 0 8px var(--warning);
}

.equipment-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.equipment-metrics {
    display: flex;
    gap: 12px;
    font-size: 0.75rem;
    color: var(--gray-600);
}

/* Solution Section */
.solution {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--gray-900);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
}

.solution-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.step {
    position: relative;
    padding: 32px;
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    transition: all 0.3s;
}

.step:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(16, 185, 129, 0.15);
}

.step-number {
    position: relative;
    font-size: 3rem;
    font-weight: 900;
    color: var(--gray-100);
}

.step-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 16px;
    color: white;
    margin-bottom: 24px;
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.step p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* Technology Section */
.technology {
    padding: 100px 0;
    background: var(--gray-50);
}

.technology-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.technology-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--gray-900);
}

.technology-text > p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 32px;
    line-height: 1.8;
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tech-feature {
    display: flex;
    gap: 16px;
}

.tech-check {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--success);
    color: white;
    border-radius: 50%;
    font-weight: 800;
    flex-shrink: 0;
}

.tech-feature h4 {
    font-size: 1.125rem;
    margin-bottom: 4px;
    color: var(--gray-900);
}

.tech-feature p {
    color: var(--gray-600);
}

.tech-stack {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px;
    background: white;
    border-radius: 16px;
    border: 2px solid var(--gray-200);
    transition: all 0.3s;
    animation: float 3s ease-in-out infinite;
}

.tech-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
}

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

.tech-logo {
    font-size: 2rem;
}

.tech-item span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
}

/* Results Section */
.results {
    padding: 100px 0;
    background: white;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.result-card {
    padding: 32px;
    background: var(--gray-50);
    border-radius: 16px;
    border: 2px solid var(--gray-200);
    transition: all 0.3s;
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.result-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(220, 38, 38, 0.15);
}

.result-metric {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}

.result-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.result-card p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.star {
    font-size: 20px;
}

.testimonial-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid #f3f4f6;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar svg {
    width: 28px;
    height: 28px;
    color: white;
}

.author-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.author-role {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* Social Proof Stats */
.social-proof-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 64px;
    padding-top: 64px;
    border-top: 2px solid #e5e7eb;
}

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

.proof-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1;
}

.proof-label {
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: 500;
}

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

    .social-proof-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .proof-number {
        font-size: 2.5rem;
    }
}

/* Demo Section */
.demo {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.demo-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.demo-text > p {
    font-size: 1.125rem;
    opacity: 0.95;
    margin-bottom: 32px;
    line-height: 1.8;
}

.demo-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.demo-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.125rem;
}

.demo-form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--gray-700);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-top: 16px;
}

.success-message {
    text-align: center;
    padding: 48px 32px;
}

.success-message svg {
    color: var(--success);
    margin-bottom: 24px;
}

.success-message h3 {
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.success-message p {
    color: var(--gray-600);
}

/* Footer */
.footer {
    background: #870021;
    color: white;
    padding: 60px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 16px;
}

.footer-brand p {
    opacity: 0.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-links h4 {
    margin-bottom: 16px;
    font-size: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    line-height: 2;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 16px;
    }

    .logo {
        gap: 8px;
    }

    .logo svg {
        width: 32px;
        height: 32px;
    }

    .logo span {
        font-size: 1rem;
    }

    .nav-links {
        display: none;
        margin-left: 0;
    }

    .mobile-menu-btn {
        display: flex;
        order: 3;
        margin-left: 12px;
    }

    .nav-actions {
        gap: 6px;
        margin-left: auto;
        order: 2;
    }

    .lang-switcher {
        padding: 2px;
        gap: 2px;
    }

    .lang-btn {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .btn-login {
        padding: 8px;
    }

    .btn-login span {
        display: none;
    }

    .btn-login svg {
        width: 18px;
        height: 18px;
    }

    .hero-container,
    .technology-content,
    .demo-content,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero {
        padding: 100px 0 40px;
        min-height: auto;
    }

    .hero-content {
        text-align: center;
    }

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

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

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

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

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

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

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

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

    .hero-badge {
        font-size: 0.875rem;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .hero-visual {
        order: -1;
        max-width: 100%;
    }

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

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

    .solution-steps {
        grid-template-columns: 1fr;
    }

    .metric-cards {
        grid-template-columns: 1fr;
    }

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

    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* Mobile menu active state */
.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 24px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
}

/* Button nav style */
.btn-nav {
    padding: 8px 16px;
    background: var(--primary);
    color: white !important;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Nav Actions Container */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 4px;
    padding: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
    text-decoration: none;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.lang-btn.active {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.lang-btn .flag {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.btn-login {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white !important;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.2);
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.btn-login svg {
    flex-shrink: 0;
}

/* Contact page specific styles */
@media (max-width: 768px) {
    .contact-content > div > div {
        grid-template-columns: 1fr !important;
    }
}

/* Active nav link */
.nav-links a.active {
    color: var(--primary);
    font-weight: 600;
}

/* Utility Classes */
.section {
    padding: 80px 0;
}

.bg-light {
    background: #f9fafb;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
}

.section-subtitle {
    font-size: 2rem;
    margin-bottom: 24px;
}

.content-center {
    max-width: 900px;
    margin: 0 auto;
}

.center {
    text-align: center;
}

.text-large {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #374151;
}

/* Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

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

/* Card Components */
.card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.card h2 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    color: #1f2937;
}

.card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.card p {
    color: #6b7280;
    line-height: 1.8;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.gradient-bg {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.gradient-text {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Stat Components */
.stat-item {
    text-align: center;
}

.stat-label {
    color: #6b7280;
    margin-top: 8px;
    font-size: 1.125rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    color: white;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3);
}

.btn-white {
    background: white;
    color: #dc2626;
}

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

.cta-button-large {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    border: 2px solid #dc2626;
    border-radius: 8px;
    color: #dc2626;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    background: #dc2626;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3);
}

.btn-block {
    width: 100%;
}

/* Contact Page Styles */
.contact-info-card {
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 16px;
    margin-bottom: 24px;
}

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

.contact-item .card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 0;
    flex-shrink: 0;
}

.contact-link {
    color: #dc2626;
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}

/* Form Styles */
.contact-form {
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #374151;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

/* Success Message */
.success-message {
    padding: 24px;
    background: #d1fae5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #065f46;
}

.success-message svg {
    flex-shrink: 0;
}

.success-message h3 {
    font-weight: 600;
    margin-bottom: 4px;
}

.success-message p {
    font-size: 0.875rem;
    margin: 0;
}

/* Language Switcher */
.language-switcher {
    position: relative;
    display: inline-block;
    margin-left: 1rem;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid var(--gray-300);
    border-radius: 10px;
    color: var(--gray-800);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.language-btn:hover {
    background: var(--gray-50);
    border-color: var(--primary);
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.15);
    transform: translateY(-1px);
}

.language-flag {
    font-size: 22px;
    line-height: 1;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.language-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
    color: var(--gray-600);
}

.language-switcher.active .language-icon {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 180px;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 4px 8px rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow: hidden;
}

.language-switcher.active .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    color: var(--gray-800);
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border-bottom: 1px solid var(--gray-100);
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: var(--gray-50);
    padding-left: 1.25rem;
}

.language-option.active {
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border-left: 3px solid var(--primary);
    padding-left: 0.875rem;
}

.language-option-flag {
    font-size: 24px;
    line-height: 1;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.language-option-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
}

.language-option:hover .language-option-name {
    color: var(--primary);
}

.language-option.active .language-option-name {
    color: var(--primary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .language-switcher {
        margin-left: 0;
        margin-right: 1rem;
    }
}

/* ========================================
    }
}

@media (max-width: 768px) {
    .observability-platform {
        padding: 80px 0;
    }

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

    .observability-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .obs-card.featured {
        grid-column: span 1;
    }

    .obs-card {
        padding: 28px;
    }

    .obs-card-header {
        flex-direction: column;
    }

    .obs-icon {
        width: 56px;
        height: 56px;
    }
}

/* ========================================
   OBSERVABILITY PLATFORM - CLEAN
   ======================================== */

.observability-platform {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.observability-platform .section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
}

.observability-platform .section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.observability-platform .section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

.observability-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.obs-card {
    background: white;
    border-radius: 16px;
    padding: 28px;
    border: 2px solid #f3f4f6;
    transition: all 0.3s;
}

.obs-card:hover {
    /* Transform handled by JavaScript for smoother 3D effect */
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: #e0e7ff;
}

.obs-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.obs-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.obs-card:hover .obs-icon {
    transform: scale(1.1);
}

.obs-icon.apm { background: linear-gradient(135deg, #ef4444, #dc2626); }
.obs-icon.host { background: linear-gradient(135deg, #dc2626, #991b1b); }
.obs-icon.kubernetes { background: linear-gradient(135deg, #b91c1c, #7f1d1d); }
.obs-icon.logs { background: linear-gradient(135deg, #f87171, #ef4444); }
.obs-icon.sdk { background: linear-gradient(135deg, #dc2626, #b91c1c); }
.obs-icon.cloud { background: linear-gradient(135deg, #991b1b, #7f1d1d); }

.obs-icon svg {
    color: white;
}

.obs-card-header h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.obs-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.obs-features li {
    padding: 8px 0;
    color: #6b7280;
    font-size: 0.875rem;
    border-bottom: 1px solid #f3f4f6;
}

.obs-features li:last-child {
    border-bottom: none;
}

/* Simple Section Divider */
.section-divider-simple {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    background: #f8f9fa;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d1d5db 50%, transparent);
    max-width: 200px;
}

.divider-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: white;
    border-radius: 50px;
    border: 2px solid #e5e7eb;
    font-weight: 700;
    color: #dc2626;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.divider-badge span:first-child {
    font-size: 1.25rem;
}

/* ========================================
   ADVANCED FEATURES - COMPACT
   ======================================== */

.advanced-features {
    padding: 80px 0 30px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.advanced-features .section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
}

.advanced-features .section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.advanced-features .section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

.advanced-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.advanced-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    border: 2px solid #f3f4f6;
    transition: all 0.3s;
}

.advanced-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: #e0e7ff;
}

.advanced-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: transform 0.3s;
}

.advanced-card:hover .advanced-icon {
    transform: scale(1.1);
}

.advanced-icon.recording { background: linear-gradient(135deg, #f87171, #ef4444); }
.advanced-icon.heatmap { background: linear-gradient(135deg, #dc2626, #b91c1c); }
.advanced-icon.cloud-scan { background: linear-gradient(135deg, #dc2626, #991b1b); }
.advanced-icon.funnel { background: linear-gradient(135deg, #b91c1c, #991b1b); }
.advanced-icon.events { background: linear-gradient(135deg, #ef4444, #dc2626); }
.advanced-icon.cohort { background: linear-gradient(135deg, #991b1b, #7f1d1d); }
.advanced-icon.status-page { background: linear-gradient(135deg, #dc2626, #991b1b); }
.advanced-icon.predictive { background: linear-gradient(135deg, #dc2626, #b91c1c); }
.advanced-icon.alerts { background: linear-gradient(135deg, #ef4444, #dc2626); }

.advanced-icon svg {
    color: white;
}

.advanced-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.feature-list li {
    padding: 6px 0;
    color: #6b7280;
    font-size: 0.8125rem;
    border-bottom: 1px solid #f3f4f6;
}

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

/* Compact Mockups - 50% Smaller */
.advanced-visual-small {
    margin-top: 16px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    height: 60px;
}

/* Replay Mockup */
.replay-mockup-small {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.replay-controls-small {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
}

.replay-bar {
    width: 80px;
    height: 3px;
    background: #e5e7eb;
    border-radius: 2px;
    position: relative;
}

.replay-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 60%;
    height: 100%;
    background: #dc2626;
    border-radius: 2px;
}

/* Heatmap Mockup */
.heatmap-mockup-small {
    height: 100%;
    position: relative;
}

.hot-spot {
    position: absolute;
    border-radius: 50%;
    filter: blur(8px);
}

.hot-spot.hot1 {
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.6), transparent 70%);
    top: 20%;
    left: 30%;
}

.hot-spot.hot2 {
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.5), transparent 70%);
    top: 50%;
    right: 30%;
}

/* Scan Results */
.scan-results-small {
    display: flex;
    gap: 8px;
    padding: 12px;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.scan-stat {
    flex: 1;
    text-align: center;
    padding: 8px;
    border-radius: 6px;
    background: white;
}

.scan-stat.critical { border-left: 2px solid #ef4444; }
.scan-stat.warning { border-left: 2px solid #f59e0b; }
.scan-stat.success { border-left: 2px solid #dc2626; }

.scan-stat span {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1a1a1a;
}

/* Funnel Chart */
.funnel-chart-small {
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    height: 100%;
    justify-content: center;
}

.funnel-step-small {
    background: linear-gradient(90deg, #dc2626, #b91c1c);
    height: 12px;
    border-radius: 4px;
    color: white;
    font-size: 0.625rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Events List */
.events-list-small {
    display: flex;
    gap: 12px;
    padding: 12px;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.event-item-small {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.event-item-small span:first-child {
    font-size: 1.5rem;
}

.event-item-small span:last-child {
    font-size: 0.75rem;
    font-weight: 700;
    color: #dc2626;
}

/* Cohort Table */
.cohort-table-small {
    padding: 12px;
    height: 100%;
    display: flex;
    align-items: center;
}

.cohort-row-small {
    display: flex;
    gap: 6px;
    width: 100%;
}

.cohort-cell-small {
    flex: 1;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 8px;
    border-radius: 4px;
    text-align: center;
}

/* Status Mockup */
.status-mockup-small {
    display: flex;
    gap: 8px;
    padding: 12px;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.status-item-small {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.status-item-small.operational {
    background: #d1fae5;
    color: #065f46;
}

.status-item-small.degraded {
    background: #fef3c7;
    color: #92400e;
}

/* Predictive Mockup */
.predictive-mockup-small {
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trend-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #dc2626 0%, #b91c1c 100%);
    position: relative;
}

.trend-line::after {
    content: '';
    position: absolute;
    right: -6px;
    top: -3px;
    width: 8px;
    height: 8px;
    background: #dc2626;
    border-radius: 50%;
}

.trend-indicator {
    position: absolute;
    right: -20px;
    font-size: 1.5rem;
    color: #dc2626;
}

/* Alerts Mockup */
.alerts-mockup-small {
    display: flex;
    gap: 8px;
    padding: 12px;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.alert-item {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.alert-item.critical {
    background: #fee2e2;
}

.alert-item.warning {
    background: #fef3c7;
}

/* CTA Banner */
.advanced-cta {
    margin-top: 64px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.advanced-cta-content {
    flex: 1;
}

.advanced-cta-content h3 {
    font-size: 1.75rem;
    font-weight: 900;
    color: white;
    margin-bottom: 8px;
}

.advanced-cta-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.advanced-cta .btn {
    background: white;
    color: #dc2626;
    font-weight: 700;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s;
}

.advanced-cta .btn:hover {
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1200px) {
    .observability-grid,
    .advanced-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .observability-platform,
    .advanced-features {
        padding: 60px 0;
    }

    .observability-platform .section-title,
    .advanced-features .section-title {
        font-size: 2rem;
    }

    .observability-grid,
    .advanced-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .advanced-cta {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }

    .divider-badge {
        font-size: 0.875rem;
        padding: 10px 20px;
    }
}

/* Fix button text-decoration */
.btn,
a.btn,
.btn-primary,
a.btn-primary,
.btn-secondary,
a.btn-secondary,
.btn-large,
a.btn-large {
    text-decoration: none !important;
}

.btn:hover,
a.btn:hover,
.btn-primary:hover,
a.btn-primary:hover {
    text-decoration: none !important;
}

/* ========== HERO VISUAL ANIMATIONS ========== */
.hero-visual {
    position: relative;
    overflow: hidden;
}

.particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.dashboard-mockup {
    position: relative;
    z-index: 2;
}

.window-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border-bottom: 1px solid #e5e7eb;
}

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

.window-header .dot.red {
    background: #ef4444;
}

.window-header .dot.yellow {
    background: #f59e0b;
}

.window-header .dot.green {
    background: #10b981;
}

.window-title {
    margin-left: 12px;
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
}

.metric-card.pulse-card {
    animation: pulseCard 3s ease-in-out infinite;
}

@keyframes pulseCard {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.metric-icon.operational {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.metric-icon.warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.metric-icon.success {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: white;
}

.metric-icon.critical {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.flash-update {
    animation: flashBackground 0.5s ease;
}

@keyframes flashBackground {
    0%, 100% {
        background: transparent;
    }
    50% {
        background: rgba(220, 38, 38, 0.1);
    }
}

.chart-area {
    margin-top: 24px;
    height: 180px;
    position: relative;
}

#realtimeChart {
    width: 100%;
    height: 100%;
}

.equipment-status.pulse {
    animation: statusPulse 2s ease-in-out infinite;
}

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

.equipment-status.critical {
    background: #ef4444;
    animation: criticalPulse 1s ease-in-out infinite !important;
}

@keyframes criticalPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
    }
}


.equipment-metrics span {
    transition: all 0.3s ease;
}

.equipment-item:hover {
    transform: translateX(4px);
}

.equipment-item:hover .equipment-metrics {
    color: #dc2626;
}

/* Hover effects for metric cards */
.metric-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Floating animation for dashboard */
@keyframes floating {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.dashboard-mockup.floating {
    animation: floating 6s ease-in-out infinite;
}

/* Mobile responsiveness - Hero Section */
@media (max-width: 768px) {
    /* Hide entire dashboard mockup on mobile for cleaner look */
    .dashboard-mockup {
        display: none !important;
    }

    .hero-visual {
        display: none !important;
    }

    /* Hide decorative particles on mobile for better performance */
    .particles-canvas {
        display: none !important;
    }

    #particles {
        display: none !important;
    }

    .hero-bg-pattern {
        opacity: 0.3;
    }

    .chart-area {
        height: 150px;
    }

    .metric-card {
        padding: 16px;
    }

    .window-title {
        display: none;
    }
}

/* ========== EQUIPMENT BOXES ENHANCED EFFECTS ========== */
.equipment-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.equipment-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.equipment-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.05), transparent);
    transition: left 0.6s;
}

.equipment-item:hover::before {
    left: 100%;
}

.equipment-item:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    border-color: #dc2626;
}

.equipment-status-wrapper {
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.equipment-status {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.status-ripple {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #10b981;
    animation: ripple 2s infinite;
    z-index: 1;
}

.status-ripple.warning {
    background: #f59e0b;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}

.equipment-info {
    flex: 1;
    min-width: 0;
}

.equipment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.equipment-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: #111827;
}

.equipment-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    animation: badgePulse 2s ease-in-out infinite;
}

.equipment-badge.healthy {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
}

.equipment-badge.warning {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
}

.equipment-badge.critical {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
    animation: badgeShake 1s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes badgeShake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-2px);
    }
    75% {
        transform: translateX(2px);
    }
}

.equipment-metrics-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.metric-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.metric-label-small {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280;
    width: 60px;
    flex-shrink: 0;
}

.metric-bar-container {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.metric-bar {
    position: relative;
    height: 20px;
    flex: 1;
    background: #f3f4f6;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.metric-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    border-radius: 10px;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.metric-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.metric-bar-fill.warning {
    background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
}

.metric-bar-fill.critical {
    background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%);
    animation: barPulse 1s ease-in-out infinite;
}

@keyframes barPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.metric-sparkline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    pointer-events: none;
}

.metric-value-small {
    font-size: 0.75rem;
    font-weight: 700;
    color: #111827;
    min-width: 40px;
    text-align: right;
}

.network-row {
    padding-top: 4px;
    border-top: 1px dashed #e5e7eb;
}

.network-activity {
    display: flex;
    gap: 16px;
    flex: 1;
}

.network-arrow {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.network-arrow.up {
    color: #10b981;
    animation: arrowUp 1.5s ease-in-out infinite;
}

.network-arrow.down {
    color: #3b82f6;
    animation: arrowDown 1.5s ease-in-out infinite;
}

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

@keyframes arrowDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(3px);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .equipment-item {
        flex-direction: column;
        gap: 12px;
    }

    .equipment-status-wrapper {
        width: 100%;
        justify-content: flex-start;
    }

    .network-activity {
        flex-direction: column;
        gap: 8px;
    }
}

/* ========== TECHNOLOGY CARDS STUNNING EFFECTS ========== */
.observability-grid {
    position: relative;
}

.obs-card {
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.obs-card > * {
    position: relative;
    z-index: 10;
}

/* Holographic gradient effect */
.obs-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(220, 38, 38, 0.05) 50%,
        transparent 70%
    );
    transform: rotate(0deg);
    transition: transform 0.6s;
    pointer-events: none;
    z-index: 1;
}

.obs-card:hover::before {
    transform: rotate(180deg);
}

/* Animated border */
.obs-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(45deg, #dc2626, #f59e0b, #10b981, #3b82f6, #dc2626);
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s;
    animation: borderGradient 3s linear infinite;
}

.obs-card:hover::after {
    opacity: 1;
}

@keyframes borderGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.obs-card:hover {
    /* Transform handled by JavaScript for smoother 3D effect */
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.3);
}

/* Icon container effects */
.obs-icon {
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.obs-card:hover .obs-icon {
    transform: scale(1.15) rotate(5deg);
    animation: iconPulse 1.5s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1.15) rotate(5deg);
    }
    50% {
        transform: scale(1.25) rotate(-5deg);
    }
}

/* Glow effect behind icons */
.obs-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
}

.obs-card:hover .obs-icon::before {
    opacity: 1;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.3;
    }
}

/* Specific icon glows */
.obs-icon.apm::before {
    background: radial-gradient(circle, rgba(220, 38, 38, 0.6), transparent);
}

.obs-icon.host::before {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.6), transparent);
}

.obs-icon.kubernetes::before {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.6), transparent);
}

.obs-icon.logs::before {
    background: radial-gradient(circle, rgba(245, 158, 11, 0.6), transparent);
}

.obs-icon.sdk::before {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.6), transparent);
}

/* SVG icon animation */
.obs-card:hover .obs-icon svg {
    animation: iconFloat 3s ease-in-out infinite;
}

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

/* Features list animation */
.obs-features li {
    position: relative;
    transition: all 0.3s ease;
    padding-left: 24px;
}

.obs-features li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #dc2626;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.obs-card:hover .obs-features li {
    transform: translateX(8px);
}

.obs-card:hover .obs-features li::before {
    opacity: 1;
    animation: arrowBounce 1s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(4px);
    }
}

/* Scan line effect */
.obs-card-header::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #dc2626, transparent);
    opacity: 0;
    transition: top 0.8s;
}

.obs-card:hover .obs-card-header::after {
    opacity: 1;
    top: 100%;
}

/* Particle effect on hover */
@keyframes particles {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) scale(1);
    }
}

/* Add shimmer to card title */
.obs-card h3 {
    position: relative;
    background: linear-gradient(90deg, #111827, #dc2626, #111827);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s;
}

.obs-card:hover h3 {
    animation: shimmerText 2s linear infinite;
}

@keyframes shimmerText {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* 3D tilt effect */
.obs-card {
    /* Transition removed - handled by JavaScript for smoother control */
}

.obs-card:hover {
    /* Animation disabled - JavaScript handles 3D tilt smoothly */
}

@keyframes tiltShake {
    0%, 100% {
        transform: translateY(-12px) scale(1.03) rotateX(0) rotateY(0);
    }
    25% {
        transform: translateY(-12px) scale(1.03) rotateX(2deg) rotateY(-2deg);
    }
    75% {
        transform: translateY(-12px) scale(1.03) rotateX(-2deg) rotateY(2deg);
    }
}

/* Counter animation for metrics */
.obs-card::after {
    counter-reset: visitors;
}

/* Entrance animation on scroll */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.obs-card {
    animation: slideInUp 0.6s ease-out backwards;
}

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

/* Ripple effect on click */
.obs-card {
    position: relative;
    overflow: hidden;
}

.obs-card:active::before {
    animation: rippleEffect 0.6s ease-out;
}

@keyframes rippleEffect {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

/* ========== ADVANCED CARDS STUNNING EFFECTS (9 CARDS) ========== */
.advanced-grid {
    position: relative;
}

.advanced-card {
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.advanced-card > * {
    position: relative;
    z-index: 10;
}

/* Animated gradient background */
.advanced-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(220, 38, 38, 0.1),
        rgba(239, 68, 68, 0.05),
        transparent
    );
    transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.advanced-card:hover::before {
    left: 100%;
}

/* Glowing border effect */
.advanced-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, #dc2626, #f59e0b, #10b981, #3b82f6);
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 1;
}

.advanced-card:hover::after {
    opacity: 0.6;
    animation: borderFlow 3s linear infinite;
}

@keyframes borderFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Hover lift and glow */
.advanced-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 50px rgba(220, 38, 38, 0.2),
        0 0 40px rgba(220, 38, 38, 0.1),
        inset 0 0 20px rgba(220, 38, 38, 0.05);
}

/* Icon animations */
.advanced-icon {
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.advanced-card:hover .advanced-icon {
    transform: scale(1.2) rotate(360deg);
}

/* Glow behind icons */
.advanced-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
    filter: blur(20px);
}

.advanced-card:hover .advanced-icon::after {
    opacity: 0.6;
    animation: iconGlow 2s ease-in-out infinite;
}

@keyframes iconGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0.3;
    }
}

/* Specific icon colors */
.advanced-icon.recording::after {
    background: radial-gradient(circle, #dc2626, transparent);
}

.advanced-icon.heatmap::after {
    background: radial-gradient(circle, #f59e0b, transparent);
}

.advanced-icon.cloud-scan::after {
    background: radial-gradient(circle, #10b981, transparent);
}

.advanced-icon.funnel::after {
    background: radial-gradient(circle, #3b82f6, transparent);
}

.advanced-icon.events::after {
    background: radial-gradient(circle, #8b5cf6, transparent);
}

.advanced-icon.retention::after {
    background: radial-gradient(circle, #ec4899, transparent);
}

.advanced-icon.cohorts::after {
    background: radial-gradient(circle, #14b8a6, transparent);
}

.advanced-icon.ab-testing::after {
    background: radial-gradient(circle, #f97316, transparent);
}

.advanced-icon.ai-insights::after {
    background: radial-gradient(circle, #a855f7, transparent);
}

/* SVG icon float animation */
.advanced-card:hover .advanced-icon svg {
    animation: iconBounce 1s ease-in-out infinite;
}

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

/* Title shimmer effect */
.advanced-card h3 {
    position: relative;
    transition: all 0.3s;
}

.advanced-card:hover h3 {
    background: linear-gradient(90deg, #111827, #dc2626, #111827);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 1.5s linear infinite;
}

@keyframes textShimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Feature list animation */
.feature-list li {
    position: relative;
    transition: all 0.3s ease;
}

.advanced-card:hover .feature-list li {
    transform: translateX(5px);
    color: #dc2626;
}

.feature-list li::before {
    transition: all 0.3s;
}

.advanced-card:hover .feature-list li::before {
    content: '→';
    animation: arrowSlide 0.8s ease-in-out infinite;
}

@keyframes arrowSlide {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(3px);
    }
}

/* Visual mockups animation */
.advanced-visual-small {
    transition: all 0.4s ease;
}

.advanced-card:hover .advanced-visual-small {
    transform: scale(1.05);
}

/* Replay mockup animation */
.advanced-card:hover .replay-mockup-small {
    animation: replayPulse 2s ease-in-out infinite;
}

@keyframes replayPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.advanced-card:hover .replay-bar {
    animation: replayProgress 3s linear infinite;
}

@keyframes replayProgress {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

/* Heatmap hot spots animation */
.advanced-card:hover .hot-spot {
    animation: heatPulse 1.5s ease-in-out infinite;
}

.hot-spot.hot1 {
    animation-delay: 0s;
}

.hot-spot.hot2 {
    animation-delay: 0.5s;
}

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

/* Scan results animation */
.advanced-card:hover .scan-stat {
    animation: statBounce 0.6s ease-in-out;
}

.advanced-card:hover .scan-stat:nth-child(1) {
    animation-delay: 0s;
}

.advanced-card:hover .scan-stat:nth-child(2) {
    animation-delay: 0.1s;
}

.advanced-card:hover .scan-stat:nth-child(3) {
    animation-delay: 0.2s;
}

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

/* Funnel chart animation */
.advanced-card:hover .funnel-step-small {
    animation: funnelSlide 1s ease-out;
}

@keyframes funnelSlide {
    0% {
        width: 0%;
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Entrance animation */
.advanced-card {
    animation: slideInUpCard 0.6s ease-out backwards;
}

.advanced-card:nth-child(1) { animation-delay: 0.1s; }
.advanced-card:nth-child(2) { animation-delay: 0.15s; }
.advanced-card:nth-child(3) { animation-delay: 0.2s; }
.advanced-card:nth-child(4) { animation-delay: 0.25s; }
.advanced-card:nth-child(5) { animation-delay: 0.3s; }
.advanced-card:nth-child(6) { animation-delay: 0.35s; }
.advanced-card:nth-child(7) { animation-delay: 0.4s; }
.advanced-card:nth-child(8) { animation-delay: 0.45s; }
.advanced-card:nth-child(9) { animation-delay: 0.5s; }

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

/* Magnetic cursor effect simulation */
.advanced-card {
    will-change: transform;
}

/* Ripple on click */
.advanced-card:active {
    transform: translateY(-8px) scale(0.98);
}

/* Particle trail effect */
@keyframes particleTrail {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-60px) scale(1.5);
    }
}

/* ========== FIX: ENSURE CONTENT ALWAYS VISIBLE ========== */
.obs-card .obs-card-header,
.obs-card .obs-icon,
.obs-card h3,
.obs-card .obs-features,
.obs-card ul,
.obs-card li {
    position: relative !important;
    z-index: 100 !important;
    pointer-events: auto !important;
    opacity: 1 !important;
}

.advanced-card .advanced-icon,
.advanced-card h3,
.advanced-card .feature-list,
.advanced-card .advanced-visual-small,
.advanced-card ul,
.advanced-card li {
    position: relative !important;
    z-index: 100 !important;
    pointer-events: auto !important;
    opacity: 1 !important;
}

.obs-card::before,
.obs-card::after,
.advanced-card::before,
.advanced-card::after {
    pointer-events: none !important;
    z-index: 1 !important;
}

/* ========== CRITICAL FIX: PREVENT CONTENT FROM DISAPPEARING ========== */
.obs-card,
.obs-card *,
.advanced-card,
.advanced-card * {
    opacity: 1 !important;
    visibility: visible !important;
}

.obs-card::before,
.obs-card::after,
.advanced-card::before,
.advanced-card::after {
    content: '' !important;
    z-index: 0 !important;
}

.obs-card .obs-card-header,
.obs-card .obs-icon,
.obs-card h3,
.obs-card .obs-features,
.obs-card .obs-features li,
.advanced-card .advanced-icon,
.advanced-card h3,
.advanced-card .feature-list,
.advanced-card .feature-list li,
.advanced-card .advanced-visual-small {
    z-index: 50 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

/* Ensure background and foreground layers are properly separated */
.obs-card,
.advanced-card {
    isolation: isolate;
}
