/* Funding Section */
.funding {
    padding: 6rem 0;
    background: var(--darker-bg);
}

.funding-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.funding-paths {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.funding-path {
    background: var(--metallic-bg);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.funding-path::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--metallic-gradient);
    opacity: 0;
    transition: opacity var(--transition-normal);
    box-shadow: 0 0 10px rgba(255, 26, 26, 0.5);
}

.funding-path::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: linear-gradient(45deg, transparent, rgba(255, 26, 26, 0.03), transparent);
    opacity: 0;
    transition: opacity var(--transition-normal);
    pointer-events: none;
}

.funding-path:hover::before {
    opacity: 1;
}

.funding-path:hover::after {
    opacity: 1;
}

.funding-path:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 30px rgba(255, 26, 26, 0.3), 0 0 60px rgba(255, 26, 26, 0.1);
    border-color: rgba(255, 26, 26, 0.3);
}

.path-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.path-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    position: relative;
    border: 1px solid rgba(255, 26, 26, 0.2);
}

.path-icon::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border-radius: var(--border-radius-sm);
    background: var(--chrome-gradient);
    opacity: 0.1;
}

.path-classic .path-icon {
    background: var(--metallic-gradient);
    box-shadow: 0 0 15px rgba(255, 26, 26, 0.4);
}

.path-express .path-icon {
    background: linear-gradient(135deg, var(--secondary-color), var(--metallic-color));
    box-shadow: 0 0 15px rgba(255, 68, 68, 0.4);
}

.path-instant .path-icon {
    background: linear-gradient(135deg, var(--premium-color), var(--primary-color));
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.4);
}

.path-title-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.path-badge {
    padding: 4px 12px;
    border-radius: var(--border-radius-md);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
}

.path-classic .path-badge {
    background: rgba(0, 255, 136, 0.1);
    color: var(--primary-color);
}

.path-express .path-badge {
    background: rgba(255, 107, 107, 0.1);
    color: var(--secondary-color);
}

.path-instant .path-badge {
    background: rgba(255, 215, 0, 0.1);
    color: var(--premium-color);
}

.badge-premium {
    background: rgba(255, 215, 0, 0.1);
    color: var(--premium-color);
}

.badge-elite {
    background: linear-gradient(135deg, var(--premium-color), #ff8c00);
    color: var(--dark-bg);
}

.path-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.price-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-period {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.path-description {
    margin-bottom: 1.5rem;
}

.path-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

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

.path-cta {
    margin-top: auto;
}

/* Comparison Table */
.funding-comparison {
    margin-top: 4rem;
}

.comparison-table {
    background: var(--light-bg);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.comparison-header {
    padding: 2rem;
    background: var(--darker-bg);
    border-bottom: 1px solid var(--border-color);
}

.comparison-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.comparison-body {
    padding: 2rem;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.comparison-row:last-child {
    border-bottom: none;
}

.feature-cell {
    font-weight: 600;
    color: var(--text-primary);
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--dark-bg);
    width: 100%;
    overflow-x: hidden;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .features {
        padding: 4rem 0;
    }

    .features-container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .features {
        padding: 3rem 0;
    }

    .features-container {
        padding: 0 0.75rem;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: var(--metallic-bg);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 26, 26, 0.08), rgba(255, 68, 68, 0.04));
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: radial-gradient(circle, rgba(255, 26, 26, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-slow);
    pointer-events: none;
}

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

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

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 26, 26, 0.3);
    box-shadow: 0 0 25px rgba(255, 26, 26, 0.2), 0 0 50px rgba(255, 26, 26, 0.1);
}

.feature-icon {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    background: var(--metallic-bg);
    border: 1px solid rgba(255, 26, 26, 0.2);
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    background: var(--chrome-gradient);
    border-radius: var(--border-radius-sm);
    opacity: 0.1;
}

.feature-glow {
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: var(--metallic-gradient);
    border-radius: var(--border-radius-md);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
    box-shadow: 0 0 15px rgba(255, 26, 26, 0.5);
}

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

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-description {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.feature-list li::before {
    content: '✓';
    color: var(--success-color);
    font-weight: 700;
    margin-right: 0.5rem;
}

/* Features Showcase */
.features-showcase {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    background: linear-gradient(135deg, var(--light-bg) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: var(--border-radius-xl);
    padding: 3rem;
    border: 1px solid rgba(255, 26, 26, 0.1);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.features-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 26, 26, 0.02) 0%, rgba(255, 68, 68, 0.01) 100%);
    border-radius: var(--border-radius-xl);
    pointer-events: none;
}

.showcase-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 700px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.showcase-header {
    text-align: center;
    margin-bottom: 1rem;
}

.showcase-content h3 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.showcase-content p {
    color: var(--text-secondary);
    font-size: clamp(0.95rem, 2.5vw, 1.2rem);
    line-height: 1.6;
    text-align: center;
    font-weight: 500;
    margin-bottom: 0;
    padding: 0 1rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.strike-emoji {
    font-size: 3.5rem;
    text-align: center;
    margin: 1.5rem 0;
    animation: pulse 2s infinite, glow 3s ease-in-out infinite alternate;
    color: var(--primary-color);
    position: relative;
}

.strike-emoji::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 26, 26, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-ring 2s infinite;
}

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

@keyframes glow {
    0% { filter: drop-shadow(0 0 5px rgba(255, 26, 26, 0.3)); }
    100% { filter: drop-shadow(0 0 15px rgba(255, 26, 26, 0.6)); }
}

@keyframes pulse-ring {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.3; }
    100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.5; }
}

.showcase-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 1rem 0;
    width: 100%;
    padding: 0 0.5rem;
}

.showcase-stat {
    text-align: center;
    padding: 0.5rem;
}

