/* Premium CSS Reset and Variables */
:root {
    --bg-dark: #0a0c16;
    --bg-card: rgba(255, 255, 255, 0.03);
    --border-glass: rgba(255, 255, 255, 0.08);
    --primary: #4e73df;
    --primary-glow: rgba(78, 115, 223, 0.35);
    --accent: #224abe;
    --text-main: #f8f9fc;
    --text-muted: #a0aec0;
    --success: #1cc88a;
    --success-glow: rgba(28, 200, 138, 0.3);
    --font-outfit: 'Outfit', sans-serif;
    --font-inter: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-inter);
    line-height: 1.6;
}

/* Container */
.nav-container, .hero-container, .benefits-grid, .steps-container, .pricing-grid, .faq-container, .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background-color: rgba(10, 12, 22, 0.85);
    border-bottom: 1px solid var(--border-glass);
    padding: calc(15px + env(safe-area-inset-top)) env(safe-area-inset-right) 15px env(safe-area-inset-left);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    margin-left: 50px;
}

.logo {
    font-family: var(--font-outfit);
    font-size: 24px;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo .accent {
    color: var(--primary);
}

.logo-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    box-shadow: 0 4px 10px var(--primary-glow);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--text-main);
}

.nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-outfit);
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #fff;
    padding: 10px 22px;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78, 115, 223, 0.5);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid var(--border-glass);
    padding: 10px 22px;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 14px 30px;
    font-size: 16px;
}

