/* =============================================
   ANDREA ZUCCARINI - GOLD AI STRATEGY
   Premium Light Theme — Rust Red & White
   ============================================= */

/* Font Imports */
@font-face {
    font-family: 'Bebas Neue';
    src: url('FONT/bebas_neue/BebasNeue-Regular.woff2') format('woff2'),
         url('FONT/bebas_neue/BebasNeue-Regular.woff') format('woff'),
         url('FONT/bebas_neue/BebasNeue-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}

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

html {
    scroll-behavior: smooth;
}

:root {
    /* Premium Light Color Palette */
    --bg-dark: #ffffff;
    --bg-card: #f5f5f5;
    --bg-card-hover: #ebebeb;
    --bg-surface: #f9f9f9;

    /* Blu chiaro — colore principale */
    --gold-primary: #3B9EF5;
    --gold-light: #2E86D8;
    --gold-dark: #1E6FBD;
    --gold-glow: rgba(59, 158, 245, 0.2);

    /* Text Colors */
    --text-primary: #1a1a1a;
    --text-secondary: #333333;
    --text-muted: #666666;

    /* Accent */
    --accent-blue: #3B82F6;
    --accent-green: #22C55E;
    --accent-red: #EF4444;

    /* Colore piatto — no sfumature */
    --gradient-gold: #3B9EF5;
    --gradient-dark: #ffffff;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Colors */
.gold {
    color: var(--gold-light);
    text-shadow: 0 0 24px var(--gold-glow);
}
.blue { color: var(--accent-blue); }

/* ===== URGENCY BAR ===== */
.urgency-bar {
    background: var(--text-primary);
    padding: 5px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    overflow: hidden;
}

.urgency-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.urgency-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.urgency-icon {
    width: 13px;
    height: 13px;
    color: var(--gold-primary);
    flex-shrink: 0;
}

.urgency-timer {
    display: flex;
    align-items: center;
    gap: 4px;
}

.timer-value {
    background: rgba(59, 158, 245, 0.15);
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    min-width: 32px;
    text-align: center;
    font-variant-numeric: tabular-nums;
    border: 1px solid rgba(59, 158, 245, 0.2);
}

.timer-sep {
    color: var(--gold-primary);
    font-weight: 700;
}

.urgency-label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2px;
    text-transform: none;
    line-height: 1.3;
}

.urgency-divider {
    width: 1px;
    height: 30px;
    background: rgba(0,0,0,0.06);
}

.spots-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold-primary);
    line-height: 1;
}

.spots-number.low {
    color: var(--accent-red);
    animation: pulse-spots 1s ease infinite;
}

@keyframes pulse-spots {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.spots-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.spots-label {
    color: var(--gold-light);
    font-size: 0.8rem;
    font-weight: 600;
}

.spots-sublabel {
    color: rgba(0, 0, 0, 0.5);
    font-size: 0.65rem;
    text-transform: uppercase;
}

/* Informativa bar responsive */
@media (max-width: 768px) {
    .urgency-bar {
        padding: 6px 0;
    }

    .urgency-bar-content {
        gap: 8px;
    }

    .urgency-label {
        font-size: 0.66rem;
        display: block;
    }
}

@media (max-width: 480px) {
    .urgency-bar-content {
        gap: 15px;
    }
    
    .timer-value {
        font-size: 0.8rem;
        padding: 2px 5px;
        min-width: 24px;
    }
    
    .spots-number {
        font-size: 1rem;
    }
    
    .spots-label {
        font-size: 0.65rem;
    }
    
    .urgency-icon {
        width: 16px;
        height: 16px;
    }
}

/* Buttons */
.btn-primary {
    background: var(--gradient-gold);
    color: #000;
    border: none;
    padding: 16px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--gold-glow);
}

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

/* ===== FORM OVERLAY ===== */
.form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.form-overlay.hidden {
    display: none;
}

.form-modal {
    background: #ffffff;
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 35px 40px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.6), 0 0 60px rgba(59, 158, 245, 0.1);
    position: relative;
    border: 2px solid var(--gold-primary);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.06);
    color: var(--text-primary);
}

.form-header {
    text-align: center;
    margin-bottom: 25px;
}

.form-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 6px;
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.logo-gold {
    color: var(--gold-primary);
    text-shadow: 0 0 20px rgba(59, 158, 245, 0.5);
}

.form-tagline {
    color: #e0e0e0;
    font-size: 0.9rem;
    font-weight: 500;
}

.progress-container {
    margin-bottom: 25px;
}

.progress-track {
    height: 4px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 4px;
    margin-bottom: 15px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-gold);
    border-radius: 4px;
    transition: width 0.4s ease;
    width: 0%;
    box-shadow: 0 0 10px var(--gold-glow);
}

.progress-labels {
    display: flex;
    justify-content: space-between;
}

.step-label {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.04);
    color: #aaa;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: 2px solid rgba(59, 158, 245, 0.3);
}

.step-label.active {
    background: var(--gradient-gold);
    color: #000;
    border: 2px solid var(--gold-primary);
    box-shadow: 0 0 15px rgba(59, 158, 245, 0.5);
}

.step-label.completed {
    background: var(--gold-primary);
    color: #000;
    border: 2px solid var(--gold-light);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.question-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: var(--text-primary);
    text-align: center;
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(59, 158, 245, 0.3);
}

.question-subtitle {
    color: rgba(0, 0, 0, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 18px;
}

.options-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.options-list.two-col {
    flex-direction: row;
}

.options-list.two-col .option-card {
    flex: 1;
}

.options-list.three-col {
    flex-direction: row;
}

.options-list.three-col .option-card {
    flex: 1;
}

.option-card {
    background: rgba(0, 0, 0, 0.04);
    border: 2px solid rgba(59, 158, 245, 0.3);
    padding: 14px 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.option-card:hover {
    border-color: var(--gold-primary);
    background: rgba(59, 158, 245, 0.15);
    box-shadow: 0 0 15px rgba(59, 158, 245, 0.3);
}

.option-card.selected {
    border-color: var(--gold-light);
    background: rgba(59, 158, 245, 0.2);
    box-shadow: 0 0 20px rgba(59, 158, 245, 0.4);
}

.option-label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.option-card.selected .option-label {
    color: var(--gold-primary);
}

.input-field {
    margin-bottom: 14px;
}

.input-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid rgba(59, 158, 245, 0.3);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s;
    background: rgba(0, 0, 0, 0.04);
    color: var(--text-primary);
}

.form-input:focus {
    outline: none;
    border-color: var(--gold-primary);
    background: rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 15px rgba(59, 158, 245, 0.3);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-input.error {
    border-color: #EF4444;
    background: rgba(239, 68, 68, 0.1);
}

.form-input.valid {
    border-color: #22C55E;
}

.input-error {
    display: block;
    color: #EF4444;
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 4px;
    min-height: 16px;
}

/* Privacy Checkbox */
.privacy-checkbox {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    position: relative;
    padding-left: 32px;
}

.checkbox-container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    left: 0;
    top: 2px;
    height: 20px;
    width: 20px;
    background-color: transparent;
    border: 2px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    transition: all 0.2s ease;
}

.checkbox-container:hover .checkmark {
    border-color: var(--gold-primary);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--gold-primary);
    border-color: var(--gold-primary);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.checkbox-text a {
    color: var(--gold-primary);
    text-decoration: underline;
    transition: color 0.2s;
}

.checkbox-text a:hover {
    color: var(--gold-light);
}

.privacy-checkbox .input-error {
    padding-left: 32px;
}

.form-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.btn-back {
    background: transparent;
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
    padding: 12px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-back:hover {
    background: rgba(59, 158, 245, 0.1);
    border-color: var(--gold-light);
    color: var(--gold-light);
    box-shadow: 0 0 15px rgba(59, 158, 245, 0.3);
}

.btn-next {
    background: var(--gradient-gold);
    border: none;
    color: #000;
    padding: 12px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(59, 158, 245, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.btn-next .whatsapp-icon {
    flex-shrink: 0;
}

.btn-next:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(59, 158, 245, 0.6);
}

.btn-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 30px; /* Height of informativa bar */
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.98);
}

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

.logo {
    text-decoration: none;
}

.logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: 2px;
}

