/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Light Mode Colors - Inspired by CoSpaceXHub */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --accent-primary: #6b46c1;
  --accent-secondary: #8b5cf6;
  --accent-light: #ede9fe;
  --border-color: #e2e8f0;
  --card-bg: #ffffff;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

  /* Animation Variables */
  --animation-speed: 0.3s;
  --bounce-duration: 2s;
}

.dark-mode {
  /* Dark Mode Colors */
  --bg-primary: #0f172a;
  --bg-secondary: #1e293b;
  --bg-tertiary: #334155;
  --text-primary: #f1f5f9;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --accent-primary: #8b5cf6;
  --accent-secondary: #a855f7;
  --accent-light: #2d1b69;
  --border-color: #334155;
  --card-bg: #1e293b;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: all var(--animation-speed) ease;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  transition: opacity 0.5s ease;
}

.loader {
  display: flex;
  gap: 8px;
}

.circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-primary);
  animation: bounce 1.4s ease-in-out infinite both;
}

.circle:nth-child(1) {
  animation-delay: -0.32s;
}
.circle:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes bounce {
  0%,
  80%,
  100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: all var(--animation-speed) ease;
}

.dark-mode .header {
  background: rgba(15, 23, 42, 0.95);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-secondary)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

.nav-menu {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all var(--animation-speed) ease;
  position: relative;
}

.nav-link:hover {
  color: var(--accent-primary);
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}
goog-te-gadget .goog-te-combo {
  margin: 0;
}
.language-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-secondary);
  cursor: pointer;
  transition: all var(--animation-speed) ease;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.language-selector:hover {
  background: var(--accent-light);
  color: var(--accent-primary);
}

.language-selector #google_translate_element {
  width: 100%;
}

.goog-te-gadget {
  font-size: 0 !important; /* hide default Google text */
}

.goog-te-gadget .goog-te-combo {
  font-size: 14px !important; /* show only the dropdown */
  width: 100% !important;
  padding: 5px;
  box-sizing: border-box;
}

.goog-te-banner-frame.skiptranslate,
body > .skiptranslate {
  display: none !important;
}

.flag-icon {
  width: 16px;
  height: 12px;
  border-radius: 2px;
}

.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--animation-speed) ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle:hover {
  background: var(--accent-light);
  color: var(--accent-primary);
  border-color: var(--accent-primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--animation-speed) ease;
  position: relative;
  overflow: hidden;
}

.btn-large {
  padding: 16px 24px;
  font-size: 16px;
  border-radius: 16px;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-secondary)
  );
  color: white;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-primary-header {
  background: var(--accent-primary);
  color: white;
  border: 2px solid var(--accent-primary);
}

.btn-primary-header:hover {
  background: var(--accent-secondary);
  border-color: var(--accent-secondary);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--border-color);
  color: var(--text-primary);
}

.btn-outline:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  background: var(--accent-light);
}

.btn-outline-header {
  background: transparent;
  border: 2px solid var(--border-color);
  color: var(--text-secondary);
}

.btn-outline-header:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--animation-speed) ease;
  border-radius: 1px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid var(--border-color);
}

.mobile-nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  padding: 12px 0;
  font-weight: 500;
  transition: all var(--animation-speed) ease;
}

.mobile-nav-link:hover {
  color: var(--accent-primary);
}

.mobile-nav-buttons {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(
    135deg,
    var(--bg-primary) 0%,
    var(--bg-secondary) 100%
  );
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--accent-light);
  color: var(--accent-primary);
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.gradient-text {
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-secondary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-size: 24px;
  font-weight: 800;
  color: var(--accent-primary);
  display: block;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 48px;
}

.dashboard-preview {
  width: 100%;
  max-width: 500px;
  background: var(--card-bg);
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
}

.dashboard-controls {
  display: flex;
  gap: 8px;
}

.control-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.control-dot.red {
  background: #ef4444;
}
.control-dot.yellow {
  background: #f59e0b;
}
.control-dot.green {
  background: #10b981;
}

.dashboard-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.dashboard-content {
  padding: 24px;
}

.portfolio-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.performance-chart {
  position: relative;
  height: 120px;
  margin-bottom: 20px;
  background: var(--bg-secondary);
  border-radius: 12px;
  overflow: hidden;
}

.chart-line {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--accent-primary),
    var(--accent-secondary)
  );
  border-radius: 1px;
}

