/* ============================================
   BOT.CSS - Pagina del Bot de Trading
   FlowTrading Global
============================================ */

/* ============================================
   IMPORTS - Estilos base y layout
============================================ */
@import url('../main.css');
@import url('../layout.css');
@import url('../components.css');

/* ============================================
   CSS VARIABLES - Aliases para este archivo
============================================ */
:root {
    --bot-card-bg: var(--card, #1a1a1a);
    --bot-card-border: var(--border, #2a2a2a);
}

body.light-mode {
    --bot-card-bg: var(--bg-light-secondary, #ffffff);
    --bot-card-border: var(--border, #e0e0e0);
}

/* ============================================
   BOT DASHBOARD (Igual que la App)
   Solo visible para usuarios con acceso al bot
============================================ */
.bot-dashboard {
    padding: 20px 16px;
    padding-top: calc(var(--ticker-height, 46px) + var(--header-height, 90px) + 1rem);
    padding-bottom: 40px;
    max-width: 500px;
    margin: 0 auto;
    background: var(--bg-dark);
    min-height: 100vh;
}

body.light-mode .bot-dashboard {
    background: var(--bg-light);
}

/* No access card */
.bot-no-access {
    display: none;
    padding: 20px 16px;
    padding-top: calc(var(--ticker-height, 46px) + var(--header-height, 90px) + 1rem);
    max-width: 500px;
    margin: 0 auto;
}

.no-access-card {
    background: var(--bot-card-bg);
    border: 1px solid var(--bot-card-border);
    border-radius: 16px;
    padding: 40px 24px;
    text-align: center;
}

.no-access-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.no-access-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--gold);
}

.no-access-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 8px;
}

.no-access-text {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.5;
}

.no-access-btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--gold);
    color: #000;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

.no-access-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Status Card (igual que app) */
.bot-status-card {
    background: var(--bot-card-bg);
    border: 1px solid var(--bot-card-border);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
}

.bot-status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bot-status-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bot-status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #f44336;
}

.bot-status-indicator.running {
    background: #4caf50;
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.5);
}

.bot-status-info h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
}

.bot-status-text {
    font-size: 13px;
    color: var(--text-muted);
}

/* Switch Toggle */
.bot-switch {
    position: relative;
    width: 52px;
    height: 28px;
    cursor: pointer;
}

.bot-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.bot-switch-track {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bot-card-border);
    border-radius: 28px;
    transition: background 0.2s;
}

.bot-switch input:checked + .bot-switch-track {
    background: rgba(212, 175, 55, 0.4);
}

.bot-switch-thumb {
    position: absolute;
    width: 24px;
    height: 24px;
    background: #666;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: all 0.2s;
}

.bot-switch input:checked + .bot-switch-track + .bot-switch-thumb {
    background: var(--gold);
    transform: translateX(24px);
}

/* Running Info */
.bot-running-info {
    display: none;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--bot-card-border);
}

.bot-running-info.active {
    display: block;
}

.bot-running-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

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

.bot-running-label {
    font-size: 13px;
    color: var(--text-muted);
}

.bot-running-value {
    font-size: 13px;
    color: var(--text-color);
    font-weight: 500;
}

/* Metrics Grid (igual que app) */
.bot-metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.bot-metric-card {
    background: var(--bot-card-bg);
    border: 1px solid var(--bot-card-border);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

.bot-metric-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
}

.bot-metric-icon svg {
    width: 24px;
    height: 24px;
}

.bot-metric-icon.gold {
    background: rgba(212, 175, 55, 0.15);
}

.bot-metric-icon.gold svg {
    fill: var(--gold);
}

.bot-metric-icon.green {
    background: rgba(76, 175, 80, 0.15);
}

.bot-metric-icon.green svg {
    fill: #4caf50;
}

.bot-metric-icon.red {
    background: rgba(244, 67, 54, 0.15);
}

.bot-metric-icon.red svg {
    fill: #f44336;
}

.bot-metric-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 2px;
}

.bot-metric-value.positive {
    color: #4caf50;
}

.bot-metric-value.negative {
    color: #f44336;
}

.bot-metric-title {
    font-size: 12px;
    color: var(--text-muted);
}

.bot-metric-subtitle {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Sections */
.bot-section {
    margin-bottom: 16px;
}

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

.bot-section-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
}

