﻿/* ============================================================
   ChatScan — Landing Page Styles (Complete with Synced Mockups)
   ============================================================ */

/* ===== Header ===== */
.landing-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 14, 20, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.landing-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.landing-logo-img {
    height: 28px;
    width: auto;
    filter: drop-shadow(0 1px 6px rgba(0, 212, 170, 0.15));
}

.landing-nav {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
}

.landing-nav a {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    transition: color 0.25s ease, transform 0.25s ease, text-shadow 0.25s ease;
    position: relative;
    padding-bottom: 4px;
}

.landing-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    border-radius: 1px;
    transition: width 0.3s ease, left 0.3s ease;
    box-shadow: 0 0 6px var(--color-primary-glow);
}

.landing-nav a:hover {
    color: var(--text-primary);
    transform: translateY(-1px);
    text-shadow: 0 0 12px rgba(0, 212, 170, 0.2);
}

.landing-nav a:hover::after {
    width: 100%;
    left: 0;
}

.landing-actions {
    display: flex;
    gap: var(--space-sm);
}

.lang-switcher select {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 4px 6px;
    border-radius: var(--radius-sm);
    font-size: var(--text-xs);
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%235a6b7c' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 2px center;
    padding-right: 16px;
}

.lang-switcher select:hover {
    color: var(--text-primary);
    background-color: var(--bg-hover);
}

.lang-switcher select:focus {
    outline: none;
    color: var(--text-primary);
}

.lang-switcher select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
    padding: 6px 8px;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 0 40px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 0%, var(--color-primary-subtle) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(14, 165, 233, 0.06) 0%, transparent 40%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    align-items: stretch;
    width: 100%;
}

.hero-text {
    text-align: left;
    position: relative;
    z-index: 3;
    margin-right: -80px;
    filter: drop-shadow(0 2px 20px rgba(10, 14, 20, 0.9));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.hero-mockup {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hero-mockup::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to right, rgba(10, 14, 20, 0.85) 0%, rgba(10, 14, 20, 0.3) 30%, transparent 55%);
    pointer-events: none;
    border-radius: 10px;
}

.hero-mockup .mockup-slide {
    width: 100%;
    height: 100%;
}

.hero-mockup .mockup-slide.active {
    display: flex;
    width: 100%;
    height: 100%;
}

.hero-mockup .mockup-slide.active .mockup-window {
    flex: 1;
    width: 100%;
    height: 100%;
}

/* Carousel Dots */
.hero-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: var(--space-lg);
    position: relative;
    z-index: 3;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 0 8px var(--color-primary-glow);
    transform: scale(1.2);
}

.hero-platforms {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.hero-platform-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-platform-icon:hover {
    transform: translateY(-2px);
}

.hero-platform-icon.whatsapp {
    color: #25D366;
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.25);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.1);
}

.hero-platform-icon.whatsapp:hover {
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.2);
}

.hero-platform-icon.instagram {
    color: #E1306C;
    background: rgba(225, 48, 108, 0.08);
    border: 1px solid rgba(225, 48, 108, 0.25);
    box-shadow: 0 0 20px rgba(225, 48, 108, 0.1);
}

.hero-platform-icon.instagram:hover {
    box-shadow: 0 0 30px rgba(225, 48, 108, 0.2);
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    margin: 0 0 var(--space-xl);
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.hero-sub-cta {
    font-size: var(--text-xs);
    color: var(--text-muted);
    margin-top: var(--space-md);
    letter-spacing: 0.02em;
}

/* ===== Carousel ===== */
.hero-carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.carousel-prefix {
    color: var(--text-primary);
}

.hero-carousel {
    display: flex;
    flex-direction: column;
    height: 1.2em;
    overflow: hidden;
    color: var(--color-primary);
}

.carousel-item {
    height: 1.2em;
    display: flex;
    align-items: center;
    /* Animation removed — JS controls this now */
}

/* ===== Mockup Slides ===== */
.mockup-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
    height: 100%;
}

