/* ========== CSS VARIABLES ========== */
:root {
  /* Light Theme */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --accent-primary: #3b82f6;
  --accent-secondary: #8b5cf6;
  --accent-tertiary: #06b6d4;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --border-light: #e2e8f0;
  --border-medium: #cbd5e1;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 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);
  --navbar-bg: rgba(255, 255, 255, 0.95);
  --card-bg: #ffffff;
  --overlay-dark: rgba(0, 0, 0, 0.4);
  --overlay-light: rgba(255, 255, 255, 0.1);
  --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
  --bg-primary: #0f172a;
  --bg-secondary: #1e293b;
  --bg-tertiary: #334155;
  --text-primary: #f1f5f9;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --accent-primary: #60a5fa;
  --accent-secondary: #a78bfa;
  --accent-tertiary: #22d3ee;
  --success: #34d399;
  --warning: #fbbf24;
  --danger: #f87171;
  --border-light: #334155;
  --border-medium: #475569;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.4);
  --navbar-bg: rgba(15, 23, 42, 0.95);
  --card-bg: #1e293b;
  --overlay-dark: rgba(0, 0, 0, 0.6);
  --overlay-light: rgba(255, 255, 255, 0.05);
  --gradient-1: linear-gradient(135deg, #1e3a8a 0%, #5b21b6 100%);
  --gradient-2: linear-gradient(135deg, #831843 0%, #be123c 100%);
  --gradient-3: linear-gradient(135deg, #164e63 0%, #0891b2 100%);
}

* {
  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: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
  transition: var(--transition);
}

::-webkit-scrollbar {
  width: 0;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

/* ========== NAVIGATION ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--navbar-bg);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  border-bottom: 1px solid var(--border-light);
}

.navbar.scrolled {
  padding: 0.75rem 5%;
  box-shadow: var(--shadow-md);
}

.logo {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 1.75rem;
  font-weight: 700;
  text-decoration: none;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

}

.logo-text {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hamburger Menu Button */
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.menu-toggle:hover {
  background: var(--accent-primary);
  color: white;
  border-color: var(--accent-primary);
  transform: scale(1.05);
}

/* Full Screen Menu Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navbar-bg);
  backdrop-filter: blur(20px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.menu-content {
  max-width: 1200px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.menu-close {
  width: 48px;
  height: 48px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-close:hover {
  background: var(--danger);
  color: white;
  border-color: var(--danger);
}

/* Menu Grid Layout */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.menu-section h3 {
  color: var(--text-muted);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.menu-items {
  list-style: none;
}

.menu-item {
  margin-bottom: 0.75rem;
}

.menu-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 10px;
  transition: var(--transition);
  font-size: 1.1rem;
  font-weight: 500;
}

.menu-link i {
  width: 24px;
  color: var(--accent-primary);
  font-size: 1.2rem;
}

.menu-link:hover {
  background: var(--bg-secondary);
  transform: translateX(5px);
  color: var(--accent-primary);
}

/* Theme Toggle in Menu */
.theme-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background: var(--bg-secondary);
  border-radius: 16px;
  margin-bottom: 2rem;
}

.theme-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.theme-info i {
  font-size: 1.5rem;
  color: var(--accent-primary);
}

.theme-toggle-btn {
  width: 60px;
  height: 32px;
  background: var(--border-medium);
  border-radius: 20px;
  border: none;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}

.theme-toggle-btn::before {
  content: '';
  position: absolute;
  width: 26px;
  height: 26px;
  background: white;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: var(--transition);
}

[data-theme="dark"] .theme-toggle-btn::before {
  left: 31px;
}

/* CTA Buttons in Menu */
.menu-cta {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.btn-login {
  padding: 0.875rem 2rem;
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-medium);
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.btn-login:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

.btn-signup {
  padding: 0.875rem 2rem;
  background: var(--gradient-1);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.btn-signup:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ========== HERO CAROUSEL ========== */
.hero {
  margin-top: 80px;
  position: relative;
  min-height: 600px;
  overflow: hidden;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 600px;
}

.carousel-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  display: flex;
  align-items: center;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
}

/* Slide Backgrounds with Images */
.slide-1 {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9)),
    url('../pics/pic1.webp') center/cover;
}

.slide-2 {
  background: linear-gradient(135deg, rgba(240, 147, 251, 0.9), rgba(245, 87, 108, 0.9)),
    url('../pics/pic2.webp') center/cover;
}

.slide-3 {
  background: linear-gradient(135deg, rgba(79, 172, 254, 0.9), rgba(0, 242, 254, 0.9)),
    url('../pics/pic3.jpg') center/cover;
}

.slide-content {
  max-width: 650px;
  margin-left: 10%;
  color: white;
  animation: slideInUp 0.8s ease-out;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.25rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.slide-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.slide-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.stock-tickers {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.ticker-item {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ticker-symbol {
  font-weight: 700;
}

.ticker-change {
  color: var(--success);
}

.slide-buttons {
  display: flex;
  gap: 1rem;
}

.btn-primary {
  background: white;
  color: var(--accent-primary);
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-outline-light {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
  backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
  background: white;
  color: var(--accent-primary);
  border-color: white;
}

/* Carousel Controls */
.carousel-controls {
  position: absolute;
  bottom: 40px;
  right: 10%;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 10;
}

.carousel-prev,
.carousel-next {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.2rem;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: white;
  color: var(--accent-primary);
  transform: scale(1.1);
}

.carousel-indicators {
  display: flex;
  gap: 0.5rem;
}

.indicator {
  width: 40px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.indicator.active {
  background: white;
  width: 60px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .slide-content {
    margin-left: 5%;
    margin-right: 5%;
  }

  .slide-title {
    font-size: 2.5rem;
  }

  .carousel-controls {
    right: 5%;
    bottom: 20px;
  }

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

  .menu-cta {
    flex-direction: column;
  }

  .hero {
    min-height: 500px;
  }

  .carousel-container {
    height: 500px;
  }
}

@media (min-width: 769px) {
  .menu-content {
    padding: 3rem;
  }
}

/* ========== ADVANCED HERO SECTION STYLES ========== */
.advanced-hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  overflow: hidden;
  padding: 120px 5% 80px;
  display: flex;
  align-items: center;
  isolation: isolate;
}

/* Animated Background Elements */
.hero-bg-animation {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.4;
}

.bg-blob {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(80px);
  animation: floatBlob 20s ease-in-out infinite;
}

.bg-blob-1 {
  background: radial-gradient(circle, var(--accent-primary) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}

.bg-blob-2 {
  background: radial-gradient(circle, var(--accent-secondary) 0%, transparent 70%);
  bottom: -200px;
  left: -100px;
  animation-delay: -5s;
}

.bg-blob-3 {
  background: radial-gradient(circle, var(--accent-tertiary) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  animation-delay: -10s;
}

@keyframes floatBlob {

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

  33% {
    transform: translate(50px, -50px) scale(1.1);
  }

  66% {
    transform: translate(-50px, 50px) scale(0.9);
  }
}

/* Grid Pattern Overlay */
.grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 2;
}

/* Main Content Container */
.hero-content-wrapper {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left Content */
.hero-left {
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.1);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid rgba(59, 130, 246, 0.3);
  margin-bottom: 24px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
  }
}

.hero-badge i {
  color: var(--accent-primary);
  font-size: 14px;
}

.hero-badge span {
  color: white;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: white;
}

.hero-title-gradient {
  background: linear-gradient(135deg, #60a5fa, #a78bfa, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 540px;
}

/* Stats Cards */
.hero-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 20px 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex: 1;
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.3);
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.stat-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.stat-label i {
  color: var(--success);
  font-size: 12px;
}

/* CTA Buttons */
.hero-cta {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn-primary-large {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.btn-primary-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.btn-outline-large {
  background: transparent;
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

.btn-outline-large:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Trust Badges */
.trust-badges {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.trust-item i {
  color: var(--success);
  font-size: 18px;
}

/* Right Content - Dashboard Preview */
.hero-right {
  position: relative;
  animation: fadeInRight 0.8s ease-out 0.2s both;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.dashboard-preview {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

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

.preview-title {
  color: white;
  font-weight: 600;
  font-size: 1.125rem;
}

.preview-badge {
  background: rgba(16, 185, 129, 0.2);
  color: var(--success);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

/* Stock Ticker */
.stock-ticker-preview {
  margin-bottom: 24px;
}

.ticker-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ticker-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ticker-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.ticker-icon.apple {
  background: rgba(255, 255, 255, 0.1);
  color: #a0a0a0;
}

.ticker-icon.tesla {
  background: rgba(231, 30, 37, 0.2);
  color: #e71e25;
}

.ticker-icon.nvidia {
  background: rgba(118, 185, 0, 0.2);
  color: #76b900;
}

.ticker-details h4 {
  color: white;
  font-weight: 600;
  margin-bottom: 2px;
}

.ticker-details span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
}

.ticker-price {
  text-align: right;
}

.ticker-price .price {
  color: white;
  font-weight: 600;
}

.ticker-price .change {
  color: var(--success);
  font-size: 0.875rem;
}

.ticker-price .change.negative {
  color: var(--danger);
}

/* Chart Preview */
.chart-preview {
  margin: 24px 0;
  height: 120px;
  position: relative;
}

.chart-line {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(59, 130, 246, 0.2) 0%,
      rgba(59, 130, 246, 0.05) 100%);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.chart-line::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
      var(--accent-primary) 0%,
      var(--accent-secondary) 50%,
      var(--accent-tertiary) 100%);
  animation: chartMove 3s ease-in-out infinite;
}

@keyframes chartMove {

  0%,
  100% {
    transform: translateX(-100%);
  }

  50% {
    transform: translateX(100%);
  }
}

/* Quick Actions */
.quick-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.quick-action-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 12px;
  color: white;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.quick-action-btn:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-2px);
}

.quick-action-btn i {
  display: block;
  font-size: 20px;
  margin-bottom: 6px;
}

.quick-action-btn span {
  font-size: 0.75rem;
  font-weight: 500;
}

/* Floating Elements */
.floating-element {
  position: absolute;
  z-index: 5;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.floating-1 {
  top: 20%;
  right: 5%;
  width: 80px;
  height: 80px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(59, 130, 246, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  animation-delay: 0s;
}

.floating-2 {
  bottom: 15%;
  left: 3%;
  width: 60px;
  height: 60px;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 92, 246, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  animation-delay: 2s;
}

.floating-3 {
  top: 60%;
  right: 8%;
  width: 50px;
  height: 50px;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(6, 182, 212, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  animation-delay: 4s;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-right {
    max-width: 600px;
    margin: 0 auto;
  }

  .advanced-hero {
    padding: 100px 5% 60px;
  }
}

@media (max-width: 768px) {
  .hero-stats {
    flex-direction: column;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn-primary-large,
  .btn-outline-large {
    width: 100%;
    justify-content: center;
  }

  .trust-badges {
    flex-direction: column;
    gap: 16px;
  }

  .floating-element {
    display: none;
  }
}



/* ========== STATS SECTION STYLES ========== */
.stats-section {
  position: relative;
  padding: 100px 5%;
  background: var(--bg-primary);
  overflow: hidden;
}

/* Background Pattern */
.stats-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(6, 182, 212, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Section Header */
.stats-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease-out;
}

.stats-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 100px;
  color: var(--accent-primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.stats-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.stats-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.stat-box {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out backwards;
}

.stat-box:nth-child(1) {
  animation-delay: 0.1s;
}

.stat-box:nth-child(2) {
  animation-delay: 0.2s;
}

.stat-box:nth-child(3) {
  animation-delay: 0.3s;
}

.stat-box:nth-child(4) {
  animation-delay: 0.4s;
}

.stat-box:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-primary);
}

.stat-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary), var(--accent-tertiary));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.stat-box:hover::before {
  transform: scaleX(1);
}

.stat-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--accent-primary);
  transition: all 0.3s ease;
}

.stat-box:hover .stat-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: white;
}

.stat-number-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 12px;
}

.stat-prefix {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.stat-suffix {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.stat-label {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 500;
}

.stat-trend {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 100px;
  color: var(--success);
  font-size: 0.875rem;
  font-weight: 600;
}

.stat-trend.negative {
  background: rgba(239, 68, 68, 0.1);
  color: var(--danger);
}

/* Additional Info Cards */
.stats-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.info-card {
  background: var(--bg-secondary);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.info-card-icon {
  width: 50px;
  height: 50px;
  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: 24px;
}

.info-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.info-card-content {
  color: var(--text-secondary);
  line-height: 1.6;
}

.progress-bar {
  margin-top: 20px;
  height: 8px;
  background: var(--border-light);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 4px;
  width: 0%;
  transition: width 1.5s ease-out;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Trusted By Section */
.trusted-by {
  margin-top: 80px;
  text-align: center;
}

.trusted-title {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.trusted-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.trusted-logo {
  opacity: 0.5;
  transition: all 0.3s ease;
  filter: grayscale(1);
  font-size: 24px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.trusted-logo:hover {
  opacity: 1;
  filter: grayscale(0);
  color: var(--accent-primary);
}

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

.trusted-logo span {
  font-weight: 600;
  font-size: 1.125rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .stats-section {
    padding: 60px 5%;
  }

  .stat-box {
    padding: 30px 20px;
  }

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

  .trusted-logos {
    gap: 30px;
  }

  .trusted-logo {
    font-size: 18px;
  }
}

/* Dark Theme Adjustments */
[data-theme="dark"] .stat-box {
  background: var(--card-bg);
}

[data-theme="dark"] .info-card {
  background: var(--bg-tertiary);
}



/* ========== HOW IT WORKS SECTION STYLES ========== */
.how-it-works {
  position: relative;
  padding: 100px 5%;
  background: var(--bg-secondary);
  overflow: hidden;
}

/* Background Decoration */
.hiw-bg-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hiw-bg-circle {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.03) 0%, transparent 70%);
  top: 10%;
  right: -100px;
}

.hiw-bg-circle-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.03) 0%, transparent 70%);
  bottom: 10%;
  left: -50px;
}

.hiw-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Section Header */
.hiw-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease-out;
}

.hiw-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 100px;
  color: var(--accent-primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hiw-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.hiw-title-gradient {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hiw-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Timeline Wrapper */
.timeline-wrapper {
  position: relative;
  padding: 40px 0;
}

/* Vertical Timeline Line */
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg,
      var(--accent-primary) 0%,
      var(--accent-secondary) 50%,
      var(--accent-tertiary) 100%);
  transform: translateX(-50%);
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.timeline-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 20px;
  height: 20px;
  background: var(--accent-primary);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 30px var(--accent-primary);
  animation: pulseGlow 2s ease-in-out infinite;
}

.timeline-line::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 20px;
  height: 20px;
  background: var(--accent-tertiary);
  border-radius: 50%;
  transform: translate(-50%, 50%);
  box-shadow: 0 0 30px var(--accent-tertiary);
  animation: pulseGlow 2s ease-in-out infinite 1s;
}

@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 0 20px currentColor;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    box-shadow: 0 0 40px currentColor;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

/* Timeline Steps */
.timeline-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.timeline-step {
  display: flex;
  align-items: center;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.timeline-step:nth-child(1) {
  animation-delay: 0.1s;
}

.timeline-step:nth-child(2) {
  animation-delay: 0.3s;
}

.timeline-step:nth-child(3) {
  animation-delay: 0.5s;
}

.timeline-step:nth-child(4) {
  animation-delay: 0.7s;
}

.timeline-step:nth-child(5) {
  animation-delay: 0.9s;
}

/* Alternating Layout */
.timeline-step:nth-child(odd) {
  flex-direction: row;
}

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

.step-content {
  flex: 1;
  max-width: 450px;
}

.timeline-step:nth-child(odd) .step-content {
  text-align: right;
  padding-right: 60px;
}

.timeline-step:nth-child(even) .step-content {
  text-align: left;
  padding-left: 60px;
}

.step-number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--card-bg);
  border: 3px solid var(--accent-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-primary);
  box-shadow: var(--shadow-lg);
  z-index: 3;
  transition: all 0.3s ease;
}

.timeline-step:hover .step-number {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: white;
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0 0 30px var(--accent-primary);
}

.step-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--accent-primary);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.timeline-step:nth-child(odd) .step-icon {
  margin-left: auto;
}

.timeline-step:hover .step-icon {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: white;
  transform: rotate(5deg) scale(1.05);
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.step-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.step-features {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.timeline-step:nth-child(odd) .step-features {
  justify-content: flex-end;
}

.feature-tag {
  padding: 4px 12px;
  background: var(--bg-tertiary);
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--text-muted);
  border: 1px solid var(--border-light);
}

.step-connector {
  flex: 0 0 100px;
}

/* Mobile Timeline */
.timeline-mobile {
  display: none;
}

/* CTA Section */
.hiw-cta {
  text-align: center;
  margin-top: 80px;
  padding: 50px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
  border-radius: 30px;
  border: 1px solid var(--border-light);
  animation: fadeInUp 0.8s ease-out 1s both;
}

.hiw-cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.hiw-cta-text {
  color: var(--text-secondary);
  margin-bottom: 30px;
  font-size: 1.125rem;
}

.hiw-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.hiw-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

/* Responsive Design */
@media (max-width: 968px) {
  .timeline-wrapper {
    display: none;
  }

  .timeline-mobile {
    display: block;
  }

  .mobile-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .mobile-step {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
  }

  .mobile-step:nth-child(1) {
    animation-delay: 0.1s;
  }

  .mobile-step:nth-child(2) {
    animation-delay: 0.2s;
  }

  .mobile-step:nth-child(3) {
    animation-delay: 0.3s;
  }

  .mobile-step:nth-child(4) {
    animation-delay: 0.4s;
  }

  .mobile-step:nth-child(5) {
    animation-delay: 0.5s;
  }

  .mobile-step:hover {
    transform: translateX(10px);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-lg);
  }

  .mobile-step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
  }

  .mobile-step-content {
    flex: 1;
  }

  .mobile-step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .mobile-step-title i {
    color: var(--accent-primary);
    font-size: 1.125rem;
  }

  .mobile-step-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
  }

  .hiw-cta {
    padding: 40px 30px;
  }
}