.bot-section-badge {
    background: var(--gold);
    color: #000;
    font-size: 12px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
}

/* Position Card */
.bot-position-card {
    background: var(--bot-card-bg);
    border: 1px solid var(--bot-card-border);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 8px;
}

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

.bot-position-asset {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
}

.bot-position-side {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.bot-position-side.buy {
    background: rgba(76, 175, 80, 0.15);
    color: #4caf50;
}

.bot-position-side.sell {
    background: rgba(244, 67, 54, 0.15);
    color: #f44336;
}

.bot-position-details {
    display: flex;
    justify-content: space-between;
}

.bot-position-detail {
    text-align: center;
}

.bot-position-label {
    font-size: 11px;
    color: var(--text-muted);
    display: block;
}

.bot-position-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    margin-top: 2px;
}

.bot-position-value.positive {
    color: #4caf50;
}

.bot-position-value.negative {
    color: #f44336;
}

/* Trade Item */
.bot-trade-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bot-card-bg);
    border: 1px solid var(--bot-card-border);
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 8px;
}

.bot-trade-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bot-trade-side-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bot-trade-side-icon.buy {
    background: rgba(76, 175, 80, 0.15);
}

.bot-trade-side-icon.buy svg {
    fill: #4caf50;
}

.bot-trade-side-icon.sell {
    background: rgba(244, 67, 54, 0.15);
}

.bot-trade-side-icon.sell svg {
    fill: #f44336;
}

.bot-trade-side-icon svg {
    width: 16px;
    height: 16px;
}

.bot-trade-asset {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
}

.bot-trade-time {
    font-size: 12px;
    color: var(--text-muted);
}

.bot-trade-right {
    text-align: right;
}

.bot-trade-pnl {
    font-size: 14px;
    font-weight: 700;
}

.bot-trade-pnl.positive {
    color: #4caf50;
}

.bot-trade-pnl.negative {
    color: #f44336;
}

.bot-trade-lot {
    font-size: 12px;
    color: var(--text-muted);
}

/* Empty State */
.bot-empty-state {
    text-align: center;
    padding: 32px 20px;
    background: var(--bot-card-bg);
    border: 1px solid var(--bot-card-border);
    border-radius: 12px;
}

.bot-empty-icon {
    width: 56px;
    height: 56px;
    fill: var(--text-muted);
    margin-bottom: 12px;
}

.bot-empty-text {
    font-size: 14px;
    color: var(--text-muted);
}

/* Configuracion Button */
.bot-config-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 16px;
}

.bot-config-btn:hover {
    background: rgba(212, 175, 55, 0.1);
}

.bot-config-btn svg {
    width: 18px;
    height: 18px;
    fill: var(--gold);
}

/* ============================================
   HERO SECTION
============================================ */
.bot-hero {
    padding: 180px 20px 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    max-width: var(--max-width);
    margin: 0 auto;
    align-items: center;
}

.bot-hero .hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--border-gold);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bot-hero h1 {
    font-size: 5rem;
    /* Fallback color sólido */
    color: var(--gold);
    margin-bottom: var(--spacing-sm);
    /* Gradiente con prefijos para máxima compatibilidad */
    background: -webkit-linear-gradient(135deg, var(--gold), var(--gold-light));
    background: -moz-linear-gradient(135deg, var(--gold), var(--gold-light));
    background: -o-linear-gradient(135deg, var(--gold), var(--gold-light));
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    line-height: 1;
}

.hero-subtitle {
    font-size: var(--font-size-2xl);
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

body.light-mode .hero-subtitle {
    color: var(--text-dark);
}

.hero-description {
    font-size: var(--font-size-lg);
    color: var(--text-light-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-xl);
}

body.light-mode .hero-description {
    color: var(--text-dark-secondary);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-xl);
}

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

.stat-number {
    display: block;
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: var(--font-size-sm);
    color: var(--text-light-muted);
    margin-top: var(--spacing-xs);
}

