/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0a0a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo {
    width: 32px;
    height: 32px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
}

/* Three.js Background Container */
#threejs-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Section Styles */
.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 900px;
    z-index: 10;
}

.hero-logo {
    position: relative;
    margin-bottom: 2rem;
    display: inline-block;
}

.hero-logo-img {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 0 30px rgba(102, 126, 234, 0.5));
    animation: float 3s ease-in-out infinite;
}

.hero-logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-text {
    margin-bottom: 3rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.title-line {
    display: block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #b8c1ec;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #b8c1ec;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: #b8c1ec;
    font-size: 0.9rem;
}

.scroll-line {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, #667eea, transparent);
    animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
    0%, 100% { opacity: 0; transform: translateY(-10px); }
    50% { opacity: 1; transform: translateY(0); }
}

/* Dashboard Section */
.dashboard-section {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
}

/* AI Chat Container */
.ai-chat-container {
    max-width: 800px;
    margin: 0 auto;
}

.chat-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.chat-intro h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.chat-intro p {
    font-size: 1.1rem;
    color: #b8c1ec;
    line-height: 1.6;
}

.chat-window {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.chat-window::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.chat-messages {
    height: 400px;
    overflow-y: auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    animation: messageSlideIn 0.3s ease-out;
}

.message.user-message {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(102, 126, 234, 0.3);
}

.ai-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: drop-shadow(0 0 10px rgba(102, 126, 234, 0.5));
}

.user-avatar {
    width: 20px;
    height: 20px;
    color: #667eea;
}

.message-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.message.user-message .message-content {
    align-items: flex-end;
}

.message-bubble {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    max-width: 70%;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.message.ai-message .message-bubble {
    background: rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.2);
}

.message.user-message .message-bubble {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.message-bubble p {
    margin: 0;
    color: #ffffff;
    line-height: 1.4;
}

.message-time {
    font-size: 0.8rem;
    color: #9ca3af;
    margin-left: 0.5rem;
}

.message.user-message .message-time {
    margin-right: 0.5rem;
    margin-left: 0;
}

.chat-input-area {
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.input-container {
    display: flex;
    gap: 1rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.input-container:focus-within {
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

#chatInput {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 1rem;
    padding: 0.5rem 0;
}

#chatInput::placeholder {
    color: #9ca3af;
}

.send-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
    flex-shrink: 0;
}

.send-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.4);
}

.send-btn:active {
    transform: scale(0.95);
}

.send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.input-hint {
    text-align: center;
    margin-top: 1rem;
    color: #9ca3af;
    font-size: 0.9rem;
}

.input-hint span {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 12px;
    display: inline-block;
}

.typing-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #9ca3af;
    font-style: italic;
    animation: pulse 1.5s infinite;
}

.typing-dots {
    display: flex;
    gap: 0.25rem;
}

.typing-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #667eea;
    animation: typingDot 1.4s infinite;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes typingDot {
    0%, 60%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    30% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Scrollbar for chat messages */
.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(102, 126, 234, 0.3);
    border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: rgba(102, 126, 234, 0.5);
}

/* Legacy dashboard styles (kept for compatibility) */
.dashboard-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2rem;
    height: 600px;
}

.dashboard-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.1);
}

.dashboard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.price-chart {
    grid-row: 1 / -1;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
}

.chart-controls {
    display: flex;
    gap: 0.5rem;
}

.chart-btn {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chart-btn.active,
.chart-btn:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
}

.metrics-grid {
    display: grid;
    gap: 1rem;
}

.metric-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.metric-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.metric-label {
    font-weight: 600;
    color: #b8c1ec;
}

.metric-value {
    font-weight: 700;
    color: #ffffff;
}

.metric-change {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
}

