/* ============================================
   CryptoAML - Modern Cyber Blue Theme
   ============================================ */

/* CSS Variables */
:root {
    /* Primary Colors */
    --primary: #0ea5e9;
    --primary-light: #38bdf8;
    --primary-dark: #0284c7;
    --primary-glow: rgba(14, 165, 233, 0.5);
    
    /* Accent Colors */
    --accent: #06b6d4;
    --accent-purple: #8b5cf6;
    --accent-green: #10b981;
    
    /* Background Colors */
    --bg-dark: #0a0f1a;
    --bg-darker: #060a12;
    --bg-card: rgba(15, 23, 42, 0.8);
    --bg-card-hover: rgba(20, 30, 50, 0.9);
    
    /* Text Colors */
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    /* Border Colors */
    --border-color: rgba(14, 165, 233, 0.2);
    --border-glow: rgba(14, 165, 233, 0.4);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 50%, #8b5cf6 100%);
    --gradient-dark: linear-gradient(180deg, #0a0f1a 0%, #060a12 100%);
    --gradient-card: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(14, 165, 233, 0.3);
    
    /* Typography */
    --font-main: 'Space Grotesk', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.bg-gradient-1 {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 50%);
    animation: floatGradient1 20s ease-in-out infinite;
}

.bg-gradient-2 {
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    animation: floatGradient2 25s ease-in-out infinite;
}

.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(14, 165, 233, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14, 165, 233, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 30s linear infinite;
}

@keyframes floatGradient1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30%, 20%) rotate(180deg); }
}

@keyframes floatGradient2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30%, -20%) rotate(-180deg); }
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

/* Navigation */
.navbar {
    background: rgba(10, 15, 26, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(6, 10, 18, 0.98);
    box-shadow: var(--shadow-md);
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

.brand-logo i {
    font-size: 1.75rem;
    color: var(--primary);
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

.navbar-nav .nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-light);
    background: rgba(14, 165, 233, 0.1);
}

.navbar-toggler {
    border: 1px solid var(--border-color);
    padding: 0.5rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(241, 245, 249, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Buttons */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::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: var(--transition-slow);
}

.btn-glow:hover::before {
    left: 100%;
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-light {
    background: white;
    color: var(--bg-dark);
    font-weight: 600;
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
}

.btn-light:hover {
    background: var(--text-primary);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    padding-top: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
}

.hero-badge i {
    color: var(--accent);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-light);
    font-family: var(--font-mono);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

.hero-currencies {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.currency-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.currency-icons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.currency-icon {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-mono);
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.currency-icon:hover {
    border-color: var(--primary);
    color: var(--primary-light);
}

.currency-icon.more {
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary);
}

/* Chat Widget */
.chat-container {
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-widget {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    max-width: 600px;
    margin: 0 auto;
}

.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-bottom: 1px solid var(--border-color);
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chat-avatar {
    position: relative;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-avatar i {
    font-size: 1.25rem;
    color: white;
}

.status-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--bg-card);
}

.status-dot.online {
    background: var(--accent-green);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}

.chat-header-text h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.chat-header-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

.status-text {
    color: var(--accent-green);
    font-weight: 500;
}

.chat-action-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.chat-action-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.chat-messages {
    padding: 1.5rem;
    min-height: 350px;
    max-height: 400px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}

.message {
    display: flex;
    gap: 0.75rem;
    animation: messageIn 0.3s ease-out;
}

@keyframes messageIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message.outgoing {
    flex-direction: row-reverse;
}

.message-avatar {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: var(--bg-card-hover);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.message-avatar i {
    font-size: 1rem;
    color: var(--primary);
}

.message.outgoing .message-avatar {
    background: var(--gradient-primary);
}

.message.outgoing .message-avatar i {
    color: white;
}

.message-content {
    max-width: 80%;
}

.message-bubble {
    background: var(--bg-card-hover);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    border-top-left-radius: var(--radius-sm);
    padding: 1rem;
}

.message.outgoing .message-bubble {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    border-radius: var(--radius-lg);
    border-top-right-radius: var(--radius-sm);
}

.message-bubble p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.message-bubble p + p {
    margin-top: 0.5rem;
}

.message-time {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.message.outgoing .message-time {
    text-align: right;
}

/* Quick Actions */
.quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding-left: 48px;
}

.quick-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid var(--border-color);
    color: var(--primary-light);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.quick-action-btn:hover {
    background: rgba(14, 165, 233, 0.2);
    border-color: var(--primary);
    transform: translateY(-1px);
}

.quick-action-btn i {
    font-size: 0.875rem;
}

/* Chat Input */
.chat-input-container {
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid var(--border-color);
    background: rgba(10, 15, 26, 0.5);
}

.chat-form {
    display: flex;
    gap: 0.75rem;
}

.input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.chat-input {
    width: 100%;
    background: var(--bg-card-hover);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 0.875rem 3rem 0.875rem 1.25rem;
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 0.9375rem;
    transition: var(--transition-fast);
}

.chat-input::placeholder {
    color: var(--text-muted);
}

.chat-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.input-actions {
    position: absolute;
    right: 0.75rem;
    display: flex;
    gap: 0.25rem;
}

.attach-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    padding: 0.25rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.attach-btn:hover {
    color: var(--primary);
}

.send-btn {
    background: var(--gradient-primary);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    color: white;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.send-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.send-btn i {
    font-size: 1.125rem;
}

.chat-footer-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.chat-footer-info i {
    color: var(--accent-green);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.8125rem;
    font-weight: 500;
    box-shadow: var(--shadow-md);
    animation: float 6s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 60%;
    left: -15%;
    animation-delay: 2s;
}

.floating-card.card-3 {
    bottom: 15%;
    right: -10%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Trust Section */
.trust-section {
    padding: 3rem 0;
    background: rgba(14, 165, 233, 0.03);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.trust-item i {
    font-size: 1.25rem;
    color: var(--primary);
}

/* Section Styles */
.section-header {
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid var(--border-color);
    color: var(--primary-light);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services-section {
    padding: 6rem 0;
}

.service-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow);
}

.service-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, var(--bg-card) 100%);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.service-card > p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.service-features li i {
    color: var(--accent-green);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-fast);
}

.service-link:hover {
    color: var(--primary-light);
    gap: 0.75rem;
}

/* How it Works Section */
.how-it-works-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, transparent 0%, rgba(14, 165, 233, 0.03) 50%, transparent 100%);
}

.steps-container {
    position: relative;
    padding-top: 2rem;
}

.step-line {
    position: absolute;
    top: 50%;
    left: 15%;
    right: 15%;
    height: 2px;
    background: var(--border-color);
    z-index: 0;
}

.step-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    z-index: 1;
    transition: var(--transition-normal);
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.step-number {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin: 0;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
}

.pricing-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    transition: var(--transition-normal);
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-glow);
}