.showcase-stat .stat-number {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.25rem;
    font-family: var(--font-primary);
    line-height: 1.2;
}

.showcase-stat .stat-label {
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.3;
}

/* Phase Summary */
.phase-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2.5rem 0;
    width: 100%;
    padding: 0 0.5rem;
}

.phase-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: linear-gradient(135deg, rgba(255, 26, 26, 0.05) 0%, rgba(255, 26, 26, 0.02) 100%);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 26, 26, 0.1);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.phase-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 26, 26, 0.03) 0%, transparent 100%);
    border-radius: var(--border-radius-lg);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.phase-item:hover {
    background: linear-gradient(135deg, rgba(255, 26, 26, 0.1) 0%, rgba(255, 26, 26, 0.05) 100%);
    border-color: rgba(255, 26, 26, 0.2);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 26, 26, 0.15);
}

.phase-item:hover::before {
    opacity: 1;
}

.phase-1 {
    border-color: rgba(0, 255, 136, 0.2);
}

.phase-1:hover {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 255, 136, 0.05) 100%);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.15);
}

.phase-2 {
    border-color: rgba(0, 255, 136, 0.15);
}

.phase-2:hover {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.08) 0%, rgba(0, 255, 136, 0.03) 100%);
    border-color: rgba(0, 255, 136, 0.25);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.12);
}

.phase-max {
    border-color: rgba(255, 68, 68, 0.2);
}

.phase-max:hover {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.1) 0%, rgba(255, 68, 68, 0.05) 100%);
    border-color: rgba(255, 68, 68, 0.3);
    box-shadow: 0 8px 25px rgba(255, 68, 68, 0.15);
}

.phase-number {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.25rem;
    font-family: var(--font-primary);
    line-height: 1.2;
    text-shadow: 0 1px 3px rgba(255, 26, 26, 0.3);
}

.phase-1 .phase-number {
    color: #00ff88;
    text-shadow: 0 1px 3px rgba(0, 255, 136, 0.3);
}

.phase-max .phase-number {
    color: #ff6666;
    text-shadow: 0 1px 3px rgba(255, 68, 68, 0.3);
}

.phase-label {
    font-size: clamp(0.75rem, 2vw, 0.85rem);
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.3;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.phase-value {
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.3;
    display: block;
    font-family: var(--font-mono);
}

/* Evaluation Highlights */
.evaluation-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
    width: 100%;
}

.highlight-card {
    background: linear-gradient(135deg, var(--metallic-bg) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    border: 1px solid rgba(255, 26, 26, 0.2);
    backdrop-filter: blur(15px);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 26, 26, 0.03) 0%, transparent 100%);
    border-radius: var(--border-radius-lg);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.highlight-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(255, 26, 26, 0.4);
    box-shadow: 0 15px 35px rgba(255, 26, 26, 0.15), 0 5px 15px rgba(255, 26, 26, 0.1);
}

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

.highlight-two-step {
    border-color: rgba(0, 255, 136, 0.2);
}

.highlight-two-step:hover {
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: 0 15px 35px rgba(0, 255, 136, 0.15), 0 5px 15px rgba(0, 255, 136, 0.1);
}

.highlight-instant {
    border-color: rgba(255, 215, 0, 0.2);
}

.highlight-instant:hover {
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.15), 0 5px 15px rgba(255, 215, 0, 0.1);
}

.highlight-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.highlight-icon {
    font-size: 2.2rem;
    width: 70px;
    height: 70px;
    min-width: 70px;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--metallic-gradient);
    border-radius: var(--border-radius-md);
    border: 2px solid rgba(255, 26, 26, 0.3);
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 4px 15px rgba(255, 26, 26, 0.2);
}