@media (max-width: 480px) {
  .how-it-works {
    padding: 60px 5%;
  }

  .mobile-step {
    padding: 20px;
  }

  .hiw-cta-title {
    font-size: 1.5rem;
  }
}


/* ========== FEATURED STOCKS SECTION STYLES ========== */
.featured-stocks {
  position: relative;
  padding: 100px 5%;
  background: var(--bg-primary);
  overflow: hidden;
}

/* Background Pattern */
.fs-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.fs-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Section Header */
.fs-header {
  text-align: center;
  margin-bottom: 50px;
  animation: fadeInUp 0.8s ease-out;
}

.fs-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 100px;
  color: var(--accent-primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.fs-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.fs-title-gradient {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fs-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Main Grid Layout */
.fs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

/* Left Column - Chart Widget */
.fs-chart-section {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-lg);
  animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

.chart-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chart-title i {
  font-size: 24px;
  color: var(--accent-primary);
}

.chart-title h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.chart-timeframe {
  display: flex;
  gap: 8px;
}

.tf-btn {
  padding: 6px 14px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tf-btn:hover,
.tf-btn.active {
  background: var(--accent-primary);
  color: white;
  border-color: var(--accent-primary);
}

.chart-container {
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-secondary);
  position: relative;
}

/* TradingView Widget Container */
.tradingview-widget-container {
  height: 100%;
  width: 100%;
}

/* Right Column - Market Sentiment & Info */
.fs-sentiment-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
  animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Stock Info Card */
.stock-info-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-lg);
}