.metric-change.positive {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.metric-change.negative {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.prediction-list {
    display: grid;
    gap: 1rem;
}

.prediction-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 0.5rem;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.prediction-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.prediction-metal {
    font-weight: 600;
    color: #ffffff;
}

.prediction-direction {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
}

.prediction-direction.bullish {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.prediction-direction.bearish {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.prediction-direction.neutral {
    background: rgba(156, 163, 175, 0.2);
    color: #9ca3af;
}

.prediction-confidence {
    font-size: 0.8rem;
    color: #b8c1ec;
}

/* Modules Grid */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Module Cards */
.module-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--card-color, linear-gradient(135deg, #667eea 0%, #764ba2 100%));
    transition: all 0.3s ease;
}

.module-card:hover {
    transform: translateY(-15px) rotateX(10deg) rotateY(5deg) scale(1.05);
    box-shadow: 
        0 25px 50px rgba(102, 126, 234, 0.3),
        0 10px 25px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.module-card:hover::before {
    height: 5px;
    box-shadow: 0 3px 15px var(--card-color, rgba(102, 126, 234, 0.5));
}

.module-card[data-module="aurora"] {
    --card-color: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
}

.module-card[data-module="helix"] {
    --card-color: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.module-card[data-module="chrono"] {
    --card-color: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.module-card[data-module="mineral"] {
    --card-color: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
}

.module-card[data-module="metallix"] {
    --card-color: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

.module-card[data-module="sentinel"] {
    --card-color: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.module-card[data-module="genesis"] {
    --card-color: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
}

.module-card[data-module="nexus"] {
    --card-color: linear-gradient(135deg, #0984e3 0%, #74b9ff 100%);
}

.module-card[data-module="quantum"] {
    --card-color: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%);
}

.module-card[data-module="prism"] {
    --card-color: linear-gradient(135deg, #00cec9 0%, #55efc4 100%);
}

.module-card[data-module="eclipse"] {
    --card-color: linear-gradient(135deg, #636e72 0%, #2d3436 100%);
}

.module-card[data-module="fusion"] {
    --card-color: linear-gradient(135deg, #fd79a8 0%, #fdcb6e 100%);
}

.module-icon {
    margin-bottom: 1.5rem;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--card-color, linear-gradient(135deg, #667eea 0%, #764ba2 100%));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.icon-circle svg {
    width: 24px;
    height: 24px;
}

.module-card:hover .icon-circle {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.module-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.module-description {
    color: #b8c1ec;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.module-tech {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tech-tag {
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    font-size: 0.8rem;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Technology Stack Section */
.tech-stack-section {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
}

.architecture-overview {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

.arch-layer {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.arch-layer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.arch-layer h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.tech-icons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    transform-style: preserve-3d;
    perspective: 500px;
}

.tech-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px) rotateX(10deg) scale(1.05);
    box-shadow: 
        0 10px 20px rgba(102, 126, 234, 0.2),
        0 5px 10px rgba(0, 0, 0, 0.1);
}

.tech-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(102, 126, 234, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.tech-item:hover .tech-icon {
    transform: translateZ(10px) rotateY(15deg) scale(1.1);
    background: rgba(102, 126, 234, 0.4);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.tech-item span {
    font-weight: 500;
    color: #ffffff;
}

.performance-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.metric-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.metric-card:hover {
    transform: translateY(-10px) rotateX(10deg) rotateY(5deg) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(102, 126, 234, 0.2),
        0 10px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.metric-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.metric-label {
    color: #b8c1ec;
    font-size: 0.9rem;
}

/* Partners Section */
.partners-section {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

/* Partner Cards */
.partner-category {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    perspective: 1000px;
    position: relative;
}

.partner-category:hover {
    transform: translateY(-10px) rotateX(8deg) rotateY(-5deg) scale(1.03);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 20px 40px rgba(102, 126, 234, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.partner-category h3 {
    color: #b8c1ec;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.partner-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.partner-logo:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) rotateY(5deg) scale(1.1);
    box-shadow: 0 8px 15px rgba(0, 245, 255, 0.2);
}

.logo-placeholder {
    font-size: 1.5rem;
    color: #00f5ff;
}

/* Use Cases Section */
.use-cases-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.use-case-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.1);
}

.use-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.use-case-number {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.use-case-card:hover .use-case-number {
    transform: translateZ(10px) scale(1.1);
    text-shadow: 0 5px 15px rgba(102, 126, 234, 0.5);
}

.use-case-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.use-case-description {
    color: #b8c1ec;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.use-case-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    font-size: 0.8rem;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Features Section */
.features-section {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    padding: 6rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #00f5ff, #667eea);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: translateX(0);
}

.feature-card:hover {
    transform: translateY(-12px) rotateX(8deg) rotateY(-3deg) scale(1.03);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 245, 255, 0.25),
        0 8px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: translateZ(20px) rotateY(15deg) scale(1.1);
}

.feature-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: #b8c1ec;
    line-height: 1.6;
}

/* Advantages Section */
.advantages-section {
    background: linear-gradient(135deg, rgba(118, 75, 162, 0.1) 0%, rgba(102, 126, 234, 0.1) 100%);
    padding: 6rem 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.advantage-card.featured {
    border-color: #00f5ff;
    transform: scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 245, 255, 0.2),
        0 10px 20px rgba(0, 0, 0, 0.1);
}

.advantage-card:hover {
    transform: translateY(-15px) rotateX(8deg) rotateY(5deg) scale(1.05);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 30px 60px rgba(0, 245, 255, 0.3),
        0 15px 30px rgba(0, 0, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.1);
}

.advantage-card.featured:hover {
    transform: translateY(-15px) rotateX(8deg) rotateY(5deg) scale(1.08);
    box-shadow: 
        0 35px 70px rgba(0, 245, 255, 0.4),
        0 20px 40px rgba(0, 0, 0, 0.25),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

.advantage-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #00f5ff, #667eea);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-badge {
    transform: translateX(-50%) translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 245, 255, 0.4);
}

.advantage-icon {
    margin-bottom: 1.5rem;
}

.advantage-icon svg {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon svg {
    transform: translateZ(10px) scale(1.1);
}

.advantage-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.advantage-card p {
    color: #b8c1ec;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.advantage-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.advantage-features li {
    color: #b8c1ec;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.advantage-features li:last-child {
    border-bottom: none;
}

/* Specific advantage card hover effects */
.advantage-card.ai-powered:hover {
    border-color: #667eea;
    box-shadow: 
        0 30px 60px rgba(102, 126, 234, 0.3),
        0 15px 30px rgba(0, 0, 0, 0.2);
}

.advantage-card.blockchain-powered:hover {
    border-color: #4facfe;
}

.advantage-card.data-rich:hover {
    border-color: #ffd700;
    box-shadow: 
        0 30px 60px rgba(255, 215, 0, 0.3),
        0 15px 30px rgba(0, 0, 0, 0.2);
}

.advantage-card.security-first:hover {
    border-color: #9e9e9e;
    box-shadow: 
        0 30px 60px rgba(158, 158, 158, 0.3),
        0 15px 30px rgba(0, 0, 0, 0.2);
}

.advantage-card.real-time:hover {
    border-color: #e91e63;
    box-shadow: 
        0 30px 60px rgba(233, 30, 99, 0.3),
        0 15px 30px rgba(0, 0, 0, 0.2);
}

.advantage-card.ecosystem:hover {
    border-color: #4caf50;
    box-shadow: 
        0 30px 60px rgba(76, 175, 80, 0.3),
        0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Developers Section */
.developers-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%);
    padding: 6rem 0;
}

.developers-content {
    max-width: 1200px;
    margin: 0 auto;
}

.dev-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.dev-intro h3 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.dev-intro p {
    color: #b8c1ec;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.dev-resources {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.resource-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    transform-style: preserve-3d;
    perspective: 1000px;
    position: relative;
    overflow: hidden;
}

.resource-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.resource-card:hover {
    transform: translateY(-10px) rotateX(10deg) rotateY(-5deg) scale(1.05);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 20px 40px rgba(102, 126, 234, 0.2),
        0 10px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.resource-card:hover::after {
    left: 100%;
}

.resource-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.resource-card:hover .resource-icon {
    transform: translateZ(15px) rotateY(20deg) scale(1.2);
}

.resource-card h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.resource-card p {
    color: #b8c1ec;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.resource-link {
    color: #00f5ff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.resource-link:hover {
    color: #667eea;
}

.code-example {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.code-example h4 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.code-block {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 1.5rem;
    overflow-x: auto;
}

.code-block pre {
    margin: 0;
    color: #b8c1ec;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}

.code-block code {
    color: #b8c1ec;
}

/* Security Section */
.security-section {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    padding: 6rem 0;
}

.security-content {
    max-width: 1200px;
    margin: 0 auto;
}

.security-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.security-intro h3 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.security-intro p {
    color: #b8c1ec;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.security-feature {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    perspective: 1000px;
    position: relative;
}

.security-feature:hover {
    transform: translateY(-8px) rotateX(6deg) rotateY(3deg) scale(1.03);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 15px 30px rgba(102, 126, 234, 0.15),
        0 8px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.security-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.security-feature:hover .security-icon {
    transform: translateZ(10px) rotateY(10deg) scale(1.1);
}

.compliance-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.compliance-badge {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.compliance-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px) rotateX(10deg) scale(1.05);
    box-shadow: 
        0 15px 30px rgba(102, 126, 234, 0.2),
        0 8px 15px rgba(0, 0, 0, 0.1);
}

.badge-icon {
    font-size: 1.5rem;
}

.compliance-badge span {
    color: #ffffff;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%);
    padding: 6rem 0;
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    color: #ffffff;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-toggle {
    color: #00f5ff;
    font-size: 1.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: #b8c1ec;
    line-height: 1.6;
    margin: 0;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, rgba(118, 75, 162, 0.1) 0%, rgba(102, 126, 234, 0.1) 100%);
    padding: 6rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info h3 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #b8c1ec;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Page Navigation */
.page-navigation {
    margin-bottom: 3rem;
}

.nav-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    max-width: 500px;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: #b8c1ec;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s ease;
}

.nav-item:hover::before {
    left: 100%;
}

.nav-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(102, 126, 234, 0.3);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.nav-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.nav-item:hover .nav-icon {
    transform: scale(1.2);
}

.nav-item span {
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.nav-item:hover span {
    font-weight: 600;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #b8c1ec;
}

.contact-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(102, 126, 234, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-icon svg {
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: rgba(102, 126, 234, 0.4);
    transform: scale(1.1);
}

.contact-item:hover .contact-icon svg {
    transform: scale(1.1);
}

.contact-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-logo {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 200px;
}

.contact-logo-img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    z-index: 2;
    position: relative;
    filter: drop-shadow(0 10px 30px rgba(102, 126, 234, 0.3));
    animation: contactFloat 4s ease-in-out infinite;
}

.contact-logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.1) 50%, transparent 70%);
    border-radius: 50%;
    animation: contactPulse 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes contactFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(1deg);
    }
    50% {
        transform: translateY(-5px) rotate(0deg);
    }
    75% {
        transform: translateY(-10px) rotate(-1deg);
    }
}

@keyframes contactPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}



/* Media Queries */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: all 0.3s ease;
        opacity: 0;
        visibility: hidden;
    }

    .nav-menu.active {
        top: 80px;
        opacity: 1;
        visibility: visible;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }

    .price-chart {
        grid-row: auto;
    }

    .modules-grid {
        grid-template-columns: 1fr;
    }

    /* AI Chat Mobile Styles */
    .ai-chat-container {
        max-width: 100%;
        padding: 0 1rem;
    }

    .chat-intro h3 {
        font-size: 1.5rem;
    }

    .chat-intro p {
        font-size: 1rem;
    }

    .chat-messages {
        height: 350px;
        padding: 1rem;
    }

    .message-bubble {
        max-width: 85%;
        padding: 0.75rem 1rem;
    }

    .message-avatar {
        width: 35px;
        height: 35px;
    }

    .chat-input-area {
        padding: 1rem;
    }

    .input-container {
        padding: 0.5rem 0.75rem;
    }

    #chatInput {
        font-size: 0.9rem;
    }

    .send-btn {
        width: 35px;
        height: 35px;
    }

    .input-hint {
        font-size: 0.8rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Page Navigation Mobile Styles */
    .nav-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        max-width: 100%;
    }

    .nav-item {
        padding: 0.75rem 0.5rem;
    }

    .nav-icon {
        font-size: 1.3rem;
    }

    .nav-item span {
        font-size: 0.75rem;
    }

    .contact-buttons {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    /* Footer Navigation Mobile Styles */
    .footer-nav-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        max-width: 100%;
    }

    .footer-nav-item {
        padding: 0.75rem 0.4rem;
    }

    .footer-nav-icon {
        font-size: 1.1rem;
    }

    .footer-nav-item span {
        font-size: 0.7rem;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .advantage-card.featured {
        transform: none;
    }
    
    .dev-resources {
        grid-template-columns: 1fr;
    }
    
    .security-features {
        grid-template-columns: 1fr;
    }
    
    .contact-buttons {
        justify-content: center;
    }
    
    .compliance-badges {
        flex-direction: column;
        align-items: center;
    }

    /* Whitelist Mobile Styles */
    .whitelist-intro h3 {
        font-size: 1.5rem;
    }

    .whitelist-intro p {
        font-size: 1rem;
    }

    .input-wrapper {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        border-radius: 20px;
    }

    #whitelistEmail {
        text-align: center;
        padding: 0.75rem 1rem;
    }

    .submit-btn {
        align-self: stretch;
        justify-content: center;
        padding: 0.75rem 1.5rem;
    }

    .whitelist-benefits {
        gap: 2rem;
    }

    .benefit-item {
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .modules-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .module-card {
        padding: 1.5rem;
    }

    /* AI Chat Small Screen Styles */
    .chat-intro {
        margin-bottom: 2rem;
    }

    .chat-intro h3 {
        font-size: 1.3rem;
    }

    .chat-intro p {
        font-size: 0.9rem;
    }

    .chat-messages {
        height: 300px;
        padding: 0.75rem;
    }

    .message-bubble {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }

    .message-avatar {
        width: 30px;
        height: 30px;
    }

    .send-btn {
        width: 30px;
        height: 30px;
    }

    .tech-icons {
        grid-template-columns: 1fr;
    }

    /* Whitelist Small Screen Styles */
    .whitelist-section {
        padding: 4rem 0;
    }

    .whitelist-intro {
        margin-bottom: 2rem;
    }

    .whitelist-intro h3 {
        font-size: 1.3rem;
    }

    .whitelist-intro p {
        font-size: 0.9rem;
    }

    .whitelist-benefits {
        flex-direction: column;
        gap: 1.5rem;
    }

    .benefit-item {
        min-width: auto;
    }

    .benefit-icon {
        font-size: 1.5rem;
    }

    /* Page Navigation Small Screen Styles */
    .page-navigation {
        margin-bottom: 2rem;
    }

    .nav-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .nav-item {
        padding: 0.6rem 0.4rem;
    }

    .nav-icon {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }

    .nav-item span {
        font-size: 0.7rem;
    }

    /* Footer Navigation Small Screen Styles */
    .footer-navigation {
        margin-bottom: 1.5rem;
    }

    .footer-nav-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .footer-nav-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .footer-nav-item {
        padding: 0.6rem 0.3rem;
    }

    .footer-nav-icon {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .footer-nav-item span {
        font-size: 0.65rem;
    }
}

/* Utility Classes */
.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.text-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(10, 10, 10, 0.5);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
} 

/* Whitelist Section */
.whitelist-section {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6rem 0;
}

.whitelist-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.whitelist-intro {
    margin-bottom: 3rem;
}

.whitelist-intro h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.whitelist-intro p {
    font-size: 1.1rem;
    color: #b8c1ec;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.whitelist-form-container {
    margin-bottom: 3rem;
}

.whitelist-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 2rem;
}

.input-wrapper {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.input-wrapper:focus-within {
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

#whitelistEmail {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 1rem;
    padding: 1rem 1.5rem;
}

#whitelistEmail::placeholder {
    color: #9ca3af;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50px;
    padding: 1rem 2rem;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-text {
    font-size: 1rem;
}

.loading-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.success-message {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
    animation: successSlideIn 0.5s ease-out;
}

.success-icon {
    font-size: 3rem;
    color: #22c55e;
    margin-bottom: 1rem;
    display: inline-block;
    animation: successBounce 0.6s ease-out;
}

.success-message h4 {
    color: #22c55e;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.success-message p {
    color: #b8c1ec;
    margin: 0;
    font-size: 1rem;
}

.whitelist-benefits {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #b8c1ec;
    font-weight: 500;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    color: #ffffff;
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.2);
}

@keyframes successSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes successBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Footer */
.footer {
    background: rgba(10, 10, 10, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Footer Navigation */
.footer-navigation {
    margin-bottom: 2rem;
    text-align: center;
}

.footer-nav-title {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-nav-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.footer-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    text-decoration: none;
    color: #9ca3af;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.footer-nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.05), transparent);
    transition: left 0.4s ease;
}

.footer-nav-item:hover::before {
    left: 100%;
}

.footer-nav-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.2);
    color: #b8c1ec;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.1);
}

.footer-nav-icon {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-nav-item:hover .footer-nav-icon {
    transform: scale(1.1);
    opacity: 1;
}

.footer-nav-item span {
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.footer-nav-item:hover span {
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    color: #b8c1ec;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #667eea;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b8c1ec;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
} 