/* ===== VARIABLES (BLUE THEME) ===== */
:root {
  --accent: #00d4ff;
  --accent-dim: #00a3cc;
  --accent-glow: rgba(0, 212, 255, 0.4);
  --accent-glow-sm: rgba(0, 212, 255, 0.15);
  --blue: #0056ff;
  --purple: #7c3aed;
  --bg: #020204;
  --bg-card: #08080a;
  --bg-elevated: #0a0a0f;
  --fg: #f0f0f8;
  --fg-muted: #707080;
  --border: rgba(255, 255, 255, 0.05);
  --border-accent: rgba(0, 212, 255, 0.15);
  --radius: 14px;
  --font-display: 'DM Sans', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

.light {
  --accent: #0088cc;
  --accent-dim: #006699;
  --accent-glow: rgba(0, 136, 204, 0.2);
  --bg: #f5f7fa;
  --bg-card: #ffffff;
  --bg-elevated: #eef1f6;
  --fg: #0d0d1a;
  --fg-muted: #5a5a7a;
  --border: rgba(0, 0, 0, 0.08);
  --border-accent: rgba(0, 136, 204, 0.3);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  height: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  transition: background 0.3s, color 0.3s;
  overflow-x: hidden;
  cursor: default;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
}

input,
textarea {
  font-family: inherit;
}

/* ===== KEYFRAMES ===== */
@keyframes float {

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

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

@keyframes floatR {

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

  50% {
    transform: translateY(16px);
  }
}

@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.25), 0 0 40px rgba(0, 212, 255, 0.1);
  }

  50% {
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.6), 0 0 80px rgba(0, 212, 255, 0.25);
  }
}

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

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

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

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

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

/* ===== TRADING CANVAS BACKGROUND ===== */
#trading-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.25;
  transition: opacity 0.4s ease;
}

/* html.light #trading-canvas { opacity: 0.18; } */
html.light #trading-canvas {
  opacity: 0.1;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.d1 {
  transition-delay: 100ms;
}

.d2 {
  transition-delay: 200ms;
}

.d3 {
  transition-delay: 300ms;
}

.d4 {
  transition-delay: 400ms;
}

.d5 {
  transition-delay: 500ms;
}

.d6 {
  transition-delay: 600ms;
}

/* ===== UTILITIES ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.orb-green {
  background: radial-gradient(circle, rgba(0, 212, 255, 0.45) 0%, transparent 70%);
}

.orb-blue {
  background: radial-gradient(circle, rgba(0, 86, 255, 0.3) 0%, transparent 70%);
}

.orb-purple {
  background: radial-gradient(circle, rgba(124, 58, 237, 0.25) 0%, transparent 70%);
}

.section-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
  width: 100%;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid var(--border-accent);
  background: rgba(0, 212, 255, 0.08);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
}

.badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 2s infinite;
}

/* ===== BUTTONS ===== */
.btn-neon {
  background: var(--accent);
  color: #08080f;
  font-weight: 700;
  border-radius: 12px;
  padding: 14px 32px;
  font-size: 15px;
  transition: all 0.3s;
  box-shadow: 0 0 20px var(--accent-glow);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  animation: pulseGlow 2.5s ease-in-out infinite;
}

.btn-neon:hover {
  background: #33ddff;
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.7);
}

.btn-outline {
  border: 1px solid var(--border-accent);
  color: var(--accent);
  border-radius: 12px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  background: rgba(0, 212, 255, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 0 20px var(--accent-glow-sm);
}

.btn-neon-sm {
  padding: 10px 22px;
  font-size: 13px;
  border-radius: 10px;
  animation: none;
}

.btn-outline-sm {
  padding: 10px 22px;
  font-size: 13px;
  border-radius: 10px;
}

/* ===== CARD ===== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
  border-color: var(--border-accent);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35), 0 0 40px var(--accent-glow-sm);
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.3s ease;
  padding: 0 40px;
}

#navbar.scrolled {
  background: rgba(8, 8, 15, 0.85);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
}

.light #navbar.scrolled {
  background: rgba(245, 247, 250, 0.9);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  transition: height 0.3s ease;
}

#navbar .nav-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 85px;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  transition: height 0.3s ease;
  text-decoration: none;
}

/* new logo css  */
/* ===== NEW LOGO STYLES ===== */
.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: all 0.3s ease;
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
}