/* Logo image in header */
.logo-img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 0 8px rgba(184, 58, 15, 0.6));
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav {
    display: flex;
    gap: 35px;
}

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

.nav-link:hover {
    color: var(--gold-primary);
}

.header-cta {
    padding: 12px 24px;
    font-size: 0.85rem;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 122px 0 60px; /* Extra padding for informativa bar + header */
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.hero-video-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto 50px;
    padding: 0 40px;
}

.hero-video {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

@media (max-width: 900px) {
    .hero-video-wrap {
        padding: 0 20px;
        margin-bottom: 30px;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-lines {
    width: 100%;
    height: 100%;
}

.hero-lines .line {
    fill: none;
    stroke: var(--gold-primary);
    stroke-width: 1;
    opacity: 0.15;
}

.hero-lines .line-1 { animation: wave 8s ease-in-out infinite; }
.hero-lines .line-2 { animation: wave 8s ease-in-out infinite 0.5s; }
.hero-lines .line-3 { animation: wave 8s ease-in-out infinite 1s; }

@keyframes wave {
    0%, 100% { d: path("M0,400 Q360,300 720,400 T1440,400"); }
    50% { d: path("M0,400 Q360,500 720,400 T1440,400"); }
}

.hero-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: center;
}

.hero-left {
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 24px;
    padding-left: 14px;
    border-left: 3px solid var(--gold-primary);
}

.hero-tag svg {
    display: none;
}

.hero-title {
    margin-bottom: 20px;
}

.title-line {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    font-weight: 400;
    line-height: 1;
    color: var(--text-primary);
    letter-spacing: 2px;
}

.title-gold {
    color: var(--gold-primary);
    text-shadow: 0 0 40px var(--gold-glow);
}

.hero-desc {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.75);
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 560px;
}

.hero-numbers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
    max-width: 560px;
    align-items: start;
}

.hero-numbers .number-item {
    max-width: none;
}

.hero-numbers .number-label {
    font-size: 0.78rem;
    line-height: 1.4;
    display: block;
    min-height: 2.2em;
}

.number-sublabel {
    display: block;
    margin-top: 4px;
    font-size: 0.66rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: var(--text-muted);
    line-height: 1.3;
}

.number-circle.risk {
    display: flex;
    align-items: center;
    justify-content: center;
}

.number-circle.risk .number-val {
    font-size: 2rem;
    color: #d97706;
}

.hero-fineprint {
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.55);
    max-width: 480px;
    margin-top: 8px;
    line-height: 1.5;
}

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

.number-circle {
    width: 90px;
    height: 90px;
    position: relative;
    margin-bottom: 10px;
}

.number-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.number-circle .bg {
    fill: none;
    stroke: rgba(0, 0, 0, 0.08);
    stroke-width: 4;
}

.number-circle .progress {
    fill: none;
    stroke: var(--gold-primary);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 1.5s ease;
    filter: drop-shadow(0 0 10px var(--gold-glow));
}

.number-circle .prog-30 {
    stroke-dashoffset: 198;
}

.number-val {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.number-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    background: var(--gradient-gold);
    color: #000;
    border: none;
    padding: 18px 36px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--gold-glow);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px var(--gold-glow);
}

.hero-cta .cta-text {
    color: #000;
}

.hero-cta .cta-icon {
    display: flex;
    align-items: center;
}

.hero-cta .cta-icon svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
    stroke: #000;
}

.hero-cta:hover .cta-icon svg {
    transform: translateX(4px);
}

/* Hero logo showcase */
.hero-logo-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.hero-logo-wrap {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-ring {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(184, 58, 15, 0.25);
    border-radius: 50%;
    animation: rotateSlow 20s linear infinite;
}

.hero-logo-ring::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: var(--gold-primary);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--gold-glow);
}

.hero-logo-ring-2 {
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(184, 58, 15, 0.15);
    border-radius: 50%;
    animation: rotateSlow 28s linear infinite reverse;
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-logo-img {
    width: 220px;
    height: 220px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 30px rgba(184, 58, 15, 0.4));
    transition: filter 0.4s ease;
}

.hero-logo-img:hover {
    filter: drop-shadow(0 0 50px rgba(184, 58, 15, 0.7));
}