.stock-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.stock-logo {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #e71e25, #ff6b6b);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
}

.stock-info h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.stock-symbol {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.stock-price-large {
  margin-bottom: 20px;
}

.current-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.price-change-large {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 100px;
  color: var(--success);
  font-weight: 600;
}

.price-change-large.negative {
  background: rgba(239, 68, 68, 0.1);
  color: var(--danger);
}

/* Market Sentiment */
.sentiment-section {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-lg);
}

.sentiment-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.sentiment-header i {
  font-size: 24px;
  color: var(--accent-primary);
}

.sentiment-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.sentiment-meter {
  margin-bottom: 24px;
}

.sentiment-bar {
  height: 8px;
  background: linear-gradient(90deg,
      var(--danger) 0%,
      var(--warning) 25%,
      var(--success) 50%,
      var(--warning) 75%,
      var(--danger) 100%);
  border-radius: 4px;
  margin-bottom: 8px;
  position: relative;
}

.sentiment-indicator {
  position: absolute;
  top: -4px;
  width: 16px;
  height: 16px;
  background: white;
  border: 3px solid var(--accent-primary);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: var(--shadow-md);
  transition: left 0.5s ease;
}

.sentiment-labels {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.75rem;
  margin-bottom: 16px;
}

.sentiment-score {
  text-align: center;
  padding: 20px;
  background: var(--bg-secondary);
  border-radius: 12px;
}

.score-value {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-primary);
  margin-bottom: 8px;
}

.score-label {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.sentiment-details {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.sentiment-stat {
  text-align: center;
}

.stat-value-small {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.stat-label-small {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Stock Cards Grid */
.fs-stocks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.stock-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  animation: fadeInUp 0.8s ease-out backwards;
}

.stock-card:nth-child(1) {
  animation-delay: 0.2s;
}

.stock-card:nth-child(2) {
  animation-delay: 0.3s;
}

.stock-card:nth-child(3) {
  animation-delay: 0.4s;
}

.stock-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-primary);
}

.stock-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.stock-card-symbol {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 1.125rem;
}

.stock-card-name {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.stock-card-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.stock-card-change {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 100px;
  color: var(--success);
  font-size: 0.875rem;
  font-weight: 600;
}

.stock-card-change.negative {
  background: rgba(239, 68, 68, 0.1);
  color: var(--danger);
}

/* Mini Chart */
.mini-chart {
  margin-top: 15px;
  height: 40px;
  position: relative;
}

.mini-chart-line {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      var(--accent-primary) 0%,
      var(--accent-secondary) 100%);
  opacity: 0.3;
  border-radius: 4px;
  clip-path: polygon(0 100%, 10% 60%, 20% 80%, 30% 40%, 40% 70%,
      50% 30%, 60% 50%, 70% 20%, 80% 45%, 90% 35%, 100% 60%,
      100% 100%);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .fs-grid {
    grid-template-columns: 1fr;
  }

  .fs-stocks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .featured-stocks {
    padding: 60px 5%;
  }

  .fs-stocks-grid {
    grid-template-columns: 1fr;
  }

  .chart-timeframe {
    width: 100%;
    justify-content: center;
  }

  .sentiment-details {
    grid-template-columns: 1fr;
  }

  .chart-container {
    height: 300px;
  }
}

/* Loading State */
.loading-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--text-muted);
}

.loading-placeholder i {
  margin-right: 8px;
}

/* Attribution - REQUIRED for TradingView */
.tradingview-attribution {
  text-align: right;
  margin-top: 8px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.tradingview-attribution a {
  color: var(--accent-primary);
  text-decoration: none;
}




/* ========== WHY CHOOSE US SECTION STYLES ========== */
.why-choose-us {
  position: relative;
  padding: 100px 5%;
  background: var(--bg-secondary);
  overflow: hidden;
}

/* Background Decoration */
.wcu-bg-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.wcu-bg-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.wcu-bg-blob-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
  bottom: -50px;
  left: -50px;
}

.wcu-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Section Header */
.wcu-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease-out;
}

.wcu-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 100px;
  color: var(--accent-primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.wcu-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.wcu-title-gradient {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary), var(--accent-tertiary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wcu-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Cards Grid */
.wcu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

/* Card Styles */
.wcu-card {
  background: var(--card-bg);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
  position: relative;
}

.wcu-card:nth-child(1) {
  animation-delay: 0.1s;
}

.wcu-card:nth-child(2) {
  animation-delay: 0.2s;
}

.wcu-card:nth-child(3) {
  animation-delay: 0.3s;
}

.wcu-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-primary);
}

/* Card Image */
.wcu-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.wcu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.wcu-card:hover .wcu-card-image img {
  transform: scale(1.1);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
}

/* Card Icon Badge */
.card-icon-badge {
  position: absolute;
  bottom: -25px;
  left: 24px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--card-bg);
  transition: all 0.3s ease;
  z-index: 3;
}

.wcu-card:hover .card-icon-badge {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 30px var(--accent-primary);
}