.logo-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.logo-subtitle {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
}

/* Scrolled State */
#navbar.scrolled .logo-img {
  height: 38px;
}

#navbar.scrolled .logo-title {
  font-size: 1.15rem;
}

#navbar.scrolled .logo-subtitle {
  font-size: 0.8rem;
}

/* Mobile */
@media (max-width: 900px) {
  .logo-img {
    height: 44px;
  }

  .logo-title {
    font-size: 1.2rem;
  }

  .logo-subtitle {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .logo-img {
    height: 38px;
  }

  .logo-title {
    font-size: 1.05rem;
  }

  .logo-subtitle {
    font-size: 0.75rem;
  }

  .logo-wrapper {
    gap: 8px;
  }
}

/* css  extra */
/* ===== LOGO WIDER FIX - WIDTH ONLY, HEIGHT SAME ===== */

/* Wrapper - Horizontal spacing badhaya */
#navbar .nav-logo .logo-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-right: 0;
}

/* Logo Image - Height SAME rakhi, sirf width auto */
#navbar .nav-logo .logo-wrapper .logo-img {
  height: 52px;
  /* Height same rakhi */
  width: auto;
  /* Width automatic adjust */
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  /* Image compress na ho */
}

/* Text Container - Horizontal space badhaya */
#navbar .nav-logo .logo-wrapper .logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
  /* Line-height same rakhi (height control) */
  padding-left: 5px;
  /* Text ko thoda right push kare */
}

/* Title - Font weight se width badhayi, height nahi */
#navbar .nav-logo .logo-wrapper .logo-text .logo-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  /* Size moderate rakha */
  font-weight: 900;
  /* Bold se visual width badhegi */
  color: var(--fg);
  letter-spacing: 0.03em;
  /* Letters ke beech thoda space = zyada width */
  white-space: nowrap;
  /* Text ek line me rahe */
}

/* Subtitle - Same approach */
#navbar .nav-logo .logo-wrapper .logo-text .logo-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  /* Zyada letter-spacing = wider look */
  white-space: nowrap;
}

/* Hover Effects */
#navbar .nav-logo:hover .logo-wrapper {
  gap: 22px;
  /* Hover pe thoda aur space */
}

/* ===== SCROLLED STATE ===== */
#navbar.scrolled .nav-logo .logo-wrapper {
  gap: 16px;
  padding-right: 8px;
}

#navbar.scrolled .nav-logo .logo-wrapper .logo-img {
  height: 42px;
  /* Scrolled me height thodi kam, par proportion same */
}

#navbar.scrolled .nav-logo .logo-wrapper .logo-text .logo-title {
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

#navbar.scrolled .nav-logo .logo-wrapper .logo-text .logo-subtitle {
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 900px) {
  #navbar .nav-logo .logo-wrapper {
    gap: 16px;
    padding-right: 8px;
  }

  #navbar .nav-logo .logo-wrapper .logo-img {
    height: 48px;
  }

  #navbar .nav-logo .logo-wrapper .logo-text .logo-title {
    font-size: 1.3rem;
    letter-spacing: 0.02em;
  }

  #navbar .nav-logo .logo-wrapper .logo-text .logo-subtitle {
    font-size: 0.95rem;
    letter-spacing: 0.06em;
  }
}

@media (max-width: 480px) {
  #navbar .nav-logo .logo-wrapper {
    gap: 12px;
    padding-right: 5px;
  }

  #navbar .nav-logo .logo-wrapper .logo-img {
    height: 42px;
  }

  #navbar .nav-logo .logo-wrapper .logo-text .logo-title {
    font-size: 1.15rem;
  }

  #navbar .nav-logo .logo-wrapper .logo-text .logo-subtitle {
    font-size: 0.85rem;
  }
}

/* css  extra */
/* new logo css  */

#navbar .nav-logo img {
  width: auto;
  height: 52px;
  object-fit: contain;
  display: block;
  transition: all 0.3s ease;
}

#navbar .nav-logo:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 auto;
}

.nav-link {
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transition: left 0.3s ease;
}

.nav-link:hover {
  color: var(--fg);
  background: rgba(255, 255, 255, 0.06);
}