.mockup-slide.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
    height: 100%;
}

.mockup-window {
    display: flex;
    background: #0d1117;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 212, 170, 0.04);
    font-family: var(--font-primary);
    font-size: 13px;
    color: var(--text-primary);
    height: 100%;
}

/* ================================================================
   SHARED MOCKUP COMPONENTS (used across slides)
   ================================================================ */

.m-panel-header {
    padding: 10px 12px;
    font-size: 9px;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.m-search {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    margin: 6px 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    font-size: 10px;
    color: var(--text-muted);
}

.m-avatar,
.m-avatar-sm {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.m-avatar {
    width: 30px;
    height: 30px;
    font-size: 11px;
    background: rgba(0, 212, 170, 0.12);
    color: var(--color-primary);
}

.m-avatar-sm {
    width: 26px;
    height: 26px;
    font-size: 10px;
    background: rgba(0, 212, 170, 0.12);
    color: var(--color-primary);
}

.m-col {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.m-ts {
    display: block;
    font-size: 8px;
    color: var(--text-muted);
    text-align: right;
    margin-top: 2px;
}

.m-ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 3px 8px;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.25);
    border-radius: 5px;
    font-size: 9px;
    font-weight: 700;
    color: var(--color-primary);
    cursor: default;
}

.m-ai-badge.active-glow {
    background: rgba(0, 212, 170, 0.15);
    box-shadow: 0 0 12px rgba(0, 212, 170, 0.2);
}

/* ================================================================
   SLIDE 1: Chat 3-Panel (Anti-Exclusão)
   ================================================================ */

.mockup-3panel {
    /* height controlled by .mockup-window */
}


/* Monitorings Panel */
.m-panel-left {
    width: 140px;
    background: #111820;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}

.m-icons-row {
    display: flex;
    gap: 6px;
    padding: 8px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.m-icons-row svg {
    color: var(--text-muted);
}

.m-icons-row svg:first-child {
    color: var(--color-primary);
}

.m-contact {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
}

.m-contact.active {
    background: rgba(0, 212, 170, 0.06);
}

.m-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-muted);
    flex-shrink: 0;
}

.m-dot.online {
    background: var(--color-primary);
}

.m-cname {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-primary);
}

.m-cphone {
    font-size: 8px;
    color: var(--text-muted);
}

.m-bell {
    margin-left: auto;
    color: var(--color-primary);
}

/* Conversations Panel */
.m-panel-mid {
    width: 180px;
    background: #0d1218;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}

.m-tabs {
    display: flex;
    gap: 0;
    padding: 6px 8px;
}

.m-tabs span {
    padding: 3px 10px;
    font-size: 9px;
    border-radius: 12px;
    color: var(--text-secondary);
    cursor: default;
}

.m-tabs span.active {
    background: var(--color-primary);
    color: var(--text-inverse);
    font-weight: 600;
}

.m-conv {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
}

.m-conv.active {
    background: rgba(255, 255, 255, 0.03);
}

.m-conv-info {
    flex: 1;
    min-width: 0;
}

.m-conv-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.m-conv-name {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-primary);
}

.m-conv-time {
    font-size: 8px;
    color: var(--text-muted);
}

.m-conv-preview {
    font-size: 9px;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Chat Panel */
.m-panel-chat {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #0a0e14;
    min-width: 0;
}

.m-chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: #111820;
}

.m-chat-user {
    display: flex;
    align-items: center;
    gap: 8px;
}

.m-chat-uname {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
}

.m-chat-uphone {
    font-size: 9px;
    color: var(--text-muted);
}

.m-chat-btns {
    display: flex;
    align-items: center;
    gap: 8px;
}

.m-chat-btns svg {
    color: var(--text-muted);
}