.highlight-two-step .highlight-icon {
    background: linear-gradient(135deg, #00ff88, #00cc66);
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.highlight-instant .highlight-icon {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.highlight-header h4 {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    font-family: var(--font-primary);
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.highlight-metrics {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.metric-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.metric {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    color: var(--text-secondary);
    font-weight: 500;
    font-family: var(--font-mono);
    background: rgba(255, 26, 26, 0.05);
    padding: 0.6rem 0.8rem;
    border-radius: 6px;
    border-left: 3px solid var(--primary-color);
    word-break: break-word;
    line-height: 1.4;
    display: block;
    width: 100%;
    box-sizing: border-box;
    transition: all var(--transition-fast);
    position: relative;
}

.metric:hover {
    background: rgba(255, 26, 26, 0.08);
    transform: translateX(2px);
}

.highlight-two-step .metric {
    border-left-color: #00ff88;
    background: rgba(0, 255, 136, 0.05);
}

.highlight-two-step .metric:hover {
    background: rgba(0, 255, 136, 0.08);
}

.highlight-instant .metric {
    border-left-color: #ffd700;
    background: rgba(255, 215, 0, 0.05);
}

.highlight-instant .metric:hover {
    background: rgba(255, 215, 0, 0.08);
}

/* Showcase Actions */
.showcase-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.showcase-actions .btn {
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    padding: 1rem 2rem;
    font-weight: 600;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-normal);
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.showcase-actions .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.showcase-actions .btn:hover::before {
    left: 100%;
}

.showcase-actions .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #cc0000);
    border: 2px solid var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 26, 26, 0.3);
}

.showcase-actions .btn-primary:hover {
    background: linear-gradient(135deg, #cc0000, var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 26, 26, 0.4);
}

.showcase-actions .btn-secondary {
    background: transparent;
    border: 2px solid var(--text-secondary);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.showcase-actions .btn-secondary:hover {
    background: var(--text-primary);
    color: var(--dark-bg);
    border-color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-arrow {
    transition: transform var(--transition-fast);
}

.btn-primary:hover .btn-arrow {
    transform: translateX(3px);
}

.btn-icon {
    font-size: 0.8rem;
    transition: transform var(--transition-fast);
}

.btn-secondary:hover .btn-icon {
    transform: scale(1.1);
}

.showcase-visual {
    position: relative;
}

.trading-interface {
    background: linear-gradient(135deg, var(--darker-bg) 0%, #1a1a1a 100%);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 26, 26, 0.2);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
}

.trading-interface::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 26, 26, 0.05) 0%, transparent 100%);
    border-radius: var(--border-radius-lg);
    pointer-events: none;
}

.interface-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, var(--light-bg) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-bottom: 1px solid rgba(255, 26, 26, 0.1);
    position: relative;
    z-index: 2;
}

.interface-tabs {
    display: flex;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 25px;
    padding: 0.25rem;
}

.tab {
    padding: 0.6rem 1.2rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 0.8rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tab:hover {
    background: rgba(255, 26, 26, 0.1);
    color: var(--primary-color);
}

.tab.active {
    background: linear-gradient(135deg, var(--primary-color), #cc0000);
    color: white;
    box-shadow: 0 2px 8px rgba(255, 26, 26, 0.3);
}

.tab i {
    font-size: 0.75rem;
}

.interface-controls {
    display: flex;
    gap: 0.5rem;
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.interface-chart {
    padding: 2rem;
    height: 220px;
    position: relative;
}

.chart-overlay {
    position: relative;
    width: 100%;
    height: 100%;
}

.chart-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 26, 26, 0.1) 0%, transparent 70%);
    border-radius: var(--border-radius-lg);
    animation: chart-pulse 3s ease-in-out infinite;
}

@keyframes chart-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.chart-indicators {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color);
}

.profit-indicator .indicator-dot {
    background: var(--success-color);
    box-shadow: 0 0 6px var(--success-color);
}

.drawdown-indicator .indicator-dot {
    background: var(--warning-color);
    box-shadow: 0 0 6px var(--warning-color);
}

.indicator-label {
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.interface-metrics {
    display: flex;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, var(--light-bg) 100%);
    border-top: 1px solid rgba(255, 26, 26, 0.1);
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    padding: 0 0.5rem;
}

.metric-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.metric-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-mono);
    margin-bottom: 0.25rem;
}

.metric-change {
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-mono);
}

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

.metric-info {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.account-metric .metric-value {
    color: var(--success-color);
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: var(--darker-bg);
}

.pricing-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.pricing-plan {
    background: var(--metallic-bg);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    min-height: 600px;
}

.pricing-plan:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 30px rgba(255, 26, 26, 0.2), 0 0 60px rgba(255, 26, 26, 0.1);
    border-color: rgba(255, 26, 26, 0.3);
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.plan-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.plan-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary-color);
    color: var(--dark-bg);
    border-radius: var(--border-radius-md);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.plan-professional .plan-badge {
    background: var(--secondary-color);
}

.plan-elite .plan-badge {
    background: linear-gradient(135deg, var(--premium-color), #ff8c00);
}

.plan-price {
    margin-bottom: 1rem;
}

.plan-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    flex: 1;
}

.plan-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.plan-feature .feature-icon {
    color: var(--success-color);
    font-weight: 700;
}

.plan-cta {
    margin-top: auto;
}

/* Pricing Guarantee */
.pricing-guarantee {
    text-align: center;
    padding: 3rem;
    background: var(--light-bg);
    border-radius: var(--border-radius-xl);
    border: 1px solid var(--border-color);
}

.guarantee-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.guarantee-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.guarantee-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.guarantee-content p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.testimonial-card {
    background: var(--light-bg);
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 255, 136, 0.3);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--border-color);
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-verified {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--dark-bg);
    font-weight: 700;
}

.testimonial-meta {
    flex: 1;
}

.testimonial-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.testimonial-rating {
    display: flex;
    gap: 2px;
}