.btn-block {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 100px 0;
    overflow: hidden;
    background-color: var(--bg-dark);
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, rgba(10, 12, 22, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge-promo {
    background-color: rgba(78, 115, 223, 0.1);
    border: 1px solid rgba(78, 115, 223, 0.2);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 25px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-content h1 {
    font-family: var(--font-outfit);
    font-size: 54px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, #4e73df 0%, #1cc88a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-content p {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 540px;
    min-height: 120px; /* Evita oscilação de layout reservando altura para até 4 linhas */
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 45px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--border-glass);
    padding-top: 30px;
    width: 100%;
}

.stat-item h3 {
    font-family: var(--font-outfit);
    font-size: 28px;
    font-weight: 800;
    color: var(--text-main);
}

.stat-item p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

/* Hero Visual Card */
.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    width: 100%;
    max-width: 440px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-header {
    background-color: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border-glass);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red { background-color: #ff5f56; }
.dot.yellow { background-color: #ffbd2e; }
.dot.green { background-color: #27c93f; }

.card-header .url {
    color: var(--text-muted);
    font-size: 13px;
    font-family: var(--font-outfit);
}

.card-body {
    padding: 30px;
}

.skeleton-chart {
    height: 180px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 10px;
}

.chart-bar {
    width: 100%;
    background: linear-gradient(to top, var(--accent) 0%, var(--primary) 100%);
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    box-shadow: 0 4px 10px var(--primary-glow);
    animation: barGrow 1.5s ease-out forwards;
}

@keyframes barGrow {
    from { height: 0; }
}

.metrics-row {
    display: flex;
    justify-content: space-between;
}

.metric small {
    display: block;
    color: var(--text-muted);
    font-size: 12px;
    margin-bottom: 4px;
}

.metric strong {
    font-family: var(--font-outfit);
    font-size: 18px;
    font-weight: 800;
}

/* Benefits Section */
.benefits, .steps-section, .pricing, .faq-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-outfit);
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 40px 30px;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(78, 115, 223, 0.3);
    box-shadow: 0 10px 30px rgba(78, 115, 223, 0.05);
}

.benefit-icon {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 25px;
}

.benefit-card h3 {
    font-family: var(--font-outfit);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 15px;
    margin: 0;
}

/* How It Works Steps */
.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step-card {
    position: relative;
    text-align: center;
    padding: 0 20px;
}

.step-num {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-outfit);
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 25px auto;
    box-shadow: 0 6px 15px var(--primary-glow);
}

.step-card h3 {
    font-family: var(--font-outfit);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Pricing Section */
.pricing {
    position: relative;
}

.pricing-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(28, 200, 138, 0.05) 0%, rgba(10, 12, 22, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.pricing-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 50px 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary);
    background: rgba(78, 115, 223, 0.02);
    box-shadow: 0 15px 35px rgba(78, 115, 223, 0.1);
}

.badge-featured {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 12px;
    letter-spacing: 0.5px;
}

.plan-header h3 {
    font-family: var(--font-outfit);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
}

.plan-header .desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 25px;
}

.plan-header .price {
    font-family: var(--font-outfit);
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 30px;
    display: flex;
    align-items: baseline;
}

.plan-header .price .period {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 400;
}

.plan-features {
    margin-bottom: 40px;
}

.plan-features ul {
    list-style: none;
}

.plan-features li {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features li i {
    color: var(--success);
}

.plan-features li strong {
    color: var(--text-main);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 20px 25px;
    font-family: var(--font-outfit);
    font-weight: 700;
    font-size: 17px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question i {
    font-size: 14px;
    color: var(--text-muted);
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    color: var(--text-muted);
    font-size: 15px;
    transition: all 0.3s ease-out;
}

/* FAQ Active State */
.faq-item.active {
    border-color: rgba(78, 115, 223, 0.3);
}

.faq-item.active .faq-question {
    color: var(--primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

/* Footer */
footer {
    border-top: 1px solid var(--border-glass);
    padding: 40px 0;
    text-align: center;
}

footer p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

/* Responsive CSS & Safe Areas */
.menu-toggle {
    display: none;
}

@media (max-width: 991px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    .hero-content {
        align-items: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .benefits-grid, .steps-container, .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .pricing-card {
        max-width: 450px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    /* Safe Area body adjustment */
    body {
        padding-bottom: calc(20px + env(safe-area-inset-bottom));
    }
    
    /* Responsive Menu slide-out */
    .nav-menu-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: rgba(8, 10, 18, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid var(--border-glass);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: calc(90px + env(safe-area-inset-top)) calc(30px + env(safe-area-inset-right)) calc(30px + env(safe-area-inset-bottom)) calc(30px + env(safe-area-inset-left));
        gap: 40px;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }
    
    .nav-menu-wrapper.active {
        right: 0;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }
    
    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .nav-links a {
        font-family: var(--font-outfit);
        font-size: 18px;
        font-weight: 700;
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        margin-top: auto;
    }
    
    .nav-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 15px;
    }
    
    /* Toggle Button */
    .menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 10px;
        background: rgba(255,255,255,0.03);
        border: 1px solid var(--border-glass);
        color: var(--text-main);
        font-size: 20px;
        cursor: pointer;
        z-index: 1000;
        transition: var(--transition);
        outline: none;
    }
    .menu-toggle:hover {
        background: rgba(255,255,255,0.08);
    }
    
    /* Section paddings & Hero */
    .hero {
        padding: calc(120px + env(safe-area-inset-top)) 0 60px 0;
    }
    .hero-content h1 {
        font-size: 36px;
    }
    .hero-content p {
        font-size: 16px;
        min-height: 145px;
    }
    .hero-buttons {
        width: 100%;
        flex-direction: column;
        gap: 12px;
    }
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    .hero-stats {
        gap: 20px;
        justify-content: space-between;
    }
    
    .benefits, .steps-section, .pricing, .faq-section {
        padding: 60px 0;
    }
    .section-header h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero-content p {
        min-height: 185px;
    }
    .hero-content h1 {
        font-size: 30px;
    }
    .hero-stats {
        flex-direction: row;
        justify-content: space-between;
        gap: 15px;
    }
    .stat-item {
        flex: 1;
    }
    .hero-visual {
        padding: 0 10px;
    }
    .hero-card {
        border-radius: 12px;
    }
    .card-body {
        padding: 20px;
    }
    .skeleton-chart {
        height: 140px;
        gap: 8px;
    }
    .faq-question {
        padding: 16px 20px;
        font-size: 15px;
    }
    .faq-answer {
        padding: 0 20px;
        font-size: 13px;
    }
    .faq-item.active .faq-answer {
        padding-bottom: 16px;
    }
}

@media (max-width: 360px) {
    .logo {
        font-size: 20px;
    }
    .logo-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    .hero-content h1 {
        font-size: 26px;
    }
}

#scramble-text {
    position: relative;
    min-height: 120px; /* Evita Cumulative Layout Shift fixando o tamanho máximo do bloco */
    margin-bottom: 35px;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
}

@media (max-width: 991px) {
    #scramble-text {
        min-height: 120px;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    #scramble-text {
        min-height: 145px;
    }
}

@media (max-width: 480px) {
    #scramble-text {
        min-height: 185px;
    }
}

.tv-noise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.1s ease;
    mix-blend-mode: screen;
}

.tv-noise-overlay.active {
    opacity: 0.9;
}

.glitch-active {
    animation: tv-glitch 0.3s infinite;
    color: #fff !important;
    text-shadow: 2px 0 0 #ff00ff, -2px 0 0 #00ffff;
}

@keyframes tv-glitch {
    0% {
        transform: translate(0);
        filter: contrast(1.2);
    }
    15% {
        transform: translate(-3px, 1px) skewX(6deg);
        clip-path: inset(15% 0 70% 0);
    }
    30% {
        transform: translate(3px, -2px) skewX(-4deg);
        clip-path: inset(60% 0 10% 0);
    }
    45% {
        transform: translate(-1px, 2px) skewX(2deg);
        clip-path: inset(30% 0 50% 0);
    }
    60% {
        transform: translate(2px, -1px) skewX(-1deg);
        clip-path: inset(80% 0 5% 0);
    }
    75% {
        transform: translate(-2px, -2px) skewX(3deg);
        clip-path: inset(5% 0 85% 0);
    }
    90% {
        transform: translate(1px, 3px) skewX(-3deg);
        clip-path: inset(45% 0 35% 0);
    }
    100% {
        transform: translate(0);
        filter: none;
        clip-path: none;
    }
}

/* Forçar o canvas do Vanta.js a ocupar sempre 100% da área do container, evitando quebras */
.vanta-canvas {
    width: 100% !important;
    height: 100% !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 0;
    pointer-events: none; /* Evita conflitos de toque no scroll de celulares */
}

/* ==========================================
   PWA & Push Section Styles
   ========================================== */
.pwa-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.8) 0%, rgba(15, 15, 25, 0.9) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pwa-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pwa-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.pwa-info h2 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    margin: 20px 0;
    color: #ffffff;
}