/* Card Content */
.wcu-card-content {
  padding: 40px 24px 30px;
}

.wcu-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wcu-card-description {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Card Features List */
.wcu-features {
  list-style: none;
  padding: 0;
}

.wcu-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.wcu-feature-item i {
  color: var(--success);
  font-size: 1rem;
}

/* Stats Banner */
.wcu-stats-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
  border-radius: 20px;
  border: 1px solid var(--border-light);
  margin-top: 40px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.wcu-stat-item {
  text-align: center;
}

.wcu-stat-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
}

.wcu-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.wcu-stat-label {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Testimonial Card */
.wcu-testimonial {
  margin-top: 60px;
  padding: 40px;
  background: var(--card-bg);
  border-radius: 24px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 40px;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.testimonial-content {
  flex: 1;
}

.testimonial-quote {
  font-size: 1.25rem;
  color: var(--text-primary);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-quote i {
  color: var(--accent-primary);
  margin-right: 8px;
  opacity: 0.5;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 4px;
}

.author-info p {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.testimonial-rating {
  color: var(--warning);
  font-size: 1.25rem;
  margin-top: 10px;
}

.testimonial-image {
  flex: 0 0 200px;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .wcu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wcu-stats-banner {
    grid-template-columns: repeat(2, 1fr);
  }

  .wcu-testimonial {
    flex-direction: column;
  }

  .testimonial-image {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .why-choose-us {
    padding: 60px 5%;
  }

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

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

  .wcu-card-image {
    height: 180px;
  }
}




/* ========== INVESTMENT PLANS SECTION ========== */
.investment-plans {
  padding: 100px 5%;
  background: var(--bg-primary);
  position: relative;
}

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

/* Section Header */
.ip-header {
  text-align: center;
  margin-bottom: 60px;
}

.ip-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(139, 92, 246, 0.08));
  border: 1px solid var(--border-light);
  border-radius: 100px;
  color: var(--accent-primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.ip-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.ip-title span {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ip-subtitle {
  color: var(--text-secondary);
  font-size: 1.125rem;
  max-width: 500px;
  margin: 0 auto;
}

/* Plans Grid - 3 Columns */
.ip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Plan Card */
.plan-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 32px 24px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-primary);
}

/* Popular Tag */
.plan-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: white;
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* Plan Header */
.plan-header {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}

.plan-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.plan-desc {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Pricing */
.plan-price {
  text-align: center;
  margin-bottom: 24px;
}

.price-value {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.price-value small {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.price-label {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-top: 4px;
}

/* Investment Specs */
.plan-specs {
  background: var(--bg-secondary);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 24px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.spec-row:not(:last-child) {
  border-bottom: 1px dashed var(--border-light);
}

.spec-label {
  color: var(--text-muted);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.spec-label i {
  color: var(--accent-primary);
  font-size: 0.875rem;
  width: 16px;
}

.spec-value {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9375rem;
}

/* Features List */
.plan-features {
  margin-bottom: 28px;
  flex: 1;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.feature i.fa-check {
  color: var(--success);
  font-size: 0.875rem;
}

.feature i.fa-minus {
  color: var(--text-muted);
  font-size: 0.875rem;
  opacity: 0.5;
}

.feature.muted {
  opacity: 0.5;
}

/* CTA Button */
.plan-btn {
  width: 100%;
  padding: 14px;
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-medium);
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.plan-btn:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

.plan-card.featured .plan-btn {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: white;
  border: none;
}

.plan-card.featured .plan-btn:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

/* Responsive */
@media (max-width: 900px) {
  .ip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .ip-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }

  .investment-plans {
    padding: 60px 5%;
  }
}


/* ========== TESTIMONIAL SECTION ========== */
.tst-section {
  padding: 100px 5%;
  background: var(--bg-primary);
  position: relative;
}

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

/* Header */
.tst-header {
  text-align: center;
  margin-bottom: 60px;
}

.tst-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(139, 92, 246, 0.08));
  border: 1px solid var(--border-light);
  border-radius: 100px;
  color: var(--accent-primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.tst-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.tst-title span {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tst-subtitle {
  color: var(--text-secondary);
  font-size: 1.125rem;
}

/* Carousel */
.tst-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.tst-slides {
  overflow: hidden;
  border-radius: 24px;
}

.tst-track {
  display: flex;
  transition: transform 0.5s ease;
}

.tst-slide {
  flex: 0 0 100%;
  padding: 10px;
}

/* Card */
.tst-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.tst-quote {
  color: var(--accent-primary);
  font-size: 2rem;
  margin-bottom: 24px;
  opacity: 0.4;
}

.tst-content {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 30px;
  font-style: italic;
}

.tst-rating {
  margin-bottom: 24px;
}

.tst-star {
  color: #fbbf24;
  font-size: 1.25rem;
  margin: 0 2px;
}

.tst-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.tst-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent-primary);
}

.tst-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tst-info h4 {
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 4px;
}

.tst-info p {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Navigation */
.tst-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.tst-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.25rem;
}

.tst-arrow:hover {
  background: var(--accent-primary);
  color: white;
  border-color: var(--accent-primary);
}

.tst-dots {
  display: flex;
  gap: 10px;
}

.tst-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-medium);
  cursor: pointer;
  transition: all 0.3s ease;
}

.tst-dot.active {
  background: var(--accent-primary);
  width: 30px;
  border-radius: 5px;
}

.tst-dot:hover {
  background: var(--accent-primary);
}

/* Responsive */
@media (max-width: 768px) {
  .tst-section {
    padding: 60px 5%;
  }

  .tst-card {
    padding: 30px 20px;
  }

  .tst-content {
    font-size: 1rem;
  }

  .tst-nav {
    gap: 20px;
  }
}





/* ========== REFERRAL HERO SECTION ========== */
.ref-hero {
  padding: 80px 5%;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  position: relative;
  overflow: hidden;
}

/* Background Effects */
.ref-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.ref-bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

.ref-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Main Grid */
.ref-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left Content */
.ref-content {
  animation: refFadeIn 0.8s ease-out;
}

@keyframes refFadeIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.ref-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 100px;
  color: #60a5fa;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.ref-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: white;
  margin-bottom: 24px;
}

.ref-title span {
  background: linear-gradient(135deg, #60a5fa, #a78bfa, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ref-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 500px;
}

/* Commission Box */
.ref-commission-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 24px 32px;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  display: inline-block;
}

.ref-commission-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.ref-commission-value {
  font-size: 4rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.ref-commission-value small {
  font-size: 1.5rem;
  color: #60a5fa;
}

/* CTA */
.ref-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.ref-btn-primary {
  padding: 16px 32px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.ref-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.ref-btn-secondary {
  padding: 16px 32px;
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ref-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Stats */
.ref-stats {
  display: flex;
  gap: 40px;
}

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

.ref-stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
}

.ref-stat-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

/* Right Content - Hero Image */
.ref-image-wrapper {
  position: relative;
  animation: refFadeInRight 0.8s ease-out 0.2s both;
}

@keyframes refFadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.ref-hero-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ref-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Floating Cards on Image */
.ref-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ref-float-1 {
  top: 20px;
  right: -20px;
  animation: refFloat 4s ease-in-out infinite;
}

.ref-float-2 {
  bottom: 30px;
  left: -30px;
  animation: refFloat 4s ease-in-out infinite 1s;
}

.ref-float-3 {
  bottom: 80px;
  right: -10px;
  animation: refFloat 4s ease-in-out infinite 2s;
}

@keyframes refFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.ref-float-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
}

.ref-float-amount small {
  font-size: 0.875rem;
  color: #10b981;
}

.ref-float-label {
  color: #64748b;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.ref-float-label i {
  color: #10b981;
}

/* Responsive */
@media (max-width: 900px) {
  .ref-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .ref-content {
    text-align: center;
  }

  .ref-description {
    margin-left: auto;
    margin-right: auto;
  }

  .ref-commission-box {
    display: inline-block;
  }

  .ref-cta {
    justify-content: center;
  }

  .ref-stats {
    justify-content: center;
  }

  .ref-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }

  .ref-float-1 {
    right: 0;
  }

  .ref-float-2 {
    left: 0;
  }

  .ref-float-3 {
    right: 0;
  }
}

@media (max-width: 600px) {
  .ref-hero {
    padding: 60px 5%;
  }

  .ref-commission-value {
    font-size: 3rem;
  }

  .ref-stats {
    flex-direction: column;
    gap: 15px;
  }

  .ref-cta {
    flex-direction: column;
    width: 100%;
  }

  .ref-btn-primary,
  .ref-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .ref-float-card {
    display: none;
  }
}





/* ========== FOOTER SECTION ========== */
.hst-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  padding: 60px 5% 30px;
  position: relative;
}

.hst-footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Main Footer Grid */
.hst-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

/* Brand Section */
.hst-footer-brand {
  max-width: 320px;
}

.hst-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  text-decoration: none;
}

.hst-logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
}

.hst-logo-text {
  font-size: 1.75rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hst-footer-desc {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: 0.9375rem;
}

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

.hst-social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.125rem;
  border: 1px solid var(--border-light);
}

.hst-social-link:hover {
  background: var(--accent-primary);
  color: white;
  transform: translateY(-3px);
  border-color: var(--accent-primary);
}

/* Footer Links Sections */
.hst-footer-section h4 {
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hst-footer-links {
  list-style: none;
  padding: 0;
}

.hst-footer-links li {
  margin-bottom: 12px;
}

.hst-footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hst-footer-links a:hover {
  color: var(--accent-primary);
  transform: translateX(5px);
}

.hst-footer-links a i {
  font-size: 0.75rem;
  color: var(--accent-primary);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.hst-footer-links a:hover i {
  opacity: 1;
}

/* Contact Info */
.hst-contact-info {
  list-style: none;
  padding: 0;
}

.hst-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.hst-contact-info i {
  color: var(--accent-primary);
  font-size: 1rem;
  margin-top: 3px;
  width: 18px;
}

/* Newsletter */
.hst-newsletter {
  margin-top: 20px;
}

.hst-newsletter-label {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-bottom: 12px;
}

.hst-newsletter-form {
  display: flex;
  gap: 8px;
}

.hst-newsletter-input {
  flex: 1;
  padding: 12px 16px;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.hst-newsletter-input:focus {
  outline: none;
  border-color: var(--accent-primary);
}

.hst-newsletter-btn {
  padding: 12px 18px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.hst-newsletter-btn:hover {
  transform: scale(1.05);
}

/* Bottom Bar */
.hst-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-light);
  flex-wrap: wrap;
  gap: 20px;
}

.hst-copyright {
  color: var(--text-muted);
  font-size: 0.875rem;
}

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

.hst-legal-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.hst-legal-links a:hover {
  color: var(--accent-primary);
}

.hst-payment-methods {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hst-payment-icon {
  font-size: 1.5rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.hst-payment-icon:hover {
  color: var(--accent-primary);
}

/* Badges */
.hst-badge-new {
  background: var(--accent-primary);
  color: white;
  font-size: 0.625rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 1000px) {
  .hst-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
  }

  .hst-footer-brand {
    grid-column: span 2;
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .hst-footer {
    padding: 40px 5% 20px;
  }

  .hst-footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hst-footer-brand {
    grid-column: span 1;
  }

  .hst-footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hst-legal-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hst-newsletter-form {
    flex-direction: column;
  }

  .hst-newsletter-btn {
    width: 100%;
  }
}




/* ========== ABOUT US PAGE STYLES ========== */

/* Hero Section */
.abt-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  padding: 120px 5% 80px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  overflow: hidden;
}

.abt-hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920') center/cover;
  opacity: 0.15;
  pointer-events: none;
}

.abt-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.7) 50%, rgba(15, 23, 42, 0.4) 100%);
}

.abt-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.abt-hero-content {
  animation: abtFadeInLeft 0.8s ease-out;
}

@keyframes abtFadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.abt-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 100px;
  color: #60a5fa;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.abt-hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: white;
  margin-bottom: 24px;
}