.pricing-card.featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(14, 165, 233, 0.1) 0%, var(--bg-card) 100%);
    transform: scale(1.05);
    z-index: 1;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.featured-ribbon {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
}

.pricing-header {
    margin-bottom: 1.5rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.pricing-header p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.pricing-price {
    margin-bottom: 2rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.pricing-price .currency {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 600;
}

.pricing-price .amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    font-family: var(--font-mono);
}

.pricing-price .period {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9375rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    font-size: 1rem;
    color: var(--accent-green);
}

.pricing-features li.disabled {
    color: var(--text-muted);
}

.pricing-features li.disabled i {
    color: var(--text-muted);
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
}

.cta-card {
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 50%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(25deg);
}

.cta-card h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.cta-card p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin: 0;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    padding: 4rem 0 0;
    border-top: 1px solid var(--border-color);
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-brand .brand-logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.footer h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-contact {
    margin-top: 1.5rem;
}

.footer-contact p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin: 0;
    display: flex;
    align-items: center;
}

.footer-contact i {
    color: var(--primary);
}

.footer-bottom {
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.payment-methods {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.payment-methods i {
    font-size: 1.5rem;
    color: var(--text-muted);
}

/* Typing Indicator */
.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 1rem;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: var(--text-muted);
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(1) { animation-delay: 0s; }
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-6px); opacity: 1; }
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 80px;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .hero-description {
        max-width: 100%;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-currencies {
        align-items: center;
    }
    
    .currency-icons {
        justify-content: center;
    }
    
    .floating-elements {
        display: none;
    }
    
    .step-line {
        display: none;
    }
    
    .step-card {
        margin-bottom: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 767.98px) {
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .trust-badges {
        gap: 1.5rem;
    }
    
    .trust-item {
        flex: 0 0 45%;
        font-size: 0.875rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .chat-messages {
        min-height: 300px;
    }
    
    .quick-actions {
        padding-left: 0;
        justify-content: center;
    }
    
    .cta-card {
        text-align: center;
    }
    
    .cta-card .text-lg-end {
        text-align: center !important;
        margin-top: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .nav-actions {
        display: none;
    }
    
    .chat-widget {
        border-radius: var(--radius-lg);
    }
    
    .chat-header {
        padding: 1rem;
    }
    
    .chat-messages {
        padding: 1rem;
    }
    
    .chat-input-container {
        padding: 1rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
}

/* Page Styles for Inner Pages */
.page-header {
    padding: 160px 0 80px;
    text-align: center;
    background: linear-gradient(180deg, rgba(14, 165, 233, 0.05) 0%, transparent 100%);
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.page-content {
    padding: 4rem 0;
}

.content-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 3rem;
}

.content-card h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-light);
}

.content-card h2:first-child {
    margin-top: 0;
}

.content-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.content-card ul, .content-card ol {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.content-card li {
    margin-bottom: 0.5rem;
}

/* FAQ Accordion */
.faq-accordion .accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md) !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    background: transparent;
    color: var(--text-primary);
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary-light);
}