.section-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
}

.badge-accent {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 75, 43, 0.1);
    color: #ff4b2b;
    border: 1px solid rgba(255, 75, 43, 0.2);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.push-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.push-feature-card {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.push-feature-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 75, 43, 0.3);
    box-shadow: 0 10px 30px rgba(255, 75, 43, 0.05);
    background: rgba(255, 255, 255, 0.04);
}

.push-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ff4b2b 0%, #ff416c 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 75, 43, 0.3);
}

.push-card-text h3 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 700;
}

.push-card-text p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Smartphone Mockup */
.pwa-mockup-wrapper {
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.smartphone-mockup {
    width: 290px;
    height: 580px;
    background: #09090e;
    border: 10px solid #20202a;
    border-radius: 40px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 
                0 0 40px rgba(255, 75, 43, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.phone-top {
    height: 25px;
    background: #20202a;
    width: 140px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.phone-speaker {
    width: 45px;
    height: 4px;
    background: #101015;
    border-radius: 10px;
}

.phone-camera {
    width: 8px;
    height: 8px;
    background: #101015;
    border-radius: 50%;
}

.phone-screen-content {
    flex: 1;
    padding: 40px 16px 20px 16px;
    background: linear-gradient(180deg, #181923 0%, #0d0e14 100%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
}

.phone-status-bar {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    padding: 0 4px;
}

.status-icons {
    display: flex;
    gap: 4px;
}

.phone-lockscreen-title {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 10px;
    padding-left: 4px;
}

/* Glassmorphism Notification Box */
.push-notification-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    animation: notificationPulse 5s infinite ease-in-out;
}

.push-notification-box.marketing {
    border-left: 3px solid #ff4b2b;
    animation-delay: 2.5s;
}

@keyframes notificationPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); box-shadow: 0 10px 30px rgba(255, 75, 43, 0.1); }
}

.push-notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.push-app-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: #ff4b2b;
    font-weight: 700;
    text-transform: uppercase;
}

.push-app-info i {
    font-size: 11px;
}

.push-time {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
}