.nav-link:hover::after {
  left: 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
  flex-shrink: 0;
}

.theme-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-muted);
  transition: all 0.2s;
}

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

.theme-btn svg {
  width: 16px;
  height: 16px;
}

.login-btn {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  transition: color 0.2s;
}

.login-btn:hover {
  color: var(--fg);
}

.mobile-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  align-items: center;
  justify-content: center;
  color: var(--fg-muted);
  flex-shrink: 0;
}

.mobile-menu-btn svg {
  width: 18px;
  height: 18px;
}

#mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background: rgba(8, 8, 15, 0.95);
  backdrop-filter: blur(20px);
  animation: slideDown 0.25s ease;
}

.light #mobile-menu {
  background: rgba(245, 247, 250, 0.97);
}

#mobile-menu.open {
  display: block;
}

.mobile-links {
  padding: 12px 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-link {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  text-align: left;
  transition: all 0.2s;
  width: 100%;
}

.mobile-link:hover {
  color: var(--fg);
  background: rgba(255, 255, 255, 0.05);
}

.mobile-actions {
  padding: 8px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}

/* ===== SCROLLED STATE (Navbar Shrink) ===== */
#navbar.scrolled .nav-inner {
  height: 65px;
}

#navbar.scrolled .nav-logo {
  height: 65px;
}

#navbar.scrolled .nav-logo img {
  height: 42px;
}

#navbar.scrolled .theme-btn {
  width: 36px;
  height: 36px;
}

#navbar.scrolled .theme-btn svg {
  width: 16px;
  height: 16px;
}

#navbar.scrolled .mobile-menu-btn {
  width: 36px;
  height: 36px;
}

#navbar.scrolled .mobile-menu-btn svg {
  width: 18px;
  height: 18px;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 900px) {
  #navbar {
    padding: 0 24px;
  }

  .nav-links,
  .nav-actions .login-btn,
  .nav-actions .btn-neon {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .nav-inner {
    gap: 0;
    height: 75px;
    justify-content: space-between;
    padding: 0 8px;
  }

  #navbar .nav-logo {
    flex-shrink: 0;
    margin-right: 0;
  }

  #navbar .nav-logo img {
    height: 50px;
  }

  .nav-actions {
    margin-left: 0;
    gap: 12px;
  }

  /* Mobile scrolled state */
  #navbar.scrolled .nav-inner {
    height: 60px;
  }

  #navbar.scrolled .nav-logo img {
    height: 42px;
  }

  #navbar.scrolled .theme-btn,
  #navbar.scrolled .mobile-menu-btn {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 480px) {
  #navbar {
    padding: 0 16px;
  }

  .nav-inner {
    height: 70px;
    padding: 0 4px;
  }

  #navbar .nav-logo img {
    height: 46px;
  }

  .theme-btn,
  .mobile-menu-btn {
    width: 38px;
    height: 38px;
  }

  /* Mobile small scrolled */
  #navbar.scrolled .nav-inner {
    height: 58px;
  }

  #navbar.scrolled .nav-logo img {
    height: 34px;
  }

  #navbar.scrolled .theme-btn,
  #navbar.scrolled .mobile-menu-btn {
    width: 32px;
    height: 32px;
  }
}

/* ===== HERO SECTION ===== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 80px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg,
      transparent,
      transparent 2px,
      rgba(0, 212, 255, 0.008) 2px,
      rgba(0, 212, 255, 0.008) 4px);
  pointer-events: none;
}

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

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--fg-muted);
  margin-bottom: 32px;
  font-weight: 500;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.social-proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 60px;
}

.avatars {
  display: flex;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-left: -10px;
}

.avatar:first-child {
  margin-left: 0;
}

.social-proof-text {
  font-size: 15px;
  color: var(--fg-muted);
  font-family: var(--font-body);
}

.social-proof-text strong {
  color: var(--fg);
  font-family: var(--font-body);
}

.hero-dashboard-image {
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

.dashboard-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(0, 212, 255, 0.3), 0 0 100px rgba(0, 212, 255, 0.2);
  border: 1px solid rgba(0, 212, 255, 0.3);
  animation: dashboardFloat 6s ease-in-out infinite;
}

.dashboard-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes dashboardFloat {

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

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

.dashboard-wrapper:hover {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  #hero {
    padding-top: 130px;
    padding-bottom: 60px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .btn-neon,
  .hero-cta .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .dashboard-wrapper {
    border-radius: 12px;
  }
}

/* ===== STATS BAR ===== */
#stats-bar {
  padding: 50px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg) 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

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