.abt-hero-title span {
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.abt-hero-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  max-width: 500px;
}

.abt-hero-image {
  position: relative;
  animation: abtFadeInRight 0.8s ease-out 0.2s both;
}

@keyframes abtFadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.abt-hero-img {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.abt-hero-img img {
  width: 100%;
  height: auto;
  display: block;
}

.abt-hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.abt-stat-item {
  text-align: center;
}

.abt-stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: white;
}

.abt-stat-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

/* Mission & Vision Cards */
.abt-mission {
  padding: 80px 5%;
  background: var(--bg-primary);
}

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

.abt-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.abt-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.abt-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-primary);
}

.abt-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--accent-primary);
  transition: all 0.3s ease;
}

.abt-card:hover .abt-card-icon {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: white;
  transform: scale(1.1) rotate(5deg);
}

.abt-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.abt-card-desc {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Timeline Section */
.abt-timeline {
  padding: 80px 5%;
  background: var(--bg-secondary);
}

.abt-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.abt-section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(139, 92, 246, 0.08));
  border: 1px solid var(--border-light);
  border-radius: 100px;
  color: var(--accent-primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.abt-section-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
}

.abt-section-title span {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Timeline */
.abt-timeline-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.abt-timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent-primary), var(--accent-secondary), var(--accent-tertiary));
  transform: translateX(-50%);
  border-radius: 3px;
}

.abt-timeline-items {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.abt-timeline-item {
  display: flex;
  align-items: center;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  animation: abtFadeInUp 0.6s ease-out forwards;
}

.abt-timeline-item:nth-child(1) {
  animation-delay: 0.1s;
}

.abt-timeline-item:nth-child(2) {
  animation-delay: 0.3s;
}

.abt-timeline-item:nth-child(3) {
  animation-delay: 0.5s;
}

.abt-timeline-item:nth-child(4) {
  animation-delay: 0.7s;
}

@keyframes abtFadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.abt-timeline-item:nth-child(odd) {
  flex-direction: row;
}

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

.abt-timeline-content {
  flex: 1;
  max-width: 350px;
}

.abt-timeline-item:nth-child(odd) .abt-timeline-content {
  text-align: right;
  padding-right: 50px;
}

.abt-timeline-item:nth-child(even) .abt-timeline-content {
  text-align: left;
  padding-left: 50px;
}

.abt-timeline-year {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: 8px;
}

.abt-timeline-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.abt-timeline-desc {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.abt-timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: white;
  border: 3px solid var(--accent-primary);
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 20px var(--accent-primary);
  transition: all 0.3s ease;
}

.abt-timeline-item:hover .abt-timeline-dot {
  transform: translateX(-50%) scale(1.3);
  background: var(--accent-primary);
  border-color: white;
}

.abt-timeline-spacer {
  flex: 0 0 100px;
}

/* Values Section */
.abt-values {
  padding: 80px 5%;
  background: var(--bg-primary);
}

.abt-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.abt-value-item {
  text-align: center;
  padding: 30px 20px;
  background: var(--bg-secondary);
  border-radius: 20px;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.abt-value-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-md);
}

.abt-value-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
}

.abt-value-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.abt-value-desc {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 900px) {
  .abt-hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .abt-hero-desc {
    margin: 0 auto;
  }

  .abt-hero-stats {
    justify-content: center;
  }

  .abt-hero-image {
    max-width: 500px;
    margin: 0 auto;
  }

  .abt-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .abt-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .abt-timeline-line {
    left: 20px;
  }

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

  .abt-timeline-content,
  .abt-timeline-item:nth-child(odd) .abt-timeline-content,
  .abt-timeline-item:nth-child(even) .abt-timeline-content {
    text-align: left;
    padding-left: 50px;
    padding-right: 0;
    max-width: 100%;
  }

  .abt-timeline-dot {
    left: 20px;
  }

  .abt-timeline-spacer {
    display: none;
  }
}

@media (max-width: 600px) {
  .abt-hero {
    padding: 100px 5% 60px;
  }

  .abt-cards-grid {
    grid-template-columns: 1fr;
  }

  .abt-values-grid {
    grid-template-columns: 1fr;
  }

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


/* ========== DISCLAIMER PAGE STYLES ========== */

/* Hero Section */
.dsc-hero {
  position: relative;
  padding: 120px 5% 60px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  overflow: hidden;
}

.dsc-hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1920') center/cover;
  opacity: 0.05;
  pointer-events: none;
}

