/* ========================================
   Spinlytics Segnali Slot - Main Stylesheet
   ======================================== */

:root {
    /* Colors */
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #10b981;
    --secondary-dark: #059669;
    --accent: #f59e0b;
    --accent-dark: #d97706;
    
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    
    /* Spacing */
    --container-max-width: 1280px;
    --section-spacing: 100px;
    --gap-sm: 16px;
    --gap-md: 24px;
    --gap-lg: 40px;
    --gap-xl: 60px;
}

/* ========================================
   Reset & Base
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   Header
   ======================================== */

.main-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    padding: 20px 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 20px;
    color: var(--text-primary);
    text-decoration: none;
}

.logo:hover {
    color: var(--primary);
}

.logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.logo-text {
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo-icon {
    font-size: 28px;
}

.logo-sub {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.main-nav a {
    font-weight: 500;
    font-size: 15px;
    color: var(--text-secondary);
    transition: color 0.2s ease;
    position: relative;
}

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

.main-nav a.active {
    color: var(--primary);
    font-weight: 600;
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
}

.header-users {
    display: flex;
    align-items: center;
    gap: 12px;
}

.users-online {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-secondary);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.online-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.users-count {
    color: var(--primary);
    font-weight: 700;
}

.users-label {
    color: var(--text-secondary);
    font-weight: 500;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

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

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

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .header-users {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    padding: 80px 0 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

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

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-subtitle strong {
    color: white;
    font-weight: 600;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    margin-top: 60px;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* ========================================
   Buttons
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    text-decoration: none;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    color: var(--primary-dark);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

.btn-icon {
    font-size: 20px;
}

/* ========================================
   Trust Section
   ======================================== */

.trust-section {
    padding: 60px 0;
    background: var(--bg-secondary);
}

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

.trust-item {
    text-align: center;
    padding: 32px;
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.trust-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.trust-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.trust-item p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========================================
   Section Headers
   ======================================== */

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   Signals Section
   ======================================== */

.signals-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.signals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.signal-card {
    background: white;
    border-radius: 14px;
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.signal-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.signal-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 14px;
    color: white;
}

.signal-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.2);
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    margin-bottom: 6px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.signal-slot-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 3px;
    line-height: 1.2;
}

.signal-provider {
    font-size: 12px;
    opacity: 0.9;
}

.signal-body {
    padding: 14px;
}

.signal-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 14px;
}

.metric {
    background: var(--bg-secondary);
    padding: 10px;
    border-radius: 8px;
}

.metric-label {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 3px;
    letter-spacing: 0.5px;
}

.metric-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.metric-value.highlight {
    color: var(--secondary);
}

.metric-subtext {
    font-size: 10px;
    color: var(--text-secondary);
    margin-top: 3px;
}

.signal-casino {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--bg-tertiary);
    border-radius: 10px;
    margin-bottom: 14px;
}

.casino-logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    background: white;
    border: 2px solid var(--border-light);
}

.casino-logo-fallback {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid var(--border-light);
    color: var(--primary);
}

.casino-logo {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid var(--border-light);
}

.casino-info h4 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 2px;
}

.casino-license {
    font-size: 10px;
    color: var(--text-secondary);
}

.signal-strategies {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Casino Warning */
.casino-warning {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    background: #fff3cd;
    border-left: 3px solid #ffc107;
    border-radius: 6px;
    margin-bottom: 14px;
}

.warning-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.warning-text {
    font-size: 11px;
    color: #856404;
    line-height: 1.5;
}

.warning-text strong {
    color: #664d03;
    font-weight: 700;
}

/* Strategia Segreta */
.strategy-secret {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid var(--primary-light);
    border-radius: 10px;
    margin-bottom: 14px;
    overflow: hidden;
}

.strategy-secret.collapsed .secret-content {
    max-height: 0;
    padding: 0 14px;
    opacity: 0;
}

.secret-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 12px 14px;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.secret-toggle:hover {
    background: rgba(99, 102, 241, 0.05);
}

.secret-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    flex: 1;
    text-align: left;
}