.m-chat-body {
    flex: 1;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.m-msg {
    background: #1a2332;
    padding: 6px 10px;
    border-radius: 8px;
    border-bottom-left-radius: 2px;
    max-width: 80%;
    font-size: 11px;
    line-height: 1.4;
    color: var(--text-primary);
}

/* Edited badge */
.m-msg.m-edited {
    border: 1px dashed rgba(245, 158, 11, 0.4);
    background: rgba(245, 158, 11, 0.05);
}

.m-edit-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 8px;
    font-weight: 700;
    color: var(--color-warning);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 3px;
}

.m-edit-badge svg {
    color: var(--color-warning);
}

.m-original {
    display: block;
    font-size: 9px;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 3px;
    padding: 3px 6px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
}

/* Deleted badge */
.m-msg.m-deleted {
    border: 1px dashed rgba(239, 68, 68, 0.4);
    background: rgba(239, 68, 68, 0.05);
}

.m-del-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 8px;
    font-weight: 700;
    color: #ef4444;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 3px;
}

.m-del-badge svg {
    color: #ef4444;
}

/* ================================================================
   SLIDE 2: Alerts Dashboard
   ================================================================ */

.mockup-alerts {
    /* height controlled by .mockup-window */
}

.m-app-sidebar {
    width: 120px;
    background: #111820;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 10px;
    flex-shrink: 0;
}

.m-app-logo {
    padding: 0 12px 14px;
    font-size: 11px;
    font-weight: 700;
    color: var(--color-primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.m-app-logo span {
    color: var(--text-primary);
}

.m-app-logo small {
    color: var(--color-primary);
    font-weight: 400;
}

.m-app-nav {
    padding: 10px 0;
}

.m-nav-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    font-size: 10px;
    color: var(--text-secondary);
    cursor: default;
}

.m-nav-item svg {
    flex-shrink: 0;
}

.m-nav-item.active {
    color: var(--color-primary);
    border-left: 2px solid var(--color-primary);
    background: rgba(0, 212, 170, 0.05);
}

.m-alerts-content {
    flex: 1;
    padding: 14px 18px;
    min-width: 540px;
}

.m-alerts-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
}

.m-alerts-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
}

.m-alerts-sub {
    font-size: 10px;
    color: var(--text-muted);
    display: block;
}

.m-alerts-actions {
    display: flex;
    gap: 6px;
}

.m-btn-ghost {
    padding: 4px 8px;
    font-size: 9px;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    cursor: default;
}

.m-btn-primary {
    padding: 4px 8px;
    font-size: 9px;
    color: var(--text-inverse);
    background: var(--color-primary);
    border-radius: 6px;
    font-weight: 600;
    cursor: default;
}

.m-severity-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 14px;
}

.m-sev-card {
    padding: 10px;
    border-radius: 8px;
    background: var(--bg-tertiary);
}

.m-sev-card.critical {
    border-left: 3px solid #ef4444;
}

.m-sev-card.high {
    border-left: 3px solid #f97316;
}

.m-sev-card.medium {
    border-left: 3px solid #f59e0b;
}

.m-sev-card.low {
    border-left: 3px solid #22c55e;
}

.m-sev-num {
    font-size: 18px;
    font-weight: 700;
    display: block;
    color: var(--text-primary);
}

.m-sev-label {
    font-size: 7px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.m-alerts-tabs {
    display: flex;
    gap: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 8px;
}

.m-alerts-tabs span {
    font-size: 10px;
    color: var(--text-secondary);
    cursor: default;
}

.m-alerts-tabs span.active {
    color: var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 6px;
}

.m-alerts-tabs b {
    background: var(--bg-tertiary);
    padding: 1px 5px;
    border-radius: 8px;
    font-size: 9px;
    margin-left: 3px;
}

.m-alert-filters {
    display: flex;
    gap: 4px;
    margin-bottom: 10px;
}

.m-filter {
    padding: 2px 8px;
    font-size: 9px;
    border-radius: 10px;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    cursor: default;
}

.m-filter.active {
    background: var(--color-primary);
    color: var(--text-inverse);
    border-color: transparent;
}

.m-alert-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    margin-bottom: 4px;
    background: var(--bg-tertiary);
}