.dsc-hero-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.dsc-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 100px;
  color: #f87171;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.dsc-badge i {
  margin-right: 8px;
}

.dsc-hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
}

.dsc-hero-title span {
  background: linear-gradient(135deg, #f87171, #fb923c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dsc-hero-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 700px;
  margin: 0 auto;
}

.dsc-updated {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dsc-updated i {
  margin-right: 8px;
  color: #f87171;
}

/* Warning Banner */
.dsc-warning-banner {
  padding: 20px 5%;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(245, 158, 11, 0.1));
  border-bottom: 1px solid rgba(239, 68, 68, 0.2);
}

.dsc-warning-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.dsc-warning-icon {
  width: 50px;
  height: 50px;
  background: rgba(239, 68, 68, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f87171;
  font-size: 24px;
  flex-shrink: 0;
}

.dsc-warning-text {
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.6;
}

.dsc-warning-text strong {
  color: #f87171;
}

/* Main Content */
.dsc-content {
  padding: 60px 5%;
  background: var(--bg-secondary);
}

.dsc-container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Security Assurance Card */
.dsc-security-card {
  background: var(--card-bg);
  border: 2px solid var(--success);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.dsc-security-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--success), var(--accent-primary), var(--success));
}

.dsc-security-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.dsc-security-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(59, 130, 246, 0.15));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--success);
  font-size: 40px;
  border: 2px solid var(--success);
}

.dsc-security-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
}

.dsc-security-title span {
  color: var(--success);
}

.dsc-security-desc {
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.dsc-security-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dsc-security-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dsc-security-feature i {
  color: var(--success);
  font-size: 1.25rem;
}

.dsc-security-feature span {
  color: var(--text-primary);
  font-weight: 500;
}

/* Main Disclaimer Sections */
.dsc-main-content {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.dsc-section {
  margin-bottom: 40px;
}

.dsc-section:last-child {
  margin-bottom: 0;
}

.dsc-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-light);
}

.dsc-section-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(245, 158, 11, 0.1));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f87171;
  font-size: 1.25rem;
}

.dsc-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.dsc-text {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.dsc-text strong {
  color: var(--text-primary);
}

.dsc-text a {
  color: var(--accent-primary);
  text-decoration: none;
}

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

.dsc-list {
  margin: 16px 0;
  padding-left: 24px;
  color: var(--text-secondary);
}

.dsc-list li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.dsc-list li strong {
  color: var(--text-primary);
}

/* Warning Box */
.dsc-warning-box {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.08), rgba(245, 158, 11, 0.08));
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 16px;
  padding: 25px 30px;
  margin: 30px 0;
}

.dsc-warning-box-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #f87171;
  margin-bottom: 15px;
}

.dsc-warning-box-title i {
  font-size: 1.5rem;
}

.dsc-warning-box p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.dsc-warning-box p strong {
  color: var(--text-primary);
}

/* Info Box */
.dsc-info-box {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(139, 92, 246, 0.08));
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 16px;
  padding: 25px 30px;
  margin: 30px 0;
}

.dsc-info-box-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: 15px;
}

.dsc-info-box-title i {
  font-size: 1.5rem;
}

.dsc-info-box p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* Process Steps */
.dsc-process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.dsc-process-step {
  text-align: center;
  padding: 25px 20px;
  background: var(--bg-secondary);
  border-radius: 16px;
  border: 1px solid var(--border-light);
}

.dsc-process-number {
  width: 40px;
  height: 40px;
  margin: 0 auto 15px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
}

.dsc-process-title {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.dsc-process-desc {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Contact Box */
.dsc-contact-box {
  margin-top: 40px;
  padding: 30px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(59, 130, 246, 0.05));
  border-radius: 16px;
  border: 1px solid var(--border-light);
  text-align: center;
}

.dsc-contact-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--success), var(--accent-primary));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
}

.dsc-contact-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.dsc-contact-text {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.dsc-contact-info {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.dsc-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
}

.dsc-contact-item i {
  color: var(--accent-primary);
}

.dsc-contact-item a {
  color: var(--accent-primary);
  text-decoration: none;
}

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

/* Acceptance */
.dsc-acceptance {
  margin-top: 40px;
  padding: 30px;
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  text-align: center;
}

.dsc-acceptance-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  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: 24px;
}

.dsc-acceptance-text {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 1rem;
}

.dsc-acceptance-btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: white;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.dsc-acceptance-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .dsc-security-features {
    grid-template-columns: 1fr;
  }

  .dsc-security-header {
    flex-direction: column;
    text-align: center;
  }

  .dsc-security-title {
    font-size: 1.75rem;
  }

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

  .dsc-main-content {
    padding: 30px 25px;
  }

  .dsc-warning-container {
    flex-direction: column;
    text-align: center;
  }

  .dsc-contact-info {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
}

@media (max-width: 600px) {
  .dsc-hero {
    padding: 100px 5% 50px;
  }

  .dsc-main-content {
    padding: 25px 20px;
  }

  .dsc-section-title {
    font-size: 1.25rem;
  }

  .dsc-security-card {
    padding: 30px 20px;
  }
}






/* ========== FAQ PAGE STYLES ========== */

/* Hero Section */
.faq-hero {
  position: relative;
  padding: 120px 5% 60px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  overflow: hidden;
}

.faq-hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1920') center/cover;
  opacity: 0.08;
  pointer-events: none;
}

.faq-hero-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.faq-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 100px;
  color: #60a5fa;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.faq-hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
}

.faq-hero-title span {
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-hero-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto 40px;
}

/* Search Bar */
.faq-search {
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

.faq-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.125rem;
}

.faq-search-input {
  width: 100%;
  padding: 16px 20px 16px 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.faq-search-input:focus {
  outline: none;
  border-color: #3b82f6;
  background: rgba(255, 255, 255, 0.08);
}

.faq-search-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* FAQ Categories */
.faq-categories {
  padding: 40px 5%;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-light);
}

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

.faq-category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.faq-category-card {
  padding: 20px 15px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-category-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-md);
}

.faq-category-card.active {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border-color: transparent;
}

.faq-category-card.active .faq-category-icon,
.faq-category-card.active .faq-category-name,
.faq-category-card.active .faq-category-count {
  color: white;
}

.faq-category-icon {
  font-size: 28px;
  color: var(--accent-primary);
  margin-bottom: 10px;
}

.faq-category-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.faq-category-count {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Main FAQ Content */
.faq-content {
  padding: 60px 5%;
  background: var(--bg-secondary);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
}

/* FAQ Sections */
.faq-sections {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.faq-section {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.faq-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.faq-section-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  font-size: 1.25rem;
}

.faq-section-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* FAQ Items (Accordion) */
.faq-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: 12px;
  background: var(--bg-secondary);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--accent-primary);
}