.chart-line::before {
  content: "";
  position: absolute;
  top: -40px;
  right: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-secondary)
  );
  border-radius: 50%;
  opacity: 0.1;
}

.chart-points {
  position: absolute;
  bottom: 10px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
}

.point {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-color);
}

.point.active {
  background: var(--accent-primary);
  box-shadow: 0 0 0 4px rgba(107, 70, 193, 0.2);
}

.performance-stats {
  display: flex;
  gap: 24px;
}

.performance-stats .stat .value {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-primary);
  display: block;
}

.performance-stats .stat .label {
  font-size: 12px;
  color: var(--text-muted);
}

/* Trust Indicators */
.trust-indicators {
  padding: 48px 0;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
}

.trust-content {
  text-align: center;
}

.trust-text {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
  font-weight: 500;
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  opacity: 0.7;
  transition: all var(--animation-speed) ease;
}

.trust-logo:hover {
  opacity: 1;
  color: var(--accent-primary);
}

.trust-logo i {
  font-size: 20px;
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--accent-light);
  color: var(--accent-primary);
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-primary);
  line-height: 1.2;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* How It Works */
.how-it-works {
  padding: 100px 0;
  background: var(--bg-primary);
}

.steps-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.steps-timeline {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% - 120px);
  background: var(--border-color);
  z-index: 1;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.step-item:nth-child(even) {
  flex-direction: row-reverse;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-secondary)
  );
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: var(--shadow-lg);
}

.step-content {
  flex: 1;
  max-width: 350px;
}

.step-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-light);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.step-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.step-description {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.step-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

.feature-item i {
  color: var(--accent-primary);
  font-size: 12px;
}

/* Investment Sectors */
.investment-sectors {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.sector-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: all var(--animation-speed) ease;
  position: relative;
}

.sector-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.sector-card.featured {
  border: 2px solid var(--accent-primary);
  background: linear-gradient(135deg, var(--accent-light), var(--card-bg));
}

.sector-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.sector-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-secondary)
  );
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.sector-badge {
  background: var(--accent-primary);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.sector-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.sector-description {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.sector-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.metric {
  text-align: center;
  padding: 16px;
  background: var(--bg-secondary);
  border-radius: 12px;
}

.metric-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-primary);
  display: block;
  margin-bottom: 4px;
}

.metric-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.btn-sector {
  width: 100%;
  justify-content: center;
}

/* Enhanced Sector Cards */
.sector-details {
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  padding: 4px 0;
}

.detail-item i {
  color: var(--accent-primary);
  font-size: 12px;
  width: 16px;
  text-align: center;
}

.sector-actions {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.btn-read-more {
  flex: 1;
  font-size: 13px;
  padding: 10px 16px;
}

.btn-sector {
  flex: 1;
}

.sectors-cta {
  text-align: center;
}

/* Features */
.features {
  padding: 100px 0;
  background: var(--bg-primary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.feature-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: all var(--animation-speed) ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--accent-light);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.feature-description {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.feature-link {
  margin-top: auto;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all var(--animation-speed) ease;
}

.link-arrow:hover {
  gap: 12px;
}

/* CTA */
.cta {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-secondary)
  );
  color: white;
  text-align: center;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.cta .btn-primary {
  background: white;
  color: var(--accent-primary);
}

.cta .btn-outline {
  border-color: white;
  color: white;
}

.cta .btn-outline:hover {
  background: white;
  color: var(--accent-primary);
}

.cta-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  opacity: 0.8;
}

/* Footer */
.footer {
  background: var(--bg-secondary);
  padding: 80px 0 32px;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-primary);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all var(--animation-speed) ease;
}

.social-link:hover {
  background: var(--accent-primary);
  color: white;
}

.footer-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: all var(--animation-speed) ease;
}

.footer-links a:hover {
  color: var(--accent-primary);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 32px;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-badges {
  display: flex;
  gap: 16px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--bg-primary);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}

.badge i {
  color: var(--accent-primary);
}

/* Floating Action Buttons */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.fab-button {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  box-shadow: var(--shadow-lg);
  transition: all var(--animation-speed) ease;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
}

.fab-button.show {
  opacity: 1;
  transform: translateY(0);
}

.fab-button:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: var(--shadow-xl);
}

.whatsapp-btn {
  background: #25d366;
}

