/* ========== APEXVAULT GLOBAL STYLES ========== */
/* Color Palette */
:root {
  --bg-deep: #0a0e1a;
  --bg-card: #112240;
  --border: #233554;
  --accent: #64ffda;
  --gradient-start: #00d4aa;
  --gradient-end: #00a8e8;
  --text-muted: #8892b0;
  --text-light: #ccd6f6;
  --text-white: #ffffff;
  --success: #22c55e;
  --danger: #ef4444;
  --sidebar-width: 280px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: var(--bg-deep);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ========== ANIMATED BACKGROUND PARTICLES ========== */
.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: float-up linear infinite;
}

@keyframes float-up {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% {
    transform: translateY(-10vh) scale(1);
    opacity: 0;
  }
}

/* ========== FADE IN ANIMATION ========== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in-delay-1 { animation-delay: 0.2s; }
.fade-in-delay-2 { animation-delay: 0.4s; }
.fade-in-delay-3 { animation-delay: 0.6s; }
.fade-in-delay-4 { animation-delay: 0.8s; }
.fade-in-delay-5 { animation-delay: 1.0s; }

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

/* ========== PULSE GLOW ========== */
.pulse-glow {
  animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(0, 212, 170, 0.2);
  }
  50% {
    box-shadow: 0 0 40px rgba(0, 212, 170, 0.4);
  }
}

/* ========== NAVIGATION ========== */
nav {
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  transition: all 0.3s;
}

nav.scrolled {
  background: rgba(10, 14, 26, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  cursor: pointer;
  transition: transform 0.3s;
}

.logo:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-btn {
  padding: 10px 24px;
  border: 1px solid var(--accent);
  border-radius: 6px;
  color: var(--accent);
  background: transparent;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

.nav-btn:hover {
  background: rgba(100, 255, 218, 0.1);
  transform: translateY(-2px);
}

/* ========== SIDEBAR TOGGLE ========== */
.sidebar-toggle {
  position: fixed;
  right: 20px;
  top: 85px;
  z-index: 200;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--bg-deep);
  box-shadow: 0 4px 20px rgba(0, 212, 170, 0.3);
  transition: all 0.3s;
}

.sidebar-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(0, 212, 170, 0.5);
}

.sidebar-toggle.active {
  right: 300px;
}

/* ========== RIGHT SIDEBAR ========== */
.right-sidebar {
  position: fixed;
  top: 0;
  right: calc(-1 * var(--sidebar-width));
  width: var(--sidebar-width);
  height: 100vh;
  background: var(--bg-card);
  border-left: 1px solid var(--border);
  z-index: 150;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 100px 24px 24px;
  overflow-y: auto;
}

.right-sidebar.open {
  right: 0;
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 140;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.sidebar-overlay.open {
  opacity: 1;
  visibility: visible;
}

.sidebar-section {
  margin-bottom: 32px;
}

.sidebar-section h3 {
  color: var(--accent);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 10px;
  color: var(--text-light);
  text-decoration: none;
  margin-bottom: 8px;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.sidebar-link:hover {
  background: rgba(100, 255, 218, 0.05);
  border-color: var(--border);
  transform: translateX(4px);
}

.sidebar-link .icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(100, 255, 218, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.sidebar-link .text {
  font-size: 0.95rem;
  font-weight: 500;
}

.sidebar-link .subtext {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.sidebar-cta {
  margin-top: 24px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(0, 212, 170, 0.1), rgba(0, 168, 232, 0.1));
  border-radius: 12px;
  border: 1px solid rgba(100, 255, 218, 0.2);
}

.sidebar-cta h4 {
  color: var(--text-white);
  margin-bottom: 8px;
}

.sidebar-cta p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.sidebar-cta button {
  width: 100%;
  padding: 12px;
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
  color: var(--bg-deep);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.3s;
}

.sidebar-cta button:hover {
  transform: translateY(-2px);
}

/* ========== HERO SECTION ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 40px 60px;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
}

/* Dark overlay for hero background image */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,10,25,0.70) 0%, rgba(5,10,25,0.85) 100%);
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 212, 170, 0.08) 0%, transparent 70%);
  pointer-events: none;
  animation: pulse 4s ease-in-out infinite;
  z-index: 2;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-content {
  max-width: 900px;
  text-align: center;
  position: relative;
  z-index: 3;
}