body.light-mode .stat-label {
    color: var(--text-dark-muted);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bot-animation {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bot-icon {
    z-index: 10;
    animation: float 3s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bot-icon svg {
    width: 120px;
    height: 125px;
}

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

.pulse-ring {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease-out infinite;
    opacity: 0;
}

.pulse-ring.delay-1 {
    animation-delay: 0.5s;
}

.pulse-ring.delay-2 {
    animation-delay: 1s;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ============================================
   SECTION CONTAINER
============================================ */
.section-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: var(--font-size-3xl);
    color: var(--gold);
    margin-bottom: var(--spacing-xl);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light-secondary);
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-2xl);
    margin-top: -15px;
}

body.light-mode .section-subtitle {
    color: var(--text-dark-secondary);
}

/* BUTTONS - Usar los de components.css */

/* ============================================
   FEATURES SECTION
============================================ */
.bot-features {
    padding: 100px 20px;
    background: rgba(212, 175, 55, 0.02);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.feature-card {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    transition: all var(--transition-normal);
}

body.light-mode .feature-card {
    background: rgba(255, 255, 255, 0.8);
}

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

.feature-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: var(--spacing-md);
}

.feature-card h3 {
    color: var(--gold);
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-sm);
}

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

body.light-mode .feature-card p {
    color: var(--text-dark-secondary);
}

/* ============================================
   HOW IT WORKS SECTION
============================================ */
.bot-how-it-works {
    padding: 100px 20px;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 280px;
    padding: 0 var(--spacing-lg);
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
}

.step-content h3 {
    color: var(--text-light);
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-sm);
}

body.light-mode .step-content h3 {
    color: var(--text-dark);
}

.step-content p {
    color: var(--text-light-secondary);
    font-size: var(--font-size-sm);
    line-height: 1.6;
}

body.light-mode .step-content p {
    color: var(--text-dark-secondary);
}

.step-connector {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin-top: -100px;
}

/* ============================================
   PRICING SECTION
============================================ */
.bot-pricing {
    padding: 100px 20px;
    background: rgba(212, 175, 55, 0.02);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-grid-3 {
    max-width: 1000px;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
}

@media (max-width: 992px) {
    .pricing-grid-3 {
        grid-template-columns: 1fr;
        max-width: 380px;
    }
}

.pricing-card {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    position: relative;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

body.light-mode .pricing-card {
    background: rgba(255, 255, 255, 0.8);
}

.pricing-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.pricing-card.featured {
    border: 2px solid var(--gold);
    box-shadow: var(--shadow-gold);
}

.pricing-card.featured:hover {
    transform: translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--bg-dark);
    padding: 6px 20px;
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-header {
    text-align: center;
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--border-gold);
    margin-bottom: var(--spacing-lg);
}

.pricing-header h3 {
    color: var(--gold);
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-xs);
}

.pricing-subtitle {
    color: var(--text-light-muted);
    font-size: var(--font-size-sm);
    margin: 0;
}

body.light-mode .pricing-subtitle {
    color: var(--text-dark-muted);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-top: var(--spacing-sm);
}

.pricing-price .price-currency {
    color: var(--text-light-secondary);
    font-size: var(--font-size-lg);
}

.pricing-price .price-amount {
    color: var(--gold);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.pricing-price .price-period {
    color: var(--text-light-muted);
    font-size: var(--font-size-sm);
}

body.light-mode .pricing-price .price-currency {
    color: var(--text-dark-secondary);
}

body.light-mode .pricing-price .price-amount {
    color: var(--gold-dark);
}

body.light-mode .pricing-price .price-period {
    color: var(--text-dark-muted);
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
}

.currency {
    color: var(--text-light-secondary);
    font-size: var(--font-size-lg);
    margin-top: 10px;
}

body.light-mode .currency {
    color: var(--text-dark-secondary);
}

.amount {
    color: var(--text-light);
    font-size: var(--font-size-hero);
    font-weight: 700;
    line-height: 1;
}

body.light-mode .amount {
    color: var(--text-dark);
}

.period {
    color: var(--text-light-muted);
    font-size: var(--font-size-sm);
    margin-top: 30px;
}

body.light-mode .period {
    color: var(--text-dark-muted);
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--spacing-lg);
    flex-grow: 1;
}

.pricing-card .btn-full {
    margin-top: auto;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    color: var(--text-light-secondary);
    font-size: var(--font-size-sm);
}

body.light-mode .pricing-features li {
    color: var(--text-dark-secondary);
}

.pricing-features li.disabled {
    opacity: 0.5;
}

.check {
    color: var(--success);
    font-weight: 700;
}

.cross {
    color: var(--error);
    font-weight: 700;
}

.feature-excluded {
    opacity: 0.6;
}