.account-btn {
  background: var(--accent-primary);
}

.scroll-top-btn {
  background: var(--text-secondary);
}

.fab-tooltip {
  position: absolute;
  right: 70px;
  background: var(--text-primary);
  color: var(--bg-primary);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--animation-speed) ease;
  pointer-events: none;
}

.fab-button:hover .fab-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Chat Widget */
.chat-widget {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 1000;
}

.chat-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent-primary);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: var(--shadow-lg);
  transition: all var(--animation-speed) ease;
  position: relative;
}

.chat-button:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
}

.chat-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ef4444;
  color: white;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-popup {
  position: absolute;
  bottom: 80px;
  left: 0;
  width: 320px;
  background: var(--card-bg);
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  transition: all var(--animation-speed) ease;
  pointer-events: none;
}

.chat-popup.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid var(--border-color);
}

.chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.chat-info h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.chat-info p {
  font-size: 12px;
  color: var(--accent-primary);
  margin: 0;
}

.chat-close {
  margin-left: auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--animation-speed) ease;
}

.chat-close:hover {
  background: var(--border-color);
}

.chat-body {
  padding: 16px;
  max-height: 200px;
  overflow-y: auto;
}

.chat-message {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.message-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.message-content p {
  background: var(--bg-secondary);
  padding: 12px;
  border-radius: 12px;
  font-size: 14px;
  color: var(--text-primary);
  margin: 0 0 4px 0;
  line-height: 1.4;
}

.message-time {
  font-size: 11px;
  color: var(--text-muted);
}

.chat-footer {
  display: flex;
  gap: 8px;
  padding: 16px;
  border-top: 1px solid var(--border-color);
}

.chat-input {
  flex: 1;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-size: 14px;
  outline: none;
  transition: all var(--animation-speed) ease;
}

.chat-input:focus {
  border-color: var(--accent-primary);
}

.chat-send {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--accent-primary);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--animation-speed) ease;
}

.chat-send:hover {
  background: var(--accent-secondary);
}

/* Animations */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-slide-in {
  animation: slideIn 0.8s ease-out;
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out;
}

.animate-slide-up {
  animation: slideUp 0.8s ease-out;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.animate-on-scroll.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-visual {
    margin-left: 0;
    margin-top: 48px;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-nav.show {
    display: flex;
  }

  .nav-controls {
    gap: 12px;
  }

  .btn-primary-header,
  .btn-outline-header {
    display: none;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .trust-logos {
    gap: 24px;
  }

  .step-item {
    flex-direction: column !important;
    text-align: center;
  }

  .step-item:nth-child(even) {
    flex-direction: column !important;
  }

  .steps-timeline {
    display: none;
  }

  .sectors-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .floating-actions {
    bottom: 16px;
    right: 16px;
  }

  .chat-widget {
    bottom: 16px;
    left: 16px;
  }

  .chat-popup {
    width: 280px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .how-it-works,
  .investment-sectors,
  .features,
  .cta {
    padding: 60px 0;
  }

  .step-content {
    max-width: 100%;
  }

  .sector-card,
  .feature-card {
    padding: 24px;
  }

  .hero-buttons {
    gap: 12px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-primary);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-secondary);
}

/* Print styles */
@media print {
  .header,
  .floating-actions,
  .chat-widget {
    display: none;
  }
}

/* Sector Modal */
.sector-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.sector-modal.show {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background: var(--card-bg);
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow: hidden;
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s ease;
}

.sector-modal.show .modal-content {
  transform: scale(1) translateY(0);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--border-color);
}

.modal-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.modal-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--animation-speed) ease;
}

.modal-close:hover {
  background: var(--border-color);
  color: var(--text-primary);
}

.modal-body {
  padding: 24px;
  max-height: 60vh;
  overflow-y: auto;
}

.modal-footer {
  display: flex;
  gap: 12px;
  padding: 24px;
  border-top: 1px solid var(--border-color);
  justify-content: flex-end;
}

/* Modal Content Styles */
.modal-section {
  margin-bottom: 24px;
}

.modal-section h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-section h4 i {
  color: var(--accent-primary);
}

.modal-section p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
}

.modal-section ul {
  list-style: none;
  padding: 0;
}

.modal-section li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  color: var(--text-secondary);
  font-size: 14px;
}