.stat-big {
  font-family: var(--font-mono);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
}

.stat-bar-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-muted);
  margin-top: 8px;
}

.stat-line {
  width: 32px;
  height: 2px;
  background: rgba(0, 212, 255, 0.4);
  margin: 8px auto 0;
  border-radius: 2px;
  transition: all 0.3s;
}

.stat-item:hover .stat-line {
  width: 60px;
  background: var(--accent);
}

.stats-trust {
  text-align: center;
  margin-top: 40px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--fg-muted);
}

/* ===== FEATURES ===== */
#features {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

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

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

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

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

@media (max-width: 580px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feat-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(0, 212, 255, 0.12);
  border: 1px solid rgba(0, 212, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}

.feat-icon svg {
  color: var(--accent);
  width: 22px;
  height: 22px;
}

.feature-card:hover .feat-icon {
  background: rgba(0, 212, 255, 0.22);
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.feat-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.feat-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.feat-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.feat-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.check-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-dot svg {
  width: 10px;
  height: 10px;
  color: var(--accent);
}

/* ===== HOW IT WORKS ===== */
#how-it-works {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-elevated);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 700px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.connector-line {
  position: absolute;
  top: 52px;
  left: calc(16.67% + 40px);
  right: calc(16.67% + 40px);
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--blue), var(--purple));
}

.connector-dot {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

.connector-dot.d1 {
  left: 25%;
  background: var(--accent);
}

.connector-dot.d2 {
  left: 75%;
  background: var(--purple);
  animation-delay: 0.5s;
}

@media (max-width: 700px) {

  .connector-line,
  .connector-dot {
    display: none;
  }
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.step-icon-wrap {
  position: relative;
  margin-bottom: 24px;
}

.step-circle {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.step-circle svg {
  width: 40px;
  height: 40px;
}

.step:hover .step-circle {
  border-color: var(--border-accent);
  transform: scale(1.05);
}

.step-num {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  color: var(--accent);
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.4);
}

.step-sub {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 8px;
}

.step-headline {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  max-width: 240px;
}

.how-cta {
  text-align: center;
  margin-top: 64px;
}

.how-cta p {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 12px;
}

/* ===== PRICING ===== */
#pricing {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  margin-bottom: 48px;
}

.toggle-btn {
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
  color: var(--fg-muted);
}

.toggle-btn.active {
  background: var(--accent);
  color: #08080f;
}

.save-badge {
  font-size: 11px;
  background: rgba(0, 212, 255, 0.15);
  color: var(--accent);
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 700;
  margin-left: 6px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
  align-items: center;
}

@media (max-width: 800px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}

.pricing-card {
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  position: relative;
  transition: all 0.3s;
}

.pricing-card:hover {
  border-color: rgba(0, 212, 255, 0.2);
  transform: translateY(-3px);
}

.pricing-card.featured {
  border-color: rgba(0, 212, 255, 0.4);
  background: var(--bg-elevated);
  box-shadow: 0 0 0 1px rgba(0, 212, 255, 0.25), 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 212, 255, 0.1);
  padding: 36px 28px;
}

@media (min-width: 800px) {
  .pricing-card.featured {
    transform: scale(1.04);
  }
}

@media (min-width: 800px) {
  .pricing-card.featured:hover {
    transform: scale(1.04) translateY(-3px);
  }
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #08080f;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
}

.plan-desc {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 20px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.price-num {
  font-family: var(--font-mono);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  transition: all 0.4s;
}

.price-period {
  font-size: 14px;
  color: var(--fg-muted);
}

.price-note {
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 24px;
  min-height: 18px;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
}

.plan-features li svg {
  color: var(--accent);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.plan-features li span {
  color: rgba(240, 240, 248, 0.8);
}

.light .plan-features li span {
  color: rgba(13, 13, 26, 0.8);
}

/* ===== FAQ ===== */
#faq {
  padding: 60px 0;
  overflow: hidden;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
}

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

.faq-item.open {
  border-color: rgba(0, 212, 255, 0.35);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  text-align: left;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s;
}

.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--fg-muted);
  transition: transform 0.35s, color 0.2s;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
  opacity: 0;
}