.faq-accordion .accordion-button::after {
    filter: brightness(0) invert(1);
}

.faq-accordion .accordion-body {
    color: var(--text-secondary);
    padding: 0 1.5rem 1.25rem;
}

/* Contact Form */
.contact-form .form-control {
    background: var(--bg-card-hover);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.875rem 1.25rem;
    border-radius: var(--radius-md);
}

.contact-form .form-control::placeholder {
    color: var(--text-muted);
}

.contact-form .form-control:focus {
    background: var(--bg-card-hover);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
    color: var(--text-primary);
}

.contact-form .form-label {
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
}

.contact-info-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 1.25rem;
    color: var(--primary);
}

.contact-info-text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-info-text p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin: 0;
}

/* ============================================
   LEGAL PAGES STYLES (Privacy, Terms)
   ============================================ */

.page-header {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a1f35 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-header h1 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    position: relative;
}

.page-header h1 i {
    color: var(--accent);
    margin-right: 15px;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    position: relative;
}

.legal-content {
    padding: 80px 0;
    background: var(--primary-dark);
}

.legal-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 50px;
    backdrop-filter: blur(10px);
}

.legal-updated {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 212, 255, 0.1);
    padding: 10px 20px;
    border-radius: 30px;
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.legal-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-section h2 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 20px;
}

.legal-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin: 25px 0 15px;
}

.legal-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul,
.legal-section ol {
    color: var(--text-secondary);
    padding-left: 25px;
    margin-bottom: 15px;
}

.legal-section li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-section a {
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

.legal-section a:hover {
    text-decoration: underline;
}

.legal-contact {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
}

.legal-contact h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 20px;
}

.legal-contact p {
    color: var(--text-secondary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-contact i {
    color: var(--accent);
    width: 20px;
}

/* ============================================
   FAQ PAGE STYLES
   ============================================ */

.faq-content {
    padding: 80px 0;
    background: var(--primary-dark);
}

.faq-category {
    margin-bottom: 50px;
}

.faq-category-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-category-title i {
    color: var(--accent);
    font-size: 1.3rem;
}

.accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: var(--border-color);
}

.accordion-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px !important;
    margin-bottom: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.accordion-header {
    margin: 0;
}

.accordion-button {
    background: transparent;
    color: #fff;
    font-weight: 500;
    font-size: 1.05rem;
    padding: 20px 25px;
    box-shadow: none;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: rgba(0, 212, 255, 0.05);
    color: var(--accent);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--border-color);
}

.accordion-button::after {
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) saturate(100%) invert(79%) sepia(76%) saturate(1825%) hue-rotate(152deg) brightness(101%) contrast(104%);
}