.modal-section li i {
  color: var(--accent-primary);
  font-size: 12px;
  width: 16px;
}

.risk-level {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 8px;
}

.risk-low {
  background: #dcfce7;
  color: #166534;
}

.risk-medium {
  background: #fef3c7;
  color: #92400e;
}

.risk-high {
  background: #fee2e2;
  color: #991b1b;
}

.dark-mode .risk-low {
  background: #14532d;
  color: #bbf7d0;
}

.dark-mode .risk-medium {
  background: #451a03;
  color: #fde68a;
}

.dark-mode .risk-high {
  background: #450a0a;
  color: #fecaca;
}

.performance-chart-modal {
  background: var(--bg-secondary);
  border-radius: 12px;
  padding: 16px;
  margin: 16px 0;
}

.chart-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.chart-stat {
  text-align: center;
}

.chart-stat .value {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-primary);
  display: block;
}

.chart-stat .label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .sector-actions {
    flex-direction: column;
  }

  .btn-read-more,
  .btn-sector {
    width: 100%;
  }

  .modal-content {
    width: 95%;
    margin: 20px;
  }

  .modal-header,
  .modal-body,
  .modal-footer {
    padding: 16px;
  }

  .modal-footer {
    flex-direction: column;
  }

  .chart-stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .sector-details {
    margin: 12px 0;
  }

  .detail-item {
    font-size: 12px;
  }

  .sector-metrics {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .chart-stats {
    grid-template-columns: 1fr;
  }
}

/* Page Header Styles */
.page-header {
  padding: 120px 0 80px;
  background: linear-gradient(
    135deg,
    var(--bg-primary) 0%,
    var(--bg-secondary) 100%
  );
  border-bottom: 1px solid var(--border-color);
}

.page-header-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--animation-speed) ease;
}

.breadcrumb a:hover {
  color: var(--accent-primary);
}

.breadcrumb i {
  font-size: 12px;
}

.page-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-primary);
  line-height: 1.2;
}

.page-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* About Page Styles */
.company-overview {
  padding: 100px 0;
  background: var(--bg-primary);
}

.overview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.overview-text {
  max-width: 600px;
}

.overview-description {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.overview-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.overview-visual {
  display: flex;
  justify-content: center;
}

.timeline-container {
  position: relative;
  max-width: 400px;
}

.timeline-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  position: relative;
}

.timeline-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 30px;
  top: 60px;
  width: 2px;
  height: 40px;
  background: var(--border-color);
}

.timeline-year {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-secondary)
  );
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.timeline-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.timeline-content p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

/* Mission & Vision */
.mission-vision {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.mission-card,
.vision-card,
.values-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: transform var(--animation-speed) ease;
}

.mission-card:hover,
.vision-card:hover,
.values-card:hover {
  transform: translateY(-4px);
}

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--accent-light);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 24px;
}

.mission-card h3,
.vision-card h3,
.values-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.mission-card p,
.vision-card p,
.values-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Leadership Team */
.leadership-team {
  padding: 100px 0;
  background: var(--bg-primary);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.team-member {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: transform var(--animation-speed) ease;
}

.team-member:hover {
  transform: translateY(-4px);
}

.member-photo {
  margin-bottom: 24px;
}

.photo-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto;
}

.member-info h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.member-title {
  font-size: 14px;
  color: var(--accent-primary);
  font-weight: 600;
  margin-bottom: 16px;
}

.member-bio {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.member-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bg-secondary);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all var(--animation-speed) ease;
}

.member-social a:hover {
  background: var(--accent-primary);
  color: white;
}

/* Awards & Recognition */
.awards-recognition {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.award-item {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}

.award-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--accent-light);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 20px;
}

.award-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.award-item p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

/* Global Presence */
.global-presence {
  padding: 100px 0;
  background: var(--bg-primary);
}

.presence-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.presence-description {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.office-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.office-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--bg-secondary);
  border-radius: 12px;
}

.office-item i {
  color: var(--accent-primary);
  font-size: 16px;
  width: 20px;
}

.office-item h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.office-item p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

.presence-visual {
  display: flex;
  justify-content: center;
}

.world-map {
  width: 100%;
  max-width: 400px;
}

.map-placeholder {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
}

.map-placeholder i {
  font-size: 64px;
  color: var(--accent-primary);
  margin-bottom: 16px;
}