.hero-logo-glow {
    position: absolute;
    inset: 20px;
    background: radial-gradient(circle, rgba(184, 58, 15, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Trader Card */
.hero-right {
    position: relative;
    z-index: 1;
}

.trader-card {
    position: relative;
    perspective: 1000px;
}

.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
}

.card-inner {
    background: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 40px 35px;
    position: relative;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card-inner:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.card-status {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent-green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.card-photo {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 25px;
}

.card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.photo-ring {
    position: absolute;
    inset: -10px;
    border: 2px solid var(--gold-primary);
    pointer-events: none;
}

/* Video Showcase - Full Width Video */
.video-showcase {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 380px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 60px var(--gold-glow);
    border: 1px solid rgba(59, 158, 245, 0.2);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}

.video-mute-hint {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    padding: 10px 16px;
    border-radius: 30px;
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    animation: fadeInUp 0.5s ease 1s both;
}

.video-mute-hint:hover {
    background: var(--gold-primary);
    transform: translateX(-50%) scale(1.05);
}

.video-mute-hint.hidden {
    opacity: 0;
    pointer-events: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Trader Info Box */
.trader-info-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-card);
    padding: 18px 22px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.trader-info-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trader-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trader-status .status-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.trader-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: 1px;
}

.trader-role {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0;
}

.trader-info-right {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.trader-info-right .market-chip {
    padding: 6px 12px;
    font-size: 0.7rem;
}

/* Keep old card styles for compatibility */
.trader-card.video-card {
    max-width: 380px;
}

.card-video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    max-height: 480px;
    margin: 0 auto 20px;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
}

.card-video-container iframe {
    object-fit: cover;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    overflow: hidden;
}

.thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-thumbnail:hover .thumbnail-img {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    transition: background 0.3s ease;
}

.video-thumbnail:hover .video-overlay {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(0, 0, 0, 0.85);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.play-button svg {
    width: 28px;
    height: 28px;
    fill: var(--gold-primary);
    margin-left: 4px;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(0, 0, 0, 0.85);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.play-button::before {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    animation: playPulse 2s ease-out infinite;
}

@keyframes playPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.video-duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    padding: 6px 10px;
    border-radius: 6px;
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
}

.video-duration svg {
    stroke: white;
}

.video-player {
    position: absolute;
    inset: 0;
    background: #000;
    z-index: 10;
}

.video-player.hidden {
    display: none;
}

.video-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: all 0.2s ease;
}

.video-close svg {
    stroke: white;
}

.video-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.card-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.card-role {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.card-markets {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
}

.market-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
}

.market-chip.gold {
    background: rgba(59, 158, 245, 0.15);
    color: var(--gold-light);
    border: 1px solid rgba(59, 158, 245, 0.3);
}

.market-chip.blue {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.card-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

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

.mini-val {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.mini-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mini-divider {
    width: 1px;
    height: 40px;
    background: rgba(0, 0, 0, 0.06);
}

.asset-dot.blue {
    background: #1E40AF;
}

.asset-name {
    font-weight: 600;
    font-size: 0.85rem;
}

.asset-pair {
    color: #888;
    font-size: 0.8rem;
}

/* ===== RISK WARNING SECTION ===== */
.risk-warning-section {
    padding: 40px 0;
    background: var(--bg-dark);
}

.risk-warning-box {
    max-width: 900px;
    margin: 0 auto;
    background: #fff8ec;
    border: 2px solid #d97706;
    border-radius: 14px;
    padding: 28px 32px;
}

.risk-warning-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 1px;
    color: #b45309;
    margin-bottom: 14px;
}

.risk-warning-box p {
    color: #5c3d0e;
    font-size: 0.82rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 10px;
}

.risk-warning-box p strong {
    font-weight: 400;
}

.risk-warning-box p:last-child {
    margin-bottom: 0;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: center;
}

.about-media {
    position: relative;
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 4px solid #ffffff;
    outline: 1px solid rgba(0, 0, 0, 0.06);
}

.about-content .section-label {
    margin-bottom: 15px;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 25px;
}

.about-text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 18px;
}

.about-highlight {
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 1.15rem;
    margin-top: 10px;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .about-media {
        max-width: 320px;
        margin: 0 auto;
    }

    .about-content .section-title,
    .about-content .section-label {
        text-align: center;
    }

    .about-content {
        text-align: center;
    }
}

/* ===== TESTIMONIALS SECTION ===== */
/* ===== COSTI E RISCHI SECTION ===== */
.costs-section {
    padding: 100px 0;
    background: var(--bg-surface);
}

.costs-text {
    max-width: 760px;
    margin: 0 auto 50px;
}

.costs-text p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 14px;
}

.costs-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 20px;
    columns: 2;
    column-gap: 30px;
}

.costs-list li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    padding-left: 18px;
    position: relative;
}

.costs-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
}

.conflict-box {
    max-width: 760px;
    margin: 0 auto;
    background: #fff8ec;
    border: 2px solid #d97706;
    border-radius: 14px;
    padding: 32px 36px;
}

.conflict-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: #b45309;
    margin-bottom: 16px;
}

.conflict-box p {
    color: #5c3d0e;
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.conflict-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 16px;
}

.conflict-list li {
    color: #5c3d0e;
    font-size: 0.92rem;
    line-height: 1.7;
    padding-left: 18px;
    position: relative;
}

.conflict-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #b45309;
}

@media (max-width: 700px) {
    .costs-list {
        columns: 1;
    }
}

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

.testimonials-grid {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
}

.testimonials-grid::-webkit-scrollbar {
    height: 8px;
}

.testimonials-grid::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 4px;
}

.testimonial-video {
    position: relative;
    flex: 0 0 340px;
    width: 340px;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    scroll-snap-align: start;
}

.testimonial-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 900px) {
    .testimonial-video {
        flex: 0 0 280px;
        width: 280px;
    }
}

/* ===== CHARTS SECTION ===== */
.charts-section {
    padding: 100px 0;
    background: var(--bg-surface);
    border-top: 2px solid rgba(59, 158, 245, 0.3);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    padding-left: 14px;
    border-left: 3px solid var(--gold-primary);
    background: none;
    border-radius: 0;
    border-top: none;
    border-right: none;
    border-bottom: none;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.2rem;
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(59, 158, 245, 0.2);
}

.section-subtitle {
    color: rgba(0, 0, 0, 0.7);
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.charts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 700px;
    margin: 0 auto;
}

.chart-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.chart-symbol {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.symbol-dot.gold {
    background: var(--gold-primary);
    box-shadow: 0 0 10px var(--gold-glow);
}

.symbol-dot.blue {
    background: var(--accent-blue);
}

.symbol-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
}