.star {
    color: var(--warning-color);
    font-size: 1rem;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.testimonial-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.stat {
    text-align: center;
}

.stat .stat-value {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

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

/* Testimonials Stats */
.testimonials-stats {
    margin-bottom: 4rem;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

/* Testimonials CTA */
.testimonials-cta {
    text-align: center;
    padding: 3rem;
    background: var(--light-bg);
    border-radius: var(--border-radius-xl);
    border: 1px solid var(--border-color);
}

.testimonials-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.testimonials-cta p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Legal Pages */
.legal-page {
    padding: 6rem 0;
    background: var(--dark-bg);
    min-height: 100vh;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.legal-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    font-family: var(--font-primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legal-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.legal-content {
    color: var(--text-primary);
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.legal-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 1.5rem 0 0.75rem 0;
}

.legal-section p {
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.legal-section li strong {
    color: var(--primary-color);
}

.contact-details {
    background: rgba(255, 26, 26, 0.05);
    border: 1px solid rgba(255, 26, 26, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.contact-details p {
    margin: 0.5rem 0;
    color: var(--text-primary);
}

.risk-alert {
    background: linear-gradient(135deg, rgba(255, 26, 26, 0.1), rgba(255, 68, 68, 0.05));
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.alert-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.alert-content h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.alert-content p {
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.6;
}

.risk-highlight {
    background: rgba(255, 26, 26, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
}

.risk-highlight strong {
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 700;
}

.risk-footer {
    border-top: 1px solid rgba(255, 26, 26, 0.2);
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
    color: var(--text-secondary);
}

.risk-footer p {
    margin: 0.5rem 0;
}

/* Checkout Page */
.checkout-page {
    padding: 6rem 0;
    background: var(--dark-bg);
    min-height: 100vh;
}

.checkout-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.checkout-header {
    text-align: center;
    margin-bottom: 3rem;
}

.checkout-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    font-family: var(--font-primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.checkout-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.checkout-content {
    background: var(--light-bg);
    border-radius: var(--border-radius-xl);
    padding: 3rem;
    border: 1px solid var(--border-color);
}

.checkout-section {
    margin-bottom: 3rem;
}

.checkout-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-selector {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.package-option {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    cursor: pointer;
    transition: all var(--transition-normal);
    background: var(--dark-bg);
}

.package-option:hover,
.package-option.active {
    border-color: var(--primary-color);
    background: rgba(255, 26, 26, 0.05);
}

.package-radio input[type="radio"] {
    display: none;
}

.package-radio label {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: all var(--transition-normal);
}

.package-radio input[type="radio"]:checked + label {
    border-color: var(--primary-color);
    background: var(--primary-color);
}

.package-radio input[type="radio"]:checked + label::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.package-details {
    flex: 1;
}

.package-details h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.package-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.spec-item {
    background: rgba(255, 26, 26, 0.1);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.package-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.package-price .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-primary);
}

.package-price .price-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.order-summary {
    background: var(--dark-bg);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.summary-item.total {
    border-top: 2px solid var(--border-color);
    padding-top: 1.5rem;
    margin-top: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.summary-divider {
    height: 1px;
    background: var(--border-color);
    margin: 1rem 0;
}

.item-label {
    color: var(--text-secondary);
}

.item-value {
    color: var(--text-primary);
    font-weight: 600;
}

.total-amount {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    cursor: pointer;
    transition: all var(--transition-normal);
    background: var(--dark-bg);
}

.payment-method:hover,
.payment-method.active {
    border-color: var(--primary-color);
    background: rgba(255, 26, 26, 0.05);
}

.payment-method input[type="radio"] {
    display: none;
}

.payment-method label {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    width: 100%;
}

.method-icon {
    font-size: 1.5rem;
}

.method-name {
    font-weight: 600;
    color: var(--text-primary);
}

.payment-form {
    background: var(--dark-bg);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-md);
    background: var(--light-bg);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-group input.error {
    border-color: #ff4444;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.billing-form {
    background: var(--dark-bg);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.terms-agreement {
    background: var(--dark-bg);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.terms-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
}

.terms-checkbox label {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.terms-checkbox label a {
    color: var(--primary-color);
    text-decoration: none;
}

.terms-checkbox label a:hover {
    text-decoration: underline;
}

.checkout-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.btn-amount {
    margin-left: 1rem;
    font-weight: 700;
}

.error-message {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
    border-radius: var(--border-radius-lg);
    padding: 1rem;
    margin-bottom: 2rem;
    color: #ff4444;
    font-weight: 600;
    text-align: center;
}

.checkout-success {
    text-align: center;
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.checkout-success h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-primary);
}

.checkout-success p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.success-details {
    background: var(--dark-bg);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.success-details ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.success-details li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.paypal-notice,
.crypto-notice {
    text-align: center;
    color: var(--text-secondary);
}

.paypal-notice p,
.crypto-notice p {
    margin-bottom: 0.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .checkout-container {
        padding: 0 1rem;
    }

    .checkout-content {
        padding: 2rem 1.5rem;
    }

    .package-option {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.25rem;
    }

    .payment-methods {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .checkout-actions {
        flex-direction: column;
        gap: 1rem;
    }

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

/* Simplified Evaluation Section */
.evaluation-section {
    margin-top: 4rem;
    text-align: center;
}

.evaluation-header h3 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.evaluation-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.evaluation-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.evaluation-card {
    background: linear-gradient(135deg, var(--metallic-bg) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: var(--border-radius-xl);
    padding: 2.5rem;
    border: 1px solid rgba(255, 26, 26, 0.2);
    backdrop-filter: blur(15px);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.evaluation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 26, 26, 0.03) 0%, transparent 100%);
    border-radius: var(--border-radius-xl);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.evaluation-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 26, 26, 0.4);
    box-shadow: 0 15px 35px rgba(255, 26, 26, 0.15), 0 5px 15px rgba(255, 26, 26, 0.1);
}

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

.evaluation-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.evaluation-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: var(--metallic-gradient);
    border: 2px solid rgba(255, 26, 26, 0.3);
    box-shadow: 0 4px 15px rgba(255, 26, 26, 0.2);
    color: white;
}

.evaluation-card-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.evaluation-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.evaluation-phase {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 26, 26, 0.05);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 26, 26, 0.1);
    min-width: 250px;
}

.phase-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

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

.evaluation-limits {
    display: flex;
    justify-content: center;
}

.limit-text {
    background: rgba(255, 68, 68, 0.1);
    color: #ff6666;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 68, 68, 0.2);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.evaluation-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.benefit-text {
    background: rgba(0, 255, 136, 0.1);
    color: var(--success-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.evaluation-actions {
    margin-top: 3rem;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    border-top: 1px solid rgba(255, 26, 26, 0.2);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--metallic-gradient);
    opacity: 0.3;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--metallic-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 10px rgba(255, 26, 26, 0.5);
    font-family: var(--font-primary);
    letter-spacing: 1px;
    position: relative;
}

.footer-logo .logo-text::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--chrome-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    z-index: -1;
}

.footer-logo .logo-accent {
    width: 4px;
    height: 24px;
    background: var(--metallic-gradient);
    border-radius: 2px;
    box-shadow: var(--metallic-shadow);
    position: relative;
}

.footer-logo .logo-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--chrome-gradient);
    border-radius: 2px;
    opacity: 0.5;
}

.footer-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}


.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.contact-icon {
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.legal-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}

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

.copyright {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.footer-badges {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--light-bg);
    border-radius: var(--border-radius-md);
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.badge-icon {
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    .evaluation-highlights {
        gap: 1.5rem;
    }

    .highlight-card {
        padding: 1.4rem;
    }

    .showcase-content {
        gap: 2.25rem;
    }

    .showcase-content h3 {
        font-size: 2.25rem;
    }

    .showcase-content p {
        font-size: 1.15rem;
    }

    .strike-emoji {
        font-size: 3.5rem;
        margin: 1.5rem 0;
    }

    .phase-summary {
        gap: 2rem;
        margin: 2.5rem 0;
    }

    .phase-item {
        padding: 1.25rem;
    }

    .phase-number {
        font-size: 1.8rem;
    }

    .phase-label {
        font-size: 0.95rem;
    }

    .showcase-stats {
        gap: 1.25rem;
    }
}

@media (max-width: 768px) and (min-width: 577px) {
    .evaluation-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .highlight-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1.25rem;
    }

    .highlight-header {
        justify-content: center;
    }

    .highlight-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        min-height: 60px;
        font-size: 2rem;
    }

    .highlight-header h4 {
        font-size: 1.2rem;
    }

    .metric-group {
        align-items: center;
    }

    .metric {
        text-align: center;
        border-left: none;
        border-top: 2px solid var(--primary-color);
        background: rgba(255, 26, 26, 0.08);
        margin: 0;
    }

    .showcase-content h3 {
        font-size: 1.85rem;
    }

    .showcase-content p {
        font-size: 1.05rem;
    }

    .phase-summary {
        gap: 1.5rem;
        margin: 2rem 0;
    }

    .phase-item {
        padding: 1.25rem 1rem;
    }

    .phase-number {
        font-size: 1.5rem;
    }

    .phase-label {
        font-size: 0.85rem;
    }

    .phase-value {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .features-showcase {
        padding: 1.5rem 1rem;
    }

    .evaluation-highlights {
        grid-template-columns: 1fr !important;
        gap: 1.25rem;
        margin-bottom: 1.75rem;
        padding: 0;
    }

    .highlight-card {
        padding: 1.5rem 1.25rem;
        gap: 1rem;
        flex-direction: column !important;
        text-align: center !important;
    }

    .highlight-icon {
        width: 55px;
        height: 55px;
        min-width: 55px;
        min-height: 55px;
        font-size: 1.75rem;
    }

    .highlight-info h4 {
        font-size: 1.15rem;
        margin-bottom: 0.875rem;
    }

    .metric {
        font-size: 0.85rem;
        padding: 0.55rem 0.75rem;
        text-align: center !important;
        border-left: none;
        border-top: 2px solid var(--primary-color);
        background: rgba(255, 26, 26, 0.08);
        margin: 0;
    }

    .showcase-content {
        gap: 1.75rem;
        padding: 0;
    }

    .showcase-content h3 {
        font-size: 1.5rem;
        margin-bottom: 0.65rem;
    }

    .showcase-content p {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .strike-emoji {
        font-size: 2.2rem;
        margin: 0.875rem 0;
    }

    .showcase-actions {
        gap: 0.875rem;
        padding: 0;
    }
}

@media (max-width: 768px) {
    .funding-paths,
    .features-grid,
    .pricing-plans,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-showcase {
        grid-template-columns: 1fr !important;
        gap: 3rem;
        padding: 2.5rem 1.5rem;
    }

    .showcase-visual {
        order: -1;
        margin-bottom: 2rem;
    }

    .showcase-content {
        gap: 2.5rem;
        padding: 0;
        max-width: 100%;
        width: 100%;
    }

    .showcase-header {
        margin-bottom: 2rem;
    }

    .showcase-content h3 {
        font-size: 2rem;
        margin-bottom: 1rem;
        padding: 0;
        line-height: 1.2;
    }

    .showcase-content p {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        padding: 0;
        line-height: 1.6;
        max-width: 100%;
    }

    .strike-emoji {
        font-size: 2.8rem;
        margin: 1.5rem 0;
    }

    .strike-emoji::before {
        width: 120px;
        height: 120px;
    }

    .evaluation-highlights {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        margin-bottom: 2.5rem;
        width: 100%;
        padding: 0;
    }

    .highlight-card {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
        align-items: center;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .highlight-header {
        flex-direction: column;
        gap: 1rem;
    }

    .highlight-icon {
        width: 70px;
        height: 70px;
        min-width: 70px;
        min-height: 70px;
        font-size: 2.2rem;
        margin: 0 auto;
    }

    .highlight-header h4 {
        font-size: 1.4rem;
        margin: 0;
    }

    .highlight-metrics {
        gap: 1rem;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .metric-group {
        gap: 0.75rem;
    }

    .metric {
        font-size: 0.9rem;
        padding: 0.7rem 1rem;
        text-align: center !important;
        width: 100%;
        border-left: none;
        border-top: 2px solid var(--primary-color);
        border-radius: var(--border-radius-md);
        background: rgba(255, 26, 26, 0.08);
        margin: 0;
        transition: all var(--transition-fast);
    }

    .metric:hover {
        transform: none;
    }

    .phase-summary {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin: 2.5rem 0;
        padding: 0;
        width: 100%;
    }

    .phase-item {
        padding: 1.25rem 0.75rem;
    }

    .phase-number {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }

    .phase-label {
        font-size: 0.75rem;
        margin-bottom: 0.25rem;
    }

    .phase-value {
        font-size: 0.85rem;
    }

    .showcase-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 1.25rem;
        width: 100%;
        padding: 0;
        margin-top: 2rem;
    }

    .showcase-actions .btn {
        width: 100%;
        justify-content: center;
        min-height: 56px;
        font-size: 1.1rem;
        padding: 1.25rem 2.5rem;
    }

    .btn-text {
        font-weight: 600;
    }

    .trading-interface {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }

    .interface-chart {
        padding: 1.5rem;
        height: 180px;
    }

    .chart-indicators {
        top: 0.75rem;
        right: 0.75rem;
    }

    .indicator {
        font-size: 0.7rem;
    }

    .indicator-dot {
        width: 6px;
        height: 6px;
    }

    .interface-metrics {
        padding: 1rem 1.25rem;
    }

    .metric {
        padding: 0 0.25rem;
    }

    .metric-label {
        font-size: 0.65rem;
    }

    .metric-value {
        font-size: 1rem;
    }

    .metric-change,
    .metric-info {
        font-size: 0.6rem;
    }

    .hero-stats,
    .showcase-stats,
    .phase-summary {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        margin: 1.5rem 0;
        padding: 0;
        width: 100%;
    }

    .showcase-stat,
    .phase-item {
        padding: 0.75rem 0.5rem;
        background: rgba(255, 26, 26, 0.05);
        border-radius: var(--border-radius-md);
        border: 1px solid rgba(255, 26, 26, 0.1);
    }

    .showcase-stat .stat-number,
    .phase-number {
        font-size: 1.2rem;
    }

    .showcase-stat .stat-label,
    .phase-label {
        font-size: 0.8rem;
    }

    .comparison-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 1rem 0;
    }

    .feature-cell {
        font-weight: 600;
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }

    .path-header {
        margin-bottom: 1rem;
    }

    .path-title {
        font-size: 1.3rem;
        margin-bottom: 0.25rem;
    }

    .path-price {
        font-size: 1.1rem;
    }

    .path-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .path-features {
        gap: 0.75rem;
    }

    .feature-item {
        font-size: 0.85rem;
    }

    .pricing-plan {
        padding: 2rem;
    }

    .plan-name {
        font-size: 1.5rem;
    }

    .plan-price {
        font-size: 1.3rem;
    }

    .plan-description {
        font-size: 0.9rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-name {
        font-size: 1rem;
    }

    .testimonial-role {
        font-size: 0.8rem;
    }

    .stat {
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .footer {
        padding: 3rem 0 2rem;
    }

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

    .footer-section {
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
        margin-bottom: 1rem;
    }


    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .legal-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .footer-badges {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .funding-path {
        padding: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .pricing-plan {
        padding: 1.5rem;
    }

    .testimonial-card {
        padding: 1.25rem;
    }

    .features-showcase {
        padding: 1.25rem 0.75rem;
    }

    .evaluation-highlights {
        grid-template-columns: 1fr !important;
        gap: 1rem;
        margin-bottom: 1.5rem;
        padding: 0;
    }

    .highlight-card {
        padding: 1.375rem 1rem;
        gap: 0.875rem;
        flex-direction: column !important;
        text-align: center !important;
    }

    .highlight-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        min-height: 50px;
        font-size: 1.5rem;
    }

    .highlight-info h4 {
        font-size: 1.05rem;
        margin-bottom: 0.75rem;
    }

    .highlight-metrics {
        gap: 0.4rem;
    }

    .metric {
        font-size: 0.8rem;
        padding: 0.5rem 0.65rem;
        text-align: center !important;
        border-left: none;
        border-top: 2px solid var(--primary-color);
        background: rgba(255, 26, 26, 0.08);
        margin: 0;
    }

    .showcase-content {
        gap: 1.5rem;
        padding: 0;
    }

    .showcase-content h3 {
        font-size: 1.35rem;
        margin-bottom: 0.6rem;
    }

    .showcase-content p {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
        padding: 0;
    }

    .strike-emoji {
        font-size: 2rem;
        margin: 0.75rem 0;
    }

    .showcase-actions {
        gap: 0.875rem;
        padding: 0 0.25rem;
    }

    .showcase-actions .btn {
        font-size: 0.95rem;
        padding: 12px 18px;
    }

    .showcase-stats,
    .phase-summary {
        gap: 0.5rem;
        margin: 1.25rem 0;
        padding: 0 0.15rem;
    }

    .showcase-stat,
    .phase-item {
        padding: 0.4rem 0.15rem;
    }

    .showcase-stat .stat-number,
    .phase-number {
        font-size: 1.1rem;
    }

    .showcase-stat .stat-label,
    .phase-label {
        font-size: 0.75rem;
    }

    .path-title {
        font-size: 1.2rem;
    }

    .plan-name {
        font-size: 1.4rem;
    }

    .testimonial-name {
        font-size: 0.95rem;
    }
}

/* Very small screens */
@media (max-width: 360px) {
    .funding-path {
        padding: 1.25rem;
    }

    .feature-card {
        padding: 1.25rem;
    }

    .pricing-plan {
        padding: 1.25rem;
    }

    .testimonial-card {
        padding: 1rem;
    }

    .features-showcase {
        padding: 1rem 0.5rem;
    }

    .evaluation-highlights {
        grid-template-columns: 1fr !important;
        gap: 0.875rem;
        margin-bottom: 1.25rem;
        padding: 0;
    }

    .highlight-card {
        padding: 1.25rem 0.875rem;
        gap: 0.75rem;
        flex-direction: column !important;
        text-align: center !important;
    }

    .highlight-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        min-height: 45px;
        font-size: 1.35rem;
    }

    .highlight-info h4 {
        font-size: 0.95rem;
        margin-bottom: 0.65rem;
    }

    .highlight-metrics {
        gap: 0.35rem;
    }

    .metric {
        font-size: 0.75rem;
        padding: 0.45rem 0.6rem;
        line-height: 1.3;
        text-align: center !important;
        border-left: none;
        border-top: 2px solid var(--primary-color);
        background: rgba(255, 26, 26, 0.08);
        margin: 0;
    }

    .showcase-content {
        gap: 1.25rem;
        padding: 0;
    }

    .showcase-content h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
        letter-spacing: 0.5px;
    }

    .showcase-content p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        padding: 0;
        line-height: 1.5;
    }

    .strike-emoji {
        font-size: 1.8rem;
        margin: 0.6rem 0;
    }

    .showcase-actions {
        gap: 0.75rem;
        padding: 0;
    }

    /* Legal Pages Mobile */
    .legal-page {
        padding: 4rem 0;
    }

    .legal-container {
        padding: 0 1rem;
    }

    .legal-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .legal-subtitle {
        font-size: 0.9rem;
    }

    .legal-section {
        margin-bottom: 2rem;
    }

    .legal-section h2 {
        font-size: 1.25rem;
        margin-bottom: 0.875rem;
    }

    .legal-section h3 {
        font-size: 1.1rem;
        margin: 1.25rem 0 0.625rem 0;
    }

    .legal-section p {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .legal-section ul {
        padding-left: 1.25rem;
    }

    .legal-section li {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .contact-details {
        padding: 1.25rem;
        margin: 1.25rem 0;
    }

    .risk-alert {
        padding: 1.5rem;
        margin-bottom: 2rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .alert-icon {
        font-size: 2rem;
    }

    .alert-content h3 {
        font-size: 1.1rem;
    }

    .risk-highlight {
        padding: 0.875rem 1.25rem;
        margin: 1.25rem 0;
    }

    .risk-footer {
        padding-top: 1.5rem;
        margin-top: 2rem;
    }

    .showcase-actions .btn {
        font-size: 0.9rem;
        padding: 11px 16px;
        min-height: 44px;
    }

    .showcase-stats,
    .phase-summary {
        gap: 0.4rem;
        margin: 1rem 0;
        padding: 0 0.1rem;
    }

    .showcase-stat,
    .phase-item {
        padding: 0.35rem 0.1rem;
    }

    .showcase-stat .stat-number,
    .phase-number {
        font-size: 1rem;
    }

    .showcase-stat .stat-label,
    .phase-label {
        font-size: 0.7rem;
    }

    .path-title {
        font-size: 1.1rem;
    }

    .plan-name {
        font-size: 1.3rem;
    }

    .testimonial-name {
        font-size: 0.9rem;
    }

    .footer {
        padding: 2rem 0 1.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-description {
        font-size: 0.95rem;
    }

    /* Touch-friendly improvements for mobile */
    .btn, .nav-link, .social-link {
        min-height: 44px;
        min-width: 44px;
    }

    /* Better mobile scrolling and performance */
    * {
        -webkit-overflow-scrolling: touch;
    }

    /* Improve mobile text rendering */
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }
}

    .footer-legal {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-badges {
        justify-content: center;
        flex-wrap: wrap;
    }

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

    .pricing-addons h3 {
        margin-bottom: 1rem;
    }

    /* Evaluation Section Mobile */
    .evaluation-section {
        margin-top: 3rem;
    }

    .evaluation-header h3 {
        font-size: 2rem;
    }

    .evaluation-header p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .evaluation-card {
        padding: 2rem 1.5rem;
    }

    .evaluation-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .evaluation-card-header h4 {
        font-size: 1.3rem;
    }

    .evaluation-phase {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        min-width: auto;
        width: 100%;
    }

    .phase-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .phase-text {
        font-size: 0.9rem;
    }

    .evaluation-benefits {
        gap: 0.75rem;
    }

    .evaluation-actions {
        margin-top: 2rem;
    }
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-hero {
    padding: 10rem 0 4rem;
    margin-top: 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

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

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

.contact-hero .hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    color: #ff1a1a;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 20px rgba(255, 26, 26, 0.5);
    animation: title-glow 3s ease-in-out infinite alternate;
}

.contact-hero .hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #ffffff;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

/* Contact Methods Section */
.contact-methods {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid rgba(255, 26, 26, 0.2);
    border-radius: var(--border-radius-xl);
    padding: 2.5rem;
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--metallic-gradient);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

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

.contact-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 26, 26, 0.4);
    box-shadow: 0 12px 40px rgba(255, 26, 26, 0.2), 0 0 60px rgba(255, 26, 26, 0.1);
}

.contact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 26, 26, 0.2), rgba(255, 68, 68, 0.1));
    border: 2px solid rgba(255, 26, 26, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    transition: all var(--transition-normal);
    position: relative;
}

.contact-card:hover .contact-icon {
    background: var(--metallic-gradient);
    border-color: rgba(255, 26, 26, 0.5);
    box-shadow: 0 0 20px rgba(255, 26, 26, 0.4);
    transform: scale(1.1);
}

.contact-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-card p {
    color: #cccccc;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-link {
    color: #ff1a1a;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-fast);
    display: inline-block;
    margin-bottom: 0.75rem;
}

.contact-link:hover {
    color: #ff6666;
    text-shadow: 0 0 10px rgba(255, 26, 26, 0.5);
    transform: translateY(-2px);
}

.response-time {
    display: block;
    color: #cccccc;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

.hours-info {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.8;
    text-align: left;
    width: 100%;
}

.hours-info strong {
    color: #ffffff;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.hours-info span {
    color: #cccccc;
    display: block;
}

.chat-btn {
    margin: 1rem 0;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Form Section */
.contact-form-section {
    padding: 6rem 0;
    background: var(--darker-bg);
    position: relative;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 26, 26, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid rgba(255, 26, 26, 0.2);
    border-radius: var(--border-radius-xl);
    padding: 3rem;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.form-container h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.form-container > p {
    text-align: center;
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: #2a2a2a;
    border: 2px solid rgba(255, 26, 26, 0.2);
    border-radius: var(--border-radius-md);
    color: #ffffff;
    font-size: 1rem;
    font-family: var(--font-secondary);
    transition: all var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff1a1a;
    background: #2a2a2a;
    box-shadow: 0 0 15px rgba(255, 26, 26, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
    font-family: var(--font-secondary);
}

.submit-btn {
    margin-top: 1rem;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--metallic-gradient);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    align-self: center;
    box-shadow: 0 4px 15px rgba(255, 26, 26, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 26, 26, 0.5);
}

.submit-btn i {
    font-size: 1rem;
}

/* FAQ Preview Section */
.faq-preview {
    padding: 4rem 0;
    background: var(--dark-bg);
    text-align: center;
}

.faq-header h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.faq-header p {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.faq-header .btn {
    margin-top: 1rem;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-hero {
        padding: 8rem 0 3rem;
        margin-top: 80px;
    }

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

    .contact-card {
        padding: 2rem;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-form-section {
        padding: 4rem 0;
    }

    .contact-methods {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 7rem 0 2rem;
        margin-top: 80px;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .contact-card h3 {
        font-size: 1.5rem;
    }

    .form-container {
        padding: 1.5rem 1rem;
    }

    .submit-btn {
        width: 100%;
        padding: 1rem 2rem;
    }
}

/* ===== RULES PAGE STYLES ===== */
.rules-hero {
    padding: 10rem 0 4rem;
    margin-top: 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

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

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

.rules-hero .hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    color: #ff1a1a;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 20px rgba(255, 26, 26, 0.5);
}

.rules-hero .hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #ffffff;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-weight: 400;
}

.rules-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 26, 26, 0.1), rgba(255, 68, 68, 0.05));
    border: 1px solid rgba(255, 26, 26, 0.2);
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-normal);
}

.stat-item:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 26, 26, 0.4);
    box-shadow: 0 8px 25px rgba(255, 26, 26, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff1a1a;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(255, 26, 26, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Program Rules Section */
.program-rules {
    padding: 6rem 0;
    background: var(--dark-bg);
}

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

.rules-tab {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid rgba(255, 26, 26, 0.2);
    border-radius: 50px;
    color: #cccccc;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-family: var(--font-secondary);
}

.rules-tab:hover {
    border-color: rgba(255, 26, 26, 0.4);
    color: #ffffff;
    transform: translateY(-2px);
}

.rules-tab.active {
    background: var(--metallic-gradient);
    border-color: #ff1a1a;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 26, 26, 0.3);
}

.rules-content {
    display: none;
}

.rules-content.active {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

.rules-content h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.rule-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid rgba(255, 26, 26, 0.2);
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.rule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--metallic-gradient);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

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

.rule-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 26, 26, 0.4);
    box-shadow: 0 12px 40px rgba(255, 26, 26, 0.2), 0 0 60px rgba(255, 26, 26, 0.1);
}

.rule-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.rule-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--metallic-gradient);
    border: 2px solid rgba(255, 26, 26, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 26, 26, 0.2);
}

.rule-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rule-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rule-content li {
    padding: 0.75rem 0;
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 26, 26, 0.1);
}

.rule-content li:last-child {
    border-bottom: none;
}

.rule-content li strong {
    color: #ff1a1a;
    font-weight: 600;
}

/* Rule Violations Section */
.rule-violations {
    padding: 6rem 0;
    background: var(--darker-bg);
}

.rule-violations h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.violations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.violation-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid rgba(255, 26, 26, 0.2);
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    transition: all var(--transition-normal);
}

.violation-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 26, 26, 0.4);
    box-shadow: 0 8px 25px rgba(255, 26, 26, 0.2);
}

.violation-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff1a1a;
    margin-bottom: 1.5rem;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.violation-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.violation-card li {
    padding: 0.5rem 0;
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

.violation-card li::before {
    content: '•';
    color: #ff1a1a;
    font-weight: bold;
    margin-right: 0.5rem;
}

.consequence {
    padding: 1rem;
    background: rgba(255, 26, 26, 0.1);
    border: 1px solid rgba(255, 26, 26, 0.3);
    border-radius: var(--border-radius-md);
    color: #ff1a1a;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Best Practices Section */
.best-practices {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.best-practices h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.practices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.practice-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid rgba(255, 26, 26, 0.2);
    border-radius: var(--border-radius-xl);
    padding: 2.5rem;
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.practice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--metallic-gradient);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

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

.practice-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 26, 26, 0.4);
    box-shadow: 0 12px 40px rgba(255, 26, 26, 0.2), 0 0 60px rgba(255, 26, 26, 0.1);
}

.practice-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--metallic-gradient);
    border: 2px solid rgba(255, 26, 26, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 26, 26, 0.2);
    transition: all var(--transition-normal);
}

.practice-card:hover .practice-icon {
    transform: scale(1.1) rotate(5deg);
}

.practice-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.practice-card p {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Rules CTA Section */
.rules-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

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

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

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-content p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design for Rules Page */
@media (max-width: 768px) {
    .rules-hero {
        padding: 8rem 0 3rem;
    }

    .rules-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .rules-tabs {
        flex-direction: column;
        gap: 0.75rem;
    }

    .rules-tab {
        width: 100%;
        text-align: center;
    }

    .rules-grid,
    .violations-grid,
    .practices-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .rule-card,
    .violation-card,
    .practice-card {
        padding: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .rules-hero {
        padding: 6rem 0 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .rule-icon,
    .practice-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .rule-header h3,
    .practice-card h3 {
        font-size: 1.25rem;
    }
}