.accordion-body {
    padding: 0 25px 25px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.accordion-body p {
    margin-bottom: 15px;
}

.accordion-body ul,
.accordion-body ol {
    padding-left: 25px;
    margin-bottom: 15px;
}

.accordion-body li {
    margin-bottom: 8px;
}

.accordion-body strong {
    color: #fff;
}

.accordion-body a {
    color: var(--accent);
    text-decoration: none;
}

.accordion-body a:hover {
    text-decoration: underline;
}

/* Crypto badges in FAQ */
.crypto-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.crypto-badge {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--accent);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Risk levels in FAQ */
.risk-levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.risk-level {
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.risk-level.risk-low {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.risk-level.risk-medium {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.risk-level.risk-high {
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.risk-level.risk-critical {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.risk-range {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.risk-low .risk-range { color: #22c55e; }
.risk-medium .risk-range { color: #fbbf24; }
.risk-high .risk-range { color: #f97316; }
.risk-critical .risk-range { color: #ef4444; }

.risk-label {
    display: block;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.risk-level p {
    font-size: 0.85rem;
    margin: 0;
    color: var(--text-secondary);
}

/* FAQ CTA */
.faq-cta {
    text-align: center;
    padding: 60px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    margin-top: 50px;
}

.faq-cta h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 15px;
}

.faq-cta p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.faq-cta .btn {
    margin: 0 10px;
}

/* ============================================
   CONTACTS PAGE STYLES
   ============================================ */

.contacts-content {
    padding: 80px 0;
    background: var(--primary-dark);
}

.contact-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.contact-icon i {
    font-size: 2rem;
    color: #fff;
}

.contact-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 15px;
}

.contact-card p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-card .btn {
    width: 100%;
    margin-bottom: 20px;
}

.contact-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
}

.contact-status.online {
    color: #22c55e;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.contact-response {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-response i {
    color: var(--accent);
}

/* Contacts Info Card */
.contacts-info-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 35px;
    height: 100%;
    backdrop-filter: blur(10px);
}

.contacts-info-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contacts-info-card h3 i {
    color: var(--accent);
}

/* Department List */
.department-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.department-item {
    padding: 15px;
    background: rgba(0, 212, 255, 0.03);
    border-radius: 12px;
    border-left: 3px solid var(--accent);
}

.department-name {
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.department-email {
    color: var(--accent);
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.department-desc {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Working Hours */
.working-hours {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: rgba(0, 212, 255, 0.03);
    border-radius: 10px;
}

.hours-day {
    color: var(--text-secondary);
}

.hours-time {
    color: #fff;
    font-weight: 500;
}

.hours-time.highlight {
    color: #22c55e;
    font-family: 'Orbitron', monospace;
}

.timezone-note {
    margin-top: 20px;
    padding: 15px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.timezone-note i {
    color: var(--secondary);
}

/* Contact Form */
.contact-form-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 50px;
    backdrop-filter: blur(10px);
}

.contact-form-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-form-card h3 i {
    color: var(--accent);
}

.contact-form-card > p {
    color: var(--text-secondary);
    margin-bottom: 35px;
}

.contact-form .form-group {
    margin-bottom: 0;
}

.contact-form label {
    color: #fff;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.contact-form .form-control,
.contact-form .form-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 15px 20px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
    color: #fff;
}

.contact-form .form-control::placeholder {
    color: var(--text-secondary);
}

.contact-form .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2300d4ff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

.contact-form .form-select option {
    background: var(--primary-dark);
    color: #fff;
}

.contact-form textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.contact-form .form-check {
    padding-left: 30px;
}

.contact-form .form-check-input {
    width: 20px;
    height: 20px;
    margin-left: -30px;
    margin-top: 2px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 5px;
}

.contact-form .form-check-input:checked {
    background-color: var(--accent);
    border-color: var(--accent);
}

.contact-form .form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2);
}

.contact-form .form-check-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-form .form-check-label a {
    color: var(--accent);
    text-decoration: none;
}

.contact-form .form-check-label a:hover {
    text-decoration: underline;
}

.form-success {
    text-align: center;
    padding: 60px 20px;
}

.form-success i {
    font-size: 4rem;
    color: #22c55e;
    margin-bottom: 20px;
    display: block;
}

.form-success h4 {
    font-family: 'Orbitron', monospace;
    color: #fff;
    margin-bottom: 10px;
}

.form-success p {
    color: var(--text-secondary);
}

/* FAQ Link on Contacts Page */
.contacts-faq-link {
    margin-top: 50px;
}

.faq-link-content {
    display: flex;
    align-items: center;
    gap: 25px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px 40px;
}

.faq-link-content > i {
    font-size: 3rem;
    color: var(--accent);
}

.faq-link-content > div {
    flex: 1;
}

.faq-link-content h4 {
    font-family: 'Orbitron', monospace;
    color: #fff;
    margin-bottom: 5px;
}

.faq-link-content p {
    color: var(--text-secondary);
    margin: 0;
}

/* ============================================
   RESPONSIVE STYLES FOR NEW PAGES
   ============================================ */

@media (max-width: 991px) {
    .page-header {
        padding: 140px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .legal-card {
        padding: 30px 20px;
    }
    
    .contact-form-card {
        padding: 30px 20px;
    }
    
    .faq-link-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .page-header h1 {
        font-size: 1.6rem;
    }
    
    .page-header h1 i {
        display: block;
        margin-bottom: 15px;
        margin-right: 0;
    }
    
    .legal-section h2 {
        font-size: 1.3rem;
    }
    
    .faq-category-title {
        font-size: 1.2rem;
    }
    
    .accordion-button {
        font-size: 0.95rem;
        padding: 15px 20px;
    }
    
    .risk-levels {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-cta {
        padding: 40px 20px;
    }
    
    .faq-cta h3 {
        font-size: 1.4rem;
    }
    
    .faq-cta .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
}