.push-notification-title {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.push-notification-body {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

/* ==========================================
   Comparison Section Styles
   ========================================== */
.comparison-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
    background: #07070a;
}

.comparison-wrapper {
    max-width: 1000px;
    margin: 40px auto 0 auto;
    padding: 0 20px;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
}

.comparison-table th, .comparison-table td {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 15px;
    color: var(--text-muted);
}

.comparison-table th {
    background: rgba(255, 255, 255, 0.02);
    font-weight: 700;
    color: #ffffff;
    font-size: 16px;
}

.comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* Highlight Column (Mestre Social SaaS) */
.comparison-table .highlight-col {
    background: rgba(255, 75, 43, 0.03);
    color: #ffffff;
    border-left: 1px solid rgba(255, 75, 43, 0.15);
    border-right: 1px solid rgba(255, 75, 43, 0.15);
    font-weight: 500;
}

.comparison-table th.highlight-col {
    background: rgba(255, 75, 43, 0.06);
    color: #ff4b2b;
    border-top: 2px solid #ff4b2b;
}

.text-success {
    color: #2ec4b6 !important;
    margin-right: 8px;
    font-size: 16px;
}

.text-danger {
    color: #e71d36 !important;
    margin-right: 8px;
    font-size: 16px;
}

/* ==========================================
   Responsive Media Queries for New Sections
   ========================================== */
@media (max-width: 991px) {
    .pwa-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .pwa-visual {
        margin-top: 20px;
    }
    .pwa-info h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .pwa-section, .comparison-section {
        padding: 60px 0;
    }
    .comparison-table th, .comparison-table td {
        padding: 15px 16px;
        font-size: 13px;
    }
    .comparison-table th {
        font-size: 14px;
    }
}

/* ==========================================
   Tracking & Meta Conversions Styles
   ========================================== */
.tracking-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
    background: #09090e;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.tracking-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tracking-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
}

.tracking-info h2 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    margin: 20px 0;
    color: #ffffff;
}

.tracking-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tracking-feature-card {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.tracking-feature-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 75, 43, 0.3);
    box-shadow: 0 10px 30px rgba(255, 75, 43, 0.05);
    background: rgba(255, 255, 255, 0.04);
}

.tracking-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ff4b2b 0%, #ff416c 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 75, 43, 0.3);
}

.tracking-card-text h3 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 700;
}

.tracking-card-text p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* IDE Code Mockup */
.code-mockup-wrapper {
    perspective: 1000px;
    width: 100%;
}

.code-window {
    background: #0d0e15;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 
                0 0 40px rgba(255, 75, 43, 0.03);
    overflow: hidden;
    transition: transform 0.5s ease;
}

.code-window:hover {
    transform: translateY(-5px) rotateY(-2deg) rotateX(1deg);
}

.code-header {
    background: #14151f;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.code-dots {
    display: flex;
    gap: 6px;
}