.symbol-pair {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.chart-price {
    text-align: right;
}

.price-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.price-change {
    font-size: 0.85rem;
    font-weight: 600;
}

.price-change.positive {
    color: var(--accent-green);
}

.price-change.negative {
    color: var(--accent-red);
}

.chart-canvas {
    height: 280px;
    margin-bottom: 20px;
    position: relative;
}

.chart-canvas canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.chart-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.chart-data-fields {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 20px;
}

.data-field {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.data-field span {
    color: var(--text-secondary);
    font-weight: 600;
}

.performance-disclaimer {
    max-width: 900px;
    margin: 30px auto 0;
    padding: 18px 24px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 10px;
    border-left: 3px solid var(--gold-primary);
}

.performance-disclaimer p {
    font-size: 0.76rem;
    font-weight: 400;
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.7;
}

.performance-disclaimer p strong {
    font-weight: 400;
}

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

.chart-stat .stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 4px;
    width: auto;
    height: auto;
    background: none;
}

.chart-stat .stat-value {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.chart-stat .stat-value.positive {
    color: var(--accent-green);
}

.chart-stat .stat-value.negative {
    color: var(--accent-red);
}

/* ===== BENEFITS SECTION - INTERACTIVE ===== */
.benefits-section {
    padding: 100px 0;
    background: var(--bg-dark);
    border-top: 2px solid rgba(59, 158, 245, 0.3);
    position: relative;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: var(--gradient-gold);
    box-shadow: 0 0 20px rgba(59, 158, 245, 0.5);
}

.benefits-showcase {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 50px;
    margin-top: 60px;
}

/* Benefits Navigation Tabs */
.benefits-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.benefit-tab {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: var(--bg-card);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.benefit-tab::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--gold-primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.benefit-tab:hover {
    background: var(--bg-card-hover);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.benefit-tab.active {
    background: var(--bg-card-hover);
    border-color: rgba(59, 158, 245, 0.3);
    box-shadow: 0 8px 30px rgba(184, 134, 11, 0.12);
}

.benefit-tab.active::before {
    transform: scaleY(1);
}

.tab-indicator {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-tab.active .tab-indicator {
    background: var(--gradient-gold);
    border: none;
}

.tab-icon {
    width: 22px;
    height: 22px;
    stroke: var(--text-secondary);
    transition: all 0.3s ease;
}

.benefit-tab.active .tab-icon {
    stroke: #000;
}

.tab-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tab-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.8rem;
    color: var(--gold-primary);
    font-weight: 400;
    letter-spacing: 1px;
}

.tab-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
}

.tab-arrow {
    width: 24px;
    height: 24px;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.tab-arrow svg {
    width: 100%;
    height: 100%;
    stroke: var(--gold-primary);
}

.benefit-tab.active .tab-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Benefits Detail Panel */
.benefits-detail {
    position: relative;
    min-height: 400px;
}

.detail-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 30px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition: all 0.4s ease;
}

.detail-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    position: relative;
}

.panel-visual {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-hover) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    min-height: 280px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.panel-text h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.9rem;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--text-primary);
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(59, 158, 245, 0.2);
}

.panel-text p {
    color: var(--text-primary);
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.8;
}

/* Visual: Circle Progress */
.visual-circle {
    width: 200px;
    height: 200px;
}

.visual-circle svg {
    width: 100%;
    height: 100%;
}

.progress-ring {
    transform-origin: center;
    transform: rotate(-90deg);
    transition: stroke-dashoffset 1s ease;
}

.detail-panel.active .progress-ring {
    stroke-dashoffset: 502;
}

/* Visual: Cost Bars */
.visual-bars {
    width: 100%;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cost-bar {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bar-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    width: 110px;
    flex-shrink: 0;
}

.bar-track {
    flex: 1;
    height: 8px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 10px;
    transition: width 0.8s ease;
}

.bar-fill.zero {
    width: 0%;
    background: rgba(0, 0, 0, 0.06);
}

.bar-fill.profit {
    width: 30%;
    background: var(--gradient-gold);
}

.bar-value {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-primary);
    width: 40px;
    text-align: right;
}

.cost-bar.highlight .bar-label,
.cost-bar.highlight .bar-value {
    color: var(--gold-primary);
}

/* Visual: Toggle */
.visual-toggle {
    text-align: center;
}

.toggle-switch {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    user-select: none;
}

.toggle-track {
    width: 70px;
    height: 36px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    position: relative;
    transition: background 0.3s ease;
}

.toggle-track.active {
    background: var(--gold-primary);
}