.hero-tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(100, 255, 218, 0.1);
  border: 1px solid rgba(100, 255, 218, 0.3);
  border-radius: 50px;
  color: var(--accent);
  font-size: 0.85rem;
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text-white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero h1 span {
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 40px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 16px 36px;
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
  color: var(--bg-deep);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

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

.btn-secondary {
  padding: 16px 36px;
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background: rgba(100, 255, 218, 0.1);
  transform: translateY(-3px);
}

/* ========== STATS BAR ========== */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px;
  position: relative;
  z-index: 1;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 4px;
}

/* ========== SECTIONS ========== */
.section {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

.section-label {
  color: var(--accent);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--text-white);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}

/* ========== CARDS ========== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

/* ===== CARDS WITH BACKGROUND IMAGES ===== */
.card[style*="background-image"] {
  background-color: var(--bg-card);
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Semi-transparent overlay - images are VISIBLE */
.card[style*="background-image"]::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,14,26,0.45) 0%, rgba(10,14,26,0.65) 100%);
  z-index: 0;
  transition: all 0.5s ease;
}

/* On hover, lighten overlay so image pops more */
.card[style*="background-image"]:hover::before {
  background: linear-gradient(180deg, rgba(10,14,26,0.25) 0%, rgba(10,14,26,0.50) 100%);
}

/* Ensure all card content sits above overlay */
.card > * {
  position: relative;
  z-index: 1;
}

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

.card[style*="background-image"]:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border-color: rgba(100, 255, 218, 0.3);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: rgba(100, 255, 218, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: transform 0.3s;
  backdrop-filter: blur(4px);
}

.card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
}

.card h3 {
  color: var(--text-white);
  font-size: 1.3rem;
  margin-bottom: 12px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}

.card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}

/* ========== CTA SECTION ========== */
.cta-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 40px;
  text-align: center;
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* CTA overlay */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,12,30,0.60) 0%, rgba(8,12,30,0.80) 100%);
  z-index: 1;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 212, 170, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 2;
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.cta-section h2 {
  font-size: 2.5rem;
  color: var(--text-white);
  margin-bottom: 20px;
  text-shadow: 0 2px 15px rgba(0,0,0,0.5);
}

.cta-section p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 32px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}

/* ========== FOOTER ========== */
footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 60px 40px 30px;
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  margin-bottom: 16px;
  display: inline-block;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-col h4 {
  color: var(--text-white);
  font-size: 0.95rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ========== INVESTMENT PLANS ========== */
.plan-card {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.plan-badge {
  position: absolute;
  top: 16px;
  right: -30px;
  width: 120px;
  padding: 4px 0;
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
  color: var(--bg-deep);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: rotate(45deg);
  z-index: 2;
}

.plan-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.plan-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 4px;
}

.plan-price span {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 400;
}

.plan-return {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.plan-return span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
  -webkit-text-fill-color: var(--text-muted);
}

.plan-duration {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(100, 255, 218, 0.1);
  border: 1px solid rgba(100, 255, 218, 0.3);
  border-radius: 50px;
  color: var(--accent);
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.plan-features {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
  padding: 0;
}

.plan-features li {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-card .btn-primary {
  width: 100%;
  padding: 12px;
  font-size: 0.95rem;
}

/* ========== HOW IT WORKS ========== */
.steps-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

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

.step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-deep);
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
  z-index: 2;
}

.step-card .card-icon {
  margin: 16px auto 16px;
}

/* ========== TESTIMONIALS ========== */
.testimonial-card {
  position: relative;
}

.stars {
  color: #fbbf24;
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card > p {
  font-style: italic;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-deep);
  font-weight: 700;
  font-size: 0.85rem;
}

.author-name {
  color: var(--text-white);
  font-weight: 600;
  font-size: 0.9rem;
}

.author-title {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ========== FAQ ========== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  color: var(--text-white);
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  font-size: 1.3rem;
  color: var(--accent);
  transition: transform 0.3s;
  font-weight: 300;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  padding: 0 24px;
}

.faq-answer.open {
  padding: 0 24px 20px;
}

/* ========== TRUST BADGES ========== */
.trust-section {
  padding: 60px 40px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.trust-icon {
  width: 56px;
  height: 56px;
  background: rgba(100, 255, 218, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.trust-item p {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========== SCROLL REVEAL ========== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .trust-inner { gap: 30px; }
  .plan-badge { font-size: 0.6rem; width: 100px; right: -26px; }
  .steps-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hero h1 { font-size: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .section { padding: 60px 20px; }
  .right-sidebar { width: 100%; right: -100%; }
  .sidebar-toggle.active { right: 20px; }
}

/* ========== LOCATION BADGE ========== */
.location-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(100, 255, 218, 0.08);
  border: 1px solid rgba(100, 255, 218, 0.25);
  border-radius: 50px;
  margin-left: 16px;
}

.location-flag {
  font-size: 1rem;
}

.location-text {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
}

/* ========== UK SECTION ========== */
.uk-section {
  padding: 80px 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.uk-section h2 {
  font-size: 2rem;
  color: var(--text-white);
  margin-bottom: 12px;
}

.uk-section p {
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 24px;
}

.uk-badge-large {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  font-size: 1.2rem;
}

.uk-badge-large .flag {
  font-size: 2rem;
}

.uk-badge-large .text {
  color: var(--text-white);
  font-weight: 700;
}

.uk-badge-large .sub {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 400;
}

/* ========== FLOATING CONTACT BUTTONS ========== */
.floating-contacts {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.float-btn svg {
  width: 26px;
  height: 26px;
  color: #fff;
}

.float-btn:hover {
  transform: scale(1.15) translateY(-3px);
}

.email-btn {
  background: linear-gradient(135deg, #00a8e8, #0077b6);
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

/* ========== GLOWING PULSE ANIMATION ========== */
.glow-pulse {
  animation: whatsappGlow 2s ease-in-out infinite;
}

@keyframes whatsappGlow {
  0%, 100% {
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.4), 0 0 30px rgba(37, 211, 102, 0.2);
  }
  50% {
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.8), 0 0 50px rgba(37, 211, 102, 0.4), 0 0 70px rgba(37, 211, 102, 0.2);
  }
}

@media (max-width: 768px) {
  .floating-contacts {
    bottom: 16px;
    right: 16px;
  }
  .float-btn {
    width: 50px;
    height: 50px;
  }
  .float-btn svg {
    width: 22px;
    height: 22px;
  }
}

/* ========== LIVE MARKET TICKER ========== */
.market-ticker-wrap {
  width: 100%;
  overflow: hidden;
  background: rgba(0, 212, 170, 0.06);
  border-top: 1px solid rgba(0, 212, 170, 0.12);
  border-bottom: 1px solid rgba(0, 212, 170, 0.12);
  padding: 0.7rem 0;
  position: relative;
}

.market-ticker-wrap::before,
.market-ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.market-ticker-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-deep), transparent);
}

.market-ticker-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-deep), transparent);
}