.map-placeholder p {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.map-placeholder small {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Contact Page Styles */
.contact-form-section {
  padding: 100px 0;
  background: var(--bg-primary);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-description {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg-secondary);
  border-radius: 12px;
}

.method-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-light);
  color: var(--accent-primary);
  display: flex;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-light);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.method-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.method-info p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.method-info small {
  font-size: 12px;
  color: var(--text-muted);
}

.emergency-contact {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--accent-light);
  border-radius: 12px;
  border: 1px solid var(--accent-primary);
}

.emergency-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--accent-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.emergency-info h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-primary);
  margin-bottom: 4px;
}

.emergency-info p {
  font-size: 12px;
  color: var(--text-secondary);
  margin: 0;
}

/* Contact Form */
.contact-form {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}

.form-header {
  margin-bottom: 32px;
}

.form-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-header p {
  font-size: 14px;
  color: var(--text-secondary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-size: 14px;
  transition: all var(--animation-speed) ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
  cursor: pointer;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--animation-speed) ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: white;
  font-size: 12px;
}

.checkbox-label a {
  color: var(--accent-primary);
  text-decoration: none;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
}

/* Office Locations */
.office-locations {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.offices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.office-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: transform var(--animation-speed) ease;
}

.office-card:hover {
  transform: translateY(-4px);
}

.office-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.office-header h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

.office-badge {
  background: var(--accent-primary);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.office-details {
  margin-bottom: 24px;
}

.office-address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.office-address i {
  color: var(--accent-primary);
  font-size: 16px;
  margin-top: 2px;
}

.office-address p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.office-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

.contact-item i {
  color: var(--accent-primary);
  width: 16px;
  font-size: 12px;
}

.office-btn {
  width: 100%;
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background: var(--bg-primary);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card-bg);
  border-radius: 12px;
  margin-bottom: 16px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all var(--animation-speed) ease;
}

.faq-item:hover {
  box-shadow: var(--shadow);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  cursor: pointer;
  transition: all var(--animation-speed) ease;
}

.faq-question:hover {
  background: var(--bg-secondary);
}

.faq-question h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.faq-question i {
  color: var(--accent-primary);
  transition: transform var(--animation-speed) ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--animation-speed) ease;
}

.faq-answer p {
  padding: 0 24px 24px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

/* Sectors Page Styles */
.sector-filter {
  padding: 40px 0;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
}

.filter-controls {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.filter-group select {
  padding: 8px 12px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: var(--card-bg);
  color: var(--text-primary);
  font-size: 14px;
  min-width: 160px;
}

.all-sectors {
  padding: 100px 0;
  background: var(--bg-primary);
}

.no-results {
  text-align: center;
  padding: 80px 0;
}

.no-results-content {
  max-width: 400px;
  margin: 0 auto;
}

.no-results i {
  font-size: 64px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.no-results h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.no-results p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

/* Sector Hero */
.sector-hero {
  padding: 120px 0 80px;
  background: linear-gradient(
    135deg,
    var(--bg-primary) 0%,
    var(--bg-secondary) 100%
  );
}

.sector-hero-content {
  max-width: 1200px;
  margin: 0 auto;
}

.sector-hero-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 40px;
}

.sector-badge-large {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: var(--accent-light);
  color: var(--accent-primary);
  border-radius: 24px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
}

.sector-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--text-primary);
  line-height: 1.2;
}

.sector-hero-description {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.sector-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.hero-stat {
  text-align: center;
  padding: 20px;
  background: var(--card-bg);
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.hero-stat .stat-value {
  font-size: 24px;
  font-weight: 800;
  color: var(--accent-primary);
  display: block;
  margin-bottom: 4px;
}

.hero-stat .stat-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.sector-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.sector-hero-visual {
  display: flex;
  justify-content: center;
}

.crypto-dashboard {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  width: 100%;
  max-width: 400px;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.dashboard-header h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--accent-primary);
  font-weight: 600;
}

.status-indicator i {
  font-size: 8px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.crypto-holdings {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.crypto-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  background: var(--bg-secondary);
  border-radius: 8px;
}

.crypto-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.crypto-info i {
  font-size: 20px;
  color: var(--accent-primary);
}

.crypto-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
}

.crypto-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  display: block;
}

.crypto-symbol {
  font-size: 12px;
  color: var(--text-muted);
}

.crypto-value {
  text-align: right;
}