.feature-excluded span:last-child {
    text-decoration: line-through;
}

.x {
    color: var(--text-light-muted);
}

body.light-mode .x {
    color: var(--text-dark-muted);
}

/* ============================================
   TESTIMONIALS
============================================ */
.bot-testimonials {
    padding: 100px 20px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.testimonial-card {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    transition: all var(--transition-normal);
}

body.light-mode .testimonial-card {
    background: rgba(255, 255, 255, 0.8);
}

.testimonial-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.testimonial-stars {
    color: var(--gold);
    font-size: var(--font-size-base);
    margin-bottom: var(--spacing-md);
    letter-spacing: 2px;
}

.testimonial-card > p {
    color: var(--text-light-secondary);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

body.light-mode .testimonial-card > p {
    color: var(--text-dark-secondary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--font-size-base);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    color: var(--text-light);
    font-weight: 600;
}

body.light-mode .author-name {
    color: var(--text-dark);
}

.author-role {
    color: var(--text-light-muted);
    font-size: var(--font-size-sm);
}

body.light-mode .author-role {
    color: var(--text-dark-muted);
}

/* ============================================
   FAQ SECTION
============================================ */
.bot-faq {
    padding: 100px 20px;
    background: rgba(212, 175, 55, 0.02);
}

/* Eliminar espacio entre contenido y footer en página bot */
body:has(.bot-landing) footer {
    margin-top: 0;
}

.bot-faq .section-container {
    max-width: 900px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.faq-item {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-normal);
    cursor: pointer;
}

body.light-mode .faq-item {
    background: rgba(255, 255, 255, 0.8);
}

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

.faq-item.active {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    color: var(--text-light);
    font-weight: 500;
    gap: var(--spacing-md);
}

body.light-mode .faq-question {
    color: var(--text-dark);
}

.faq-item.active .faq-question {
    color: var(--gold);
}

.faq-icon {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform var(--transition-normal);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

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

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-light-secondary);
    line-height: 1.7;
}

body.light-mode .faq-answer p {
    color: var(--text-dark-secondary);
}

/* ============================================
   CTA SECTION
============================================ */
.bot-cta {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(180deg, transparent 0%, rgba(212, 175, 55, 0.1) 100%);
}

.bot-cta .cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.bot-cta h2 {
    font-size: var(--font-size-3xl);
    color: var(--gold);
    margin-bottom: var(--spacing-md);
}

.bot-cta p {
    color: var(--text-light-secondary);
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-xl);
}

body.light-mode .bot-cta p {
    color: var(--text-dark-secondary);
}

.cta-note {
    display: block;
    margin-top: var(--spacing-md);
    color: var(--text-light-muted);
    font-size: var(--font-size-sm);
}

body.light-mode .cta-note {
    color: var(--text-dark-muted);
}

/* ============================================
   RESPONSIVE DESIGN
============================================ */
@media (max-width: 1024px) {
    .bot-hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 160px 20px 80px;
    }

    .bot-hero .hero-content {
        max-width: 100%;
    }

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

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

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

    .hero-visual {
        order: -1;
        margin-bottom: var(--spacing-xl);
    }

    .bot-animation {
        width: 200px;
        height: 200px;
    }

    .bot-icon {
        font-size: 5rem;
        margin-top: 8px;
    }

    .bot-icon svg {
        width: 100px;
        height: 105px;
    }

    .pulse-ring {
        width: 150px;
        height: 150px;
    }

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

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .bot-hero h1 {
        font-size: var(--font-size-hero);
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-lg);
    }

    .step-connector {
        display: none;
    }

    .steps-container {
        flex-direction: column;
        gap: var(--spacing-xl);
    }

    .step {
        max-width: 100%;
    }

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

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

@media (max-width: 480px) {
    .bot-hero {
        padding: 140px 15px 60px;
    }

    .bot-hero h1 {
        font-size: var(--font-size-4xl);
    }

    .hero-subtitle {
        font-size: var(--font-size-lg);
    }

    .hero-badge {
        font-size: var(--font-size-xs);
        padding: 6px 14px;
    }

    .section-title {
        font-size: var(--font-size-2xl);
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

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

    .faq-question {
        padding: 16px 18px;
        font-size: var(--font-size-sm);
    }

    .faq-answer p {
        padding: 0 18px 16px;
        font-size: var(--font-size-sm);
    }
}