.market-ticker {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}

.market-ticker:hover {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  white-space: nowrap;
}

.ticker-item .coin {
  font-weight: 700;
  color: var(--text-light);
}

.ticker-item .price {
  color: var(--accent);
  font-weight: 600;
}

.ticker-item .change {
  font-size: 0.8rem;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-weight: 600;
}

.ticker-item .change.up {
  color: var(--success);
  background: rgba(34, 197, 94, 0.1);
}

.ticker-item .change.down {
  color: var(--danger);
  background: rgba(239, 68, 68, 0.1);
}

/* ========== LIVE MARKET IFRAME SECTION ========== */
.market-section {
  padding: 3rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.market-section h2 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: var(--text-white);
}

.market-section p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.market-iframe-wrap {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.stat-box {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
}

.stat-box h2 {
  font-size: 2.2rem;
  background: linear-gradient(135deg, var(--accent), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.3rem;
}

.stat-box p { color: var(--text-muted); font-size: 0.85rem; }

.app-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.app-badge {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 0.7rem 1.2rem;
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s;
}

.app-badge:hover {
  border-color: var(--accent);
  background: rgba(0,212,170,0.05);
}

.app-badge i { font-size: 1.6rem; }
.app-badge small { display: block; font-size: 0.65rem; color: var(--text-muted); }
.app-badge strong { font-size: 1rem; }

.live-feed-section {
  padding: 3rem 1.5rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.live-feed-section h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.live-feed {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 1rem 1.5rem;
  height: 220px;
  overflow: hidden;
  position: relative;
  text-align: left;
}

.feed-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.feed-item:last-child {
  border-bottom: none;
}

.feed-amount.deposit { color: #22c55e; }
.feed-amount.withdraw { color: #ef4444; }

.trust-bar {
  text-align: center;
  padding: 1.8rem 1rem;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  background: rgba(0, 212, 170, 0.03);
  position: relative;
  z-index: 1;
}

.trust-bar > p {
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.2rem;
}

.trust-logos {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-bar .trust-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
}

.trust-bar .trust-item i {
  color: var(--accent);
  font-size: 1rem;
}

@media (max-width: 480px) {
  .trust-logos {
    gap: 1rem 1.5rem;
  }
  .trust-bar .trust-item {
    font-size: 0.8rem;
  }
}