.toggle-thumb {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 28px;
    height: 28px;
    background: var(--text-primary);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.toggle-track.active .toggle-thumb {
    transform: translateX(34px);
}

.toggle-label {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.toggle-hint {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Visual: Live Trades */
.visual-live {
    text-align: center;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 158, 245, 0.15);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 25px;
    border: 1px solid rgba(59, 158, 245, 0.3);
}

.live-dot {
    width: 10px;
    height: 10px;
    background: var(--gold-primary);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

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

.live-text {
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--gold-primary);
}

.live-trades {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.trade-item {
    padding: 12px 30px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    animation: slideIn 0.5s ease forwards;
    opacity: 0;
}

.trade-item:nth-child(1) { animation-delay: 0.2s; }
.trade-item:nth-child(2) { animation-delay: 0.4s; }
.trade-item:nth-child(3) { animation-delay: 0.6s; }

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

.trade-item.win {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.trade-item.loss {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

/* Visual: Clock */
.visual-clock {
    text-align: center;
}

.visual-clock svg {
    width: 150px;
    height: 150px;
}

.clock-hour {
    transform-origin: center;
    animation: hourHand 12s linear infinite;
}

.clock-minute {
    transform-origin: 100px 100px;
    animation: minuteHand 3s linear infinite;
}

@keyframes hourHand {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes minuteHand {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.clock-text {
    margin-top: 20px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.clock-text strong {
    color: var(--gold-primary);
}

/* Visual: Chat */
.visual-chat {
    width: 100%;
    max-width: 280px;
}

.chat-bubble {
    padding: 14px 18px;
    border-radius: 18px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    animation: bubbleIn 0.4s ease forwards;
    opacity: 0;
}

.chat-bubble:nth-child(1) { animation-delay: 0.2s; }
.chat-bubble:nth-child(2) { animation-delay: 0.6s; }

@keyframes bubbleIn {
    from { opacity: 0; transform: translateY(10px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.chat-bubble.incoming {
    background: rgba(0, 0, 0, 0.06);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
    align-self: flex-start;
}

.chat-bubble.outgoing {
    background: var(--gradient-gold);
    color: #000;
    border-bottom-right-radius: 4px;
    margin-left: auto;
}

.chat-typing {
    display: flex;
    gap: 4px;
    padding: 12px 18px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    width: fit-content;
    animation: bubbleIn 0.4s ease forwards;
    animation-delay: 1s;
    opacity: 0;
}

.chat-typing span {
    width: 8px;
    height: 8px;
    background: #999;
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }

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

/* ===== HOW IT WORKS - HORIZONTAL TIMELINE ===== */
.how-section {
    padding: 100px 0;
    background: var(--bg-surface);
    border-top: 2px solid rgba(59, 158, 245, 0.3);
    position: relative;
}

.how-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: var(--gradient-gold);
    box-shadow: 0 0 20px rgba(59, 158, 245, 0.5);
}

.process-horizontal {
    margin-top: 60px;
    position: relative;
}

/* Horizontal Timeline Track */
.timeline-h-track {
    position: absolute;
    top: 30px;
    left: 50px;
    right: 50px;
    height: 4px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 2px;
    z-index: 1;
}

.timeline-h-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--gradient-gold);
    border-radius: 2px;
    transition: width 0.5s ease;
    box-shadow: 0 0 15px var(--gold-glow);
}

/* Horizontal Steps */
.process-h-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

.process-h-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.process-h-step:hover {
    transform: translateY(-5px);
}

/* Horizontal Node */
.h-step-node {
    position: relative;
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    background: var(--bg-surface);
}

.h-node-ring {
    width: 100%;
    height: 100%;
}

.h-node-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.h-node-progress {
    transition: stroke-dashoffset 0.6s ease;
}

.process-h-step.active .h-node-progress,
.process-h-step.completed .h-node-progress {
    stroke-dashoffset: 0;
}

.h-node-num {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.process-h-step.active .h-node-num,
.process-h-step.completed .h-node-num {
    color: var(--gold-primary);
    text-shadow: 0 0 10px var(--gold-glow);
}

/* Horizontal Step Content */
.h-step-content {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.process-h-step.active .h-step-content,
.process-h-step.completed .h-step-content {
    opacity: 1;
}

.h-step-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--text-primary);
    letter-spacing: 1px;
    text-shadow: 0 0 15px rgba(59, 158, 245, 0.2);
}

.h-step-desc {
    color: rgba(0, 0, 0, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.5;
    max-width: 200px;
    margin: 0 auto;
}

/* Detail Panel Below */
.process-detail-panel {
    margin-top: 50px;
    position: relative;
    min-height: 160px;
}

.detail-h-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 30px 40px;
    background: var(--bg-card);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.detail-h-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: relative;
}

.detail-h-visual {
    flex-shrink: 0;
}

.detail-h-text {
    max-width: 400px;
}

.detail-h-tag {
    display: inline-block;
    background: var(--gradient-gold);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.detail-h-text p {
    color: rgba(0, 0, 0, 0.8);
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.7;
}

/* Visual Styles for Horizontal */
.detail-h-visual .visual-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 180px;
}

.detail-h-visual .form-line {
    height: 10px;
    background: linear-gradient(90deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 5px;
    animation: formPulse 2s infinite;
}

.detail-h-visual .form-line.short {
    width: 60%;
}

.detail-h-visual .form-btn {
    width: 80px;
    height: 28px;
    background: var(--gradient-gold);
    border-radius: 6px;
    margin-top: 5px;
}

@keyframes formPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Call Visual */
.detail-h-visual .visual-call {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.detail-h-visual .call-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold-primary);
}

.detail-h-visual .call-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-h-visual .call-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-h-visual .call-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.detail-h-visual .call-status {
    font-size: 0.8rem;
    color: var(--gold-primary);
    animation: callPulse 1.5s infinite;
}

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

/* Connect Visual */
.detail-h-visual .visual-connect {
    display: flex;
    align-items: center;
    gap: 15px;
}

.detail-h-visual .connect-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 15px 20px;
    border-radius: 12px;
    background: var(--bg-card);
    border: 2px solid var(--gold-primary);
}

.detail-h-visual .connect-box svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold-primary);
}

.detail-h-visual .connect-box span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold-primary);
}

.detail-h-visual .connect-line {
    display: flex;
    gap: 6px;
}

.detail-h-visual .connect-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
    animation: connectFlow 1s infinite;
}

.detail-h-visual .connect-dot:nth-child(2) { animation-delay: 0.2s; }
.detail-h-visual .connect-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes connectFlow {
    0%, 100% { background: rgba(0, 0, 0, 0.06); transform: scale(1); }
    50% { background: var(--gold-primary); transform: scale(1.3); }
}

/* Copy Visual */
.detail-h-visual .visual-copy {
    display: flex;
    align-items: center;
    gap: 15px;
}

.detail-h-visual .copy-trade {
    padding: 12px 18px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-h-visual .copy-trade.master {
    background: var(--gradient-gold);
    color: #000;
}

.detail-h-visual .copy-trade.yours {
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid #22c55e;
}

.detail-h-visual .trade-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.detail-h-visual .trade-action {
    font-weight: 700;
    font-size: 0.85rem;
}

.detail-h-visual .trade-action.copying {
    color: #22c55e;
}

.detail-h-visual .copy-arrow svg {
    width: 24px;
    height: 24px;
    animation: arrowSlide 1s infinite;
}

@keyframes arrowSlide {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* Process CTA */
.process-cta {
    text-align: center;
    margin-top: 50px;
}

.process-cta .btn-primary {
    padding: 18px 40px;
    font-size: 1rem;
}

/* ===== CONTENT SECTION ===== */
/* ===== CONTENT/TRUTH SECTION - Interactive Accordion ===== */
.content-section {
    padding: 100px 0;
    background: var(--bg-dark);
    border-top: 2px solid rgba(59, 158, 245, 0.3);
    position: relative;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: var(--gradient-gold);
    box-shadow: 0 0 20px rgba(59, 158, 245, 0.5);
}

.truth-showcase {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

/* Accordion Cards */
.truth-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.truth-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.truth-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.1);
}

.truth-card.active {
    background: var(--bg-card-hover);
    border-color: rgba(59, 158, 245, 0.4);
    box-shadow: 0 15px 50px rgba(59, 158, 245, 0.1);
}

.truth-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    transition: all 0.3s;
}

.truth-card.active .truth-header {
    padding-bottom: 10px;
}

.truth-icon {
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.truth-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--text-secondary);
    transition: all 0.4s;
}

.truth-card.active .truth-icon {
    background: var(--gradient-gold);
    border: none;
}

.truth-card.active .truth-icon svg {
    stroke: #000;
}

.truth-title-wrap {
    flex: 1;
}

.truth-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--gold-primary);
    display: block;
    margin-bottom: 2px;
    letter-spacing: 1px;
}

.truth-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    transition: all 0.3s;
}

.truth-card.active .truth-title {
    color: var(--gold-primary);
}

.truth-toggle {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
}

.truth-toggle svg {
    width: 18px;
    height: 18px;
    stroke: var(--text-muted);
    transition: all 0.4s;
}

.truth-card.active .truth-toggle {
    transform: rotate(180deg);
}

.truth-card.active .truth-toggle svg {
    stroke: var(--gold-primary);
}