.m-alert-row.critical {
    border-left: 3px solid #ef4444;
}

.m-alert-row.high {
    border-left: 3px solid #f97316;
}

.m-alert-row.medium {
    border-left: 3px solid #f59e0b;
}

.m-alert-icon {
    font-size: 12px;
    flex-shrink: 0;
}

.m-alert-body {
    flex: 1;
    min-width: 0;
}

.m-alert-title {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-primary);
    display: block;
}

.m-alert-meta {
    font-size: 8px;
    color: var(--text-muted);
    display: block;
}

.m-alert-sev {
    font-size: 8px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    flex-shrink: 0;
}

.m-alert-row.critical .m-alert-sev {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.m-alert-row.high .m-alert-sev {
    background: rgba(249, 115, 22, 0.15);
    color: #f97316;
}

.m-alert-row.medium .m-alert-sev {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

/* ================================================================
   SLIDE 3: AI Scan Panel
   ================================================================ */

.mockup-aiScan {
    /* height controlled by .mockup-window */
}


.m-aiScan-panel {
    width: 170px;
    background: #111820;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    padding: 14px;
    flex-shrink: 0;
    overflow: hidden;
}

.m-aiScan-header {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.m-aiScan-sub {
    font-size: 9px;
    color: var(--text-muted);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.m-aiScan-section {
    margin-bottom: 14px;
}

.m-aiScan-label {
    font-size: 9px;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 6px;
}

.m-aiScan-section p {
    font-size: 10px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.m-sentiment-bar {
    height: 6px;
    background: var(--bg-tertiary);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 4px;
}

.m-sent-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), #22c55e);
    border-radius: 3px;
    transition: width 0.6s ease;
}

.m-sent-value {
    font-size: 9px;
    color: var(--color-primary);
    font-weight: 600;
}

.m-risk-badge {
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
}

.m-risk-badge.low {
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
}

.m-risk-badge.high {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

/* ===== CTA Section (Premium) ===== */
.cta-section {
    position: relative;
    padding: 50px 0;
    background: var(--bg-secondary);
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(0, 212, 170, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 30% 50%, rgba(37, 211, 102, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 70% 50%, rgba(228, 64, 95, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-platforms {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 28px;
}

.cta-platform-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-platform-icon:hover {
    transform: translateY(-4px);
}

.cta-platform-icon.whatsapp {
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.25);
    color: #25D366;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.1);
}

.cta-platform-icon.whatsapp:hover {
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.2);
}

.cta-platform-icon.instagram {
    background: linear-gradient(135deg, rgba(228, 64, 95, 0.1), rgba(252, 175, 69, 0.1));
    border: 1px solid rgba(228, 64, 95, 0.25);
    color: #E4405F;
    box-shadow: 0 4px 20px rgba(228, 64, 95, 0.1);
}

.cta-platform-icon.instagram:hover {
    box-shadow: 0 8px 30px rgba(228, 64, 95, 0.2);
}

.cta-section h2 {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.cta-desc {
    color: var(--text-secondary);
    font-size: var(--text-md);
    max-width: 520px;
    margin: 0 auto var(--space-xl);
    line-height: 1.6;
}

/* Glow CTA Button */
.btn-cta-glow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    font-size: var(--text-md);
    font-weight: 700;
    color: var(--text-inverse);
    background: linear-gradient(135deg, var(--color-primary), #0abf8a);
    border: none;
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow:
        0 0 20px rgba(0, 212, 170, 0.3),
        0 0 60px rgba(0, 212, 170, 0.1);
    animation: ctaPulse 2.5s ease-in-out infinite;
}

.btn-cta-glow:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow:
        0 0 30px rgba(0, 212, 170, 0.5),
        0 0 80px rgba(0, 212, 170, 0.2);
}

.btn-cta-glow:active {
    transform: translateY(0) scale(0.98);
}

@keyframes ctaPulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 212, 170, 0.3), 0 0 60px rgba(0, 212, 170, 0.1);
    }

    50% {
        box-shadow: 0 0 30px rgba(0, 212, 170, 0.5), 0 0 80px rgba(0, 212, 170, 0.15);
    }
}

/* ===== Solutions Section ===== */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.solution-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s ease;
}

.solution-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 212, 170, 0.3);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(0, 212, 170, 0.06);
}