.faq-item.open .faq-body {
  max-height: 400px;
  opacity: 1;
}

.faq-a {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ===== CONTACT SECTION ===== */
#contact {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-elevated);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.contact-info-side {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--border);
  padding-right: 48px;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  background: rgba(0, 212, 255, 0.03);
  border-color: rgba(0, 212, 255, 0.2);
  transform: translateX(4px);
}

.contact-info-card .icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-form-side {
  padding-left: 0;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-muted);
  margin-bottom: 8px;
  font-family: var(--font-body);
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--fg);
  font-size: 15px;
  font-family: var(--font-body);
  transition: all 0.2s ease;
  outline: none;
}

.light .form-input {
  background: rgba(0, 0, 0, 0.03);
}

.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.form-input.error {
  border-color: #ef4444;
}

.form-input::placeholder {
  color: var(--fg-muted);
}

.form-textarea {
  resize: none;
  min-height: 140px;
}

.form-error {
  font-size: 12px;
  color: #ef4444;
  margin-top: 4px;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  background: var(--accent);
  color: #08080f;
  border-radius: 12px;
  transition: all 0.3s;
  box-shadow: 0 0 20px var(--accent-glow);
  font-family: var(--font-display);
  cursor: pointer;
  border: none;
}

.submit-btn:hover {
  background: #33ddff;
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.6);
}

.success-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 40px 20px;
  text-align: center;
}

.success-icon svg {
  width: 56px;
  height: 56px;
  color: var(--accent);
}

.success-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
}

.success-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

.reset-btn {
  padding: 12px 28px;
  border: 1px solid var(--border-accent);
  color: var(--accent);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
  background: transparent;
  cursor: pointer;
}

.reset-btn:hover {
  background: rgba(0, 212, 255, 0.08);
}

@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 32px;
  }

  .contact-info-side {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-right: 0;
    padding-bottom: 32px;
  }

  .contact-form-side {
    padding-left: 0;
  }
}

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  padding: 40px 0 20px;
  margin-top: auto;
  flex-shrink: 0;
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

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

/* ===== FOOTER LOGO EXACT MATCH ===== */
.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-logo-wrapper img {
    height: 48px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    margin-left: 8px;
}

.footer-logo-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.footer-logo-subtitle {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Mobile */
@media (max-width: 768px) {
    .footer-logo-wrapper img { height: 40px; }
    .footer-logo-title { font-size: 1.25rem; }
    .footer-logo-subtitle { font-size: 0.9rem; }
}

.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
  max-width: 200px;
  margin-bottom: 24px;
}

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

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #ffffff !important;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-btn:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

.social-btn.yt {
  background: #FF0000;
}

.social-btn.tw {
  background: #000000;
}

.social-btn.li {
  background: #0077B5;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.footer-links li {
  display: flex;
  align-items: center;
}

.footer-links a {
  font-size: 13px;
  color: var(--fg-muted);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

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

.footer-links a i.fa-chevron-right {
  font-size: 10px;
  margin-right: 6px;
  color: var(--accent);
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: 12px;
  color: var(--fg-muted);
  margin: 0;
}

.footer-bottom a {
  color: var(--accent);
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* ===== LIGHT MODE FOOTER FIX ===== */
html.light footer {
  background: #ffffff !important;
  border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
}

html.light .footer-brand,
html.light .footer-col h4,
html.light .footer-tagline,
html.light .footer-bottom p,
html.light .footer-links a {
  color: #1e293b !important;
}

html.light .social-btn.tw {
  background: #e2e8f0;
  color: #000 !important;
}

html.light .social-btn.tw i {
  color: #000 !important;
}

/* ===== SMOOTH SCROLL FIX ===== */
#hero,
#features,
#pricing,
#how-it-works,
#faq,
#contact {
  scroll-margin-top: 80px;
}

@media (max-width: 768px) {

  #hero,
  #features,
  #pricing,
  #how-it-works,
  #faq,
  #contact {
    scroll-margin-top: 70px;
  }
}