/* Truth Body - Expandable */
.truth-body {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.truth-card.active .truth-body {
    max-height: 300px;
    padding: 0 24px 24px;
}

.truth-body p {
    color: rgba(0, 0, 0, 0.8);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Truth Visuals */
.truth-visual {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s 0.2s;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.truth-card.active .truth-visual {
    opacity: 1;
    transform: translateY(0);
}

/* Trust Visual - Meter */
.trust-meter {
    height: 8px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.trust-meter .meter-fill {
    height: 100%;
    width: 0;
    background: var(--gradient-gold);
    border-radius: 4px;
    transition: width 1s 0.4s ease-out;
}

.truth-card.active .trust-meter .meter-fill {
    width: 100%;
}

.trust-meter .meter-label {
    display: block;
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: right;
}

/* System Visual - Flow */
.system-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.flow-node {
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
}

.flow-node.master {
    background: var(--gradient-gold);
    color: #000;
}

.flow-node.you {
    background: rgba(0, 0, 0, 0.06);
    color: var(--text-primary);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.flow-arrow {
    display: flex;
    gap: 8px;
}

.flow-arrow span {
    width: 10px;
    height: 10px;
    background: var(--gold-primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: flowPulse 1.5s infinite;
}

.flow-arrow span:nth-child(2) { animation-delay: 0.2s; }
.flow-arrow span:nth-child(3) { animation-delay: 0.4s; }

@keyframes flowPulse {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1); }
}

/* Error Visual - Comparison */
.error-comparison {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.error-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.error-item svg {
    width: 48px;
    height: 48px;
}

.error-item.wrong svg {
    stroke: var(--accent-red);
}

.error-item.right svg {
    stroke: var(--accent-green);
}

.error-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Emotion Visual - Gauge */
.emotion-gauge {
    position: relative;
    width: 120px;
    height: 60px;
    margin: 0 auto 15px;
}

.gauge-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 60px;
    border-radius: 60px 60px 0 0;
    background: linear-gradient(90deg, #dc2626, #f59e0b, #16a34a);
    opacity: 0.2;
}

.gauge-needle {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 4px;
    height: 50px;
    background: #1a1a1a;
    border-radius: 2px;
    transform-origin: bottom center;
    transform: rotate(-60deg);
    transition: transform 1s 0.5s ease-out;
}

.truth-card.active .gauge-needle {
    transform: rotate(60deg);
}

.gauge-label-left,
.gauge-label-right {
    position: absolute;
    bottom: 5px;
    font-size: 1.2rem;
}

.gauge-label-left { left: 5px; }
.gauge-label-right { right: 5px; }

.gauge-text {
    display: block;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.gauge-text strong {
    color: var(--accent-green);
}

/* Stats Visual - Bars */
.stats-bars {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-bar {
    position: relative;
}

.stat-bar .bar-inner {
    height: 8px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.stat-bar .bar-inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 4px;
    transition: width 1s 0.4s ease-out;
}

.truth-card.active .stat-bar .bar-inner::after {
    width: var(--percent);
}

.stat-bar.lose .bar-inner::after {
    background: var(--accent-red);
}

.stat-bar.win .bar-inner::after {
    background: var(--accent-green);
}

.stat-bar .bar-label {
    display: block;
    margin-top: 8px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Check Visual */
.check-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s;
}

.truth-card.active .check-item {
    opacity: 1;
    transform: translateX(0);
}

.truth-card.active .check-item:nth-child(1) { transition-delay: 0.3s; }
.truth-card.active .check-item:nth-child(2) { transition-delay: 0.5s; }
.truth-card.active .check-item:nth-child(3) { transition-delay: 0.7s; }

.check-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Right Panel */
.truth-panel {
    position: sticky;
    top: 120px;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-card-hover));
    border-radius: 24px;
    padding: 50px 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    overflow: hidden;
}

.panel-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.2;
}

.deco-circle {
    width: 300px;
    height: 300px;
    animation: decoSpin 30s linear infinite;
}

.deco-circle circle {
    stroke: var(--gold-primary);
}

@keyframes decoSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.panel-content {
    position: relative;
    z-index: 1;
}

.panel-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 6rem;
    font-weight: 400;
    color: var(--text-primary);
    opacity: 0.1;
    line-height: 1;
    margin-bottom: 20px;
    transition: all 0.5s;
    letter-spacing: 5px;
}

.panel-quote {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
}

.panel-indicator {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.indicator-dot {
    width: 10px;
    height: 10px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 50%;
    transition: all 0.4s;
}

.indicator-dot.active {
    background: var(--gold-primary);
    transform: scale(1.2);
    box-shadow: 0 0 10px var(--gold-glow);
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    padding: 100px 0;
    background: var(--bg-surface);
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: 24px;
    padding: 50px 45px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    border: 2px solid var(--gold-primary);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

.pricing-header {
    margin-bottom: 30px;
}

.pricing-label {
    display: inline-block;
    background: var(--gradient-gold);
    color: #000;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.pricing-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    margin-bottom: 8px;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.pricing-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.pricing-amount {
    margin-bottom: 35px;
}

.pricing-amount .amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    color: var(--gold-primary);
    text-shadow: 0 0 30px rgba(59, 158, 245, 0.3);
}

.pricing-amount .period {
    display: block;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: -5px;
}

.pricing-features {
    text-align: left;
    list-style: none;
    margin-bottom: 35px;
}

.pricing-features li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
    color: var(--text-secondary);
    position: relative;
    padding-left: 30px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 700;
}

.pricing-cta {
    width: 100%;
    padding: 18px;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 100px 0;
    background: var(--bg-dark);
    border-top: 2px solid rgba(59, 158, 245, 0.3);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: var(--gradient-gold);
    box-shadow: 0 0 20px rgba(59, 158, 245, 0.5);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.faq-item.active {
    border-color: rgba(59, 158, 245, 0.4);
    background: var(--bg-card-hover);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 25px;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

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

.faq-icon {
    font-size: 1.4rem;
    color: var(--gold-primary);
    transition: transform 0.3s;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.faq-answer p {
    padding: 0 25px 22px;
    color: rgba(0, 0, 0, 0.8);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.8;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-dark) 100%);
}

.cta-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--text-primary);
    letter-spacing: 2px;
}

.cta-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 35px;
}

.cta-btn {
    padding: 20px 50px;
    font-size: 1rem;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: -100%;
    z-index: 10001;
    background: #fff;
    border-top: 2px solid var(--gold-primary);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
    padding: 22px 24px;
    transition: bottom 0.4s ease;
}

.cookie-banner.active {
    bottom: 0;
}

.cookie-banner-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 260px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.cookie-text a {
    color: var(--gold-primary);
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.cookie-btn-primary {
    background: var(--gold-primary);
    color: #fff;
    border: none;
}

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

.cookie-customize-panel {
    max-width: 1100px;
    margin: 0 auto;
    display: none;
    flex-direction: column;
    gap: 12px;
    padding-top: 18px;
    margin-top: 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.cookie-customize-panel.open {
    display: flex;
}

.cookie-toggle-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

@media (max-width: 700px) {
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
    }
    .cookie-actions {
        flex-wrap: wrap;
    }
}

/* ===== FOOTER ===== */
.footer {
    padding: 50px 0;
    background: var(--bg-dark);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 25px;
}

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

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

.footer-disclaimer {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 0 auto;
}

.full-disclaimer-section {
    padding: 60px 0;
    background: var(--bg-surface);
}

.full-disclaimer-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 1px;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.full-disclaimer-text {
    max-width: 800px;
    margin: 0 auto;
}

.full-disclaimer-text p {
    font-size: 0.76rem;
    font-weight: 400;
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 14px;
}

/* ===== SUCCESS MODAL ===== */
.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    backdrop-filter: blur(10px);
}

.success-overlay.active {
    display: flex;
}

.success-modal {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 55px 50px;
    text-align: center;
    max-width: 450px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px var(--gold-glow);
}

.success-icon svg {
    stroke: #000;
}

.success-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.success-text {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr 350px;
        gap: 50px;
    }
    
    .title-line {
        font-size: 3.2rem;
    }
    
    .nav {
        display: none;
    }
    
    .benefits-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step {
        grid-template-columns: 60px 1fr 220px;
        gap: 20px;
    }
    
    .step-visual {
        padding: 20px;
    }
}

