/* TradeOn Quantum AI Platform - Light Pastel Theme */

:root {
    /* Color Palette */
    --primary: #9B5A10;
    --secondary: #2E2217;
    --accent: #FFD629;
    --light: #fafaf8;
    --dark: #212529;
    --pastel-light: #FFF9E6;
    --pastel-medium: #FFEBB9;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, #B87333 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, #4A3429 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, #FFE55C 100%);
    --gradient-light: linear-gradient(135deg, var(--pastel-light) 0%, var(--pastel-medium) 100%);
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Orbitron', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-max-width: 1200px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 50%;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark);
    background: var(--light);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--secondary);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--secondary);
    opacity: 0.8;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Layout */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding);
    position: relative;
}

.odd-section {
    background-image: url(../imgs/background.png);
    background-position:0 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.why-us-section {
   background-image: url(../imgs/background1.png);
    background-position:0 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.even-section {
    background: var(--light);
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    background: var(--light);
    z-index: 1100;
    transition: left 0.3s ease;
    box-shadow: var(--shadow-xl);
    overflow-y: auto;
}

.mobile-sidebar.active {
    left: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.sidebar-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary);
    cursor: pointer;
}

.sidebar-content {
    padding: 1.5rem;
}

.sidebar-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: color 0.3s ease;
}

.sidebar-link:hover {
    color: var(--primary);
}

.sidebar-link.has-submenu i {
    transition: transform 0.3s ease;
}

.sidebar-dropdown.active .sidebar-link.has-submenu i {
    transform: rotate(180deg);
}

.sidebar-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.sidebar-dropdown.active .sidebar-submenu {
    max-height: 500px;
}

.sidebar-submenu .sidebar-link {
    padding-left: 1rem;
    font-size: 0.9rem;
}

.sidebar-actions {
    margin: 2rem 0;
}

.sidebar-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.popup-menu {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.popup-menu a {
    color: var(--secondary);
    text-decoration: none;
    font-size: 0.875rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.popup-menu a:hover {
    opacity: 1;
    color: var(--primary);
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1099;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Header & Navigation */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 1000;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 200px;
    height: 46px;
    object-fit: contain;
}

.navbar-nav {
    gap: 8px;
}

.nav-link {
    font-family: var(--font-primary);
    font-weight: 500;
    color: var(--secondary) !important;
    padding: 8px 16px !important;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
    background: rgba(155, 90, 16, 0.1);
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius-lg);
    padding: 8px;
}

.dropdown-item {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(155, 90, 16, 0.1);
    color: var(--primary);
}

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 24px;
    cursor: pointer;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background: var(--secondary);
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-toggle {
    display: none;
}

/* Buttons */
.btn {
    font-family: var(--font-primary);
    font-weight: 500;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--light);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--light);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.125rem;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 100px;
    left: -100px;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
    animation-delay: 4s;
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-particles::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(155, 90, 16, 0.1) 2px, transparent 0),
        radial-gradient(circle at 80% 20%, rgba(255, 214, 41, 0.1) 2px, transparent 0),
        radial-gradient(circle at 40% 80%, rgba(46, 34, 23, 0.1) 2px, transparent 0);
    background-size: 50px 50px;
    animation: particleFloat 20s linear infinite;
}

.badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--light);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.animated-badge {
    animation: badgePulse 2s ease-in-out infinite alternate;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-title span {
    display: block;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
    color: var(--secondary);
    opacity: 0.8;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--secondary);
    opacity: 0.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.ai-core {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 3s ease-in-out infinite;
}

.core-glow {
    width: 120px;
    height: 120px;
    background: var(--pastel-light);
    border-radius: var(--radius-full);
    animation: pulse 2s ease-in-out infinite reverse;
}

.data-streams {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.stream {
    position: absolute;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: dataFlow 3s linear infinite;
}

.stream-1 {
    width: 2px;
    height: 100px;
    top: 0;
    left: 50%;
    animation-delay: 0s;
}

.stream-2 {
    width: 2px;
    height: 150px;
    top: 50%;
    right: 0;
    transform: rotate(90deg);
    animation-delay: 1s;
}

.stream-3 {
    width: 2px;
    height: 120px;
    bottom: 0;
    left: 30%;
    animation-delay: 2s;
}

.stream-4 {
    width: 2px;
    height: 180px;
    top: 20%;
    left: 20%;
    transform: rotate(45deg);
    animation-delay: 1.5s;
}

.stream-5 {
    width: 2px;
    height: 160px;
    bottom: 30%;
    right: 25%;
    transform: rotate(-45deg);
    animation-delay: 2.5s;
}

.quantum-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.quantum-particles .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: var(--radius-full);
    animation: quantumJump 4s ease-in-out infinite;
}

.quantum-particles .particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.quantum-particles .particle:nth-child(2) {
    top: 60%;
    right: 30%;
    animation-delay: 1s;
}

.quantum-particles .particle:nth-child(3) {
    bottom: 20%;
    left: 40%;
    animation-delay: 2s;
}

.quantum-particles .particle:nth-child(4) {
    top: 40%;
    right: 40%;
    animation-delay: 1.5s;
}

.quantum-particles .particle:nth-child(5) {
    bottom: 40%;
    left: 60%;
    animation-delay: 2.5s;
}

/* Trusted Section */
.trusted-section {
    background: var(--white);
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}

.section-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--secondary);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.logo-item {
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.logo-item:hover {
    opacity: 1;
}

.logo-item img {
    height: 40px;
    width: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
}

/* Section Styles */
.section-header {
    margin-bottom: 4rem;
}

.section-content,
.section-visual {
    padding: 2rem 0;
}

.section-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--secondary);
    opacity: 0.8;
}

/* Core Features */
.core-features {
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-content h4 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.feature-content p {
    margin: 0;
    color: var(--secondary);
    opacity: 0.8;
}

/* Quantum Node */
.quantum-node {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.node-core {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-full);
    animation: pulse 3s ease-in-out infinite;
}

.network-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.network-lines .line {
    position: absolute;
    background: var(--gradient-primary);
    height: 2px;
    animation: networkPulse 3s ease-in-out infinite;
}

.network-lines .line:nth-child(1) {
    top: 50%;
    left: 0;
    width: 100%;
    animation-delay: 0s;
}

.network-lines .line:nth-child(2) {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    animation-delay: 0.5s;
}

.network-lines .line:nth-child(3) {
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    transform: rotate(45deg);
    transform-origin: left;
    animation-delay: 1s;
}

.network-lines .line:nth-child(4) {
    top: 0;
    right: 0;
    width: 100%;
    height: 2px;
    transform: rotate(-45deg);
    transform-origin: right;
    animation-delay: 1.5s;
}

.network-lines .line:nth-child(5) {
    top: 50%;
    left: 50%;
    width: 100%;
    height: 2px;
    transform: rotate(90deg);
    transform-origin: left;
    animation-delay: 2s;
}

.quantum-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.quantum-particles .particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: var(--radius-full);
    animation: quantumJump 3s ease-in-out infinite;
}

.quantum-particles .particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.quantum-particles .particle:nth-child(2) {
    top: 60%;
    right: 30%;
    animation-delay: 1s;
}

.quantum-particles .particle:nth-child(3) {
    bottom: 20%;
    left: 40%;
    animation-delay: 2s;
}

.quantum-particles .particle:nth-child(4) {
    top: 40%;
    right: 40%;
    animation-delay: 1.5s;
}

.quantum-particles .particle:nth-child(5) {
    bottom: 40%;
    left: 60%;
    animation-delay: 2.5s;
}

