/* Reset and Base Styles */
* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

body {
   font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
   line-height: 1.6;
   color: #1a1a1a;
   padding-top: 110px;
   /* 40px (translate) + 70px (navbar) */
   background-color: #ffffff;
}

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

/* Google Translate Bar */
.translate-bar {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   background: rgba(248, 250, 252, 0.95);
   backdrop-filter: blur(10px);
   border-bottom: 1px solid rgba(0, 0, 0, 0.05);
   z-index: 1001;
   /* Higher than navbar */
   padding: 8px 0;
   display: flex;
   justify-content: center;
   align-items: center;
   min-height: 40px;
}

/* Navigation - adjusted for translate bar */
.navbar {
   position: fixed;
   top: 40px;
   /* Adjust based on translate bar height */
   left: 0;
   right: 0;
   background: rgba(255, 255, 255, 0.95);
   backdrop-filter: blur(10px);
   border-bottom: 1px solid rgba(0, 0, 0, 0.1);
   z-index: 1000;
   transition: all 0.3s ease;
}

.nav-container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   height: 70px;
}

.nav-logo {
   display: flex;
   align-items: center;
   gap: 10px;
   font-size: 24px;
   font-weight: 700;
   color: #2563eb;
}

.nav-logo i {
   font-size: 28px;
}

.nav-menu {
   display: flex;
   align-items: center;
   gap: 30px;
}

.nav-link {
   text-decoration: none;
   color: #4b5563;
   font-weight: 500;
   transition: color 0.3s ease;
   position: relative;
}

.nav-link:hover,
.nav-link.active {
   color: #2563eb;
}

.nav-link.active::after {
   content: '';
   position: absolute;
   bottom: -5px;
   left: 0;
   right: 0;
   height: 2px;
   background: #2563eb;
   border-radius: 1px;
}