.code-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.code-dot.red { background: #ff5f56; }
.code-dot.yellow { background: #ffbd2e; }
.code-dot.green { background: #27c93f; }

.code-title {
    font-size: 12px;
    font-family: 'Courier New', Courier, monospace;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.code-body {
    padding: 24px;
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.6;
    color: #abb2bf;
    overflow-x: auto;
}

.code-body pre {
    margin: 0;
}

/* Syntax Highlighting */
.code-body .keyword { color: #c678dd; }
.code-body .string { color: #98c379; }
.code-body .number { color: #d19a66; }
.code-body .comment { color: #5c6370; font-style: italic; }
.code-body .variable { color: #e06c75; }

/* Responsive adjustments */
@media (max-width: 991px) {
    .tracking-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .tracking-info h2 {
        font-size: 32px;
    }
    .tracking-visual {
        order: 2;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .tracking-section {
        padding: 60px 0;
    }
    .tracking-feature-card {
        padding: 18px;
        gap: 15px;
    }
    .code-body {
        padding: 16px;
        font-size: 12px;
    }
    .code-body pre {
        white-space: pre-wrap !important;
        word-break: break-all !important;
    }
}



/* --- KVM8 Dedicated Infra Section --- */
.infra-section {
    padding: 100px 0;
    position: relative;
    background-color: #080a12;
    overflow: hidden;
}

.infra-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(78, 115, 223, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.infra-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.infra-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.infra-info h2 {
    font-family: var(--font-outfit);
    font-size: 40px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.2;
    margin-bottom: 20px;
}

.infra-desc {
    color: var(--text-muted);
    font-size: 17px;
    margin-bottom: 35px;
}

.infra-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.infra-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    padding: 20px;
    border-radius: 12px;
    transition: var(--transition);
}

.infra-feature-item:hover {
    border-color: rgba(78, 115, 223, 0.3);
    transform: translateX(5px);
}

.infra-icon {
    font-size: 24px;
    color: var(--primary);
    background: rgba(78, 115, 223, 0.1);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.infra-text h3 {
    font-family: var(--font-outfit);
    font-size: 18px;
    color: var(--text-main);
    margin-bottom: 5px;
}

.infra-text p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Server Rack Animation Styles */
.server-visual-container {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.8), 0 15px 35px rgba(0, 0, 0, 0.5);
    position: relative;
}

.server-rack {
    border: 8px solid #1a1a24;
    background: #0f1016;
    border-radius: 12px;
    padding: 20px 15px;
    box-shadow: 0 0 30px rgba(78, 115, 223, 0.15);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.server-blade {
    background: linear-gradient(180deg, #181922 0%, #111218 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 15px;
    display: grid;
    grid-template-columns: 80px 1fr 120px;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

.server-blade::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background-color: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

.blade-name {
    font-family: var(--font-outfit);
    font-size: 12px;
    font-weight: 800;
    color: #4e73df;
    letter-spacing: 1px;
}

.blade-status {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-row {
    display: grid;
    grid-template-columns: 50px 1fr 40px;
    align-items: center;
    gap: 10px;
    font-size: 11px;
}

.stat-label {
    color: var(--text-muted);
}

.stat-bar-bg {
    background: rgba(255, 255, 255, 0.05);
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
}

.stat-bar {
    height: 100%;
    border-radius: 3px;
}

.stat-val {
    color: var(--text-main);
    text-align: right;
}

/* Pulsing LED Lights */
.blade-leds {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.led {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #222;
}

.led.blue {
    background-color: #4e73df;
    box-shadow: 0 0 8px #4e73df;
    animation: ledBlink 1.2s infinite ease-in-out;
}

.led.green {
    background-color: #1cc88a;
    box-shadow: 0 0 8px #1cc88a;
    animation: ledBlink 0.8s infinite ease-in-out;
}

.led.orange {
    background-color: #f6c23e;
    box-shadow: 0 0 8px #f6c23e;
    animation: ledBlink 1.5s infinite ease-in-out;
}

/* Animations */
@keyframes ledBlink {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; filter: brightness(1.3); }
}

/* Pulsing progress bars */
.blade-1-cpu { background-color: var(--primary); animation: pulseCPU1 4s infinite linear; }
.blade-1-ram { background-color: var(--success); animation: pulseRAM1 5s infinite linear; }

.blade-2-cpu { background-color: var(--primary); animation: pulseCPU2 3s infinite linear; }
.blade-2-ram { background-color: var(--success); animation: pulseRAM2 6s infinite linear; }

.blade-3-cpu { background-color: var(--primary); animation: pulseCPU3 5s infinite linear; }
.blade-3-ram { background-color: var(--success); animation: pulseRAM3 4s infinite linear; }

@keyframes pulseCPU1 {
    0%, 100% { width: 55%; }
    30% { width: 85%; }
    70% { width: 42%; }
}
@keyframes pulseRAM1 {
    0%, 100% { width: 68%; }
    50% { width: 72%; }
}
@keyframes pulseCPU2 {
    0%, 100% { width: 35%; }
    50% { width: 78%; }
    80% { width: 50%; }
}
@keyframes pulseRAM2 {
    0%, 100% { width: 54%; }
    40% { width: 59%; }
}
@keyframes pulseCPU3 {
    0%, 100% { width: 62%; }
    40% { width: 48%; }
    70% { width: 89%; }
}
@keyframes pulseRAM3 {
    0%, 100% { width: 78%; }
    60% { width: 81%; }
}

@media (max-width: 991px) {
    .infra-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .infra-info h2 {
        font-size: 32px;
    }
}

/* Premium Gold Styling */
.premium-gold {
    color: #ffd700;
    background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
    font-weight: 800;
}

/* Mobile Responsiveness for Server Blades */
@media (max-width: 576px) {
    .server-blade {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        padding: 12px !important;
    }
    .blade-name {
        font-size: 11px !important;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        padding-bottom: 5px;
    }
    .blade-leds {
        justify-content: flex-start !important;
        margin-top: 5px;
    }
    .server-visual-container {
        padding: 15px !important;
    }
    .stat-row {
        grid-template-columns: 60px 1fr 40px !important;
    }
}