/* Mission Section */
.mission-graphic {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: auto;
    max-height: 600px;
    background: var(--gradient-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.mission-graphic .graphic-element {
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(155, 90, 16, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 214, 41, 0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-icons .icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 1.5rem;
    animation: float 6s ease-in-out infinite;
}

.floating-icons .icon:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.floating-icons .icon:nth-child(2) {
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.floating-icons .icon:nth-child(3) {
    bottom: 20%;
    left: 50%;
    animation-delay: 4s;
}

/* Mission Points */
.mission-points {
    margin: 2rem 0;
}

.point {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.point i {
    color: var(--primary);
    font-size: 1.125rem;
}

.point span {
    font-weight: 500;
    color: var(--secondary);
}

/* Vision Stats */
.vision-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.vision-stat {
    text-align: center;
}

.vision-stat .stat-number {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.vision-stat .stat-label {
    font-size: 0.875rem;
    opacity: 0.7;
}

/* Vision Timeline */
.vision-timeline {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.timeline-item.active {
    opacity: 1;
}

.timeline-year {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.timeline-content {
    font-weight: 500;
    color: var(--secondary);
}

/* Team Cards */
.team-card {
    background: var(--light);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.team-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    position: relative;
    border-radius: var(--radius-full);
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(155, 90, 16, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-overlay .social-links {
    display: flex;
    gap: 1rem;
}

.team-overlay .social-links a {
    color: var(--light);
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.team-overlay .social-links a:hover {
    transform: scale(1.2);
}

.team-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.team-role {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--secondary);
    opacity: 0.8;
    margin: 0;
}

/* Advantage Cards */
.advantage-card {
    background: var(--light);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.advantage-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.advantage-card p {
    margin-bottom: 1.5rem;
    color: var(--secondary);
    opacity: 0.8;
}

.advantage-stats {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.advantage-stats .stat {
    background: var(--pastel-light);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
}

/* Community Section */
.community-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.community-stat {
    text-align: center;
}

.community-stat .stat-number {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.community-stat .stat-label {
    font-size: 0.875rem;
    opacity: 0.7;
}

.community-graphic {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: auto;
    max-height: 600px;
    background: var(--gradient-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.community-graphic .graphic-element {
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(155, 90, 16, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 214, 41, 0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

.community-members {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.community-members .member {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    animation: communityFloat 8s ease-in-out infinite;
}

.community-members .member:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.community-members .member:nth-child(2) {
    top: 60%;
    right: 30%;
    animation-delay: 2s;
}

.community-members .member:nth-child(3) {
    bottom: 20%;
    left: 40%;
    animation-delay: 4s;
}

.community-members .member:nth-child(4) {
    top: 40%;
    right: 40%;
    animation-delay: 1s;
}

.community-members .member:nth-child(5) {
    bottom: 40%;
    left: 60%;
    animation-delay: 3s;
}

.community-members .member:nth-child(6) {
    top: 70%;
    left: 30%;
    animation-delay: 5s;
}

/* Service Sections */
.service-features {
    margin: 2rem 0;
}

.service-features .feature {
    margin-bottom: 1rem;
}

.service-features .feature i {
    color: var(--primary);
}

.service-features .feature span {
    font-weight: 500;
    color: var(--secondary);
}

.service-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.service-stats .stat {
    text-align: center;
}

.service-stats .stat-number {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.service-stats .stat-label {
    font-size: 0.875rem;
    opacity: 0.7;
}

/* Trading Graphic */
.trading-graphic {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: auto;
    max-height: 600px;
    background: var(--gradient-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.trading-graphic .graphic-element {
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(155, 90, 16, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 214, 41, 0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

.trading-chart {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 60%;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-md);
    padding: 1rem;
}

.chart-line {
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    position: relative;
    animation: chartLine 3s ease-in-out infinite;
}

.chart-points {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.chart-points .point {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: var(--radius-full);
    animation: pointPulse 2s ease-in-out infinite;
}

.chart-points .point:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.chart-points .point:nth-child(2) {
    top: 40%;
    left: 30%;
    animation-delay: 0.5s;
}

.chart-points .point:nth-child(3) {
    top: 60%;
    left: 50%;
    animation-delay: 1s;
}

.chart-points .point:nth-child(4) {
    top: 40%;
    left: 70%;
    animation-delay: 1.5s;
}

.chart-points .point:nth-child(5) {
    top: 20%;
    left: 90%;
    animation-delay: 2s;
}

/* Arbitrage Graphic */
.arbitrage-graphic {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: auto;
    max-height: 600px;
    background: var(--gradient-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.arbitrage-graphic .graphic-element {
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(155, 90, 16, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 214, 41, 0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

.exchange-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.exchange-connections .connection {
    position: absolute;
    background: var(--gradient-primary);
    height: 2px;
    animation: connectionFlow 3s linear infinite;
}

.exchange-connections .connection:nth-child(1) {
    top: 30%;
    left: 20%;
    width: 60%;
    animation-delay: 0s;
}

.exchange-connections .connection:nth-child(2) {
    top: 50%;
    left: 10%;
    width: 80%;
    animation-delay: 1s;
}

.exchange-connections .connection:nth-child(3) {
    top: 70%;
    left: 30%;
    width: 40%;
    animation-delay: 2s;
}

.exchange-connections .connection:nth-child(4) {
    top: 40%;
    right: 20%;
    width: 50%;
    animation-delay: 1.5s;
}

.profit-indicators {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.profit-indicators .indicator {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: var(--radius-full);
    animation: profitPulse 2s ease-in-out infinite;
}

.profit-indicators .indicator:nth-child(1) {
    top: 25%;
    left: 40%;
    animation-delay: 0s;
}

.profit-indicators .indicator:nth-child(2) {
    top: 60%;
    left: 60%;
    animation-delay: 0.7s;
}

.profit-indicators .indicator:nth-child(3) {
    top: 45%;
    left: 80%;
    animation-delay: 1.4s;
}

/* Portfolio Graphic */
.portfolio-graphic {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: auto;
    max-height: 600px;
    background: var(--gradient-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-graphic .graphic-element {
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(155, 90, 16, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 214, 41, 0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

.portfolio-chart {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: var(--radius-full);
    background: conic-gradient(
        var(--color) 0% var(--percentage),
        transparent var(--percentage) 100%
    );
    animation: portfolioRotate 10s linear infinite;
}

.chart-slice {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-full);
    clip-path: polygon(50% 50%, 50% 0%, 100% 0%, 100% 100%, 50% 100%);
    transform: rotate(calc(var(--percentage) * 3.6deg));
    background: var(--color);
}

.portfolio-legend {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.color-dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
}

.legend-item span {
    font-size: 0.875rem;
    color: var(--secondary);
}

/* Bot Trading Graphic */
.bot-graphic {
    position: relative;
    width: 100%;
    height: 400px;
    background: var(--gradient-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bot-graphic .graphic-element {
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(155, 90, 16, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 214, 41, 0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

.bot-interface {
    position: absolute;
    width: 80%;
    height: 70%;
    top: 15%;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    animation: interfaceGlow 3s ease-in-out infinite;
}

.interface-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.bot-status {
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: var(--radius-full);
    animation: statusPulse 2s ease-in-out infinite;
}

.interface-header span {
    font-weight: 600;
    color: var(--secondary);
}

.interface-metrics {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.metric {
    text-align: center;
}

.metric .label {
    display: block;
    font-size: 0.875rem;
    color: var(--secondary);
    opacity: 0.7;
    margin-bottom: 0.25rem;
}

.metric .value {
    display: block;
    font-weight: 600;
    color: var(--primary);
}

.interface-controls {
    display: flex;
    gap: 1rem;
}

.interface-controls .control {
    flex: 1;
    padding: 0.75rem;
    text-align: center;
    background: var(--pastel-light);
    border-radius: var(--radius-md);
    font-weight: 500;
    color: var(--secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.interface-controls .control.active {
    background: var(--gradient-primary);
    color: var(--light);
}

.interface-controls .control:hover {
    transform: translateY(-2px);
}

/* Crypto Trading */
.crypto-coins {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.coin {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--pastel-light);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.coin:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.coin-icon {
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: 600;
    font-size: 0.875rem;
}

.coin span {
    font-weight: 500;
    color: var(--secondary);
}

.crypto-graphic {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: auto;
    max-height: 600px;
    background: var(--gradient-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.crypto-graphic .graphic-element {
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(155, 90, 16, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 214, 41, 0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

.crypto-chart {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 70%;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-md);
    padding: 1rem;
}

.chart-candles {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 70%;
    margin-bottom: 1rem;
}

.chart-candles .candle {
    flex: 1;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: candleFloat 3s ease-in-out infinite;
}

.chart-candles .candle:nth-child(1) { height: 60%; animation-delay: 0s; }
.chart-candles .candle:nth-child(2) { height: 40%; animation-delay: 0.2s; }
.chart-candles .candle:nth-child(3) { height: 80%; animation-delay: 0.4s; }
.chart-candles .candle:nth-child(4) { height: 30%; animation-delay: 0.6s; }
.chart-candles .candle:nth-child(5) { height: 70%; animation-delay: 0.8s; }
.chart-candles .candle:nth-child(6) { height: 50%; animation-delay: 1s; }
.chart-candles .candle:nth-child(7) { height: 90%; animation-delay: 1.2s; }
.chart-candles .candle:nth-child(8) { height: 20%; animation-delay: 1.4s; }

.chart-volume {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 20%;
}

.chart-volume .volume-bar {
    flex: 1;
    background: var(--accent);
    border-radius: 2px;
    animation: volumePulse 2s ease-in-out infinite;
}

.chart-volume .volume-bar:nth-child(1) { height: 40%; animation-delay: 0s; }
.chart-volume .volume-bar:nth-child(2) { height: 60%; animation-delay: 0.1s; }
.chart-volume .volume-bar:nth-child(3) { height: 30%; animation-delay: 0.2s; }
.chart-volume .volume-bar:nth-child(4) { height: 80%; animation-delay: 0.3s; }
.chart-volume .volume-bar:nth-child(5) { height: 50%; animation-delay: 0.4s; }
.chart-volume .volume-bar:nth-child(6) { height: 70%; animation-delay: 0.5s; }
.chart-volume .volume-bar:nth-child(7) { height: 40%; animation-delay: 0.6s; }
.chart-volume .volume-bar:nth-child(8) { height: 90%; animation-delay: 0.7s; }

/* Quantum AI Trading */
.quantum-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.quantum-stats .stat {
    text-align: center;
}

.quantum-stats .stat-number {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-secondary);
}

.quantum-stats .stat-label {
    font-size: 0.875rem;
    opacity: 0.7;
}

.quantum-ai-graphic {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: auto;
    max-height: 600px;
    background: var(--gradient-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.quantum-ai-graphic .graphic-element {
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(155, 90, 16, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 214, 41, 0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

.quantum-circuit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 60%;
}

.qubit {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    animation: qubitSpin 4s linear infinite;
}

.qubit:nth-child(1) {
    top: 20%;
    left: 20%;
}

.qubit:nth-child(2) {
    top: 60%;
    right: 20%;
}

.qubit:nth-child(3) {
    bottom: 20%;
    left: 50%;
}

.quantum-gate {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: var(--radius-md);
    animation: gatePulse 2s ease-in-out infinite;
}

.quantum-gate:nth-child(4) {
    top: 40%;
    left: 40%;
    animation-delay: 0s;
}

.quantum-gate:nth-child(5) {
    top: 40%;
    right: 40%;
    animation-delay: 1s;
}

.entanglement {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 2px;
    background: var(--gradient-primary);
    animation: entanglementFlow 3s linear infinite;
}

.quantum-states {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
}

.state {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-md);
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--primary);
    animation: statePulse 2s ease-in-out infinite;
}

.state.superposition {
    animation-delay: 1s;
}

/* Feature Cards */
.feature-card {
    background: var(--light);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    margin-bottom: 1.5rem;
    color: var(--secondary);
    opacity: 0.8;
}

.feature-stats {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.feature-stats .stat {
    background: var(--pastel-light);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
}

/* Performance Grid */
.performance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.metric-card {
    background: var(--light);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metric-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.metric-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.metric-content {
    flex: 1;
}

.metric-value {
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--secondary);
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.metric-trend {
    font-size: 0.875rem;
    font-weight: 600;
}

.metric-trend.positive {
    color: #06D6A0;
}

.metric-trend.negative {
    color: #EF476F;
}

/* Security Features */
.security-features {
    margin-top: 2rem;
}

.security-features .feature {
    margin-bottom: 2rem;
}

.security-features .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
}

.security-features .feature-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.security-features .feature-content p {
    margin: 0;
    font-size: 0.9rem;
}

.security-graphic {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: auto;
    max-height: 600px;
    background: var(--gradient-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.security-graphic .graphic-element {
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(155, 90, 16, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 214, 41, 0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

.security-layers {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
}

.security-layers .layer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--primary);
    border-radius: var(--radius-full);
    animation: layerPulse 3s ease-in-out infinite;
}

.security-layers .layer:nth-child(1) {
    width: 60%;
    height: 60%;
    animation-delay: 0s;
}

.security-layers .layer:nth-child(2) {
    width: 80%;
    height: 80%;
    animation-delay: 1s;
}

.security-layers .layer:nth-child(3) {
    width: 100%;
    height: 100%;
    animation-delay: 2s;
}

.security-layers .layer:nth-child(4) {
    width: 120%;
    height: 120%;
    animation-delay: 3s;
}

/* Roadmap Timeline */
.roadmap-timeline {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.roadmap-phase {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.roadmap-phase:nth-child(odd) {
    flex-direction: row;
}

.roadmap-phase:nth-child(even) {
    flex-direction: row-reverse;
    text-align: left;
}

.phase-date {
    text-align: center;
    background: var(--gradient-primary);
    color: var(--light);
    padding: 15px;
    border-radius: 25px;
    font-family: var(--font-secondary);
    font-weight: 700;
    margin: 0 30px;
    position: relative;
    z-index: 2;
}

.phase-content {
    flex: 1;
    background: var(--light);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(155, 90, 16, 0.1);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    box-shadow: var(--shadow-md);
}

.phase-content h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.phase-content ul {
    list-style: none;
    padding: 0;
}

.phase-content li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.phase-content li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* Testimonials */
.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--light);
    border-radius: var(--radius-xl);
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.quote-icon {
    font-size: 4rem;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 20px;
    font-family: serif;
    opacity: 0.3;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
}

.author-info h4 {
    font-family: var(--font-secondary);
    margin-bottom: 5px;
    color: var(--primary);
}

.author-info p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
    font-style: normal;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light);
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(155, 90, 16, 0.05);
}

.faq-question h4 {
    font-family: var(--font-secondary);
    margin: 0;
    color: var(--secondary);
    font-size: 1.125rem;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 500px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Contact Form */
.contact-form {
    background: var(--light);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--secondary);
}

.form-group .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--pastel-light);
}

.form-group .form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(155, 90, 16, 0.1);
}

/* Support Cards */
.support-card {
    background: var(--light);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.support-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.support-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.support-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.support-card p {
    margin-bottom: 1.5rem;
    color: var(--secondary);
    opacity: 0.8;
}

/* Footer */
.footer {
    background: var(--secondary);
    color: var(--light);
    padding: 4rem 0 2rem;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    margin: 1rem 0 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    color: var(--light);
    transform: translateY(-2px);
}

.footer-links h4 {
    color: var(--light);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
}

.footer-bottom-links a:hover {
    color: var(--accent);
}

/* Modals */
.modal-content {
    border: none;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.modal-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1.5rem 2rem;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary);
}

.modal-body {
    padding: 2rem;
}

.auth-form .form-group {
    margin-bottom: 1.5rem;
}

.auth-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--secondary);
}

.auth-form .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--pastel-light);
}

.auth-form .form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(155, 90, 16, 0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.forgot-password {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.875rem;
}

.forgot-password:hover {
    text-decoration: underline;
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: flex-start;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .navbar-collapse {
        display: none;
    }
    
    .roadmap-phase {
        flex-direction: column !important;
        text-align: center;
    }
    
    .phase-date {
        margin: 0 0 20px 0;
    }
    
    .vision-stats,
    .community-stats,
    .service-stats,
    .quantum-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .performance-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 1rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .crypto-coins {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .feature-card,
    .metric-card,
    .advantage-card,
    .support-card,
    .team-card {
        padding: 1.5rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .mobile-sidebar {
        width: 100%;
    }
    
    .trusted-logos {
        gap: 1.5rem;
    }
    
    .trusted-logos .logo-item img {
        height: 30px;
    }
}