/* ===================================
   LIONS MASTER — Premium Design System
   Dark Mode • Glassmorphism • Animations
   =================================== */

/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --gold: hsl(42, 92%, 55%);
    --gold-dark: hsl(42, 85%, 42%);
    --gold-glow: hsla(42, 92%, 55%, 0.3);
    --primary: hsl(265, 89%, 62%);
    --primary-dark: hsl(265, 89%, 50%);
    --primary-glow: hsla(265, 89%, 62%, 0.25);
    --accent: hsl(340, 82%, 52%);
    --success: hsl(160, 84%, 39%);
    --warning: hsl(38, 92%, 50%);

    /* Backgrounds */
    --bg-deep: hsl(230, 25%, 4%);
    --bg-primary: hsl(230, 22%, 7%);
    --bg-secondary: hsl(230, 20%, 10%);
    --bg-card: hsl(230, 18%, 12%);
    --bg-elevated: hsl(230, 16%, 15%);
    --bg-hover: hsl(230, 14%, 18%);

    /* Text */
    --text-white: hsl(0, 0%, 98%);
    --text-primary: hsl(0, 0%, 92%);
    --text-secondary: hsl(230, 10%, 68%);
    --text-muted: hsl(230, 8%, 48%);

    /* Borders */
    --border: hsla(230, 20%, 30%, 0.4);
    --border-light: hsla(230, 20%, 40%, 0.2);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, hsl(290, 80%, 55%) 50%, var(--accent) 100%);
    --gradient-gold: linear-gradient(135deg, var(--gold) 0%, hsl(30, 90%, 55%) 100%);
    --gradient-subtle: linear-gradient(135deg, hsla(265, 89%, 62%, 0.1) 0%, hsla(340, 82%, 52%, 0.05) 100%);

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', sans-serif;

    /* Spacing */
    --container: 1200px;
    --section-pad: clamp(4rem, 8vw, 8rem);

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.4);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 40px var(--primary-glow);
    --shadow-gold: 0 0 40px var(--gold-glow);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
}

/* === PARTICLES CANVAS === */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
}

/* === NAVIGATION === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s var(--ease);
    backdrop-filter: blur(0px);
}

.nav.scrolled {
    padding: 0.5rem 0;
    background: hsla(230, 25%, 4%, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-white);
}

.logo-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 0 8px var(--gold-glow));
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo-accent {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s var(--ease);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s var(--ease);
}

.nav-link:hover {
    color: var(--text-white);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-primary);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s var(--ease);
    box-shadow: var(--shadow-glow);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 60px var(--primary-glow);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s var(--ease);
}

/* === HERO SECTION === */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8rem 0 4rem;
    position: relative;
    z-index: 1;
}

.hero-glow {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, hsla(265, 89%, 62%, 0.12) 0%, hsla(340, 82%, 52%, 0.05) 40%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-alt {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-subtitle strong {
    color: var(--gold);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s var(--ease);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 60px var(--primary-glow);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    background: var(--bg-card);
    color: var(--text-white);
    border-color: var(--text-muted);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    background: var(--bg-elevated);
    border-color: var(--primary);
    color: var(--text-white);
}

.btn-gold {
    background: var(--gradient-gold);
    color: hsl(230, 25%, 8%);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 60px var(--gold-glow);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.05rem;
    border-radius: 14px;
}

.btn-xl {
    padding: 1.2rem 2.5rem;
    font-size: 1.15rem;
    border-radius: 16px;
}

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

/* === HERO STATS === */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number, .stat-prefix, .stat-suffix {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--text-white);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* === HERO VISUAL / DASHBOARD PREVIEW === */
.hero-visual {
    width: 100%;
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 0 clamp(1rem, 4vw, 2rem);
}

.dashboard-preview {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}

.preview-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red { background: hsl(0, 80%, 55%); }
.dot.yellow { background: hsl(45, 90%, 55%); }
.dot.green { background: hsl(140, 70%, 45%); }

.preview-title {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.preview-body {
    display: flex;
    min-height: 280px;
}

.preview-sidebar {
    width: 160px;
    padding: 1rem 0.75rem;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-item {
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    cursor: default;
    transition: all 0.2s var(--ease);
}

.sidebar-item.active {
    background: var(--gradient-subtle);
    color: var(--text-white);
    border: 1px solid var(--border-light);
}

.preview-main {
    flex: 1;
    padding: 1rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    align-content: start;
}

.preview-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.preview-card.glow {
    border-color: hsla(265, 89%, 62%, 0.3);
    box-shadow: 0 0 20px hsla(265, 89%, 62%, 0.08);
}

.card-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-value {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
}

.card-change {
    font-size: 0.7rem;
    font-weight: 600;
}

.card-change.positive {
    color: var(--success);
}

.preview-chart {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 80px;
    padding: 1rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: 10px;
}

.chart-bar {
    flex: 1;
    height: var(--h);
    background: hsla(265, 89%, 62%, 0.3);
    border-radius: 4px 4px 0 0;
    transition: all 0.5s var(--ease);
    animation: chart-grow 1.5s var(--ease) forwards;
}

.chart-bar.active {
    background: var(--gradient-primary);
    box-shadow: 0 0 10px var(--primary-glow);
}

@keyframes chart-grow {
    from { height: 0; }
    to { height: var(--h); }
}

/* === LOGOS SECTION === */
.logos-section {
    padding: 3rem 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    position: relative;
    z-index: 1;
}

.logos-title {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
    opacity: 0.6;
    transition: opacity 0.3s var(--ease);
}

.logo-item:hover {
    opacity: 1;
}

.logo-item span {
    font-size: 0.85rem;
}

/* === SECTION HEADERS === */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: var(--gradient-subtle);
    border: 1px solid var(--border);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* === FEATURES === */
.features {
    padding: var(--section-pad) 0;
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--border);
    box-shadow: var(--shadow-md);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.1));
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* === AGENTS SECTION === */
.agents {
    padding: var(--section-pad) 0;
    background: var(--bg-primary);
    position: relative;
    z-index: 1;
}

.agents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.agent-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.4s var(--ease);
    position: relative;
}

.agent-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--border);
}