.crypto-value .value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  display: block;
}

.crypto-value .change {
  font-size: 12px;
  font-weight: 600;
}

.crypto-value .change.positive {
  color: #10b981;
}

.crypto-value .change.negative {
  color: #ef4444;
}

.portfolio-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.summary-item {
  text-align: center;
}

.summary-item .label {
  font-size: 12px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 4px;
}

.summary-item .value {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.summary-item .value.positive {
  color: #10b981;
}

/* Investment Strategy */
.investment-strategy {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.strategy-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.strategy-description {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.strategy-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.strategy-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.point-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-light);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.point-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.point-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.strategy-visual {
  display: flex;
  justify-content: center;
}

.allocation-chart {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  width: 100%;
  max-width: 400px;
}

.allocation-chart h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 24px;
  text-align: center;
}

.chart-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.allocation-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.allocation-bar {
  height: 8px;
  background: var(--bg-secondary);
  border-radius: 4px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 1s ease;
}

.allocation-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.allocation-info .crypto-name {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 500;
}

.allocation-info .percentage {
  font-size: 14px;
  color: var(--accent-primary);
  font-weight: 600;
}

/* Performance Metrics */
.performance-metrics {
  padding: 100px 0;
  background: var(--bg-primary);
}

.performance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.performance-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  text-align: center;
}

.performance-header {
  margin-bottom: 24px;
}

.performance-header h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.performance-value {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
}

.performance-value.positive {
  color: #10b981;
}

.performance-value.negative {
  color: #ef4444;
}

.performance-value.neutral {
  color: var(--text-muted);
}

.performance-chart {
  height: 60px;
  background: var(--bg-secondary);
  border-radius: 8px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

.chart-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-secondary)
  );
  border-radius: 4px 4px 0 0;
  opacity: 0.8;
}

.chart-line.ytd {
  height: 50px;
}

.chart-line.one-year {
  height: 35px;
}

.chart-line.three-year {
  height: 45px;
}

.chart-line.drawdown {
  height: 15px;
  background: #ef4444;
}

.performance-note {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

/* Security Features */
.security-features {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.security-feature {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}

.security-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--accent-light);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}

.security-feature h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.security-feature p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Investment Process */
.investment-process {
  padding: 100px 0;
  background: var(--bg-primary);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.process-step {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-secondary)
  );
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.step-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Legal Pages */
.legal-header {
  padding: 120px 0 60px;
  background: linear-gradient(
    135deg,
    var(--bg-primary) 0%,
    var(--bg-secondary) 100%
  );
  border-bottom: 1px solid var(--border-color);
}

.legal-header-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.legal-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-primary);
  line-height: 1.2;
}

.legal-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.legal-meta {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
}

.meta-item i {
  color: var(--accent-primary);
}

.print-btn {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--accent-primary);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--animation-speed) ease;
}

.print-btn:hover {
  background: var(--accent-secondary);
}

.legal-content {
  padding: 80px 0;
  background: var(--bg-primary);
}

.legal-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.legal-sidebar {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.toc-container {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}

.toc-container h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.toc {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toc-link {
  display: block;
  padding: 8px 12px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  border-radius: 8px;
  transition: all var(--animation-speed) ease;
}

.toc-link:hover,
.toc-link.active {
  background: var(--accent-light);
  color: var(--accent-primary);
}

.legal-main {
  max-width: 800px;
}

.legal-section {
  margin-bottom: 48px;
  scroll-margin-top: 120px;
}

.legal-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border-color);
}

.legal-section h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 32px 0 16px;
}

.legal-section h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 24px 0 12px;
}

.legal-section p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.legal-section ul,
.legal-section ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-section li {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 8px;
}

.legal-section strong {
  color: var(--text-primary);
  font-weight: 600;
}

.important-notice,
.security-notice,
.rights-notice,
.response-time,
.risk-warning,
.acknowledgment {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: 12px;
  margin: 24px 0;
  border-left: 4px solid var(--accent-primary);
}

.important-notice {
  background: var(--accent-light);
}

.security-notice {
  background: #dcfce7;
  border-left-color: #10b981;
}

.dark-mode .security-notice {
  background: #14532d;
}

.rights-notice {
  background: #dbeafe;
  border-left-color: #3b82f6;
}

.dark-mode .rights-notice {
  background: #1e3a8a;
}