.solution-img-wrap {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.solution-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.solution-card:hover .solution-img-wrap img {
    transform: scale(1.05);
}

.solution-img-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 14, 20, 0.4) 0%, rgba(10, 14, 20, 0.88) 100%),
        linear-gradient(180deg, rgba(0, 212, 170, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.solution-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 14px;
    font-size: var(--text-xs);
    font-weight: 700;
    color: #fff;
    background: rgba(0, 212, 170, 0.25);
    border: 1px solid rgba(0, 212, 170, 0.4);
    border-radius: 999px;
    backdrop-filter: blur(12px);
    z-index: 1;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.solution-body {
    padding: var(--space-xl);
}

.solution-body h3 {
    font-size: var(--text-xl);
    margin-bottom: 4px;
}

.solution-body h4 {
    font-size: var(--text-sm);
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.solution-body p {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    font-size: var(--text-sm);
    line-height: 1.6;
}

.solution-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-body li {
    padding: 6px 0;
    font-size: var(--text-sm);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.solution-body li svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

/* ===== Shared Section ===== */
.section {
    padding: 70px 0;
}

.section-dark {
    background: var(--bg-secondary);
}

.section-header {
    margin-bottom: var(--space-2xl);
}

.section-header h2 {
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
}

.section-header h3 {
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: var(--text-md);
    margin-top: 0.5rem;
}

/* ===== Audience Grid ===== */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    max-width: 900px;
    margin: 0 auto;
}

.audience-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.audience-card h3 {
    font-size: var(--text-xl);
    margin-bottom: 4px;
}

.audience-card h4 {
    font-size: var(--text-sm);
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.audience-card p {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    font-size: var(--text-sm);
    line-height: 1.6;
}

.audience-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.audience-card li {
    padding: 6px 0;
    font-size: var(--text-sm);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.audience-card li svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

/* ===== Features Grid ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.feature-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(0, 212, 170, 0.08);
}

.feature-icon {
    color: var(--color-primary);
    margin-bottom: var(--space-md);
    display: flex;
    justify-content: center;
}

.feature-card h4 {
    margin-bottom: var(--space-sm);
    font-size: var(--text-lg);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    line-height: 1.6;
}

/* ===== How It Works (Timeline) ===== */
.hiw-speed-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(0, 212, 170, 0.08);
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: 999px;
    color: var(--color-primary);
    font-size: var(--text-sm);
    font-weight: 700;
    margin-bottom: var(--space-lg);
}

.hiw-timeline {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hiw-step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    position: relative;
}

.hiw-step-number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(0, 212, 170, 0.1);
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-lg);
    font-weight: 800;
    z-index: 1;
    position: relative;
}

.hiw-step-connector {
    position: absolute;
    left: 23px;
    top: 48px;
    width: 2px;
    height: calc(100% - 48px + 24px);
    background: linear-gradient(180deg, var(--color-primary), rgba(0, 212, 170, 0.15));
}

.hiw-step:last-child .hiw-step-connector {
    display: none;
}

.hiw-step-content {
    padding: 8px 0 40px;
    flex: 1;
}

.hiw-step-content h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: 8px;
}

.hiw-step-content p {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    line-height: 1.7;
    margin: 0;
}

.hiw-step-platforms {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.hiw-platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 999px;
}

.hiw-platform-badge.whatsapp {
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #25D366;
}

.hiw-platform-badge.instagram {
    background: rgba(228, 64, 95, 0.1);
    border: 1px solid rgba(228, 64, 95, 0.3);
    color: #E4405F;
}

.hiw-bottom {
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
}

.hiw-bottom-text {
    color: var(--text-secondary);
    font-size: var(--text-md);
    margin-bottom: var(--space-lg);
}

/* ===== Plans Grid ===== */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.plans-billing-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.comparison-section {
    margin-top: 5rem;
}

.table-container {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    padding: var(--space-lg) 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: var(--font-semibold);
}

.faq-question span:last-child {
    font-size: 1.2em;
    transition: transform 0.2s;
}

.faq-item.open .faq-question span:last-child {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 0 var(--space-lg);
    color: var(--text-secondary);
    font-size: var(--text-sm);
    display: none;
    line-height: 1.6;
}

.faq-item.open .faq-answer {
    display: block;
}

/* ===== Footer ===== */
.landing-footer {
    padding: var(--space-xl) 0;
    border-top: 1px solid var(--border-color);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-logo {
    height: 24px;
    width: auto;
    filter: drop-shadow(0 1px 6px rgba(0, 212, 170, 0.15));
}

.footer-brand p {
    color: var(--text-muted);
    font-size: var(--text-xs);
}

.footer-links {
    display: flex;
    gap: var(--space-lg);
}

.footer-links a {
    color: var(--text-muted);
    font-size: var(--text-sm);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text-primary);
}

/* ===== Trust Bar (Hero) ===== */
.hero-trust-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: var(--space-lg);
    flex-wrap: wrap;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(0, 212, 170, 0.06);
    border: 1px solid rgba(0, 212, 170, 0.15);
    border-radius: 20px;
    font-size: var(--text-xs);
    color: var(--color-primary);
    font-weight: 500;
    letter-spacing: 0.01em;
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(0, 212, 170, 0.12);
    border-color: rgba(0, 212, 170, 0.3);
    box-shadow: 0 0 16px rgba(0, 212, 170, 0.1);
    transform: translateY(-1px);
}