.agent-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.agent-status .status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.agent-status.active {
    color: var(--success);
}

.agent-status.active .status-dot {
    background: var(--success);
    animation: pulse-dot 2s infinite;
}

.agent-status.coming {
    color: var(--gold);
}

.agent-status.coming .status-dot {
    background: var(--gold);
}

.agent-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.agent-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.agent-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.agent-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 1rem;
}

.agent-tag {
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 500;
}

.agent-power {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.power-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.power-bar {
    height: 4px;
    background: var(--bg-elevated);
    border-radius: 999px;
    overflow: hidden;
}

.power-fill {
    height: 100%;
    width: var(--w);
    background: var(--gradient-primary);
    border-radius: 999px;
    transition: width 1.5s var(--ease);
}

/* === PRICING SECTION === */
.pricing {
    padding: var(--section-pad) 0;
    position: relative;
    z-index: 1;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 4px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.toggle-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s var(--ease);
    font-family: var(--font-sans);
}

.toggle-btn.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-glow);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    align-items: start;
}

.pricing-grid.hidden {
    display: none;
}

.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s var(--ease);
    position: relative;
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.price-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
    transform: scale(1.02);
}

.price-card.featured:hover {
    transform: scale(1.02) translateY(-4px);
}

.price-ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.35rem 1.2rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: var(--shadow-glow);
    white-space: nowrap;
}

.price-header {
    margin-bottom: 1.5rem;
}

.price-badge {
    display: inline-block;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    padding: 0.25rem 0.8rem;
    border-radius: 6px;
    font-size: 0.7rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.price-badge.elite {
    color: var(--gold);
    border-color: var(--gold-glow);
    background: hsla(42, 92%, 55%, 0.05);
}

.price-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.price-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.price-amount {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 0.5rem;
}

.price-currency {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.price-value {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
}

.price-period {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.price-savings {
    background: hsla(160, 84%, 39%, 0.1);
    border: 1px solid hsla(160, 84%, 39%, 0.2);
    color: var(--success);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.price-savings.gold {
    background: hsla(42, 92%, 55%, 0.08);
    border-color: hsla(42, 92%, 55%, 0.2);
    color: var(--gold);
}

.price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.price-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.price-features li .check {
    flex-shrink: 0;
    font-weight: 700;
    color: var(--success);
}

.price-features li.disabled {
    opacity: 0.4;
}

.price-features li.disabled .check {
    color: var(--text-muted);
}

/* === GUARANTEE === */
.guarantee {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 3rem;
}

.guarantee-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.guarantee-text h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.guarantee-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* === FAQ === */
.faq {
    padding: var(--section-pad) 0;
    background: var(--bg-primary);
    position: relative;
    z-index: 1;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s var(--ease);
}

.faq-item.open {
    border-color: var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.5rem;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-sans);
    transition: color 0.3s var(--ease);
}

.faq-question:hover {
    color: var(--text-white);
}

.faq-chevron {
    flex-shrink: 0;
    transition: transform 0.3s var(--ease);
    color: var(--text-muted);
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* === CTA FINAL === */
.cta-final {
    padding: var(--section-pad) 0;
    position: relative;
    z-index: 1;
}

.cta-content {
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto 2rem;
}

/* === FOOTER === */
.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-light);
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1rem;
    line-height: 1.6;
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
    opacity: 0.7;
}

.footer-links h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    padding: 0.3rem 0;
    transition: color 0.2s var(--ease);
}

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

/* === ANYDESK IA SECTION === */
.anydesk-section {
    padding: var(--section-pad) 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, hsla(265, 89%, 8%, 0.3) 50%, var(--bg-primary) 100%);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.anydesk-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--gold), var(--primary), transparent);
}