.cta-button {
   background: linear-gradient(135deg, #2563eb, #1d4ed8);
   color: white;
   border: none;
   padding: 12px 24px;
   border-radius: 8px;
   font-weight: 600;
   cursor: pointer;
   transition: all 0.3s ease;
}

.cta-button:hover {
   transform: translateY(-2px);
   box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.hamburger {
   display: none;
   flex-direction: column;
   cursor: pointer;
   gap: 4px;
}

.hamburger span {
   width: 25px;
   height: 3px;
   background: #4b5563;
   border-radius: 2px;
   transition: all 0.3s ease;
}

/* Buttons */
.btn-primary {
   background: linear-gradient(135deg, #2563eb, #1d4ed8);
   color: white;
   border: none;
   padding: 14px 28px;
   border-radius: 8px;
   font-weight: 600;
   cursor: pointer;
   transition: all 0.3s ease;
   text-decoration: none;
   display: inline-block;
   text-align: center;
}

.btn-primary:hover {
   transform: translateY(-2px);
   box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
   background: transparent;
   color: #2563eb;
   border: 2px solid #2563eb;
   padding: 12px 26px;
   border-radius: 8px;
   font-weight: 600;
   cursor: pointer;
   transition: all 0.3s ease;
   text-decoration: none;
   display: inline-block;
   text-align: center;
}

.btn-secondary:hover {
   background: #2563eb;
   color: white;
   transform: translateY(-2px);
}

.btn-primary.large,
.btn-secondary.large {
   padding: 16px 32px;
   font-size: 16px;
}

/* Hero Section */
.hero {
   padding: 120px 0 80px;
   background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
   overflow: hidden;
}

.hero-content {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 60px;
   align-items: center;
}

.hero-text h1 {
   font-size: 3.5rem;
   font-weight: 700;
   line-height: 1.2;
   margin-bottom: 24px;
   background: linear-gradient(135deg, #1e293b, #475569);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
}

.hero-text h2 {
   font-size: 3.0rem;
   font-weight: 700;
   line-height: 1.2;
   margin-bottom: 24px;
   background: linear-gradient(135deg, #1e293b, #475569);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
}

.hero-text p {
   font-size: 1.25rem;
   color: #64748b;
   margin-bottom: 32px;
   line-height: 1.6;
}

.hero-buttons {
   display: flex;
   gap: 20px;
   margin-bottom: 48px;
}

.hero-stats {
   display: flex;
   gap: 40px;
}

.stat {
   display: flex;
   flex-direction: column;
}

.stat-number {
   font-size: 2rem;
   font-weight: 700;
   color: #2563eb;
}

.stat-label {
   font-size: 0.875rem;
   color: #64748b;
   font-weight: 500;
}

.hero-visual {
   position: relative;
}

.trading-dashboard {
   background: white;
   border-radius: 16px;
   padding: 24px;
   box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
   border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.dashboard-title {
   font-weight: 600;
   color: #1e293b;
}

.status-indicator {
   padding: 4px 12px;
   border-radius: 20px;
   font-size: 0.75rem;
   font-weight: 600;
}

.status-indicator.active {
   background: #dcfce7;
   color: #166534;
}

.chart-container {
   height: 200px;
   background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
   border-radius: 8px;
   margin-bottom: 20px;
   position: relative;
   overflow: hidden;
}

/* .chart-container::before {
   content: '';
   position: absolute;
   top: 20px;
   left: 20px;
   right: 20px;
   bottom: 20px;
   background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 160"><path d="M10,140 Q50,120 90,100 T170,80 Q210,70 250,60 T290,40" stroke="%232563eb" stroke-width="3" fill="none"/></svg>') no-repeat center;
   background-size: contain;
} */

.trading-metrics {
   display: flex;
   justify-content: space-between;
}

.metric {
   display: flex;
   flex-direction: column;
}

.metric-label {
   font-size: 0.75rem;
   color: #64748b;
   margin-bottom: 4px;
}

.metric-value {
   font-weight: 600;
   font-size: 0.875rem;
}

.metric-value.positive {
   color: #059669;
}

/* Page Hero */
.page-hero {
   padding: 120px 0 60px;
   background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
   text-align: center;
}

.page-hero h1 {
   font-size: 3rem;
   font-weight: 700;
   margin-bottom: 20px;
   background: linear-gradient(135deg, #1e293b, #475569);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
}

.page-hero p {
   font-size: 1.25rem;
   color: #64748b;
   max-width: 600px;
   margin: 0 auto;
}

/* Markets Section */
.markets {
   padding: 80px 0;
   background: white;
}

.markets h2 {
   text-align: center;
   font-size: 2.5rem;
   font-weight: 700;
   margin-bottom: 16px;
   color: #1e293b;
}

.section-subtitle {
   text-align: center;
   font-size: 1.125rem;
   color: #64748b;
   margin-bottom: 60px;
   max-width: 600px;
   margin-left: auto;
   margin-right: auto;
}

.markets-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 30px;
}

.market-card {
   background: white;
   border: 1px solid #e2e8f0;
   border-radius: 16px;
   padding: 32px;
   transition: all 0.3s ease;
   position: relative;
   overflow: hidden;
}

.market-card::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 4px;
   background: linear-gradient(135deg, #2563eb, #1d4ed8);
   transform: scaleX(0);
   transition: transform 0.3s ease;
}

.market-card:hover::before {
   transform: scaleX(1);
}

.market-card:hover {
   transform: translateY(-8px);
   box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.market-icon {
   width: 60px;
   height: 60px;
   background: linear-gradient(135deg, #2563eb, #1d4ed8);
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 20px;
}

.market-icon i {
   font-size: 24px;
   color: white;
}

.market-card h3 {
   font-size: 1.5rem;
   font-weight: 600;
   margin-bottom: 12px;
   color: #1e293b;
}

.market-card p {
   color: #64748b;
   margin-bottom: 20px;
   line-height: 1.6;
}

.market-stats {
   display: flex;
   gap: 16px;
}

.market-stats span {
   background: #f1f5f9;
   color: #475569;
   padding: 6px 12px;
   border-radius: 20px;
   font-size: 0.75rem;
   font-weight: 500;
}

/* Features Section */
.features {
   padding: 80px 0;
   background: #f8fafc;
}

.features h2 {
   text-align: center;
   font-size: 2.5rem;
   font-weight: 700;
   margin-bottom: 60px;
   color: #1e293b;
}

.features-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 40px;
}

.feature-card {
   background: white;
   border-radius: 16px;
   padding: 40px 32px;
   text-align: center;
   transition: all 0.3s ease;
   border: 1px solid #e2e8f0;
}

.feature-card:hover {
   transform: translateY(-8px);
   box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.feature-icon {
   width: 80px;
   height: 80px;
   background: linear-gradient(135deg, #2563eb, #1d4ed8);
   border-radius: 16px;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto 24px;
}

.feature-icon i {
   font-size: 32px;
   color: white;
}

.feature-card h3 {
   font-size: 1.5rem;
   font-weight: 600;
   margin-bottom: 16px;
   color: #1e293b;
}

.feature-card p {
   color: #64748b;
   line-height: 1.6;
}

/* Performance Section */
.performance {
   padding: 80px 0;
   background: white;
}

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

.performance-text h2 {
   font-size: 2.5rem;
   font-weight: 700;
   margin-bottom: 20px;
   color: #1e293b;
}

.performance-text p {
   font-size: 1.125rem;
   color: #64748b;
   margin-bottom: 40px;
   line-height: 1.6;
}

.performance-metrics {
   display: flex;
   flex-direction: column;
   gap: 24px;
   margin-bottom: 40px;
}

.performance-metric {
   display: flex;
   flex-direction: column;
}

.performance-metric .metric-number {
   font-size: 2.5rem;
   font-weight: 700;
   color: #059669;
   margin-bottom: 4px;
}

.performance-metric .metric-label {
   color: #64748b;
   font-weight: 500;
}

.performance-chart {
   background: white;
   border: 1px solid #e2e8f0;
   border-radius: 16px;
   padding: 24px;
   height: 300px;
   position: relative;
}

/* .performance-chart::before {
   content: '';
   position: absolute;
   top: 24px;
   left: 24px;
   right: 24px;
   bottom: 24px;
   background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
   border-radius: 8px;
} */

/* CTA Section */
.cta {
   padding: 80px 0;
   background: linear-gradient(135deg, #1e293b, #475569);
   color: white;
   text-align: center;
}

.cta-content h2 {
   font-size: 2.5rem;
   font-weight: 700;
   margin-bottom: 20px;
}

.cta-content p {
   font-size: 1.25rem;
   margin-bottom: 40px;
   opacity: 0.9;
}

.cta-buttons {
   display: flex;
   gap: 20px;
   justify-content: center;
}

/* Disclaimer */
.disclaimer-container {
   /* Aligns the text in the center */
   text-align: center;

   /* Adds some space around the container */
   padding: 1rem;



   /* Optional: Adjusts font size and color for readability */
   font-size: 0.9rem;
   color: white;

   /* Optional: Sets a max-width for better readability on large screens */
   max-width: 800px;
   margin: 0 auto;
}

.disclaimer-container p {
   /* Removes default paragraph margin to keep spacing tight */
   margin: 0;
}

/* Footer */
.footer {
   background: #1e293b;
   color: white;
   padding: 60px 0 20px;
}

.footer-content {
   display: grid;
   grid-template-columns: 2fr 1fr 1fr 1fr;
   gap: 40px;
   margin-bottom: 40px;
}

.footer-logo {
   display: flex;
   align-items: center;
   gap: 10px;
   font-size: 24px;
   font-weight: 700;
   color: #2563eb;
   margin-bottom: 16px;
}

.footer-logo i {
   font-size: 28px;
}

.footer-section p {
   color: #94a3b8;
   margin-bottom: 24px;
   line-height: 1.6;
}

.social-links {
   display: flex;
   gap: 16px;
}

.social-links a {
   width: 40px;
   height: 40px;
   background: #334155;
   border-radius: 8px;
   display: flex;
   align-items: center;
   justify-content: center;
   color: white;
   text-decoration: none;
   transition: all 0.3s ease;
}

.social-links a:hover {
   background: #2563eb;
   transform: translateY(-2px);
}

.footer-section h4 {
   font-size: 1.125rem;
   font-weight: 600;
   margin-bottom: 20px;
   color: white;
}

.footer-section ul {
   list-style: none;
}

.footer-section ul li {
   margin-bottom: 12px;
}

.footer-section ul li a {
   color: #94a3b8;
   text-decoration: none;
   transition: color 0.3s ease;
}

.footer-section ul li a:hover {
   color: #2563eb;
}

.footer-bottom {
   border-top: 1px solid #334155;
   padding-top: 20px;
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.footer-bottom p {
   color: #94a3b8;
   margin: 0;
}

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

.footer-links a {
   color: #94a3b8;
   text-decoration: none;
   transition: color 0.3s ease;
}

.footer-links a:hover {
   color: #2563eb;
}

/* About Page Styles */
.mission {
   padding: 80px 0;
   background: white;
}

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

.mission-text h2 {
   font-size: 2.5rem;
   font-weight: 700;
   margin-bottom: 24px;
   color: #1e293b;
}

.mission-text p {
   font-size: 1.125rem;
   color: #64748b;
   margin-bottom: 20px;
   line-height: 1.6;
}

.mission-visual {
   display: flex;
   justify-content: center;
}

.mission-stats {
   display: grid;
   grid-template-columns: 1fr;
   gap: 24px;
}

.stat-card {
   background: white;
   border: 1px solid #e2e8f0;
   border-radius: 16px;
   padding: 32px;
   text-align: center;
   transition: all 0.3s ease;
}

.stat-card:hover {
   transform: translateY(-4px);
   box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stat-card i {
   font-size: 32px;
   color: #2563eb;
   margin-bottom: 16px;
}

.stat-card .stat-number {
   display: block;
   font-size: 2rem;
   font-weight: 700;
   color: #1e293b;
   margin-bottom: 8px;
}

.stat-card .stat-label {
   color: #64748b;
   font-weight: 500;
}

/* Story/Timeline */
.story {
   padding: 80px 0;
   background: #f8fafc;
}

.story h2 {
   text-align: center;
   font-size: 2.5rem;
   font-weight: 700;
   margin-bottom: 60px;
   color: #1e293b;
}

.timeline {
   max-width: 800px;
   margin: 0 auto;
   position: relative;
}

.timeline::before {
   content: '';
   position: absolute;
   left: 50%;
   top: 0;
   bottom: 0;
   width: 2px;
   background: #e2e8f0;
   transform: translateX(-50%);
}

.timeline-item {
   display: flex;
   align-items: center;
   margin-bottom: 60px;
   position: relative;
}

.timeline-item:nth-child(even) {
   flex-direction: row-reverse;
}

.timeline-year {
   background: linear-gradient(135deg, #2563eb, #1d4ed8);
   color: white;
   padding: 12px 20px;
   border-radius: 25px;
   font-weight: 700;
   font-size: 1.125rem;
   position: relative;
   z-index: 2;
}

.timeline-content {
   flex: 1;
   background: white;
   border: 1px solid #e2e8f0;
   border-radius: 16px;
   padding: 32px;
   margin: 0 40px;
   box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.timeline-content h3 {
   font-size: 1.5rem;
   font-weight: 600;
   margin-bottom: 12px;
   color: #1e293b;
}

.timeline-content p {
   color: #64748b;
   line-height: 1.6;
}

/* Team Section */
.team {
   padding: 80px 0;
   background: white;
}

.team h2 {
   text-align: center;
   font-size: 2.5rem;
   font-weight: 700;
   margin-bottom: 60px;
   color: #1e293b;
}

.team-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 40px;
}

.team-member {
   background: white;
   border: 1px solid #e2e8f0;
   border-radius: 16px;
   padding: 32px;
   text-align: center;
   transition: all 0.3s ease;
}

.team-member:hover {
   transform: translateY(-8px);
   box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.member-photo {
   width: 120px;
   height: 120px;
   border-radius: 50%;
   overflow: hidden;
   margin: 0 auto 24px;
   border: 4px solid #e2e8f0;
}

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

.team-member h3 {
   font-size: 1.5rem;
   font-weight: 600;
   margin-bottom: 8px;
   color: #1e293b;
}

.member-title {
   color: #2563eb;
   font-weight: 600;
   margin-bottom: 16px;
}

.member-bio {
   color: #64748b;
   line-height: 1.6;
   margin-bottom: 20px;
}

.member-social {
   display: flex;
   justify-content: center;
   gap: 12px;
}

.member-social a {
   width: 36px;
   height: 36px;
   background: #f1f5f9;
   border-radius: 8px;
   display: flex;
   align-items: center;
   justify-content: center;
   color: #64748b;
   text-decoration: none;
   transition: all 0.3s ease;
}

.member-social a:hover {
   background: #2563eb;
   color: white;
}

/* Values Section */
.values {
   padding: 80px 0;
   background: #f8fafc;
}

.values h2 {
   text-align: center;
   font-size: 2.5rem;
   font-weight: 700;
   margin-bottom: 60px;
   color: #1e293b;
}

.values-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 40px;
}

.value-card {
   background: white;
   border: 1px solid #e2e8f0;
   border-radius: 16px;
   padding: 40px 32px;
   text-align: center;
   transition: all 0.3s ease;
}

.value-card:hover {
   transform: translateY(-8px);
   box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.value-icon {
   width: 80px;
   height: 80px;
   background: linear-gradient(135deg, #2563eb, #1d4ed8);
   border-radius: 16px;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto 24px;
}

.value-icon i {
   font-size: 32px;
   color: white;
}

.value-card h3 {
   font-size: 1.5rem;
   font-weight: 600;
   margin-bottom: 16px;
   color: #1e293b;
}

.value-card p {
   color: #64748b;
   line-height: 1.6;
}

/* How It Works Page Styles */
.process-steps {
   padding: 80px 0;
   background: white;
}

.process-steps h2 {
   text-align: center;
   font-size: 2.5rem;
   font-weight: 700;
   margin-bottom: 60px;
   color: #1e293b;
}

.steps-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 40px;
}

.step-card {
   background: white;
   border: 1px solid #e2e8f0;
   border-radius: 16px;
   padding: 32px;
   position: relative;
   transition: all 0.3s ease;
}

.step-card:hover {
   transform: translateY(-8px);
   box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.step-number {
   position: absolute;
   top: -20px;
   left: 32px;
   width: 40px;
   height: 40px;
   background: linear-gradient(135deg, #2563eb, #1d4ed8);
   color: white;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: 700;
   font-size: 1.125rem;
}

.step-content {
   padding-top: 20px;
}

.step-content h3 {
   font-size: 1.5rem;
   font-weight: 600;
   margin-bottom: 16px;
   color: #1e293b;
}

.step-content p {
   color: #64748b;
   line-height: 1.6;
   margin-bottom: 20px;
}

.step-features {
   display: flex;
   flex-direction: column;
   gap: 8px;
}

.step-features span {
   display: flex;
   align-items: center;
   gap: 8px;
   color: #059669;
   font-size: 0.875rem;
   font-weight: 500;
}

.step-features i {
   font-size: 12px;
}

/* AI Technology Section */
.ai-technology {
   padding: 80px 0;
   background: #f8fafc;
}

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

.tech-text h2 {
   font-size: 2.5rem;
   font-weight: 700;
   margin-bottom: 20px;
   color: #1e293b;
}

.tech-text p {
   font-size: 1.125rem;
   color: #64748b;
   margin-bottom: 40px;
   line-height: 1.6;
}

.tech-features {
   display: flex;
   flex-direction: column;
   gap: 24px;
}

.tech-feature {
   display: flex;
   gap: 16px;
   align-items: flex-start;
}

.tech-icon {
   width: 48px;
   height: 48px;
   background: linear-gradient(135deg, #2563eb, #1d4ed8);
   border-radius: 8px;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
}

.tech-icon i {
   font-size: 20px;
   color: white;
}

.tech-info h4 {
   font-size: 1.125rem;
   font-weight: 600;
   margin-bottom: 8px;
   color: #1e293b;
}

.tech-info p {
   color: #64748b;
   line-height: 1.6;
   margin: 0;
}

.tech-visual {
   display: flex;
   justify-content: center;
}

.ai-dashboard {
   background: white;
   border: 1px solid #e2e8f0;
   border-radius: 16px;
   padding: 24px;
   width: 100%;
   max-width: 400px;
   box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.ai-dashboard .dashboard-header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 24px;
}

.ai-dashboard h4 {
   font-weight: 600;
   color: #1e293b;
   margin: 0;
}

.analysis-metrics {
   margin-bottom: 24px;
}

.metric-row {
   display: flex;
   align-items: center;
   gap: 12px;
   margin-bottom: 16px;
   font-size: 0.875rem;
}

.metric-row span:first-child {
   min-width: 80px;
   color: #64748b;
   font-weight: 500;
}

.metric-row span:last-child {
   min-width: 60px;
   text-align: right;
   font-weight: 600;
   color: #1e293b;
}

.progress-bar {
   flex: 1;
   height: 8px;
   background: #e2e8f0;
   border-radius: 4px;
   overflow: hidden;
}

.progress-fill {
   height: 100%;
   background: linear-gradient(135deg, #2563eb, #1d4ed8);
   border-radius: 4px;
   transition: width 0.3s ease;
}

.progress-fill.risk {
   background: linear-gradient(135deg, #059669, #047857);
}

.ai-recommendations h5 {
   font-weight: 600;
   color: #1e293b;
   margin-bottom: 16px;
}

.recommendation {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 12px 0;
   border-bottom: 1px solid #f1f5f9;
   font-size: 0.875rem;
}

.recommendation:last-child {
   border-bottom: none;
}

.asset {
   font-weight: 600;
   color: #1e293b;
}

.action {
   padding: 4px 8px;
   border-radius: 4px;
   font-weight: 600;
   font-size: 0.75rem;
}

.action.buy {
   background: #dcfce7;
   color: #166534;
}

.action.hold {
   background: #fef3c7;
   color: #92400e;
}

.action.sell {
   background: #fee2e2;
   color: #991b1b;
}

.confidence {
   color: #64748b;
   font-weight: 500;
}

/* Strategies Section */
.strategies {
   padding: 80px 0;
   background: white;
}

.strategies h2 {
   text-align: center;
   font-size: 2.5rem;
   font-weight: 700;
   margin-bottom: 60px;
   color: #1e293b;
}

.strategies-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 40px;
}

.strategy-card {
   background: white;
   border: 1px solid #e2e8f0;
   border-radius: 16px;
   padding: 32px;
   transition: all 0.3s ease;
}

.strategy-card:hover {
   transform: translateY(-8px);
   box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.strategy-icon {
   width: 60px;
   height: 60px;
   background: linear-gradient(135deg, #2563eb, #1d4ed8);
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 20px;
}

.strategy-icon i {
   font-size: 24px;
   color: white;
}

.strategy-card h3 {
   font-size: 1.5rem;
   font-weight: 600;
   margin-bottom: 16px;
   color: #1e293b;
}

.strategy-card p {
   color: #64748b;
   line-height: 1.6;
   margin-bottom: 24px;
}

.strategy-stats {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 16px;
}

.strategy-stats .stat {
   display: flex;
   flex-direction: column;
}

.strategy-stats .stat-label {
   font-size: 0.75rem;
   color: #64748b;
   margin-bottom: 4px;
}

.strategy-stats .stat-value {
   font-weight: 600;
   color: #1e293b;
}

/* Security Section */
.security {
   padding: 80px 0;
   background: #f8fafc;
}

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

.security-text h2 {
   font-size: 2.5rem;
   font-weight: 700;
   margin-bottom: 20px;
   color: #1e293b;
}

.security-text p {
   font-size: 1.125rem;
   color: #64748b;
   margin-bottom: 40px;
   line-height: 1.6;
}

.security-features {
   display: flex;
   flex-direction: column;
   gap: 24px;
}

.security-feature {
   display: flex;
   gap: 16px;
   align-items: flex-start;
}

.security-feature i {
   width: 48px;
   height: 48px;
   background: linear-gradient(135deg, #2563eb, #1d4ed8);
   border-radius: 8px;
   display: flex;
   align-items: center;
   justify-content: center;
   color: white;
   font-size: 20px;
   flex-shrink: 0;
}

.security-feature div h4 {
   font-size: 1.125rem;
   font-weight: 600;
   margin-bottom: 8px;
   color: #1e293b;
}

.security-feature div p {
   color: #64748b;
   line-height: 1.6;
   margin: 0;
}

.security-visual {
   display: flex;
   justify-content: center;
   align-items: center;
}

.security-shield {
   position: relative;
   width: 200px;
   height: 200px;
   display: flex;
   align-items: center;
   justify-content: center;
}

.security-shield i {
   font-size: 80px;
   color: #2563eb;
   z-index: 2;
}

.security-layers {
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
}

.layer {
   position: absolute;
   border: 2px solid #2563eb;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 0.75rem;
   font-weight: 600;
   color: #2563eb;
   background: rgba(37, 99, 235, 0.05);
}

.layer:nth-child(1) {
   width: 100%;
   height: 100%;
   animation: pulse 3s infinite;
}

.layer:nth-child(2) {
   width: 80%;
   height: 80%;
   top: 10%;
   left: 10%;
   animation: pulse 3s infinite 0.5s;
}

.layer:nth-child(3) {
   width: 60%;
   height: 60%;
   top: 20%;
   left: 20%;
   animation: pulse 3s infinite 1s;
}

.layer:nth-child(4) {
   width: 40%;
   height: 40%;
   top: 30%;
   left: 30%;
   animation: pulse 3s infinite 1.5s;
}

@keyframes pulse {

   0%,
   100% {
      opacity: 1;
      transform: scale(1);
   }

   50% {
      opacity: 0.5;
      transform: scale(1.05);
   }
}

/* FAQ Page Styles */
.faq-categories {
   padding: 80px 0;
   background: white;
}

.category-tabs {
   display: flex;
   justify-content: center;
   gap: 8px;
   margin-bottom: 60px;
   flex-wrap: wrap;
}

.tab-button {
   background: transparent;
   border: 2px solid #e2e8f0;
   color: #64748b;
   padding: 12px 24px;
   border-radius: 25px;
   font-weight: 600;
   cursor: pointer;
   transition: all 0.3s ease;
}

.tab-button.active,
.tab-button:hover {
   background: #2563eb;
   border-color: #2563eb;
   color: white;
}

.faq-section {
   display: none;
}

.faq-section.active {
   display: block;
}

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

.faq-item {
   background: white;
   border: 1px solid #e2e8f0;
   border-radius: 12px;
   overflow: hidden;
   transition: all 0.3s ease;
}

.faq-item:hover {
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-question {
   padding: 24px;
   cursor: pointer;
   display: flex;
   justify-content: space-between;
   align-items: center;
   background: white;
   transition: background-color 0.3s ease;
}

.faq-question:hover {
   background: #f8fafc;
}

.faq-question h3 {
   font-size: 1.125rem;
   font-weight: 600;
   color: #1e293b;
   margin: 0;
}

.faq-question i {
   color: #64748b;
   transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
   transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
   padding: 0 24px 24px;
   max-height: 500px;
}

.faq-answer p {
   color: #64748b;
   line-height: 1.6;
   margin: 0;
}

.faq-cta {
   padding: 80px 0;
   background: #f8fafc;
   text-align: center;
}

.faq-cta .cta-content h2 {
   font-size: 2.5rem;
   font-weight: 700;
   margin-bottom: 20px;
   color: #1e293b;
}

.faq-cta .cta-content p {
   font-size: 1.125rem;
   color: #64748b;
   margin-bottom: 40px;
}

.faq-cta .cta-buttons {
   display: flex;
   gap: 20px;
   justify-content: center;
}

/* Contact Page Styles */
.contact-methods {
   padding: 80px 0;
   background: white;
}

.methods-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 30px;
}

.method-card {
   background: white;
   border: 1px solid #e2e8f0;
   border-radius: 16px;
   padding: 32px;
   text-align: center;
   transition: all 0.3s ease;
}

.method-card:hover {
   transform: translateY(-8px);
   box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.method-icon {
   width: 60px;
   height: 60px;
   background: linear-gradient(135deg, #2563eb, #1d4ed8);
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto 20px;
}

.method-icon i {
   font-size: 24px;
   color: white;
}

.method-card h3 {
   font-size: 1.25rem;
   font-weight: 600;
   margin-bottom: 12px;
   color: #1e293b;
}

.method-card p {
   color: #64748b;
   margin-bottom: 16px;
   line-height: 1.6;
}

.method-detail {
   display: block;
   color: #2563eb;
   font-weight: 600;
   margin-bottom: 20px;
}

.method-button {
   background: linear-gradient(135deg, #2563eb, #1d4ed8);
   color: white;
   border: none;
   padding: 12px 24px;
   border-radius: 8px;
   font-weight: 600;
   cursor: pointer;
   transition: all 0.3s ease;
   text-decoration: none;
   display: inline-block;
}

.method-button:hover {
   transform: translateY(-2px);
   box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* Contact Form */
.contact-form-section {
   padding: 80px 0;
   background: #f8fafc;
}

.form-container {
   max-width: 800px;
   margin: 0 auto;
   background: white;
   border-radius: 16px;
   padding: 48px;
   box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.form-header h2 {
   font-size: 2rem;
   font-weight: 700;
   margin-bottom: 12px;
   color: #1e293b;
}

.form-header p {
   color: #64748b;
   font-size: 1.125rem;
}

.contact-form {
   display: flex;
   flex-direction: column;
   gap: 24px;
}

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

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

.form-group label {
   font-weight: 600;
   color: #1e293b;
   margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
   padding: 14px 16px;
   border: 2px solid #e2e8f0;
   border-radius: 8px;
   font-size: 16px;
   transition: border-color 0.3s ease;
   font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;
   border-color: #2563eb;
}

.form-group textarea {
   resize: vertical;
   min-height: 120px;
}

.checkbox-group {
   flex-direction: row;
   align-items: flex-start;
   gap: 12px;
}

.checkbox-label {
   display: flex;
   align-items: flex-start;
   gap: 12px;
   cursor: pointer;
   line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
   display: none;
}

.checkmark {
   width: 20px;
   height: 20px;
   border: 2px solid #e2e8f0;
   border-radius: 4px;
   position: relative;
   flex-shrink: 0;
   transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked+.checkmark {
   background: #2563eb;
   border-color: #2563eb;
}

.checkbox-label input[type="checkbox"]:checked+.checkmark::after {
   content: '✓';
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   color: white;
   font-size: 12px;
   font-weight: bold;
}

.checkbox-label a {
   color: #2563eb;
   text-decoration: none;
}

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

.submit-button {
   background: linear-gradient(135deg, #2563eb, #1d4ed8);
   color: white;
   border: none;
   padding: 16px 32px;
   border-radius: 8px;
   font-weight: 600;
   font-size: 16px;
   cursor: pointer;
   transition: all 0.3s ease;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   margin-top: 16px;
}

.submit-button:hover {
   transform: translateY(-2px);
   box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

/* Office Locations */
.office-locations {
   padding: 80px 0;
   background: white;
}

.office-locations h2 {
   text-align: center;
   font-size: 2.5rem;
   font-weight: 700;
   margin-bottom: 60px;
   color: #1e293b;
}

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

.location-card {
   background: white;
   border: 1px solid #e2e8f0;
   border-radius: 16px;
   padding: 32px;
   transition: all 0.3s ease;
}

.location-card:hover {
   transform: translateY(-8px);
   box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

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

.location-header h3 {
   font-size: 1.5rem;
   font-weight: 600;
   color: #1e293b;
}

.location-type {
   background: #e0f2fe;
   color: #0369a1;
   padding: 4px 12px;
   border-radius: 12px;
   font-size: 0.75rem;
   font-weight: 600;
}

.location-details {
   display: flex;
   flex-direction: column;
   gap: 16px;
}

.location-item {
   display: flex;
   align-items: flex-start;
   gap: 12px;
}

.location-item i {
   color: #2563eb;
   margin-top: 2px;
   flex-shrink: 0;
}

.location-item span {
   color: #64748b;
   line-height: 1.5;
}

/* Support Hours */
.support-hours {
   padding: 80px 0;
   background: #f8fafc;
}

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

.support-text h2 {
   font-size: 2.5rem;
   font-weight: 700;
   margin-bottom: 20px;
   color: #1e293b;
}

.support-text p {
   font-size: 1.125rem;
   color: #64748b;
   margin-bottom: 40px;
   line-height: 1.6;
}

.support-features {
   display: flex;
   flex-direction: column;
   gap: 24px;
}

.support-feature {
   display: flex;
   gap: 16px;
   align-items: flex-start;
}

.support-feature i {
   width: 48px;
   height: 48px;
   background: linear-gradient(135deg, #2563eb, #1d4ed8);
   border-radius: 8px;
   display: flex;
   align-items: center;
   justify-content: center;
   color: white;
   font-size: 20px;
   flex-shrink: 0;
}

.support-feature div h4 {
   font-size: 1.125rem;
   font-weight: 600;
   margin-bottom: 8px;
   color: #1e293b;
}

.support-feature div p {
   color: #64748b;
   line-height: 1.6;
   margin: 0;
}

.support-visual {
   display: flex;
   justify-content: center;
}

.support-stats {
   display: grid;
   grid-template-columns: 1fr;
   gap: 32px;
}

.stat-item {
   text-align: center;
   padding: 32px;
   background: white;
   border: 1px solid #e2e8f0;
   border-radius: 16px;
   transition: all 0.3s ease;
}

.stat-item:hover {
   transform: translateY(-4px);
   box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stat-item .stat-number {
   display: block;
   font-size: 2.5rem;
   font-weight: 700;
   color: #2563eb;
   margin-bottom: 8px;
}

.stat-item .stat-label {
   color: #64748b;
   font-weight: 500;
}

/* Careers Page Styles */
.careers-hero {
   padding: 120px 0 80px;
   background: linear-gradient(135deg, #1e293b, #475569);
   color: white;
   text-align: center;
}

.careers-hero h1 {
   font-size: 3.5rem;
   font-weight: 700;
   margin-bottom: 24px;
}

.careers-hero p {
   font-size: 1.25rem;
   margin-bottom: 48px;
   opacity: 0.9;
   max-width: 800px;
   margin-left: auto;
   margin-right: auto;
}

.careers-hero .hero-stats {
   display: flex;
   justify-content: center;
   gap: 60px;
}

.careers-hero .stat {
   display: flex;
   flex-direction: column;
}

.careers-hero .stat-number {
   font-size: 2.5rem;
   font-weight: 700;
   color: #60a5fa;
   margin-bottom: 8px;
}

.careers-hero .stat-label {
   color: rgba(255, 255, 255, 0.8);
   font-weight: 500;
}

/* Why Work Here */
.why-work-here {
   padding: 80px 0;
   background: white;
}

.why-work-here h2 {
   text-align: center;
   font-size: 2.5rem;
   font-weight: 700;
   margin-bottom: 60px;
   color: #1e293b;
}

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

.benefit-card {
   background: white;
   border: 1px solid #e2e8f0;
   border-radius: 16px;
   padding: 32px;
   transition: all 0.3s ease;
}

.benefit-card:hover {
   transform: translateY(-8px);
   box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
   width: 60px;
   height: 60px;
   background: linear-gradient(135deg, #2563eb, #1d4ed8);
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 20px;
}

.benefit-icon i {
   font-size: 24px;
   color: white;
}

.benefit-card h3 {
   font-size: 1.25rem;
   font-weight: 600;
   margin-bottom: 12px;
   color: #1e293b;
}

.benefit-card p {
   color: #64748b;
   line-height: 1.6;
}

/* Open Positions */
.open-positions {
   padding: 80px 0;
   background: #f8fafc;
}

.open-positions h2 {
   text-align: center;
   font-size: 2.5rem;
   font-weight: 700;
   margin-bottom: 40px;
   color: #1e293b;
}

.positions-filter {
   display: flex;
   justify-content: center;
   gap: 12px;
   margin-bottom: 60px;
   flex-wrap: wrap;
}

.filter-btn {
   background: transparent;
   border: 2px solid #e2e8f0;
   color: #64748b;
   padding: 12px 24px;
   border-radius: 25px;
   font-weight: 600;
   cursor: pointer;
   transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
   background: #2563eb;
   border-color: #2563eb;
   color: white;
}

.positions-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 30px;
}

.position-card {
   background: white;
   border: 1px solid #e2e8f0;
   border-radius: 16px;
   padding: 32px;
   transition: all 0.3s ease;
}

.position-card:hover {
   transform: translateY(-8px);
   box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.position-header {
   margin-bottom: 16px;
}

.position-header h3 {
   font-size: 1.25rem;
   font-weight: 600;
   margin-bottom: 12px;
   color: #1e293b;
}

.position-meta {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
}

.position-meta span {
   background: #f1f5f9;
   color: #475569;
   padding: 4px 12px;
   border-radius: 12px;
   font-size: 0.75rem;
   font-weight: 500;
}

.department {
   background: #e0f2fe !important;
   color: #0369a1 !important;
}

.position-card p {
   color: #64748b;
   line-height: 1.6;
   margin-bottom: 20px;
}

.position-skills {
   display: flex;
   gap: 8px;
   flex-wrap: wrap;
   margin-bottom: 24px;
}

.position-skills span {
   background: #f1f5f9;
   color: #475569;
   padding: 6px 12px;
   border-radius: 16px;
   font-size: 0.75rem;
   font-weight: 500;
}

.apply-btn {
   background: linear-gradient(135deg, #2563eb, #1d4ed8);
   color: white;
   border: none;
   padding: 12px 24px;
   border-radius: 8px;
   font-weight: 600;
   cursor: pointer;
   transition: all 0.3s ease;
   width: 100%;
}

.apply-btn:hover {
   transform: translateY(-2px);
   box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* Company Culture */
.company-culture {
   padding: 80px 0;
   background: white;
}

.company-culture h2 {
   text-align: center;
   font-size: 2.5rem;
   font-weight: 700;
   margin-bottom: 60px;
   color: #1e293b;
}

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

.culture-value {
   margin-bottom: 32px;
}

.culture-value h3 {
   font-size: 1.25rem;
   font-weight: 600;
   margin-bottom: 12px;
   color: #1e293b;
}

.culture-value p {
   color: #64748b;
   line-height: 1.6;
}

.culture-stats {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 24px;
}

.culture-stat {
   text-align: center;
   padding: 24px;
   background: white;
   border: 1px solid #e2e8f0;
   border-radius: 12px;
   transition: all 0.3s ease;
}

.culture-stat:hover {
   transform: translateY(-4px);
   box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.culture-stat .stat-number {
   display: block;
   font-size: 2rem;
   font-weight: 700;
   color: #2563eb;
   margin-bottom: 8px;
}

.culture-stat .stat-label {
   color: #64748b;
   font-weight: 500;
   font-size: 0.875rem;
}

/* Benefits */
.benefits {
   padding: 80px 0;
   background: #f8fafc;
}

.benefits h2 {
   text-align: center;
   font-size: 2.5rem;
   font-weight: 700;
   margin-bottom: 60px;
   color: #1e293b;
}

.benefits-categories {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 40px;
}

.benefit-category {
   background: white;
   border: 1px solid #e2e8f0;
   border-radius: 16px;
   padding: 32px;
   transition: all 0.3s ease;
}

.benefit-category:hover {
   transform: translateY(-8px);
   box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.benefit-category h3 {
   font-size: 1.25rem;
   font-weight: 600;
   margin-bottom: 20px;
   color: #1e293b;
}

.benefit-category ul {
   list-style: none;
   padding: 0;
}

.benefit-category ul li {
   display: flex;
   align-items: flex-start;
   gap: 12px;
   margin-bottom: 12px;
   color: #64748b;
   line-height: 1.5;
}

.benefit-category ul li i {
   color: #059669;
   margin-top: 2px;
   flex-shrink: 0;
}

/* Application Process */
.application-process {
   padding: 80px 0;
   background: white;
}

.application-process h2 {
   text-align: center;
   font-size: 2.5rem;
   font-weight: 700;
   margin-bottom: 60px;
   color: #1e293b;
}

.process-steps {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 40px;
   max-width: 1000px;
   margin: 0 auto;
}

.process-step {
   text-align: center;
   position: relative;
}

.process-step .step-number {
   width: 60px;
   height: 60px;
   background: linear-gradient(135deg, #2563eb, #1d4ed8);
   color: white;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: 700;
   font-size: 1.5rem;
   margin: 0 auto 20px;
}

.process-step .step-content h3 {
   font-size: 1.125rem;
   font-weight: 600;
   margin-bottom: 12px;
   color: #1e293b;
}

.process-step .step-content p {
   color: #64748b;
   line-height: 1.6;
}

/* Careers CTA */
.careers-cta {
   padding: 80px 0;
   background: linear-gradient(135deg, #1e293b, #475569);
   color: white;
   text-align: center;
}

.careers-cta .cta-content h2 {
   font-size: 2.5rem;
   font-weight: 700;
   margin-bottom: 20px;
}

.careers-cta .cta-content p {
   font-size: 1.25rem;
   margin-bottom: 40px;
   opacity: 0.9;
}

.careers-cta .cta-buttons {
   display: flex;
   gap: 20px;
   justify-content: center;
}

/* Legal Pages Styles */
.policy-meta {
   display: flex;
   gap: 30px;
   justify-content: center;
   margin-top: 20px;
   font-size: 0.875rem;
   color: #64748b;
}

.policy-meta span {
   display: flex;
   align-items: center;
   gap: 8px;
}

.legal-content {
   padding: 80px 0;
   background: white;
}

.content-wrapper {
   display: grid;
   grid-template-columns: 300px 1fr;
   gap: 60px;
   max-width: 1200px;
   margin: 0 auto;
}

.table-of-contents {
   position: sticky;
   top: 100px;
   height: fit-content;
   background: #f8fafc;
   border: 1px solid #e2e8f0;
   border-radius: 12px;
   padding: 24px;
}

.table-of-contents h3 {
   font-size: 1.125rem;
   font-weight: 600;
   margin-bottom: 16px;
   color: #1e293b;
}

.table-of-contents ul {
   list-style: none;
   padding: 0;
}

.table-of-contents ul li {
   margin-bottom: 8px;
}

.table-of-contents ul li a {
   color: #64748b;
   text-decoration: none;
   font-size: 0.875rem;
   line-height: 1.5;
   transition: color 0.3s ease;
   display: block;
   padding: 4px 0;
}

.table-of-contents ul li a:hover {
   color: #2563eb;
}

.legal-text {
   max-width: none;
}

.legal-text section {
   margin-bottom: 48px;
   scroll-margin-top: 100px;
}

.legal-text h2 {
   font-size: 1.75rem;
   font-weight: 700;
   margin-bottom: 20px;
   color: #1e293b;
   border-bottom: 2px solid #e2e8f0;
   padding-bottom: 12px;
}

.legal-text h3 {
   font-size: 1.25rem;
   font-weight: 600;
   margin: 24px 0 16px;
   color: #1e293b;
}

.legal-text h4 {
   font-size: 1.125rem;
   font-weight: 600;
   margin: 20px 0 12px;
   color: #1e293b;
}

.legal-text p {
   color: #64748b;
   line-height: 1.7;
   margin-bottom: 16px;
}

.legal-text ul {
   color: #64748b;
   line-height: 1.7;
   margin-bottom: 16px;
   padding-left: 20px;
}

.legal-text ul li {
   margin-bottom: 8px;
}

.legal-text a {
   color: #2563eb;
   text-decoration: none;
}

.legal-text a:hover {
   text-decoration: underline;
}

.legal-text strong {
   color: #1e293b;
   font-weight: 600;
}

/* Risk Warning Box */
.risk-warning {
   background: linear-gradient(135deg, #fef3c7, #fde68a);
   border: 1px solid #f59e0b;
   border-radius: 12px;
   padding: 24px;
   margin: 24px 0;
}

.risk-warning h3 {
   color: #92400e;
   margin-bottom: 12px;
   display: flex;
   align-items: center;
   gap: 8px;
}

.risk-warning h3 i {
   color: #f59e0b;
}

.risk-warning p {
   color: #92400e;
   margin: 0;
   font-weight: 500;
}

/* Contact Info Grid */
.contact-info {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 24px;
   margin-top: 24px;
}

.contact-method {
   background: #f8fafc;
   border: 1px solid #e2e8f0;
   border-radius: 8px;
   padding: 20px;
}

.contact-method h4 {
   font-size: 1rem;
   font-weight: 600;
   margin-bottom: 8px;
   color: #1e293b;
}

.contact-method p {
   color: #64748b;
   margin: 0;
   line-height: 1.5;
}

.contact-method a {
   color: #2563eb;
   text-decoration: none;
}

.contact-method a:hover {
   text-decoration: underline;
}

/* Cookie Policy Specific Styles */
.cookie-purposes {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 24px;
   margin: 32px 0;
}

.purpose-card {
   background: white;
   border: 1px solid #e2e8f0;
   border-radius: 12px;
   padding: 24px;
   text-align: center;
   transition: all 0.3s ease;
}

.purpose-card:hover {
   transform: translateY(-4px);
   box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.purpose-icon {
   width: 48px;
   height: 48px;
   background: linear-gradient(135deg, #2563eb, #1d4ed8);
   border-radius: 8px;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto 16px;
}

.purpose-icon i {
   font-size: 20px;
   color: white;
}

.purpose-card h3 {
   font-size: 1.125rem;
   font-weight: 600;
   margin-bottom: 8px;
   color: #1e293b;
}

.purpose-card p {
   color: #64748b;
   font-size: 0.875rem;
   margin: 0;
}

/* Cookie Table */
.cookie-table {
   margin: 24px 0;
   overflow-x: auto;
}

.cookie-table table {
   width: 100%;
   border-collapse: collapse;
   background: white;
   border: 1px solid #e2e8f0;
   border-radius: 8px;
   overflow: hidden;
}

.cookie-table th {
   background: #f8fafc;
   color: #1e293b;
   font-weight: 600;
   padding: 16px;
   text-align: left;
   border-bottom: 1px solid #e2e8f0;
}

.cookie-table td {
   padding: 16px;
   border-bottom: 1px solid #f1f5f9;
   color: #64748b;
}

.cookie-table tr:last-child td {
   border-bottom: none;
}

.cookie-table tr:hover {
   background: #f8fafc;
}

/* Cookie Controls */
.cookie-controls {
   display: flex;
   gap: 16px;
   margin: 32px 0;
   flex-wrap: wrap;
}

.cookie-btn {
   padding: 12px 24px;
   border-radius: 8px;
   font-weight: 600;
   cursor: pointer;
   transition: all 0.3s ease;
   display: flex;
   align-items: center;
   gap: 8px;
   text-decoration: none;
}

.cookie-btn.primary {
   background: linear-gradient(135deg, #2563eb, #1d4ed8);
   color: white;
   border: none;
}

.cookie-btn.primary:hover {
   transform: translateY(-2px);
   box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.cookie-btn.secondary {
   background: #f1f5f9;
   color: #64748b;
   border: 1px solid #e2e8f0;
}

.cookie-btn.secondary:hover {
   background: #e2e8f0;
   color: #475569;
}

.cookie-btn.outline {
   background: transparent;
   color: #2563eb;
   border: 2px solid #2563eb;
}

.cookie-btn.outline:hover {
   background: #2563eb;
   color: white;
}

/* Browser Instructions */
.browser-instructions {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 20px;
   margin: 24px 0;
}

.browser-card {
   background: #f8fafc;
   border: 1px solid #e2e8f0;
   border-radius: 8px;
   padding: 20px;
}

.browser-card h4 {
   display: flex;
   align-items: center;
   gap: 8px;
   font-size: 1rem;
   font-weight: 600;
   margin-bottom: 8px;
   color: #1e293b;
}

.browser-card h4 i {
   font-size: 18px;
   color: #64748b;
}

.browser-card p {
   color: #64748b;
   font-size: 0.875rem;
   margin: 0;
}

/* Additional Resources */
.additional-resources {
   background: #f8fafc;
   border: 1px solid #e2e8f0;
   border-radius: 12px;
   padding: 24px;
   margin-top: 32px;
}

.additional-resources h3 {
   font-size: 1.125rem;
   font-weight: 600;
   margin-bottom: 16px;
   color: #1e293b;
}

.additional-resources ul {
   list-style: none;
   padding: 0;
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 12px;
}

.additional-resources ul li a {
   color: #2563eb;
   text-decoration: none;
   font-weight: 500;
   display: flex;
   align-items: center;
   gap: 8px;
   padding: 8px 0;
   transition: color 0.3s ease;
}

.additional-resources ul li a:hover {
   color: #1d4ed8;
   text-decoration: underline;
}

.additional-resources ul li a::before {
   content: '→';
   color: #64748b;
}

/* Responsive Design */
@media (max-width: 768px) {
   .hamburger {
      display: flex;
   }

   .nav-menu {
      position: fixed;
      top: 70px;
      left: -100%;
      width: 100%;
      height: calc(100vh - 70px);
      background: white;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      padding-top: 50px;
      transition: left 0.3s ease;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
   }

   .nav-menu.active {
      left: 0;
   }

   .nav-link {
      font-size: 1.125rem;
      padding: 15px 0;
   }

   .cta-button {
      margin-top: 20px;
   }

   .hero-content {
      grid-template-columns: 1fr;
      gap: 40px;
      text-align: center;
   }

   .hero-text h1 {
      font-size: 2.5rem;
   }

   .hero-buttons {
      flex-direction: column;
      align-items: center;
   }

   .hero-stats {
      justify-content: center;
      gap: 30px;
   }

   .page-hero h1 {
      font-size: 2.5rem;
   }

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

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

   .performance-content {
      grid-template-columns: 1fr;
      gap: 40px;
   }

   .cta-buttons {
      flex-direction: column;
      align-items: center;
   }

   .footer-content {
      grid-template-columns: 1fr;
      gap: 30px;
      text-align: center;
   }

   .footer-bottom {
      flex-direction: column;
      gap: 20px;
      text-align: center;
   }

   .mission-content {
      grid-template-columns: 1fr;
      gap: 40px;
   }

   .timeline::before {
      left: 20px;
   }

   .timeline-item {
      flex-direction: column;
      align-items: flex-start;
      padding-left: 60px;
   }

   .timeline-item:nth-child(even) {
      flex-direction: column;
   }

   .timeline-year {
      position: absolute;
      left: -20px;
      top: 0;
   }

   .timeline-content {
      margin: 0;
      margin-top: 20px;
   }

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

   .tech-content {
      grid-template-columns: 1fr;
      gap: 40px;
   }

   .security-content {
      grid-template-columns: 1fr;
      gap: 40px;
   }

   .category-tabs {
      flex-direction: column;
      align-items: center;
   }

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

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

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

   .support-content {
      grid-template-columns: 1fr;
      gap: 40px;
   }

   .careers-hero h1 {
      font-size: 2.5rem;
   }

   .careers-hero .hero-stats {
      flex-direction: column;
      gap: 30px;
   }

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

   .positions-filter {
      flex-direction: column;
      align-items: center;
   }

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

   .culture-content {
      grid-template-columns: 1fr;
      gap: 40px;
   }

   .culture-stats {
      grid-template-columns: 1fr;
   }

   .benefits-categories {
      grid-template-columns: 1fr;
   }

   .process-steps {
      grid-template-columns: 1fr;
   }

   .policy-meta {
      flex-direction: column;
      gap: 15px;
   }

   .content-wrapper {
      grid-template-columns: 1fr;
      gap: 40px;
   }

   .table-of-contents {
      position: static;
      order: 2;
   }

   .legal-text {
      order: 1;
   }

   .cookie-purposes {
      grid-template-columns: 1fr;
   }

   .cookie-controls {
      flex-direction: column;
      align-items: stretch;
   }

   .cookie-controls .cookie-btn {
      justify-content: center;
   }

   .browser-instructions {
      grid-template-columns: 1fr;
   }

   .contact-info {
      grid-template-columns: 1fr;
   }

   .cookie-table {
      font-size: 0.875rem;
   }

   .cookie-table th,
   .cookie-table td {
      padding: 12px 8px;
   }
}

@media (max-width: 480px) {
   .container {
      padding: 0 15px;
   }

   .hero-text h1 {
      font-size: 2rem;
   }

   .page-hero h1 {
      font-size: 2rem;
   }

   .hero-stats {
      flex-direction: column;
      gap: 20px;
   }

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

   .markets h2,
   .features h2,
   .performance-text h2,
   .cta-content h2 {
      font-size: 2rem;
   }

   .market-card,
   .feature-card,
   .benefit-card {
      padding: 24px;
   }

   .trading-dashboard {
      padding: 16px;
   }

   .form-container {
      padding: 32px 24px;
   }

   .legal-text h2 {
      font-size: 1.5rem;
   }

   .legal-text h3 {
      font-size: 1.125rem;
   }

   .table-of-contents {
      padding: 16px;
   }

   .purpose-card {
      padding: 16px;
   }

   .browser-card {
      padding: 16px;
   }

   .contact-method {
      padding: 16px;
   }
}