.trust-badge svg {
    flex-shrink: 0;
    opacity: 0.85;
}

/* ===== Security Note (How It Works) ===== */
.security-note {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: var(--space-2xl);
    padding: 20px 24px;
    background: rgba(0, 212, 170, 0.04);
    border: 1px solid rgba(0, 212, 170, 0.15);
    border-left: 3px solid var(--color-primary);
    border-radius: var(--radius-md);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.security-note-icon {
    flex-shrink: 0;
    color: var(--color-primary);
    margin-top: 2px;
}

.security-note-content strong {
    display: block;
    font-size: var(--text-sm);
    color: var(--color-primary);
    margin-bottom: 6px;
    font-weight: 700;
}

.security-note-content p {
    font-size: var(--text-xs);
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ===== CTA Trust Badges ===== */
.cta-trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: var(--space-md);
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.01em;
}

.cta-trust-badges svg {
    flex-shrink: 0;
    color: var(--color-primary);
    opacity: 0.7;
}

/* ===== Footer Security Seal ===== */
.footer-security {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    font-size: 11px;
    color: var(--text-muted);
    opacity: 0.7;
}

.footer-security svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text {
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-carousel-wrapper {
        justify-content: center;
        flex-direction: column;
        gap: 4px;
        font-size: clamp(1.2rem, 5vw, 1.8rem);
    }

    .hero-trust-bar {
        justify-content: center;
    }

    .m-panel-left,
    .m-app-sidebar {
        display: none;
    }

    .m-aiScan-panel {
        display: none;
    }

    .steps-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .landing-nav {
        display: none;
    }

    .footer-inner {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    .footer-security {
        justify-content: center;
    }

    .security-note {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cta-trust-badges {
        flex-direction: column;
        gap: 4px;
    }
}