.response-time {
  background: #f3e8ff;
  border-left-color: #8b5cf6;
}

.dark-mode .response-time {
  background: #581c87;
}

.risk-warning {
  background: #fee2e2;
  border-left-color: #ef4444;
}

.dark-mode .risk-warning {
  background: #450a0a;
}

.acknowledgment {
  background: #ecfdf5;
  border-left-color: #10b981;
}

.dark-mode .acknowledgment {
  background: #14532d;
}

.important-notice i,
.security-notice i,
.rights-notice i,
.response-time i,
.risk-warning i,
.acknowledgment i {
  color: var(--accent-primary);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.security-notice i {
  color: #10b981;
}

.rights-notice i {
  color: #3b82f6;
}

.response-time i {
  color: #8b5cf6;
}

.risk-warning i {
  color: #ef4444;
}

.acknowledgment i {
  color: #10b981;
}

.definitions-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.definition-item {
  padding: 16px;
  background: var(--bg-secondary);
  border-radius: 8px;
  border-left: 4px solid var(--accent-primary);
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.contact-method {
  background: var(--bg-secondary);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.contact-method h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.contact-method p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Message Styles */
.success-message,
.error-message {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  max-width: 400px;
  opacity: 0;
  transform: translateX(100%);
  transition: all var(--animation-speed) ease;
}

.success-message.show,
.error-message.show {
  opacity: 1;
  transform: translateX(0);
}

.success-message {
  border-left: 4px solid #10b981;
}

.error-message {
  border-left: 4px solid #ef4444;
}

.message-content {
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.success-message .message-content i {
  color: #10b981;
  font-size: 20px;
  margin-top: 2px;
}

.error-message .message-content i {
  color: #ef4444;
  font-size: 20px;
  margin-top: 2px;
}

.message-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.message-content p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

/* Investment Modal */
.investment-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.investment-modal.show {
  opacity: 1;
  visibility: visible;
}

.investment-modal .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.investment-modal .modal-content {
  position: relative;
  background: var(--card-bg);
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow: hidden;
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s ease;
}

.investment-modal.show .modal-content {
  transform: scale(1) translateY(0);
}

.investment-modal .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--border-color);
}

.investment-modal .modal-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.investment-modal .modal-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--animation-speed) ease;
}

.investment-modal .modal-close:hover {
  background: var(--border-color);
  color: var(--text-primary);
}

.investment-modal .modal-body {
  padding: 24px;
  text-align: center;
}