/* ===== NEW TRADE FX STYLE GLOW CURSOR (UNIQUE NAMES - NO CONFLICT) ===== */
#fa-glow-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 15px var(--accent-glow),
    0 0 30px rgba(0, 212, 255, 0.3);
  transition: width 0.2s ease, height 0.2s ease, background 0.2s;
}

body.fa-cursor-hover #fa-glow-cursor {
  width: 40px;
  height: 40px;
  background: rgba(0, 212, 255, 0.2);
  box-shadow: 0 0 20px var(--accent);
}

@media (max-width: 900px) {
  #fa-glow-cursor {
    display: none !important;
  }
}

/* ===== PURANA CURSOR - COMMENTED OUT (NO CONFLICT) ===== */
/*
#cursor-follower {
  position: fixed; width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  pointer-events: none; z-index: 9999; transform: translate(-50%, -50%); opacity: 1;
  transition: transform 0.15s ease-out, width 0.2s, height 0.2s, opacity 0.2s;
  box-shadow: 0 0 10px var(--accent-glow);
  display: none !important;
}
#cursor-follower::after {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--accent);
  opacity: 0; transition: opacity 0.2s, transform 0.3s ease-out;
}
body.hovering #cursor-follower { width: 12px; height: 12px; opacity: 0.9;  display: none !important;}
body.hovering #cursor-follower::after { opacity: 0.4; transform: translate(-50%, -50%) scale(1.5); }
*/

/* ===== SECTIONS TRANSPARENT ===== */
#features,
#pricing,
#contact {
  background: transparent !important;
}

#stats-bar,
#how-it-works,
#faq {
  background: transparent !important;
}

/* ===== GLASSMORPHISM CARDS ===== */
.card,
.pricing-card,
.contact-card,
.stat-box,
.faq-item,
.step-circle,
.hero-stats .stat-box {
  background: rgba(14, 14, 26, 0.55) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(0, 212, 255, 0.12) !important;
}

html.light .card,
html.light .pricing-card,
html.light .contact-card,
html.light .stat-box,
html.light .faq-item,
html.light .step-circle,
html.light .hero-stats .stat-box {
  background: rgba(255, 255, 255, 0.65) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

/* ===== IMAGE + CONTENT SECTIONS ===== */
.section-with-image {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.section-with-image .container {
  position: relative;
  z-index: 2;
}

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

.image-content-grid .content-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.image-content-grid .content-side .badge {
  align-self: flex-start;
  margin-bottom: 8px;
}

.image-content-grid .content-side h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}

.image-content-grid .content-side .gradient-text {
  display: inline;
}

.image-content-grid .content-side p {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin: 0;
  max-width: 500px;
}

.image-content-grid .content-side ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.image-content-grid .content-side ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--fg);
}

.image-content-grid .content-side ul li i {
  color: var(--accent);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.image-content-grid .content-side .cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.image-content-grid .image-side {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-content-grid .image-side .image-wrapper {
  position: relative;
  width: 100%;
  max-width: 700px;
  aspect-ratio: 16/10;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid var(--border-accent);
  background: var(--bg-card);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 60px var(--accent-glow), 0 0 100px rgba(0, 212, 255, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-content-grid .image-side .image-wrapper:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), 0 0 80px var(--accent-glow), 0 0 120px rgba(0, 212, 255, 0.25);
}

.image-content-grid .image-side img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  animation: imageFloat 8s ease-in-out infinite;
}

.image-content-grid .image-side .image-wrapper:hover img {
  animation-play-state: paused;
}

@keyframes imageFloat {

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

  50% {
    transform: scale(1.02) translateY(-4px);
  }
}

.image-content-grid .image-side .orb {
  z-index: -1;
}

.section-with-image.reverse .image-content-grid {
  direction: rtl;
}

.section-with-image.reverse .image-content-grid>* {
  direction: ltr;
}

@media (max-width: 900px) {
  .image-content-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .image-content-grid .content-side {
    order: 1;
    align-items: center;
  }

  .image-content-grid .image-side {
    order: 2;
  }

  .image-content-grid .content-side .badge {
    align-self: center;
  }

  .image-content-grid .content-side p {
    max-width: 100%;
  }

  .image-content-grid .content-side ul {
    align-items: center;
  }

  .image-content-grid .content-side .cta-group {
    justify-content: center;
  }

  .image-content-grid .image-side .image-wrapper {
    max-width: 100%;
    max-height: 100%;
    aspect-ratio: auto;
    background: transparent !important;
    border: 1px solid var(--border-accent);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
  }

  .image-content-grid .image-side img {
    object-fit: cover;
    width: 100%;
    height: auto;
    min-height: 220px;
    display: block;
    border-radius: 16px;
  }

  .section-with-image.reverse .image-content-grid {
    direction: ltr;
  }
}

@media (max-width: 480px) {
  .section-with-image {
    padding: 40px 0;
  }

  .image-content-grid {
    gap: 20px;
  }

  .image-content-grid .content-side h2 {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
  }

  .image-content-grid .content-side p {
    font-size: 14px;
  }

  .image-content-grid .image-side .image-wrapper {
    max-height: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1) !important;
  }

  .image-content-grid .image-side img {
    min-height: 200px;
    border-radius: 12px;
  }
}