.section-badge.fire {
    background: linear-gradient(135deg, hsla(0, 80%, 50%, 0.15), hsla(42, 92%, 55%, 0.15));
    border-color: hsla(42, 92%, 55%, 0.3);
    color: var(--gold);
    font-size: 0.8rem;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 0 0 0 hsla(42, 92%, 55%, 0.3); }
    50% { box-shadow: 0 0 20px 4px hsla(42, 92%, 55%, 0.15); }
}

.anydesk-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.anydesk-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.anydesk-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.ad-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    background: hsla(265, 89%, 62%, 0.04);
    border: 1px solid var(--border-light);
    transition: all 0.3s var(--ease);
}

.ad-feature:hover {
    border-color: var(--border);
    background: hsla(265, 89%, 62%, 0.08);
}

.ad-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.ad-feature strong {
    color: var(--text-white);
    font-size: 0.95rem;
}

.ad-feature span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.anydesk-preview {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 40px hsla(265, 89%, 62%, 0.1), var(--shadow-lg);
}

.anydesk-screen {
    padding: 1.5rem;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 320px;
    background: hsla(0, 0%, 0%, 0.3);
}

.screen-line {
    opacity: 0;
    animation: typeIn 0.5s forwards;
    color: var(--text-secondary);
}

.screen-line:nth-child(1) { animation-delay: 0.3s; }
.screen-line:nth-child(2) { animation-delay: 1s; }
.screen-line:nth-child(3) { animation-delay: 1.7s; }
.screen-line:nth-child(4) { animation-delay: 2.4s; }
.screen-line:nth-child(5) { animation-delay: 3.1s; }
.screen-line:nth-child(6) { animation-delay: 3.8s; }
.screen-line:nth-child(7) { animation-delay: 4.5s; }
.screen-line:nth-child(8) { animation-delay: 5.2s; }
.screen-line:nth-child(9) { animation-delay: 5.9s; }
.screen-line:nth-child(10) { animation-delay: 6.6s; }
.screen-line:nth-child(11) { animation-delay: 7.3s; }

@keyframes typeIn {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

.screen-line .prompt {
    color: var(--primary);
    font-weight: 700;
    margin-right: 8px;
}

.screen-line.success {
    color: var(--success);
}

.screen-line.glow {
    color: var(--gold);
    font-weight: 700;
    text-shadow: 0 0 10px hsla(42, 92%, 55%, 0.4);
    font-size: 0.85rem;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--border-light);
}

/* === AUDITOR SECTION === */
.auditor-section {
    padding: var(--section-pad) 0;
    position: relative;
    z-index: 1;
}

.auditor-content {
    text-align: center;
    background: var(--bg-card);
    border: 2px solid var(--gold-glow);
    border-radius: 24px;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.auditor-content::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--primary), var(--gold));
}

.auditor-badge {
    display: inline-block;
    background: linear-gradient(135deg, hsla(42, 92%, 55%, 0.15), hsla(265, 89%, 62%, 0.15));
    border: 1px solid var(--gold-glow);
    padding: 0.5rem 1.5rem;
    border-radius: 999px;
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    animation: pulse-badge 2s infinite;
}

.auditor-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.aud-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s var(--ease);
}

.aud-card:hover {
    border-color: var(--gold-glow);
    transform: translateY(-4px);
    box-shadow: 0 0 20px hsla(42, 92%, 55%, 0.08);
}

.aud-card span:first-child {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.75rem;
}

.aud-card h4 {
    font-family: var(--font-display);
    color: var(--text-white);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.aud-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* === AUDITOR CARD HIGHLIGHT === */
.auditor-card {
    border-color: var(--gold-glow) !important;
    background: linear-gradient(135deg, var(--bg-card), hsla(42, 92%, 55%, 0.03));
}

.auditor-card:hover {
    box-shadow: 0 0 30px hsla(42, 92%, 55%, 0.1) !important;
}

/* === ANIMATIONS === */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: hsla(230, 25%, 4%, 0.95);
        backdrop-filter: blur(20px);
        padding: 1rem 2rem 2rem;
        border-bottom: 1px solid var(--border);
        gap: 0;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-link {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-light);
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-divider {
        display: none;
    }

    .preview-sidebar {
        display: none;
    }

    .preview-main {
        grid-template-columns: 1fr;
    }

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

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

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

    .price-card.featured {
        transform: none;
    }

    .price-card.featured:hover {
        transform: translateY(-4px);
    }

    .guarantee {
        flex-direction: column;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .logos-grid {
        gap: 1.5rem;
    }

    .anydesk-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .auditor-content {
        padding: 2.5rem 1.5rem;
    }

    .cta-content {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-lg, .btn-xl {
        width: 100%;
        justify-content: center;
    }
}