.investment-modal .modal-body p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.investment-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Responsive Design for New Pages */
@media (max-width: 1024px) {
  .overview-content,
  .strategy-content,
  .presence-content,
  .contact-content,
  .sector-hero-main {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .legal-sidebar {
    position: static;
    order: -1;
  }

  .toc {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .toc-link {
    flex: 1;
    min-width: 120px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-header,
  .sector-hero,
  .legal-header {
    padding: 100px 0 60px;
  }

  .company-overview,
  .mission-vision,
  .leadership-team,
  .awards-recognition,
  .global-presence,
  .contact-form-section,
  .office-locations,
  .faq-section,
  .all-sectors,
  .investment-strategy,
  .performance-metrics,
  .security-features,
  .investment-process,
  .legal-content {
    padding: 60px 0;
  }

  .overview-stats {
    grid-template-columns: 1fr;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .offices-grid {
    grid-template-columns: 1fr;
  }

  .filter-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-group {
    width: 100%;
  }

  .filter-group select {
    width: 100%;
  }

  .sector-hero-stats {
    grid-template-columns: 1fr;
  }

  .sector-hero-actions {
    flex-direction: column;
  }

  .performance-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .security-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .legal-meta {
    flex-direction: column;
    gap: 16px;
  }

  .print-btn {
    position: static;
    margin-top: 24px;
  }

  .contact-methods {
    grid-template-columns: 1fr;
  }

  .success-message,
  .error-message {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
  }

  .investment-modal .modal-content {
    width: 95%;
    margin: 20px;
  }

  .investment-options {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .timeline-container {
    max-width: 300px;
  }

  .timeline-item {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .timeline-item:not(:last-child)::after {
    display: none;
  }

  .awards-grid {
    grid-template-columns: 1fr;
  }

  .performance-grid {
    grid-template-columns: 1fr;
  }

  .allocation-chart,
  .crypto-dashboard {
    max-width: 100%;
  }

  .sector-hero-stats {
    gap: 16px;
  }

  .hero-stat {
    padding: 16px;
  }

  .legal-section h2 {
    font-size: 24px;
  }

  .legal-section h3 {
    font-size: 18px;
  }

  .toc {
    flex-direction: column;
  }
}

/* Print Styles for Legal Pages */
@media print {
  .header,
  .footer,
  .legal-sidebar,
  .print-btn,
  .floating-actions,
  .chat-widget {
    display: none !important;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-main {
    max-width: 100%;
  }

  .legal-section {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .legal-section h2 {
    page-break-after: avoid;
  }
}

/* Contact Page Specific Styles - Enhanced */
.contact-form-section {
  padding: 100px 0;
  background: var(--bg-primary);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.contact-info h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.contact-description {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg-secondary);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all var(--animation-speed) ease;
}

.contact-method:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.method-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-light);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.method-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.method-info p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 4px;
  font-weight: 500;
}

.method-info small {
  font-size: 12px;
  color: var(--text-muted);
}

.emergency-contact {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--accent-light);
  border-radius: 12px;
  border: 1px solid var(--accent-primary);
}

.emergency-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--accent-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.emergency-info h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-primary);
  margin-bottom: 4px;
}

.emergency-info p {
  font-size: 12px;
  color: var(--text-secondary);
  margin: 0;
}

/* Contact Form Enhanced */
.contact-form {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  position: sticky;
  top: 120px;
}

.form-header {
  margin-bottom: 32px;
  text-align: center;
}

.form-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-header p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

.form {
  display: flex;
  flex-direction: column;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-size: 14px;
  font-family: inherit;
  transition: all var(--animation-speed) ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}

.form-group select {
  cursor: pointer;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
  cursor: pointer;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--animation-speed) ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: white;
  font-size: 12px;
}

.checkbox-label a {
  color: var(--accent-primary);
  text-decoration: none;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Office Locations Enhanced */
.office-locations {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.offices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.office-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: all var(--animation-speed) ease;
}

.office-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.office-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.office-header h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.office-badge {
  background: var(--accent-primary);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.office-details {
  margin-bottom: 24px;
}

.office-address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.office-address i {
  color: var(--accent-primary);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.office-address p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.office-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

.contact-item i {
  color: var(--accent-primary);
  width: 16px;
  font-size: 12px;
  text-align: center;
}

.office-btn {
  width: 100%;
  justify-content: center;
}

/* FAQ Section Enhanced */
.faq-section {
  padding: 100px 0;
  background: var(--bg-primary);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card-bg);
  border-radius: 12px;
  margin-bottom: 16px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all var(--animation-speed) ease;
}

.faq-item:hover {
  box-shadow: var(--shadow);
}

.faq-item.active {
  border-color: var(--accent-primary);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  cursor: pointer;
  transition: all var(--animation-speed) ease;
  background: transparent;
}

.faq-question:hover {
  background: var(--bg-secondary);
}

.faq-item.active .faq-question {
  background: var(--accent-light);
}

.faq-question h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  flex: 1;
  text-align: left;
}

.faq-item.active .faq-question h4 {
  color: var(--accent-primary);
}

.faq-question i {
  color: var(--accent-primary);
  transition: transform var(--animation-speed) ease;
  font-size: 14px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--animation-speed) ease;
}

.faq-answer p {
  padding: 0 24px 24px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* Active Navigation Link */
.nav-link.active {
  color: var(--accent-primary);
  font-weight: 600;
}

.mobile-nav-link.active {
  color: var(--accent-primary);
  font-weight: 600;
}

/* Responsive Enhancements for Contact Page */
@media (max-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-form {
    position: static;
  }
}

@media (max-width: 768px) {
  .contact-form-section,
  .office-locations,
  .faq-section {
    padding: 60px 0;
  }

  .contact-form {
    padding: 32px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .offices-grid {
    grid-template-columns: 1fr;
  }

  .office-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .contact-methods {
    gap: 16px;
  }

  .contact-method {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .contact-form {
    padding: 24px 20px;
  }

  .form-header h3 {
    font-size: 20px;
  }

  .contact-info h2 {
    font-size: 28px;
  }

  .method-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .emergency-contact {
    padding: 12px;
  }

  .emergency-icon {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}