/* ============================================
   MOBILE BOTTOM NAVIGATION
   ============================================ */

.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

.bottom-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    padding: 0 16px;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 6px 8px;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.65rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-radius: 8px;
    flex: 1;
    min-width: 0;
}

.bottom-nav-item svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.8;
}

.bottom-nav-item.active,
.bottom-nav-item:hover {
    color: var(--gold-primary);
}

.bottom-nav-item.nav-cta {
    background: var(--gradient-gold);
    color: #000;
    padding: 12px 18px;
    border-radius: 50%;
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -20px;
    box-shadow: 0 4px 15px var(--gold-glow);
}

.bottom-nav-item.nav-cta svg {
    stroke: #000;
    width: 24px;
    height: 24px;
}

.bottom-nav-item.nav-cta:hover {
    color: #000;
    transform: scale(1.05);
}


@media (max-width: 768px) {
    /* Show bottom nav */
    .bottom-nav {
        display: block;
    }
    
    /* Add padding to body for bottom nav */
    body {
        padding-bottom: 75px;
    }
    
    /* Hide desktop nav */
    .nav {
        display: none;
    }
    
    /* Compact header */
    .header-content {
        padding: 12px 0;
    }
    
    .header-cta {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    /* Form Optimization */
    .form-overlay {
        padding: 10px;
        align-items: flex-start;
        padding-top: 50px;
    }
    
    .form-modal {
        padding: 25px 20px;
        max-width: 100%;
        border-radius: 16px;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }
    
    .form-header {
        margin-bottom: 20px;
    }
    
    .form-logo {
        font-size: 1.1rem;
    }
    
    .form-tagline {
        font-size: 0.85rem;
    }
    
    .progress-container {
        margin-bottom: 20px;
    }
    
    .step-label {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }
    
    .question-title {
        font-size: 1.15rem;
        margin-bottom: 8px;
    }
    
    .question-subtitle {
        font-size: 0.8rem;
        margin-bottom: 18px;
    }
    
    .options-list {
        gap: 10px;
    }
    
    .option-card {
        padding: 14px 16px;
    }
    
    .option-label {
        font-size: 0.9rem;
    }
    
    .input-field {
        margin-bottom: 12px;
    }
    
    .input-field label {
        font-size: 0.8rem;
        margin-bottom: 5px;
    }
    
    .form-input {
        padding: 12px 14px;
        font-size: 0.9rem;
    }
    
    .form-buttons {
        margin-top: 20px;
        gap: 10px;
    }
    
    .btn-back, .btn-next {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    /* Informativa bar mobile */
    .urgency-bar {
        padding: 6px 0;
    }

    .urgency-bar-content {
        gap: 8px;
    }

    .urgency-label {
        font-size: 0.62rem;
    }

    .header {
        top: 46px; /* Match informativa bar height (wraps on small screens) */
    }

    /* Hero */
    .hero {
        padding: 130px 0 50px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-left {
        order: 2;
    }
    
    .hero-right {
        order: 1;
    }
    
    .hero-tag {
        justify-content: center;
    }
    
    .hero-desc {
        margin: 0 auto 25px;
        font-size: 0.95rem;
    }
    
    .hero-numbers {
        justify-content: center;
    }
    
    .title-line {
        font-size: 2.2rem;
    }
    
    .hero-cta {
        margin: 0 auto;
    }
    
    /* Video Showcase Responsive */
    .video-showcase {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }
    
    .video-wrapper {
        border-radius: 16px;
    }
    
    .trader-info-box {
        padding: 14px 16px;
        border-radius: 12px;
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .trader-info-left {
        align-items: center;
    }
    
    .trader-info-right {
        flex-direction: row;
        gap: 8px;
    }
    
    .trader-name {
        font-size: 1.1rem;
    }
    
    /* Sections */
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .charts-grid {
        grid-template-columns: 1fr;
    }
    
    /* Benefits Responsive */
    .benefits-showcase {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .benefits-nav {
        order: 2;
    }
    
    .benefits-detail {
        order: 1;
        min-height: auto;
    }
    
    .detail-panel {
        position: relative;
        display: none;
    }
    
    .detail-panel.active {
        display: grid;
        position: relative;
    }
    
    .panel-visual {
        min-height: 180px;
        padding: 25px 15px;
    }
    
    .benefit-tab {
        padding: 14px 18px;
    }
    
    .benefit-icon {
        width: 36px;
        height: 36px;
    }
    
    .benefit-name {
        font-size: 0.9rem;
    }
    
    /* Process Horizontal Responsive */
    .timeline-h-track {
        display: none;
    }
    
    .process-h-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .process-h-step {
        padding: 18px 14px;
    }
    
    .step-h-number {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    
    .step-h-title {
        font-size: 0.85rem;
    }
    
    .detail-h-panel {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 20px 15px;
    }
    
    .detail-h-text {
        max-width: 100%;
    }
    
    .detail-h-title {
        font-size: 1.1rem;
    }
    
    .detail-h-desc {
        font-size: 0.85rem;
    }
    
    /* Truth Section Responsive */
    .truth-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .truth-panel {
        position: relative;
        top: 0;
        order: -1;
    }
    
    .panel-number {
        font-size: 3rem;
    }
    
    .panel-quote {
        font-size: 0.95rem;
        min-height: auto;
    }
    
    .truth-header {
        padding: 14px 16px;
    }
    
    .truth-icon {
        width: 34px;
        height: 34px;
    }
    
    .truth-title {
        font-size: 0.95rem;
    }
    
    /* FAQ */
    .faq-question {
        padding: 16px 18px;
        font-size: 0.95rem;
    }
    
    .faq-answer p {
        padding: 0 18px 16px;
        font-size: 0.85rem;
    }
    
    /* CTA */
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-subtitle {
        font-size: 0.9rem;
    }
    
    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    /* Header ultra compact */
    .header-content {
        padding: 10px 0;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .header-cta {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
    
    /* Form fits screen */
    .form-overlay {
        padding: 8px;
        padding-top: 40px;
    }
    
    .form-modal {
        padding: 20px 16px;
        border-radius: 14px;
    }
    
    .form-header {
        margin-bottom: 15px;
    }
    
    .form-logo {
        font-size: 1rem;
    }
    
    .form-tagline {
        font-size: 0.8rem;
    }
    
    .progress-container {
        margin-bottom: 15px;
    }
    
    .progress-track {
        height: 3px;
        margin-bottom: 10px;
    }
    
    .step-label {
        width: 22px;
        height: 22px;
        font-size: 0.65rem;
    }
    
    .question-title {
        font-size: 1.05rem;
        margin-bottom: 6px;
    }
    
    .question-subtitle {
        font-size: 0.75rem;
        margin-bottom: 15px;
    }
    
    .options-list {
        gap: 8px;
    }
    
    .option-card {
        padding: 12px 14px;
        border-radius: 8px;
    }
    
    .option-label {
        font-size: 0.85rem;
    }
    
    .options-list.two-col,
    .options-list.three-col {
        flex-direction: column;
    }
    
    .input-field {
        margin-bottom: 10px;
    }
    
    .input-field label {
        font-size: 0.75rem;
    }
    
    .form-input {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .form-buttons {
        margin-top: 15px;
    }
    
    .btn-back, .btn-next {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    /* Urgency bar ultra compact */
    .urgency-bar {
        padding: 8px 0;
        min-height: 44px;
    }
    
    .header {
        top: 44px;
    }
    
    /* Hero ultra compact */
    .hero {
        padding: 115px 0 40px;
    }
    
    .hero-container {
        padding: 0;
        gap: 25px;
    }
    
    .hero-tag {
        font-size: 0.8rem;
        gap: 6px;
    }
    
    .title-line {
        font-size: 1.8rem;
    }
    
    .hero-desc {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }
    
    .hero-numbers {
        gap: 12px;
    }
    
    .number-circle {
        width: 65px;
        height: 65px;
    }
    
    .number-val {
        font-size: 1rem;
    }
    
    .number-label {
        font-size: 0.7rem;
    }
    
    /* Trader card compact */
    .trader-card {
        padding: 16px;
    }
    
    .trader-stat-value {
        font-size: 1.1rem;
    }
    
    /* Video Showcase ultra compact */
    .video-showcase {
        max-width: 100%;
        width: 100%;
    }
    
    .video-wrapper {
        border-radius: 14px;
    }
    
    .trader-info-box {
        padding: 12px 14px;
        border-radius: 10px;
    }
    
    .trader-name {
        font-size: 1rem;
    }
    
    .trader-role {
        font-size: 0.75rem;
    }
    
    .market-chip {
        font-size: 0.65rem;
        padding: 4px 8px;
    }
    
    /* Sections compact */
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
    }
    
    /* Chart compact */
    .chart-card {
        padding: 20px 15px;
    }
    
    .chart-header h3 {
        font-size: 1rem;
    }
    
    /* Benefits compact */
    .panel-visual {
        min-height: 150px;
        padding: 20px 12px;
    }
    
    .benefit-tab {
        padding: 12px 14px;
    }
    
    .benefit-icon {
        width: 32px;
        height: 32px;
    }
    
    .benefit-name {
        font-size: 0.85rem;
    }
    
    /* Process compact */
    .process-h-steps {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .process-h-step {
        padding: 14px 10px;
    }
    
    .step-h-number {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
    
    .step-h-title {
        font-size: 0.75rem;
    }
    
    .detail-h-panel {
        padding: 15px 12px;
    }
    
    .detail-h-title {
        font-size: 1rem;
    }
    
    .detail-h-desc {
        font-size: 0.8rem;
    }
    
    /* Truth compact */
    .panel-number {
        font-size: 2.5rem;
    }
    
    .panel-quote {
        font-size: 0.85rem;
    }
    
    .truth-header {
        padding: 12px 14px;
    }
    
    .truth-icon {
        width: 30px;
        height: 30px;
    }
    
    .truth-title {
        font-size: 0.85rem;
    }
    
    /* FAQ compact */
    .faq-question {
        padding: 14px 16px;
        font-size: 0.9rem;
    }
    
    .faq-answer p {
        padding: 0 16px 14px;
        font-size: 0.8rem;
    }
    
    /* CTA compact */
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-subtitle {
        font-size: 0.85rem;
    }
    
    .cta-btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
    
    /* Footer compact */
    .footer {
        padding: 30px 0;
    }
    
    .footer-logo {
        font-size: 1rem;
    }
    
    .footer-links {
        gap: 15px;
    }
    
    .footer-links a {
        font-size: 0.8rem;
    }
    
    .footer-copy {
        font-size: 0.75rem;
    }
    
    /* Bottom nav adjustments */
    .bottom-nav-item {
        font-size: 0.6rem;
        padding: 5px 6px;
    }
    
    .bottom-nav-item svg {
        width: 20px;
        height: 20px;
    }
    
    .bottom-nav-item.nav-cta {
        width: 48px;
        height: 48px;
        margin-top: -18px;
    }
    
    .bottom-nav-item.nav-cta svg {
        width: 22px;
        height: 22px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .form-modal {
        padding: 18px 14px;
    }
    
    .question-title {
        font-size: 1rem;
    }
    
    .option-card {
        padding: 10px 12px;
    }
    
    .option-label {
        font-size: 0.8rem;
    }
    
    .title-line {
        font-size: 1.6rem;
    }
    
    .process-h-steps {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   URGENCY POPUP
======================================== */
.urgency-popup {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 340px;
    background: var(--bg-card);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    border: 1px solid rgba(59, 158, 245, 0.2);
}

.urgency-popup.active {
    transform: translateX(0);
    opacity: 1;
}

.urgency-popup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-primary);
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 1;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.popup-close svg {
    width: 16px;
    height: 16px;
    stroke: var(--text-secondary);
}

.popup-content {
    padding: 24px;
}

.popup-urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 158, 245, 0.1);
    border: 1px solid rgba(59, 158, 245, 0.3);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--gold-primary);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

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

.popup-urgency-badge span:last-child {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.popup-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.popup-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.popup-countdown {
    display: flex;
    align-items: center;
    gap: 10px;
}

.popup-icon {
    width: 24px;
    height: 24px;
    stroke: var(--gold-primary);
}

.popup-timer {
    display: flex;
    align-items: center;
    gap: 2px;
}

.popup-timer-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
}

.popup-timer-sep {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.popup-timer-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-left: 4px;
}

.popup-spots {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 16px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.popup-spots-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    line-height: 1;
}

.popup-spots-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.popup-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 20px;
}

.popup-cta {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 12px;
    color: #000;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 158, 245, 0.3);
}

.popup-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 158, 245, 0.5);
}

.popup-cta svg {
    transition: transform 0.3s ease;
}

.popup-cta:hover svg {
    transform: translateX(4px);
}

/* Mobile adjustments for popup */
@media (max-width: 768px) {
    .urgency-popup {
        bottom: 90px;
        right: 10px;
        left: 10px;
        width: auto;
        max-width: 360px;
        margin: 0 auto;
    }
    
    .popup-title {
        font-size: 1.2rem;
    }
    
    .popup-info {
        padding: 12px;
    }
    
    .popup-timer-value {
        font-size: 1rem;
    }
    
    .popup-spots-number {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .urgency-popup {
        bottom: 80px;
        right: 8px;
        left: 8px;
    }
    
    .popup-content {
        padding: 20px 16px;
    }
    
    .popup-title {
        font-size: 1.1rem;
    }
    
    .popup-countdown {
        gap: 6px;
    }
    
    .popup-timer-label {
        display: none;
    }
}