.faq-question {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-question-text {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 1rem;
}

.faq-question-icon {
  color: var(--text-muted);
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question-icon {
  transform: rotate(180deg);
  color: var(--accent-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-content {
  padding: 0 20px 20px 20px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.9375rem;
  border-top: 1px dashed var(--border-light);
  margin-top: 5px;
  padding-top: 18px;
}

/* Sidebar */
.faq-sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.faq-sidebar-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 25px;
  box-shadow: var(--shadow-sm);
}

.faq-sidebar-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.faq-popular-list {
  list-style: none;
  padding: 0;
}

.faq-popular-item {
  margin-bottom: 12px;
}

.faq-popular-link {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
}

.faq-popular-item:last-child .faq-popular-link {
  border-bottom: none;
}

.faq-popular-link:hover {
  color: var(--accent-primary);
}

.faq-popular-link i {
  color: var(--accent-primary);
  font-size: 0.75rem;
  margin-top: 5px;
}

/* Contact Card */
.faq-contact-card {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  color: white;
}

.faq-contact-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  backdrop-filter: blur(10px);
}

.faq-contact-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.faq-contact-desc {
  opacity: 0.9;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.faq-contact-btn {
  display: inline-block;
  padding: 12px 24px;
  background: white;
  color: var(--accent-primary);
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.faq-contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* CTA Banner */
.faq-cta {
  padding: 60px 5%;
  background: var(--bg-primary);
}

.faq-cta-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 50px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
  border-radius: 30px;
  border: 1px solid var(--border-light);
}

.faq-cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.faq-cta-desc {
  color: var(--text-secondary);
  margin-bottom: 30px;
  font-size: 1.125rem;
}

.faq-cta-btn {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: white;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.faq-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

/* Responsive */
@media (max-width: 900px) {
  .faq-category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .faq-sidebar {
    order: -1;
  }
}

@media (max-width: 600px) {
  .faq-hero {
    padding: 100px 5% 50px;
  }

  .faq-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-section {
    padding: 20px;
  }

  .faq-cta-content {
    padding: 30px 20px;
  }

  .faq-cta-title {
    font-size: 1.5rem;
  }
}





/* ========== TERMS OF USE PAGE STYLES ========== */

/* Hero Section */
.tou-hero {
  position: relative;
  padding: 120px 5% 60px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  overflow: hidden;
}

.tou-hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1920') center/cover;
  opacity: 0.05;
  pointer-events: none;
}

.tou-hero-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.tou-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 100px;
  color: #60a5fa;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.tou-hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
}

.tou-hero-title span {
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tou-hero-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto;
}

.tou-updated {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tou-updated i {
  margin-right: 8px;
  color: #60a5fa;
}

/* Main Content */
.tou-content {
  padding: 60px 5%;
  background: var(--bg-secondary);
}

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

.tou-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}

/* Table of Contents Sidebar */
.tou-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.tou-toc {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 25px;
  box-shadow: var(--shadow-sm);
}

.tou-toc-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.tou-toc-title i {
  color: var(--accent-primary);
}

.tou-toc-list {
  list-style: none;
  padding: 0;
}

.tou-toc-item {
  margin-bottom: 8px;
}

.tou-toc-link {
  display: block;
  padding: 10px 15px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9375rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.tou-toc-link:hover {
  background: var(--bg-secondary);
  color: var(--accent-primary);
  border-left-color: var(--accent-primary);
}

.tou-toc-link.active {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  color: var(--accent-primary);
  border-left-color: var(--accent-primary);
  font-weight: 500;
}

/* Main Content Area */
.tou-main-content {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.tou-section {
  margin-bottom: 40px;
}

.tou-section:last-child {
  margin-bottom: 0;
}

.tou-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-light);
}

.tou-section-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  font-size: 1.25rem;
}

.tou-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.tou-text {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.tou-text strong {
  color: var(--text-primary);
}

.tou-list {
  margin: 16px 0;
  padding-left: 24px;
  color: var(--text-secondary);
}

.tou-list li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.tou-list li strong {
  color: var(--text-primary);
}

.tou-highlight-box {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 20px 25px;
  margin: 24px 0;
}

.tou-highlight-box p {
  margin: 0;
  color: var(--text-primary);
  font-weight: 500;
}

.tou-highlight-box i {
  color: var(--accent-primary);
  margin-right: 10px;
}

/* Acceptance Box */
.tou-acceptance {
  margin-top: 40px;
  padding: 30px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(59, 130, 246, 0.05));
  border-radius: 16px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  text-align: center;
}

.tou-acceptance-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--success), var(--accent-primary));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
}

.tou-acceptance-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.tou-acceptance-text {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.tou-acceptance-btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--success), var(--accent-primary));
  color: white;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tou-acceptance-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

/* Contact Box */
.tou-contact-box {
  margin-top: 30px;
  padding: 20px;
  background: var(--bg-secondary);
  border-radius: 12px;
  text-align: center;
}

.tou-contact-box i {
  color: var(--accent-primary);
  margin-right: 8px;
}

.tou-contact-box a {
  color: var(--accent-primary);
  text-decoration: none;
  font-weight: 500;
}

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

/* Responsive */
@media (max-width: 900px) {
  .tou-grid {
    grid-template-columns: 1fr;
  }

  .tou-sidebar {
    position: static;
    order: -1;
  }

  .tou-main-content {
    padding: 30px 25px;
  }
}

@media (max-width: 600px) {
  .tou-hero {
    padding: 100px 5% 50px;
  }

  .tou-main-content {
    padding: 25px 20px;
  }

  .tou-section-title {
    font-size: 1.25rem;
  }

  .tou-toc {
    padding: 20px;
  }
}


/* ========== REGISTER PAGE STYLES ========== */

.reg-main {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  padding: 120px 5% 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.reg-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.reg-container {
  max-width: 550px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Register Card */
.reg-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
}

/* Header */
.reg-header {
  text-align: center;
  margin-bottom: 32px;
}

.reg-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
  text-decoration: none;
}

.reg-logo-icon {
  width: 48px;
  height: 48px;
  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: 1.5rem;
}

.reg-logo-text {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.reg-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.reg-subtitle {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.reg-subtitle a {
  color: var(--accent-primary);
  text-decoration: none;
  font-weight: 600;
}

.reg-subtitle a:hover {
  text-decoration: underline;
}

/* Form */
.reg-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.reg-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.reg-label {
  color: var(--text-primary);
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.reg-label i {
  color: var(--accent-primary);
  font-size: 0.875rem;
}

.reg-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.reg-input {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-secondary);
  border: 1.5px solid var(--border-light);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 0.9375rem;
  transition: all 0.3s ease;
}

.reg-input:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.reg-input.error {
  border-color: var(--danger);
}

.reg-input.success {
  border-color: var(--success);
}

.reg-input-icon {
  position: absolute;
  right: 12px;
  color: var(--text-muted);
  font-size: 1rem;
  pointer-events: none;
}

.reg-input-wrapper .reg-input-icon.fa-eye,
.reg-input-wrapper .reg-input-icon.fa-eye-slash {
  pointer-events: auto;
  cursor: pointer;
  right: 12px;
}

/* Password Strength Meter */
.reg-password-strength {
  margin-top: 6px;
}

.reg-strength-bar {
  height: 4px;
  background: var(--border-light);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 4px;
}

.reg-strength-fill {
  height: 100%;
  width: 0%;
  transition: width 0.3s ease, background 0.3s ease;
  border-radius: 2px;
}

.reg-strength-fill.weak {
  width: 25%;
  background: var(--danger);
}

.reg-strength-fill.fair {
  width: 50%;
  background: var(--warning);
}

.reg-strength-fill.good {
  width: 75%;
  background: var(--accent-tertiary);
}

.reg-strength-fill.strong {
  width: 100%;
  background: var(--success);
}

.reg-strength-text {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Validation Message */
.reg-validation-message {
  font-size: 0.75rem;
  color: var(--danger);
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.reg-validation-message.success {
  color: var(--success);
}

/* Gender Radio */
.reg-gender-group {
  display: flex;
  gap: 20px;
  padding: 8px 0;
}

.reg-radio-item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.reg-radio-item input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent-primary);
  cursor: pointer;
}

.reg-radio-item label {
  color: var(--text-primary);
  font-size: 0.9375rem;
  cursor: pointer;
}

/* Country Select with Autocomplete */
.reg-select-wrapper {
  position: relative;
}

.reg-country-input {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-secondary);
  border: 1.5px solid var(--border-light);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 0.9375rem;
  transition: all 0.3s ease;
}

.reg-country-input:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.reg-country-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 250px;
  overflow-y: auto;
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  margin-top: 4px;
  box-shadow: var(--shadow-lg);
  z-index: 100;
  display: none;
}

.reg-country-dropdown.show {
  display: block;
}

.reg-country-option {
  padding: 10px 16px;
  cursor: pointer;
  color: var(--text-primary);
  transition: background 0.2s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.reg-country-option:hover {
  background: var(--bg-secondary);
}

.reg-country-option.selected {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  color: var(--accent-primary);
}

.reg-country-flag {
  font-size: 1.25rem;
}

/* Terms Checkbox */
.reg-terms-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 10px 0;
}

.reg-terms-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent-primary);
  cursor: pointer;
  margin-top: 2px;
}

.reg-terms-label {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.5;
}

.reg-terms-label a {
  color: var(--accent-primary);
  text-decoration: none;
  font-weight: 500;
}

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

/* Submit Button */
.reg-submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.reg-submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.reg-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Error Message */
.reg-error-message {
  color: var(--danger);
  font-size: 0.75rem;
  margin-top: 4px;
}

/* Responsive */
@media (max-width: 600px) {
  .reg-main {
    padding: 100px 5% 40px;
  }

  .reg-card {
    padding: 30px 20px;
  }

  .reg-form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .reg-title {
    font-size: 1.5rem;
  }
}