.toggle-arrow {
    font-size: 12px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.secret-content {
    max-height: 500px;
    padding: 0 14px 14px;
    font-size: 11px;
    color: var(--text-primary);
    transition: all 0.4s ease;
    opacity: 1;
}

.secret-intro {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.secret-steps {
    margin: 0 0 10px 0;
    padding-left: 18px;
    line-height: 1.7;
}

.secret-steps li {
    margin-bottom: 6px;
    color: var(--text-secondary);
}

.secret-steps strong {
    color: var(--text-primary);
    font-weight: 700;
}

.secret-tip {
    background: white;
    padding: 10px;
    border-radius: 6px;
    border-left: 3px solid var(--secondary);
    font-size: 11px;
    line-height: 1.6;
}

.secret-tip strong {
    color: var(--secondary);
}

.secret-tip strong {
    color: var(--secondary);
}

/* Budget Levels (Collapsabile) */
.budget-levels {
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    margin-bottom: 14px;
    overflow: hidden;
}

.budget-levels.collapsed .levels-content {
    max-height: 0;
    padding: 0;
    opacity: 0;
}

.levels-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 12px 14px;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.levels-toggle:hover {
    background: var(--bg-secondary);
}

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

.levels-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    flex: 1;
    text-align: left;
}

.levels-content {
    max-height: 300px;
    padding: 0 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: all 0.4s ease;
    opacity: 1;
}

/* CTA Disclaimer */
.cta-disclaimer {
    text-align: center;
    font-size: 10px;
    color: var(--text-muted);
    margin-top: 8px;
}

.strategy-level {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    background: var(--bg-secondary);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.strategy-level:hover {
    background: var(--bg-tertiary);
    border-color: var(--primary-light);
}

.strategy-level-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.strategy-info h5 {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 2px;
}

.strategy-budget {
    font-size: 10px;
    color: var(--text-secondary);
}

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

.signal-cta {
    margin-top: 14px;
}

.btn-signal {
    width: 100%;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: white;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 16px;
}

.btn-signal:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Loading State */
.loading-state {
    text-align: center;
    padding: 80px 0;
    grid-column: 1 / -1;
}

.spinner {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    border: 4px solid var(--border-light);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========================================
   How It Works Section
   ======================================== */

.how-it-works {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.step-item {
    display: flex;
    gap: 20px;
}

.step-number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    font-size: 24px;
    font-weight: 700;
    border-radius: 16px;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.step-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.disclaimer-box {
    display: flex;
    gap: 24px;
    background: #fef3c7;
    border: 2px solid #fbbf24;
    border-radius: 16px;
    padding: 32px;
}

.disclaimer-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.disclaimer-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.disclaimer-content p {
    font-size: 15px;
    color: var(--text-primary);
    line-height: 1.7;
}

/* ========================================
   Strategies Section
   ======================================== */

.strategies-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

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

.strategy-card {
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.3s ease;
    position: relative;
}

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

.strategy-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.strategy-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--bg-secondary);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.strategy-badge.popular {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.strategy-budget {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}

.strategy-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.strategy-features {
    list-style: none;
    margin-bottom: 24px;
}

.strategy-features li {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text-secondary);
}

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

.strategy-ideal {
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: 12px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.strategy-ideal strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 4px;
}

.popular-tag {
    position: absolute;
    top: -12px;
    right: 32px;
    background: var(--accent);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

/* ========================================
   FAQ Section
   ======================================== */

.faq-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.faq-question[aria-expanded="true"] {
    color: var(--primary);
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 32px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 32px 24px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.faq-answer strong {
    color: var(--text-primary);
}

/* ========================================
   Responsible Gaming
   ======================================== */

.responsible-gaming {
    padding: 60px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
}

.rg-content {
    display: flex;
    gap: 32px;
    align-items: center;
}

.rg-icon {
    font-size: 80px;
    flex-shrink: 0;
}

.rg-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.rg-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 20px;
}

.rg-text a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

.rg-badges {
    display: flex;
    gap: 12px;
}

.rg-badges .badge {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    color: white;
    font-weight: 600;
    font-size: 14px;
}

/* ========================================
   Footer
   ======================================== */

.main-footer {
    background: var(--text-primary);
    color: white;
    padding: 60px 0 30px;
}

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

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

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.2s ease;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

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

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-bottom-left p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 4px;
}

.footer-note {
    font-size: 12px !important;
}

.footer-badges {
    display: flex;
    gap: 8px;
}

.badge-small {
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

.footer-disclaimer {
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    margin-top: 20px;
}

.footer-disclaimer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    line-height: 1.6;
    margin: 0;
}

.footer-disclaimer a {
    color: var(--secondary);
    text-decoration: underline;
}

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

/* ========================================
   Go to Top Button
   ======================================== */

.go-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.go-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.go-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.5);
}

.go-to-top:active {
    transform: translateY(-1px);
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 32px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .signals-grid,
    .strategies-grid {
        grid-template-columns: 1fr;
    }
    
    .main-nav {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .rg-content {
        flex-direction: column;
        text-align: center;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 16px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
}