/* ===== ENHANCED ORB — consistent pulse across sections ===== */
.orb-enhanced {
  animation: orbPulse 8s ease-in-out infinite;
}

@keyframes orbPulse {

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

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

/* ===== DISCOVER SETUPS ===== */
#discover-setups .cards-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  #discover-setups .cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 20px 20px;
    margin: 0;
    overflow-x: visible;
  }

  #discover-setups .cards-wrapper>* {
    flex: 0 0 100%;
    width: 100%;
    margin-bottom: 8px;
    scroll-snap-align: none;
  }
}

/* ==========================================
   🌍 UNIVERSAL RESPONSIVE FIX (PASTE AT END)
   ========================================== */
img,
video,
svg,
.card,
.contact-wrapper,
.pricing-card {
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
}

.contact-wrapper {
  width: 100%;
  padding: clamp(16px, 4vw, 48px) clamp(12px, 3vw, 48px);
  gap: clamp(16px, 3vw, 48px);
  overflow: hidden;
}

@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    padding: 24px 16px;
    gap: 24px;
  }

  .contact-info-side {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
  }

  #contact-form>div:first-child {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 375px) {
  .contact-wrapper {
    padding: 20px 12px;
  }

  .contact-info-card a,
  .contact-info-card span,
  .contact-info-card div {
    word-break: break-word;
    overflow-wrap: anywhere;
    max-width: 100%;
  }

  .form-input,
  .form-textarea,
  .submit-btn {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px !important;
    font-size: 14px;
  }

  .contact-info-side h3 {
    font-size: 20px;
  }

  .contact-info-side>p {
    font-size: 14px;
    line-height: 1.5;
  }
}

html,
body {
  overflow-x: hidden;
  width: 100%;
}
/* new css */
/* ===== ALL SECTION IMAGES - NO SPACE, FULL FILL ===== */
#market-analysis .image-wrapper,
#sniper-setups .image-wrapper,
#pro-updates .image-wrapper {
    aspect-ratio: auto !important;
    height: auto !important;
    max-height: none !important;
    padding: 0 !important;                 /* ✅ ZERO padding - no space */
    background: transparent !important;
    border: 1px solid var(--border-accent) !important;
    border-radius: 24px !important;
    overflow: hidden !important;           /* ✅ Image bahar na jaye */
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 60px var(--accent-glow) !important;
}

#market-analysis .image-wrapper img,
#sniper-setups .image-wrapper img,
#pro-updates .image-wrapper img {
    width: 100% !important;
    height: auto !important;
    max-height: 600px !important;
    object-fit: contain !important;        /* ✅ Pura UI dikhega, crop nahi */
    border-radius: 0 !important;           /* ✅ Radius wrapper pe hoga */
    display: block;
    animation: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Mobile responsive */
@media (max-width: 900px) {
    #market-analysis .image-wrapper,
    #sniper-setups .image-wrapper,
    #pro-updates .image-wrapper {
        padding: 0 !important;
        border-radius: 16px !important;
    }
    
    #market-analysis .image-wrapper img,
    #sniper-setups .image-wrapper img,
    #pro-updates .image-wrapper img {
        max-height: 400px !important;
    }
}
/* new css */