/* ========== LOGIN PAGE STYLES ========== */

.lgn-main {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  padding: 120px 5% 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.lgn-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.lgn-container {
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Login Card */
.lgn-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
}

/* Header */
.lgn-header {
  text-align: center;
  margin-bottom: 32px;
}

.lgn-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
  text-decoration: none;
}

.lgn-logo-icon {
  width: 48px;
  height: 48px;
  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: 1.5rem;
}

.lgn-logo-text {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lgn-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.lgn-subtitle {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.lgn-subtitle a {
  color: var(--accent-primary);
  text-decoration: none;
  font-weight: 600;
}

.lgn-subtitle a:hover {
  text-decoration: underline;
}

/* Form */
.lgn-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lgn-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lgn-label {
  color: var(--text-primary);
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.lgn-label i {
  color: var(--accent-primary);
  font-size: 0.875rem;
}

.lgn-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.lgn-input {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-secondary);
  border: 1.5px solid var(--border-light);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 0.9375rem;
  transition: all 0.3s ease;
}

.lgn-input:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.lgn-input.error {
  border-color: var(--danger);
}

.lgn-input-icon {
  position: absolute;
  right: 14px;
  color: var(--text-muted);
  font-size: 1rem;
  pointer-events: none;
}

.lgn-input-wrapper .lgn-input-icon.fa-eye,
.lgn-input-wrapper .lgn-input-icon.fa-eye-slash {
  pointer-events: auto;
  cursor: pointer;
}

/* Validation Message */
.lgn-validation-message {
  font-size: 0.75rem;
  color: var(--danger);
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
  min-height: 18px;
}

/* Form Options */
.lgn-form-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 5px 0;
}

.lgn-remember {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.lgn-remember input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent-primary);
  cursor: pointer;
}

.lgn-remember label {
  color: var(--text-secondary);
  font-size: 0.875rem;
  cursor: pointer;
}

.lgn-forgot-link {
  color: var(--accent-primary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.lgn-forgot-link:hover {
  text-decoration: underline;
}

/* Submit Button */
.lgn-submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.lgn-submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.lgn-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Divider */
.lgn-divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  margin: 20px 0;
}

.lgn-divider::before,
.lgn-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid var(--border-light);
}

.lgn-divider span {
  padding: 0 15px;
}

/* Social Login */
.lgn-social {
  display: flex;
  gap: 12px;
}

.lgn-social-btn {
  flex: 1;
  padding: 12px;
  background: var(--bg-secondary);
  border: 1.5px solid var(--border-light);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.lgn-social-btn:hover {
  background: var(--bg-tertiary);
  border-color: var(--accent-primary);
  transform: translateY(-2px);
}

.lgn-social-btn i {
  font-size: 1.125rem;
}

.lgn-social-btn .fa-google {
  color: #ea4335;
}

.lgn-social-btn .fa-apple {
  color: #000;
}

[data-theme="dark"] .lgn-social-btn .fa-apple {
  color: #fff;
}

/* Demo Credentials */
.lgn-demo-box {
  margin-top: 20px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
  border-radius: 12px;
  border: 1px solid var(--border-light);
}

.lgn-demo-title {
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-align: center;
}

.lgn-demo-credentials {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.lgn-demo-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  font-size: 0.8125rem;
}

.lgn-demo-item i {
  color: var(--accent-primary);
  font-size: 0.75rem;
}

.lgn-demo-item code {
  background: var(--bg-tertiary);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: monospace;
  color: var(--accent-primary);
}

/* Error Message */
.lgn-error-message {
  color: var(--danger);
  font-size: 0.75rem;
  margin-top: 4px;
}

/* Responsive */
@media (max-width: 600px) {
  .lgn-main {
    padding: 100px 5% 40px;
  }

  .lgn-card {
    padding: 30px 20px;
  }

  .lgn-title {
    font-size: 1.5rem;
  }

  .lgn-social {
    flex-direction: column;
  }

  .lgn-demo-credentials {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
}


/* ========== PRIVACY POLICY PAGE STYLES ========== */

/* Hero Section */
.pp-hero {
  position: relative;
  padding: 120px 5% 60px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  overflow: hidden;
}

.pp-hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1563013544-824ae1b704d3?w=1920') center/cover;
  opacity: 0.05;
  pointer-events: none;
}

.pp-hero-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.pp-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 100px;
  color: #60a5fa;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.pp-hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
}

.pp-hero-title span {
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pp-hero-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto;
}

.pp-updated {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pp-updated i {
  margin-right: 8px;
  color: #60a5fa;
}

/* Main Content */
.pp-content {
  padding: 60px 5%;
  background: var(--bg-secondary);
}

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

.pp-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}

/* Table of Contents Sidebar */
.pp-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.pp-toc {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 25px;
  box-shadow: var(--shadow-sm);
}

.pp-toc-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pp-toc-title i {
  color: var(--accent-primary);
}

.pp-toc-list {
  list-style: none;
  padding: 0;
}

.pp-toc-item {
  margin-bottom: 8px;
}

.pp-toc-link {
  display: block;
  padding: 10px 15px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9375rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.pp-toc-link:hover {
  background: var(--bg-secondary);
  color: var(--accent-primary);
  border-left-color: var(--accent-primary);
}

.pp-toc-link.active {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  color: var(--accent-primary);
  border-left-color: var(--accent-primary);
  font-weight: 500;
}

/* Main Content Area */
.pp-main-content {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.pp-section {
  margin-bottom: 40px;
}

.pp-section:last-child {
  margin-bottom: 0;
}

.pp-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-light);
}

.pp-section-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  font-size: 1.25rem;
}

.pp-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.pp-text {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.pp-text strong {
  color: var(--text-primary);
}

.pp-list {
  margin: 16px 0;
  padding-left: 24px;
  color: var(--text-secondary);
}

.pp-list li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.pp-list li strong {
  color: var(--text-primary);
}

.pp-highlight-box {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 20px 25px;
  margin: 24px 0;
}

.pp-highlight-box p {
  margin: 0;
  color: var(--text-primary);
  font-weight: 500;
}

.pp-highlight-box i {
  color: var(--accent-primary);
  margin-right: 10px;
}

/* Data Table */
.pp-table-wrapper {
  overflow-x: auto;
  margin: 24px 0;
}

.pp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.pp-table th {
  background: var(--bg-secondary);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  color: var(--text-primary);
  border-bottom: 2px solid var(--border-light);
}

.pp-table td {
  padding: 12px 16px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
}

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

/* Cookie Categories */
.pp-cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: var(--bg-secondary);
  border-radius: 12px;
  border: 1px solid var(--border-light);
}

.pp-cookie-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pp-cookie-title i {
  color: var(--accent-primary);
}

.pp-cookie-desc {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}

.pp-cookie-toggle {
  display: inline-block;
  padding: 6px 14px;
  background: var(--success);
  color: white;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.pp-cookie-toggle.optional {
  background: var(--warning);
}

/* Rights Grid */
.pp-rights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 24px 0;
}

.pp-right-card {
  padding: 20px;
  background: var(--bg-secondary);
  border-radius: 12px;
  border: 1px solid var(--border-light);
}

.pp-right-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.pp-right-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.pp-right-desc {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Contact Box */
.pp-contact-box {
  margin-top: 30px;
  padding: 30px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
  border-radius: 16px;
  border: 1px solid var(--border-light);
  text-align: center;
}

.pp-contact-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
}

.pp-contact-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.pp-contact-text {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.pp-contact-info {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.pp-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
}

.pp-contact-item i {
  color: var(--accent-primary);
}

.pp-contact-item a {
  color: var(--accent-primary);
  text-decoration: none;
}

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

/* Responsive */
@media (max-width: 900px) {
  .pp-grid {
    grid-template-columns: 1fr;
  }

  .pp-sidebar {
    position: static;
    order: -1;
  }

  .pp-main-content {
    padding: 30px 25px;
  }

  .pp-rights-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .pp-hero {
    padding: 100px 5% 50px;
  }

  .pp-main-content {
    padding: 25px 20px;
  }

  .pp-section-title {
    font-size: 1.25rem;
  }

  .pp-toc {
    padding: 20px;
  }

  .pp-contact-info {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
}