/* =============================================
   NEXA TRADE — SMART DIGITAL INCOME & GROWTH
   LOGO-MATCHED THEME: DEEP NAVY + AMBER/TEAL
   FONT: Inter (headings) + DM Sans (body)
   ============================================= */

@import url('../fonts/fonts.css');

/* =============================================
   CSS VARIABLES — LOGO-EXTRACTED PALETTE
   ============================================= */
:root {
  /* --- Dark backgrounds (logo navy) --- */
  --bg-dark: #000912;
  --bg-mid: #000d1a;
  --bg-alt: #001022;
  --bg-card: #001228;

  /* --- Primary accent: Amber / Bronze (logo warm) --- */
  --amber: #e07b00;
  --amber-light: #ffffff;
  --amber-glow: #ffb347;
  --amber-deep: #b35c00;

  /* --- Secondary accent: Cyan/Teal (logo complement) --- */
  --teal: #e07b00;
  --teal-light: #f59e2b;
  --teal-dim: #ffb347;

  /* --- Text --- */
  --text-primary: #e8f0fe;
  --text-muted: #6b8aac;
  --text-soft: #a8bfd6;

  /* --- Borders & shadows --- */
  --border-amber: rgba(224, 123, 0, 0.38);
  --border-teal: rgba(0, 200, 180, 0.3);
  --shadow-amber: 0 0 24px rgba(224, 123, 0, 0.4), 0 4px 24px rgba(0, 0, 0, 0.8);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(224, 123, 0, 0.15);
  --shadow-teal: 0 0 20px rgba(0, 200, 180, 0.35);

  /* --- Transition --- */
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =============================================
   RESET
   ============================================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 75px;
}

body {
  font-family: 'DM Sans', 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--teal), var(--amber));
  border-radius: 4px;
}

section[id] {
  scroll-margin-top: 75px;
}

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0s);
}

.reveal {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-44px);
}

.reveal-right {
  transform: translateX(44px);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 13px 0;
    background: rgb(0 22 54);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(224, 123, 0, 0.25);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 200, 180, 0.05);
    transition: var(--transition);
}

.navbar.scrolled
 {
    padding: 9px 0;
    background: rgb(0 29 68);
    border-bottom-color: rgba(224, 123, 0, 0.4);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.85);
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: nowrap;
}

.nav-logo img {
  height: 63px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(224, 123, 0, 0.5));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.83rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 7px 13px;
  border-radius: 7px;
  color: var(--text-white);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--amber-light));
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--amber-light);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 60%;
}

.nav-cta-desktop {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 26px;
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 60%, var(--amber-glow) 100%);
  color: #000912;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 0 18px rgba(224, 123, 0, 0.4), 0 4px 14px rgba(0, 0, 0, 0.5);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-cta-desktop:hover {
  box-shadow: 0 0 30px rgba(224, 123, 0, 0.65), 0 6px 20px rgba(0, 0, 0, 0.5);
  transform: translateY(-2px);
}

.nav-cta-mobile,
.nav-cta-mobile-row {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--amber-light);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


.vs11 {
     padding: 55px 0 55px;
    position: relative;
    overflow: hidden;
        background: linear-gradient(140deg, rgb(0 9 18 / 66%) 0%, rgb(0 18 38 / 68%) 50%, rgb(0 22 44 / 24%) 100%), url(../images/backgroundimages/background2.jpg) center / cover no-repeat;

}



.vs12 {
     padding: 55px 0 55px;
    position: relative;
    overflow: hidden;
        background: linear-gradient(140deg, rgb(0 9 18 / 66%) 0%, rgb(0 18 38 / 68%) 50%, rgb(0 22 44 / 24%) 100%), url(../images/backgroundimages/background102.jpg) center / cover no-repeat;

}



.vs13 {
     padding: 55px 0 55px;
    position: relative;
    overflow: hidden;
            background: linear-gradient(140deg, rgb(0 9 18 / 66%) 0%, rgb(0 18 38 / 68%) 50%, rgb(0 22 44 / 24%) 100%), url(../images/backgroundimages/background104.jpg) center / cover no-repeat;

}



/* =============================================
   GLOBAL HELPERS
   ============================================= */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-light);
  background: rgba(0, 200, 180, 0.08);
  border: 1px solid var(--border-teal);
  border-radius: 4px;
  padding: 5px 14px;
  margin-bottom: 16px;
  box-shadow: 0 0 12px rgba(0, 200, 180, 0.15);
}

.tag-icon {
  width: 13px;
  height: 13px;
  object-fit: contain;
  filter: invert(1) sepia(1) saturate(3) hue-rotate(130deg);
  opacity: 0.85;
  flex-shrink: 0;
}

.section-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 3.8vw, 3.1rem);
  line-height: 1.1;
  background: linear-gradient(130deg, #ffffff 0%, var(--amber-light) 55%, var(--amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.02rem;
  color: #d1e7ff;
  max-width: 600px;
  width: 100%;
  line-height: 1.8;
  margin-bottom: 44px;
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.divider {
  width: 72px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--amber-light), var(--teal));
  border-radius: 3px;
  margin: 0 auto 40px;
  box-shadow: 0 0 12px rgba(0, 200, 180, 0.4);
}

/* =============================================
   PAGE 01 — HERO  (REDESIGNED)
   ============================================= */
.hero {
    min-height: 100vh;
    padding: 90px 0 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, rgb(28 54 99) 0%, rgb(17 41 82 / 34%) 40%, rgb(2 4 8 / 55%) 70%, rgb(13 36 76) 100%), url(../images/backgroundimages/background1.jpg) center / cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Radial glow overlays */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 45%, rgba(224, 123, 0, 0.13) 0%, transparent 65%),
    radial-gradient(ellipse 45% 50% at 5% 85%, rgba(0, 200, 180, 0.09) 0%, transparent 60%),
    radial-gradient(ellipse 35% 40% at 95% 15%, rgba(0, 200, 180, 0.07) 0%, transparent 55%);
}

/* Grid texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(0, 200, 180, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 200, 180, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Ambient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(70px);
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  top: -80px;
  left: -100px;
  background: radial-gradient(circle, rgba(224, 123, 0, 0.12) 0%, transparent 70%);
  animation: orbFloat1 9s ease-in-out infinite;
}

.hero-orb-2 {
  width: 600px;
  height: 600px;
  top: 20%;
  right: -150px;
  background: radial-gradient(circle, rgba(0, 200, 180, 0.1) 0%, transparent 70%);
  animation: orbFloat2 12s ease-in-out infinite;
}

.hero-orb-3 {
  width: 400px;
  height: 400px;
  bottom: 0;
  left: 35%;
  background: radial-gradient(circle, rgba(224, 123, 0, 0.08) 0%, transparent 70%);
  animation: orbFloat1 7s ease-in-out 2s infinite;
}

@keyframes orbFloat1 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(30px, -30px);
  }
}

@keyframes orbFloat2 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-25px, 20px);
  }
}

/* Particles */
.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 0.5;
  }

  100% {
    transform: translateY(-110vh) rotate(720deg);
    opacity: 0;
  }
}

.hero-container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  position: relative;
  z-index: 2;
  flex: 1;
  min-height: calc(100vh - 155px);
}

/* ── Left ── */
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.hero-year-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.67rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--teal-light);
  background: rgba(0, 200, 180, 0.07);
  border: 1px solid rgba(0, 200, 180, 0.28);
  border-radius: 50px;
  padding: 5px 16px 5px 12px;
  margin-bottom: 20px;
  width: fit-content;
  box-shadow: 0 0 14px rgba(0, 200, 180, 0.12);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--teal-light);
  box-shadow: 0 0 8px rgba(0, 200, 180, 0.9);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    box-shadow: 0 0 6px rgba(0, 200, 180, 0.7);
  }

  50% {
    box-shadow: 0 0 14px rgba(0, 200, 180, 1);
  }
}

.hero-headline {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}

.hero-headline-line1 {
  font-size: clamp(3rem, 5.5vw, 5rem);
  color: #fff;
  text-shadow: 0 0 60px rgba(255, 255, 255, 0.08);
}

.hero-headline-accent {
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  background: linear-gradient(125deg, #c76000 0%, var(--amber-light) 35%, var(--amber-glow) 65%, #ffe07a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 28px rgba(224, 123, 0, 0.6));
  display: block;
}

/* Decorative divider under headline */
.hero-title-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0 20px;
}

.htd-line {
  flex: 1;
  height: 1px;
  max-width: 70px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
}

.htd-diamond {
  width: 7px;
  height: 7px;
  background: var(--amber-light);
  transform: rotate(45deg);
  box-shadow: 0 0 10px rgba(224, 123, 0, 0.7);
}

.hero-tagline-main {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 1.08rem;
  color: var(--text-soft);
  margin-bottom: 6px;
  line-height: 1.5;
}

.hero-tagline-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 28px;
  text-shadow: 0 0 14px rgba(224, 123, 0, 0.45);
}

/* Feature pills (3 compact) */
.hero-feature-pills {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 28px;
}

.hfpill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 14, 30, 0.75);
  border: 1px solid rgba(224, 123, 0, 0.18);
  border-left: 3px solid var(--amber);
  border-radius: 10px;
  padding: 10px 16px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.hfpill:hover {
  border-left-color: var(--amber-glow);
  background: rgba(0, 20, 44, 0.9);
  transform: translateX(5px);
  box-shadow: 0 0 18px rgba(224, 123, 0, 0.15);
}

.hfpill-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(224, 123, 0, 0.12);
  border: 1px solid rgba(224, 123, 0, 0.25);
  padding: 8px;
}

.hfpill-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1) sepia(1) saturate(4) hue-rotate(10deg) brightness(1.2);
}

.hfpill-icon--teal {
  background: rgba(0, 200, 180, 0.1);
  border-color: rgba(0, 200, 180, 0.22);
}

.hfpill-icon--teal img {
  filter: invert(1) sepia(1) saturate(3) hue-rotate(130deg);
}

.hfpill-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.hfpill-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--amber-light);
}

.hfpill-sub {
  font-size: 0.68rem;
  color: #ffffff;
}

/* CTA buttons */
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--amber-deep) 0%, var(--amber) 40%, var(--amber-light) 75%, var(--amber-glow) 100%);
  color: #000a14;
  border-radius: 8px;
  box-shadow: 0 0 22px rgba(224, 123, 0, 0.45), 0 4px 16px rgba(0, 0, 0, 0.6);
  transition: var(--transition);
  cursor: pointer;
}

.hero-btn-primary:hover {
  box-shadow: 0 0 38px rgba(224, 123, 0, 0.7), 0 6px 22px rgba(0, 0, 0, 0.6);
  transform: translateY(-3px);
}

.hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 24px;
  color: var(--text-soft);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  transition: var(--transition);
  cursor: pointer;
}

.hero-btn-ghost:hover {
  border-color: rgba(0, 200, 180, 0.4);
  color: var(--teal-light);
  background: rgba(0, 200, 180, 0.06);
  transform: translateY(-3px);
}

.hbtn-icon {
  width: 15px;
  height: 15px;
  object-fit: contain;
  filter: invert(1);
  opacity: 0.8;
}

.hero-btn-primary .hbtn-icon {
  filter: brightness(0);
  opacity: 0.75;
}

/* Taglines list (small bullet) */
.hero-taglines-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tagline-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  transition: var(--transition);
}

.tagline-item:hover {
  color: var(--teal-light);
  padding-left: 4px;
}

.tl-dot {
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 6px rgba(0, 200, 180, 0.6);
}

.tl-dot--amber {
  background: var(--amber-light);
  box-shadow: 0 0 6px rgba(224, 123, 0, 0.6);
}

/* ── Center ── */
.hero-center {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-coin-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
}

/* Orbit rings */
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  border: 1px dashed rgba(0, 200, 180, 0.15);
  animation: orbitSpin linear infinite;
}

.orbit-ring-1 {
  width: 360px;
  height: 360px;
  animation-duration: 28s;
}

.orbit-ring-2 {
  width: 460px;
  height: 460px;
  border-color: rgba(224, 123, 0, 0.1);
  animation-duration: 40s;
  animation-direction: reverse;
}

.orbit-ring-3 {
  width: 540px;
  height: 540px;
  animation-duration: 55s;
  border-style: solid;
  border-color: rgba(0, 200, 180, 0.06);
}

@keyframes orbitSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Orbiting dots */
.orbit-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal-light);
  box-shadow: 0 0 10px rgba(0, 200, 180, 0.9), 0 0 20px rgba(0, 200, 180, 0.4);
  pointer-events: none;
}

.orbit-dot-1 {
  animation: dotOrbit1 8s linear infinite;
}

.orbit-dot-2 {
  animation: dotOrbit2 14s linear infinite;
  background: var(--amber-light);
  box-shadow: 0 0 10px rgba(224, 123, 0, 0.9);
}

.orbit-dot-3 {
  animation: dotOrbit3 20s linear infinite;
  width: 7px;
  height: 7px;
}

@keyframes dotOrbit1 {
  from {
    transform: rotate(0deg) translateX(180px) rotate(0deg);
  }

  to {
    transform: rotate(360deg) translateX(180px) rotate(-360deg);
  }
}

@keyframes dotOrbit2 {
  from {
    transform: rotate(90deg) translateX(230px) rotate(-90deg);
  }

  to {
    transform: rotate(450deg) translateX(230px) rotate(-450deg);
  }
}

@keyframes dotOrbit3 {
  from {
    transform: rotate(200deg) translateX(270px) rotate(-200deg);
  }

  to {
    transform: rotate(560deg) translateX(270px) rotate(-560deg);
  }
}

/* Coin platform */
.coin-platform {
  position: relative;
  z-index: 2;
}

.coin-platform-shadow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(224, 123, 0, 0.35) 0%, transparent 70%);
  filter: blur(12px);
  animation: shadowPulse 4s ease-in-out infinite;
}

@keyframes shadowPulse {

  0%,
  100% {
    transform: translateX(-50%) scaleX(1);
    opacity: 0.5;
  }

  50% {
    transform: translateX(-50%) scaleX(1.2);
    opacity: 0.9;
  }
}

.coin-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.coin-img {
  object-fit: contain;
  animation: floatCoin 4.5s ease-in-out infinite;
  filter: drop-shadow(0 0 40px rgba(10, 8, 129, 0.55)) drop-shadow(0 0 80px rgba(34, 0, 224, 0.2));
}

@keyframes floatCoin {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-20px) scale(1.02);
  }
}

.coin-glow-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  border: 1px solid rgba(224, 123, 0, 0.3);
  box-shadow: 0 0 40px rgba(224, 123, 0, 0.2), inset 0 0 30px rgba(224, 123, 0, 0.05);
  animation: pulsRing 3.5s ease-in-out infinite;
}

.coin-glow-ring {
  width: 300px;
  height: 300px;
}

.coin-glow-ring--2 {
  width: 340px;
  height: 340px;
  border-color: rgba(0, 200, 180, 0.15);
  box-shadow: 0 0 30px rgba(0, 200, 180, 0.12);
  animation-delay: 1s;
  animation-duration: 4.5s;
}

@keyframes pulsRing {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}

.hero-center-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.67rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--teal);
  text-align: center;
  position: relative;
  z-index: 2;
}

.hcl-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--teal);
  box-shadow: 0 0 8px rgba(0, 200, 180, 0.8);
}

/* ── Right ── */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-phone-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-glow-bg {
  position: absolute;
  width: 280px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(224, 123, 0, 0.18) 0%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}

.hero-phone-img {
  width: 100%;
  max-width: 270px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(224, 123, 0, 0.32));
  animation: floatCoin 5.5s ease-in-out 1.2s infinite;
  position: relative;
  z-index: 1;
}

/* Floating info cards on phone */
.phone-float-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--amber-light);
  background: rgba(0, 10, 22, 0.88);
  border: 1px solid rgba(224, 123, 0, 0.3);
  border-radius: 10px;
  padding: 8px 13px;
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 14px rgba(224, 123, 0, 0.15);
  white-space: nowrap;
  animation: cardFloat 5s ease-in-out infinite;
}

.phone-float-card img {
  width: 13px;
  height: 13px;
  filter: invert(1) sepia(1) saturate(4) hue-rotate(10deg) brightness(1.2);
}

.phone-float-card--top {
  top: 10%;
  right: -30px;
  animation-delay: 0s;
}

.phone-float-card--bottom {
  bottom: 15%;
  left: -35px;
  animation-delay: 1.5s;
  color: var(--teal-light);
  border-color: rgba(0, 200, 180, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 14px rgba(0, 200, 180, 0.12);
}

.phone-float-card--bottom img {
  filter: invert(1) sepia(1) saturate(3) hue-rotate(130deg);
}

@keyframes cardFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ── Stats strip ── */
.hero-stats-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, rgba(0, 9, 18, 0) 0%, rgba(0, 12, 26, 0.9) 50%, rgba(0, 9, 18, 0) 100%);
  border-top: 1px solid rgba(224, 123, 0, 0.15);
  padding: 20px 0;
  position: relative;
  z-index: 2;
  width: 100%;
  backdrop-filter: blur(8px);
}

.hstat {
  text-align: center;
  padding: 0 36px;
  flex: 1;
  max-width: 240px;
}

.hstat-icon {
  width: 26px;
  height: 26px;
  margin: 0 auto 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hstat-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1) sepia(1) saturate(4) hue-rotate(10deg) brightness(1.3);
  opacity: 0.85;
}

.hstat-val {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(0.95rem, 1.8vw, 1.3rem);
  color: var(--amber-light);
  text-shadow: 0 0 18px rgba(224, 123, 0, 0.5);
  line-height: 1;
  margin-bottom: 5px;
}

.hstat-lbl {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.hstat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, rgba(224, 123, 0, 0.25), transparent);
}

/* =============================================
   PAGE 02 — ABOUT
   ============================================= */
.about {
    padding: 55px 0 55px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(140deg, rgb(0 9 18 / 66%) 0%, rgb(0 18 38 / 68%) 50%, rgb(0 22 44 / 24%) 100%), url(../images/backgroundimages/background2.jpg) center / cover no-repeat;
}

.about::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 85% 50%, rgba(224, 123, 0, 0.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(0, 200, 180, 0.06) 0%, transparent 60%);
}

.about::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 200, 180, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 200, 180, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(224, 123, 0, 0.18);
}

.about-img-overlay {
  position: absolute;
  bottom: 18px;
  left: 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  background: rgba(0, 9, 18, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 200, 180, 0.28);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 0 20px rgba(0, 200, 180, 0.2);
}

.aio-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--text-primary);
}

.aio-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal-light);
  box-shadow: 0 0 6px rgba(0, 200, 180, 0.7);
  flex-shrink: 0;
}

.about-text {
  display: flex;
  flex-direction: column;
}

.about-text .section-subtitle {
  margin-bottom: 28px;
  max-width: 100%;
}

.approach-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--amber-light);
  margin-bottom: 14px;
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 30px;
}

.approach-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(0, 16, 34, 0.85);
  border: 1px solid rgba(0, 200, 180, 0.1);
  border-left: 3px solid var(--teal);
  border-radius: 9px;
  padding: 12px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.84rem;
  color: #ffffff;
  line-height: 1.5;
  transition: var(--transition);
}

.approach-item:hover {
  border-left-color: var(--amber-light);
  color: var(--text-primary);
  transform: translateX(5px);
  background: rgba(0, 22, 44, 0.95);
}

.approach-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 2px;
  filter: invert(1) sepia(1) saturate(3) hue-rotate(130deg);
  opacity: 0.8;
}

.about-bottom-highlight {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-light);
  background: rgba(224, 123, 0, 0.08);
  border: 1px solid rgba(224, 123, 0, 0.3);
  border-radius: 8px;
  padding: 13px 24px;
  text-align: center;
  box-shadow: 0 0 16px rgba(224, 123, 0, 0.14);
}

/* =============================================
   PAGE 05 — WHAT IS CRYPTOCURRENCY
   ============================================= */
.crypto-explainer {
  padding: 30px 0 40px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, rgb(0 9 18 / 0%) 0%, rgb(0 14 30 / 75%) 100%), url(../images/backgroundimages/background102.jpg) center / cover no-repeat;
}

.ce-bg-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 60% at 30% 50%, rgba(0, 200, 180, 0.08) 0%, transparent 70%);
}

.ce-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 44px;
  position: relative;
  z-index: 1;
}

.ce-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  align-items: center;
}

.ce-sub-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #ffdfb6;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 200, 180, 0.18);
}

.ce-chars {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ce-char-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgb(115 66 4 / 38%);
  border: 1px solid rgba(0, 200, 180, 0.1);
  border-left: 3px solid #e7870e;
  border-radius: 11px;
  padding: 16px 18px;
  transition: var(--transition);
}

.ce-char-item:hover {
  border-left-color: var(--amber-light);
  transform: translateX(5px);
  background: rgba(0, 20, 44, 0.95);
}

.ce-char-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(243 243 243 / 7%);
  border: 1px solid rgb(255 151 0 / 22%);
  border-radius: 10px;
  padding: 10px;
}

.ce-char-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1) sepia(1) saturate(3) hue-rotate(130deg);
  opacity: 0.9;
}

.ce-char-item h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.87rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--amber-light);
  margin-bottom: 4px;
}

.ce-char-item p {
  font-family: 'DM Sans';
  font-size: 0.82rem;
  color: #fff8ee;
  line-height: 1.6;
  margin: 0;
}

.ce-right {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.ce-visual-block {
  position: relative;
  border-radius: 18px;
  overflow: hidden;

}

.ce-visual-block img {
  width: 100%;

  filter: brightness(0.82) saturate(1.1);
}

.ce-visual-glow {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 9, 18, 0.75) 100%);
  pointer-events: none;
}

.ce-examples-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.ce-ex-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(0, 14, 30, 0.9);
  border: 1px solid rgba(0, 200, 180, 0.15);
  border-radius: 12px;
  padding: 14px 8px;
  transition: var(--transition);
}

.ce-ex-pill:hover {
  border-color: var(--amber-light);
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(224, 123, 0, 0.2);
}

.ce-ex-pill img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.ce-ex-pill span {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber-light);
  text-align: center;
}

/* =============================================
   PAGE 03 — BENEFITS OF CRYPTOCURRENCY (redesigned)
   ============================================= */


/* top glow bar */
.ben-glow-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 200, 180, 0.6) 30%, rgba(224, 123, 0, 0.8) 50%, rgba(0, 200, 180, 0.6) 70%, transparent 100%);
  box-shadow: 0 0 20px rgba(224, 123, 0, 0.4);
  z-index: 2;
}

/* radial glow overlay */
.ben-bg-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 40% at 15% 50%, rgba(224, 123, 0, 0.1) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 85% 50%, rgba(0, 200, 180, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 35% 35% at 50% 100%, rgba(224, 123, 0, 0.06) 0%, transparent 55%);
  z-index: 0;
}

/* container */
.ben-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 44px;
  position: relative;
  z-index: 1;
}

/* accent word in title */
.ben-accent {
  background: linear-gradient(125deg, var(--amber-deep) 0%, var(--amber-light) 40%, var(--amber-glow) 75%, #ffe07a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 22px rgba(224, 123, 0, 0.5));
}

/* ── Split row ── */
.ben-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 80px;
}

/* reverse: content left, image right */
.ben-row--reverse {
  direction: rtl;
}

.ben-row--reverse>* {
  direction: ltr;
}

/* ── Image column ── */
.ben-img-col {
  position: relative;
}

.ben-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;

}

.ben-img-wrap img {
  width: 100%;
  display: block;
  border-radius: 24px;
  filter: brightness(0.88) saturate(1.1);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
}

.ben-img-wrap:hover img {
  transform: scale(1.04);
  filter: brightness(0.95) saturate(1.2);
}

/* floating badges on the image */
.ben-img-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(0, 9, 18, 0.92);
  backdrop-filter: blur(12px);
  border-radius: 50px;
  padding: 8px 16px 8px 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber-light);
  border: 1px solid rgba(224, 123, 0, 0.35);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  z-index: 2;
  white-space: nowrap;
}

.ben-img-badge img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  filter: invert(1) sepia(1) saturate(4) hue-rotate(10deg) brightness(1.2);
  flex-shrink: 0;
}

.ben-img-badge--tl {
  top: 18px;
  left: 18px;
}

.ben-img-badge--br {
  bottom: 18px;
  right: 18px;
  color: var(--teal-light);
  border-color: rgba(0, 200, 180, 0.35);
}

.ben-img-badge--br img {
  filter: invert(1) sepia(1) saturate(3) hue-rotate(130deg);
}

/* image glow */
.ben-img-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0, 200, 180, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
  filter: blur(20px);
}

.ben-img-glow--amber {
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(224, 123, 0, 0.15) 0%, transparent 70%);
}

/* ── Content column ── */
.ben-content-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* number tag */
.ben-num-tag {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ben-num-tag::before {
  content: '';
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), transparent);
  border-radius: 2px;
  flex-shrink: 0;
}

/* heading */
.ben-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

/* description */
.ben-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.96rem;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 32px;
}

/* benefit points list */
.ben-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ben-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(0, 12, 26, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 3px solid var(--amber);
  border-radius: 12px;
  padding: 14px 18px;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.ben-point:hover {
  background: rgba(0, 18, 38, 0.9);
  border-color: rgba(224, 123, 0, 0.3);
  border-left-color: var(--amber-glow);
  transform: translateX(6px);
}

.ben-point--teal {
  border-left-color: var(--teal);
}

.ben-point--teal:hover {
  border-left-color: var(--teal-light);
  border-color: rgba(0, 200, 180, 0.25);
}

/* point icon */
.ben-point-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: var(--transition);
}

.ben-point-icon--amber {
  background: rgba(224, 123, 0, 0.12);
  border: 1px solid rgba(224, 123, 0, 0.28);
}

.ben-point-icon--amber img {
  filter: invert(1) sepia(1) saturate(4) hue-rotate(10deg) brightness(1.2);
}

.ben-point-icon--teal {
  background: rgba(0, 200, 180, 0.1);
  border: 1px solid rgba(0, 200, 180, 0.22);
}

.ben-point-icon--teal img {
  filter: invert(1) sepia(1) saturate(3) hue-rotate(130deg);
}

.ben-point-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ben-point:hover .ben-point-icon {
  transform: scale(1.1);
}

/* point text */
.ben-point>div:last-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ben-point-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.ben-point-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.79rem;
    color: #cbcbcb;
    line-height: 1.55;
}

/* ── row separator ── */
.ben-row+.ben-row {
  padding-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 0;
  padding-top: 80px;
  margin-bottom: 80px;
}

/* ── Disclaimer ── */
.ben-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(224, 123, 0, 0.05);
  border: 1px solid rgba(224, 123, 0, 0.2);
  border-radius: 12px;
  padding: 16px 22px;
  margin-top: 0;
  box-shadow: 0 0 14px rgba(224, 123, 0, 0.05);
}

.ben-disc-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.ben-disc-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1) sepia(1) saturate(4) hue-rotate(10deg) brightness(1.1);
  opacity: 0.7;
}

.ben-disclaimer p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: rgba(224, 160, 80, 0.75);
  line-height: 1.65;
}

/* =============================================
   PAGE 06 — TOP 10 CRYPTOCURRENCIES
   ============================================= */
.top10-section {
   padding: 55px 0 55px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, rgb(0 6 14 / 31%) 0%, rgb(10 6 0 / 55%) 50%, rgb(0 8 18 / 48%) 100%), url(../images/backgroundimages/background4.jpg) center / cover no-repeat;
}

/* Golden radial glow overlay */
.top10-bg-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(224, 123, 0, 0.13) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(224, 123, 0, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 35% 35% at 90% 15%, rgba(255, 179, 71, 0.08) 0%, transparent 55%);
}

.top10-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 44px;
  position: relative;
  z-index: 1;
}

.top10-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

/* ── Top10 section header overrides ── */
.top10-section .section-tag {
  color: var(--amber-light);
  background: rgba(224, 123, 0, 0.12);
  border-color: rgba(224, 123, 0, 0.4);
  box-shadow: 0 0 16px rgba(224, 123, 0, 0.2);
}

.top10-section .section-tag .tag-icon {
  filter: invert(1) sepia(1) saturate(4) hue-rotate(10deg) brightness(1.3);
}

.top10-section .divider {
  background: linear-gradient(90deg, transparent, var(--amber-light), var(--amber-glow), var(--amber-light), transparent);
  box-shadow: 0 0 16px rgba(224, 123, 0, 0.55);
}

.top10-section .section-subtitle {
  color: #d4c4a0;
}

/* ── Coin Card ── */
.coin-card {
  background: linear-gradient(271deg, rgb(22 92 177 / 52%) 0%, rgb(5 42 99 / 35%) 100%);
  border: 1px solid rgba(224, 123, 0, 0.35);
  border-radius: 18px;
  padding: 4px 4px 3px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(224, 123, 0, 0.08), inset 0 1px 0 rgba(255, 179, 71, 0.08);
}

/* Golden shimmer top bar */
.coin-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--amber-deep) 20%, var(--amber-light) 50%, var(--amber-glow) 70%, transparent 100%);
  opacity: 0.85;
}

/* Subtle inner glow */
.coin-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(224, 123, 0, 0.07) 0%, transparent 60%);
  pointer-events: none;
}

.coin-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(255, 179, 71, 0.65);
  box-shadow:
    0 0 36px rgba(224, 123, 0, 0.35),
    0 20px 48px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 200, 100, 0.15);
}

/* Rank badge — golden */
.coin-card-rank {
  position: absolute;
  top: 12px;
  left: 13px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.65rem;
  color: #000;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 60%, var(--amber-glow) 100%);
  border-radius: 5px;
  padding: 3px 7px;
  box-shadow: 0 0 10px rgba(224, 123, 0, 0.5);
}

/* Coin logo circle — golden border */
.coin-card-logo {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 18, 0, 0.95) 0%, rgba(5, 12, 25, 0.98) 100%);
  border: 2px solid rgba(224, 123, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px 0 14px;
  padding: 11px;
  box-shadow:
    0 0 22px rgba(224, 123, 0, 0.25),
    inset 0 0 12px rgba(224, 123, 0, 0.06);
  flex-shrink: 0;
  transition: var(--transition);
}

.coin-card:hover .coin-card-logo {
  border-color: var(--amber-glow);
  box-shadow:
    0 0 32px rgba(255, 179, 71, 0.5),
    inset 0 0 18px rgba(224, 123, 0, 0.12);
  transform: scale(1.08);
}

.coin-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(224, 123, 0, 0.3));
}

.coin-card-info {
  margin-bottom: 10px;
}

/* Coin name — bright white */
.coin-card-name {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: #ffffff;
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.15);
  margin-bottom: 3px;
}

/* Symbol — golden */
.coin-card-sym {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--amber-light);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(224, 123, 0, 0.4);
}

/* Description — soft warm white */
.coin-card-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: #ffffff;
  line-height: 1.65;
  margin-bottom: 14px;
  flex: 1;
}

/* Tag badge — golden fill */
.coin-card-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.63rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000a14;
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 60%, var(--amber-glow) 100%);
  border-radius: 5px;
  padding: 4px 11px;
  box-shadow: 0 0 12px rgba(224, 123, 0, 0.35);
}

/* ── Bottom Note ── */
.top10-bottom-note {
  background: linear-gradient(135deg, rgba(20, 10, 0, 0.88) 0%, rgba(0, 14, 30, 0.92) 100%);
  border: 1px solid rgba(224, 123, 0, 0.35);
  border-radius: 14px;
  padding: 22px 40px;
  text-align: center;
  box-shadow: 0 0 28px rgba(224, 123, 0, 0.12), inset 0 1px 0 rgba(255, 179, 71, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 10px;
}

.note-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.note-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1) sepia(1) saturate(4) hue-rotate(10deg) brightness(1.2);
  opacity: 0.85;
}

.top10-bottom-note p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 0.9rem;
  color: #c8b99a;
  line-height: 1.7;
}

/* =============================================
   PAGE 07 — WHY CRYPTO WITH US
   ============================================= */
.why-us-section {
   padding: 55px 0 55px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(155deg, rgba(8, 4, 0, 0.4) 0%, rgba(0, 10, 22, 0.4) 45%, rgba(12, 6, 0, 0.5) 100%),
    url('../images/backgroundimages/background103.jpg') center/cover no-repeat;
}

.why-us-bg-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 65% 55% at 15% 40%, rgba(224, 123, 0, 0.12) 0%, transparent 65%),
    radial-gradient(ellipse 55% 50% at 85% 60%, rgba(224, 123, 0, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 35% at 50% 100%, rgba(255, 179, 71, 0.06) 0%, transparent 55%);
}

/* Subtle grid texture */
.why-us-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(224, 123, 0, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224, 123, 0, 0.025) 1px, transparent 1px);
  background-size: 58px 58px;
}

.why-us-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 44px;
  position: relative;
  z-index: 1;
}

/* Section title accent word */
.why-accent {
  background: linear-gradient(125deg, var(--amber-deep) 0%, var(--amber-light) 40%, var(--amber-glow) 75%, #ffe07a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 22px rgba(224, 123, 0, 0.55));
}

.why-us-section .section-tag {
  color: var(--amber-light);
  background: rgba(224, 123, 0, 0.1);
  border-color: rgba(224, 123, 0, 0.4);
  box-shadow: 0 0 16px rgba(224, 123, 0, 0.18);
}

.why-us-section .section-tag .tag-icon {
  filter: invert(1) sepia(1) saturate(4) hue-rotate(10deg) brightness(1.3);
}

.why-us-section .divider {
  background: linear-gradient(90deg, transparent, var(--amber-light), var(--amber-glow), var(--amber-light), transparent);
  box-shadow: 0 0 18px rgba(224, 123, 0, 0.6);
}

.why-us-section .section-subtitle {
  color: #d4c4a0;
}

/* ── Cards Grid ── */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

/* ── Card Base ── */
.why-card {
  background: linear-gradient(2deg, rgb(0 68 117) 0%, rgb(0 33 56 / 70%) 100%);
  border: 1px solid rgba(224, 123, 0, 0.28);
  border-radius: 20px;
  padding: 34px 28px 30px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(224, 123, 0, 0.06), inset 0 1px 0 rgba(255, 179, 71, 0.07);
}

/* Golden shimmer top border */
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--amber-deep) 25%, var(--amber-light) 50%, var(--amber-glow) 75%, transparent 100%);
  opacity: 0.75;
  transition: var(--transition);
}

/* Inner ambient glow */
.why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(224, 123, 0, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.why-card:hover {
  transform: translateY(-9px);
  border-color: rgba(255, 179, 71, 0.55);
  box-shadow:
    0 0 40px rgba(224, 123, 0, 0.22),
    0 20px 50px rgba(0, 0, 0, 0.65),
    inset 0 1px 0 rgba(255, 200, 100, 0.12);
}

.why-card:hover::before {
  opacity: 1;
}

/* ── Card Top Row: icon + number ── */
.why-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

/* Number badge top-right */
.why-card-num {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: #000;
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 60%, var(--amber-glow) 100%);
  border-radius: 5px;
  padding: 3px 9px;
  line-height: 1.4;
  box-shadow: 0 0 10px rgba(224, 123, 0, 0.4);
  flex-shrink: 0;
}

/* Icon wrapper */
.why-card-icon-wrap {
  position: relative;
  flex-shrink: 0;
}

.why-card-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 200, 180, 0.09);
  border: 1px solid rgba(0, 200, 180, 0.25);
  border-radius: 14px;
  padding: 13px;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.why-card-icon--amber {
  background: rgba(224, 123, 0, 0.1);
  border-color: rgba(224, 123, 0, 0.32);
}

.why-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1) sepia(1) saturate(3) hue-rotate(130deg);
  opacity: 0.9;
}

.why-card-icon--amber img {
  filter: invert(1) sepia(1) saturate(4) hue-rotate(10deg) brightness(1.2);
}

.why-card:hover .why-card-icon {
  background: rgba(224, 123, 0, 0.14);
  border-color: rgba(255, 179, 71, 0.45);
  transform: scale(1.1) rotate(-3deg);
}

.why-card:hover .why-card-icon img {
  filter: invert(1) sepia(1) saturate(4) hue-rotate(10deg) brightness(1.35);
}

/* Glow behind icon */
.why-icon-glow {
  position: absolute;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 200, 180, 0.18) 0%, transparent 70%);
  filter: blur(12px);
  pointer-events: none;
}

.why-icon-glow--amber {
  background: radial-gradient(circle, rgba(224, 123, 0, 0.2) 0%, transparent 70%);
}

/* Card heading */
.why-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.25;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

/* Card description */
.why-card p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.86rem;
  color: #c8b99a;
  line-height: 1.72;
  flex: 1;
  position: relative;
  z-index: 1;
}

/* Tag badge */
.why-card-tag {
  display: inline-flex;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.63rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #000a14;
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 55%, var(--amber-glow) 100%);
  border-radius: 5px;
  padding: 4px 12px;
  margin-top: 16px;
  width: fit-content;
  box-shadow: 0 0 14px rgba(224, 123, 0, 0.35);
  position: relative;
  z-index: 1;
}

.why-card-tag--amber {
  background: linear-gradient(135deg, var(--amber-deep) 0%, var(--amber) 50%, var(--amber-light) 100%);
}

/* Big bg watermark number */
.why-card-bg-number {
  position: absolute;
  bottom: -10px;
  right: 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 6rem;
  color: rgba(224, 123, 0, 0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

.why-card-tag--amber {
  background: linear-gradient(135deg, var(--amber-deep) 0%, var(--amber) 50%, var(--amber-light) 100%);
}

/* Big bg watermark number */
.why-card-bg-number {
  position: absolute;
  bottom: -12px;
  right: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 5.5rem;
  color: rgba(224, 123, 0, 0.045);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

/* ── Stats Row ── */
.why-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(22, 10, 0, 0.88) 0%, rgba(0, 14, 30, 0.92) 100%);
  border: 1px solid rgba(224, 123, 0, 0.3);
  border-radius: 18px;
  padding: 28px 0;
  box-shadow: 0 0 32px rgba(224, 123, 0, 0.1), inset 0 1px 0 rgba(255, 179, 71, 0.08);
}

.why-stat-item {
  flex: 1;
  max-width: 220px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.why-stat-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(224, 123, 0, 0.1);
  border: 1px solid rgba(224, 123, 0, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.why-stat-icon img {
  width: 17px;
  height: 17px;
  object-fit: contain;
  filter: invert(1) sepia(1) saturate(4) hue-rotate(10deg) brightness(1.2);
}

.why-stat-val {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  background: linear-gradient(125deg, #ffffff 0%, var(--amber-light) 55%, var(--amber-glow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  text-shadow: none;
}

.why-stat-lbl {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #a89070;
}

.why-stat-divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, transparent, rgba(224, 123, 0, 0.35), transparent);
  flex-shrink: 0;
}

/* =============================================
   PAGE 08 — FAQs
   ============================================= */
.faq-section {
  padding: 55px 0 55px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(150deg, rgba(0, 9, 18, 0.55) 0%, rgba(0, 14, 30, 0.7) 50%, rgba(0, 8, 18, 0.6) 100%),
    url('../images/backgroundimages/background2.jpg') center/cover no-repeat;
}

.faq-bg-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 65% 55% at 10% 40%, rgba(224, 123, 0, 0.1) 0%, transparent 65%),
    radial-gradient(ellipse 55% 50% at 90% 60%, rgba(0, 200, 180, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 100%, rgba(224, 123, 0, 0.06) 0%, transparent 55%);
}

.faq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(224, 123, 0, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224, 123, 0, 0.022) 1px, transparent 1px);
  background-size: 58px 58px;
}

.faq-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 44px;
  position: relative;
  z-index: 1;
}

/* Section tag & accent overrides */
.faq-section .section-tag {
  color: var(--amber-light);
  background: rgba(224, 123, 0, 0.1);
  border-color: rgba(224, 123, 0, 0.4);
  box-shadow: 0 0 16px rgba(224, 123, 0, 0.18);
}

.faq-section .section-tag .tag-icon {
  filter: invert(1) sepia(1) saturate(4) hue-rotate(10deg) brightness(1.3);
}

.faq-section .divider {
  background: linear-gradient(90deg, transparent, var(--amber-light), var(--amber-glow), var(--amber-light), transparent);
  box-shadow: 0 0 18px rgba(224, 123, 0, 0.6);
}

.faq-section .section-subtitle {
  color: #d4c4a0;
}

.faq-accent {
  background: linear-gradient(125deg, var(--amber-deep) 0%, var(--amber-light) 40%, var(--amber-glow) 75%, #ffe07a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 22px rgba(224, 123, 0, 0.55));
}

/* ── Two-column grid ── */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 52px;
}

.faq-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ── FAQ Item ── */
.faq-item {
  background: linear-gradient(160deg, rgb(11 57 103 / 75%) 0%, rgb(21 59 101 / 65%) 100%);
  border: 1px solid rgba(224, 123, 0, 0.25);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(224, 123, 0, 0.05);
  position: relative;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--amber-deep) 25%, var(--amber-light) 50%, transparent 100%);
  opacity: 0.5;
  transition: var(--transition);
}

.faq-item.open,
.faq-item:hover {
  border-color: rgba(255, 179, 71, 0.45);
  box-shadow: 0 0 32px rgba(224, 123, 0, 0.14), 0 8px 36px rgba(0, 0, 0, 0.55);
}

.faq-item.open::before,
.faq-item:hover::before {
  opacity: 1;
}

/* ── Question Button ── */
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  position: relative;
  z-index: 1;
}

.faq-q-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(224, 123, 0, 0.1);
  border: 1px solid rgba(224, 123, 0, 0.3);
  border-radius: 8px;
  padding: 7px;
  transition: var(--transition);
}

.faq-q-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1) sepia(1) saturate(4) hue-rotate(10deg) brightness(1.2);
}

.faq-item.open .faq-q-icon,
.faq-item:hover .faq-q-icon {
  background: rgba(224, 123, 0, 0.18);
  border-color: rgba(255, 179, 71, 0.5);
}

.faq-question span:nth-child(2) {
  flex: 1;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: #f0e6d3;
  letter-spacing: -0.005em;
  line-height: 1.4;
  transition: var(--transition);
}

.faq-item.open .faq-question span:nth-child(2),
.faq-item:hover .faq-question span:nth-child(2) {
  color: #fff;
}

/* Chevron icon */
.faq-chevron {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  padding: 6px;
  transition: var(--transition);
}

.faq-chevron img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1);
  opacity: 0.5;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-chevron {
  background: rgba(224, 123, 0, 0.14);
  border-color: rgba(224, 123, 0, 0.4);
}

.faq-item.open .faq-chevron img {
  transform: rotate(180deg);
  opacity: 1;
  filter: invert(1) sepia(1) saturate(4) hue-rotate(10deg) brightness(1.2);
}

/* ── Answer Panel ── */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
  padding: 0 22px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 22px 20px;
}

.faq-answer p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: #b8a898;
  line-height: 1.78;
  padding-top: 2px;
  border-top: 1px solid rgba(224, 123, 0, 0.12);
  padding-top: 14px;
}

/* ── Bottom CTA ── */
.faq-bottom-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: linear-gradient(135deg, rgba(14, 6, 0, 0.88) 0%, rgba(0, 14, 30, 0.92) 100%);
  border: 1px solid rgba(224, 123, 0, 0.3);
  border-radius: 16px;
  padding: 24px 40px;
  box-shadow: 0 0 30px rgba(224, 123, 0, 0.1), inset 0 1px 0 rgba(255, 179, 71, 0.07);
  flex-wrap: wrap;
}

.faq-cta-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(224, 123, 0, 0.12);
  border: 1px solid rgba(224, 123, 0, 0.35);
  border-radius: 12px;
  padding: 11px;
}

.faq-cta-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1) sepia(1) saturate(4) hue-rotate(10deg) brightness(1.2);
}

.faq-cta-text {
  flex: 1;
  min-width: 200px;
}

.faq-cta-text p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: #d4c4a0;
  line-height: 1.5;
}

.faq-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 30px;
  background: linear-gradient(135deg, var(--amber-deep) 0%, var(--amber) 40%, var(--amber-light) 75%, var(--amber-glow) 100%);
  color: #000a14;
  border-radius: 9px;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 0 22px rgba(224, 123, 0, 0.45), 0 4px 16px rgba(0, 0, 0, 0.5);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 38px rgba(224, 123, 0, 0.65), 0 8px 24px rgba(0, 0, 0, 0.5);
}

.faq-cta-btn img {
  width: 15px;
  height: 15px;
  filter: brightness(0);
  opacity: 0.8;
}

/* =============================================
   FOOTER — REDESIGNED
   ============================================= */
.footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(269deg, rgb(0 6 14 / 56%) 0%, rgb(0 0 0 / 70%) 60%, rgb(0 4 10 / 62%) 100%), url(../images/backgroundimages/background103.jpg) center / cover no-repeat;
  border-top: none;
}

/* Radial glow overlays */
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 65% 55% at 15% 30%, rgba(0, 200, 180, 0.1) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 85% 70%, rgba(224, 123, 0, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 35% at 50% 5%, rgba(224, 123, 0, 0.07) 0%, transparent 55%);
}

/* Subtle grid texture */
.footer::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(0, 200, 180, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 200, 180, 0.03) 1px, transparent 1px);
  background-size: 55px 55px;
}

/* Top glow bar */
.footer-glow-line {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, #445877 25%, #11376a 50%, #5778a5 75%, transparent 100%);
  box-shadow: 0 0 28px rgba(0, 200, 180, 0.55), 0 0 10px rgba(224, 123, 0, 0.35);
}

/* ── Newsletter / CTA Banner ── */
.footer-cta-banner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 44px 44px 0;
}

.footer-cta-inner {
  background: linear-gradient(135deg, rgba(0, 20, 42, 0.92) 0%, rgba(0, 14, 30, 0.95) 100%);
  border: 1px solid rgba(224, 123, 0, 0.3);
  border-radius: 18px;
  padding: 32px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: 0 0 40px rgba(224, 123, 0, 0.12), inset 0 0 60px rgba(0, 200, 180, 0.03);
  position: relative;
  overflow: hidden;
}

.footer-cta-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber-light), var(--teal-light), transparent);
  border-radius: 18px 18px 0 0;
}

.footer-cta-text h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.footer-cta-text h3 span {
  background: linear-gradient(125deg, var(--amber-light), var(--amber-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-cta-text p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.5;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.83rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 34px;
  background: linear-gradient(135deg, var(--amber-deep), var(--amber), var(--amber-light));
  color: #000a14;
  border-radius: 10px;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 0 24px rgba(224, 123, 0, 0.5), 0 4px 18px rgba(0, 0, 0, 0.5);
  transition: var(--transition);
  flex-shrink: 0;
}

.footer-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(224, 123, 0, 0.7), 0 8px 24px rgba(0, 0, 0, 0.5);
}

.footer-cta-btn img {
  width: 16px;
  height: 16px;
  filter: brightness(0);
  opacity: 0.8;
}

/* ── Main grid ── */
.footer-main {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 44px 44px;
  display: grid;
  grid-template-columns: 2.1fr 1fr 1fr 1fr;
  gap: 48px;
}

/* ── Brand column ── */
.footer-brand .logo-wrap img {
  height: 58px;
  width: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 12px rgba(224, 123, 0, 0.55));
}

.footer-brand p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: #c8d8e8;
  line-height: 1.8;
  margin-bottom: 18px;
}

.footer-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-light);
  background: rgba(224, 123, 0, 0.1);
  border: 1px solid rgba(224, 123, 0, 0.35);
  border-radius: 50px;
  padding: 7px 18px;
  margin-bottom: 24px;
  box-shadow: 0 0 14px rgba(224, 123, 0, 0.15);
}

.footer-tagline::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber-light);
  box-shadow: 0 0 8px rgba(224, 123, 0, 0.9);
  flex-shrink: 0;
}

/* Social icons */
.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fsocial-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0, 16, 34, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  cursor: pointer;
}

.fsocial-btn img {
  width: 17px;
  height: 17px;
  object-fit: contain;
  filter: invert(1);
  opacity: 0.65;
  transition: var(--transition);
}

.fsocial-btn:hover {
  border-color: rgba(224, 123, 0, 0.5);
  background: rgba(224, 123, 0, 0.12);
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(224, 123, 0, 0.25);
}

.fsocial-btn:hover img {
  opacity: 1;
  filter: invert(1) sepia(1) saturate(4) hue-rotate(10deg) brightness(1.2);
}

/* ── Links columns ── */
.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-links h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #ffffff;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--amber-light), var(--teal));
  box-shadow: 0 0 8px rgba(224, 123, 0, 0.4);
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.87rem;
  color: #b0c8dc;
  margin-bottom: 11px;
  transition: var(--transition);
  position: relative;
}

.footer-links a::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  opacity: 0.5;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--amber-light);
  transform: translateX(5px);
}

.footer-links a:hover::before {
  background: var(--amber-light);
  opacity: 1;
  box-shadow: 0 0 6px rgba(224, 123, 0, 0.7);
}

/* ── Stats bar ── */
.footer-stats-bar {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 44px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.fstat-item {
  background: rgba(0, 14, 30, 0.75);
  padding: 22px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.fstat-item:hover {
  background: rgba(0, 20, 44, 0.9);
}

.fstat-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(224, 123, 0, 0.1);
  border: 1px solid rgba(224, 123, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.fstat-icon img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: invert(1) sepia(1) saturate(4) hue-rotate(10deg) brightness(1.2);
}

.fstat-val {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  background: linear-gradient(125deg, #fff 0%, var(--amber-light) 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.fstat-lbl {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-soft);
}

/* ── Disclaimer ── */
.footer-disclaimer {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 44px 28px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: transparent;
}

.footer-disc-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-disc-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1) sepia(1) saturate(3) hue-rotate(10deg) brightness(1.1);
  opacity: 0.7;
}

.footer-disclaimer p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: rgba(200, 216, 230, 0.55);
  line-height: 1.65;
}

/* ── Bottom bar ── */
.footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 22px 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8aacbe;
}

.footer-sep {
  color: var(--amber-light);
  opacity: 0.5;
  font-size: 1rem;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width:1100px) {
  .hero-container {
    grid-template-columns: 1fr 1.2fr 0.85fr;
    gap: 16px;
    padding: 0 28px;
  }

  .orbit-ring-3 {
    width: 440px;
    height: 440px;
  }

  .orbit-ring-2 {
    width: 370px;
    height: 370px;
  }

  .orbit-ring-1 {
    width: 290px;
    height: 290px;
  }

  .top10-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-main {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-cta-banner {
    padding: 36px 28px 0;
  }

  .footer-stats-bar {
    padding: 0 28px 36px;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:900px) {

  /* Nav */
  .nav-toggle {
    display: flex;
  }

  .nav-container {
    padding: 0 20px;
  }

  .nav-cta-desktop {
    display: none;
  }

    .nav-links {
        background: linear-gradient(150deg, rgb(0 9 18 / 52%) 0%, rgb(0 14 30 / 61%) 50%, rgb(0 8 18 / 28%) 100%), url(../images/backgroundimages/background2.jpg) center / cover no-repeat;
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        backdrop-filter: blur(24px);
        border-left: 1px solid rgba(0, 200, 180, 0.2);
        padding: 80px 0 40px;
        overflow-y: auto;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    padding: 14px 28px;
    border-radius: 0;
    font-size: 0.95rem;
  }

  .nav-cta-mobile-row {
    display: flex;
    padding: 20px 28px 0;
  }

  .nav-cta-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--amber), var(--amber-light));
    color: #000912;
    border-radius: 8px;
    width: 100%;
  }

  /* Hero */
  .hero-container {
    grid-template-columns: 1fr;
    padding: 0 20px;
    text-align: center;
    gap: 0;
    min-height: unset;
    padding-top: 16px;
    padding-bottom: 32px;
  }



  .orbit-ring-1,
  .orbit-ring-2,
  .orbit-ring-3 {
    display: none;
  }

  .orbit-dot {
    display: none;
  }

  .hero-center {
    display: none;
  }

  .hero-right {
    display: none;
  }

  .hero-left {
    align-items: center;
    padding: 0;
  }

  .hero-year-badge {
    align-self: center;
    font-size: 0.6rem;
    padding: 4px 12px 4px 10px;
    margin-bottom: 14px;
  }

  .hero-headline-line1 {
    font-size: 2.6rem;
  }

  .hero-headline-accent {
    font-size: 2.8rem;
  }

  .hero-title-divider {
    justify-content: center;
    margin: 12px auto 14px;
  }

  .htd-line {
    max-width: 50px;
  }

  .hero-tagline-main {
    font-size: 0.95rem;
    margin-bottom: 4px;
  }

  .hero-tagline-sub {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    margin-bottom: 20px;
  }

  /* Feature pills — horizontal row on mobile */
  .hero-feature-pills {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    align-items: stretch;
  }

  .hfpill {
    max-width: none;
    flex: 1 1 calc(33% - 8px);
    min-width: 100px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px 8px;
    gap: 8px;
    border-left: none;
    border-top: 3px solid var(--amber);
  }

  .hfpill-icon {
    width: 32px;
    height: 32px;
  }

  .hfpill-text {
    align-items: center;
  }

  .hfpill-title {
    font-size: 0.7rem;
    letter-spacing: 0.04em;
  }

  .hfpill-sub {
    font-size: 0.6rem;
  }

  /* CTA buttons — full width stacked */
  .hero-cta-row {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    width: 100%;
  }

  .hero-btn-primary,
  .hero-btn-ghost {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 13px 20px;
    font-size: 0.8rem;
  }

  /* Taglines */
  .hero-taglines-list {
    align-items: center;
    gap: 6px;
  }

  .tagline-item {
    font-size: 0.78rem;
    justify-content: center;
  }

  /* Stats strip */
  .hero-stats-strip {
    flex-wrap: wrap;
    gap: 0;
    padding: 16px 12px;
  }

  .hstat {
    flex: 1 1 50%;
    max-width: 50%;
    padding: 12px 8px;
    border-bottom: 1px solid rgba(224, 123, 0, 0.1);
  }

  .hstat:nth-child(1),
  .hstat:nth-child(3) {
    border-right: 1px solid rgba(224, 123, 0, 0.1);
  }

  .hstat-divider {
    display: none;
  }

  .hstat-val {
    font-size: 1rem;
  }

  .hstat-lbl {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }

  /* About */
  .about-container {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 0 24px;
  }

  .about {
    padding: 64px 0 72px;
  }

  /* Reduce section vertical padding on mobile */
  .benefits-section,
  .top10-section,
  .why-us-section,
  .faq-section {
    padding: 64px 0 72px;
  }

  .crypto-explainer {
    padding: 48px 0 56px;
  }

  .approach-grid {
    grid-template-columns: 1fr;
  }

  /* Benefits redesign — stack on tablet */
  .ben-container {
    padding: 0 24px;
  }

  .ben-row {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 56px;
  }

  .ben-row--reverse {
    direction: ltr;
  }

  .ben-row+.ben-row {
    padding-top: 56px;
    margin-bottom: 56px;
  }

  .ben-heading {
    font-size: 1.7rem;
  }

  /* Crypto */
  .ce-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .ce-container {
    padding: 0 24px;
  }

  /* Top 10 */
  .top10-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .top10-container {
    padding: 0 24px;
  }

  /* Why Us */
  .why-us-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .why-us-grid>.why-card:nth-child(1),
  .why-us-grid>.why-card:nth-child(6) {
    grid-column: 1 / -1 !important;
  }

  .why-card-inner {
    flex-direction: column;
    gap: 16px;
  }

  .why-us-container {
    padding: 0 24px;
  }

  .why-stats-row {
    flex-wrap: wrap;
    gap: 0;
    padding: 20px;
  }

  .why-stat-item {
    width: 50%;
    max-width: 100%;
    padding: 14px 0;
  }

  .why-stat-divider {
    display: none;
  }

  /* FAQ */
  .faq-container {
    padding: 0 24px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-bottom-cta {
    padding: 24px 28px;
    gap: 16px;
  }

  /* Footer */
  .footer-cta-banner {
    padding: 28px 24px 0;
  }

  .footer-cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 28px 24px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    padding: 48px 24px 36px;
  }

  .footer-brand {
    grid-column: 1/-1;
  }

  .footer-stats-bar {
    padding: 0 24px 32px;
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-disclaimer {
    padding: 0 24px 24px;
  }

  .footer-bottom {
    padding: 18px 24px;
   
    gap: 8px;
  }
}

@media (max-width:580px) {

  /* Why Us mobile */
  .why-us-grid {
    grid-template-columns: 1fr !important;
  }

  .why-us-grid>.why-card:nth-child(1),
  .why-us-grid>.why-card:nth-child(6) {
    grid-column: 1 / -1 !important;
  }

  .top10-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Benefits — even tighter on small phones */
  .ben-row {
    gap: 28px;
    margin-bottom: 40px;
  }

  .ben-row+.ben-row {
    padding-top: 40px;
    margin-bottom: 40px;
  }

  .ben-heading {
    font-size: 1.45rem;
  }

  .ben-img-badge {
    font-size: 0.62rem;
    padding: 6px 12px 6px 8px;
  }

  /* FAQ small screens */
  .faq-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .faq-question {
    padding: 16px 16px;
    gap: 10px;
  }

  .faq-question span:nth-child(2) {
    font-size: 0.84rem;
  }

  .faq-answer {
    padding: 0 16px;
  }

  .faq-item.open .faq-answer {
    padding: 0 16px 16px;
  }

  .faq-bottom-cta {
    flex-direction: column;
    text-align: center;
    padding: 22px 20px;
  }

  .faq-cta-text {
    min-width: unset;
  }

  .faq-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-stats-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px 28px;
  }

  .footer-cta-inner {
    padding: 22px 18px;
  }

  .ce-examples-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .section-title {
    font-size: 1.7rem;
  }

  /* Hero small phones */
  .hero-headline-line1 {
    font-size: 2.2rem;
  }

  .hero-headline-accent {
    font-size: 2.4rem;
  }

  /* Pills stacked 1 per row on very small screens */
  .hfpill {
    flex: 1 1 100%;
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 10px 14px;
    gap: 12px;
    border-left: 3px solid var(--amber);
    border-top: none;
  }

  .hfpill-text {
    align-items: flex-start;
  }

  .hero-btn-primary,
  .hero-btn-ghost {
    max-width: 100%;
  }

  .hero-container,
  .about-container,
  .ben-container,
  .ce-container,
  .top10-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Also reduce padding on containers not listed above */
  .why-us-container,
  .faq-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer-cta-banner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer-main {
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer-stats-bar {
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer-disclaimer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer-bottom {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Prevent coin cards from being too narrow at 320px */
  .top10-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Crypto pill icons — 5 in a row is too tight, use 3+2 */
  .ce-examples-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  /* section subtitle smaller on small phones */
  .section-subtitle {
    font-size: 0.9rem;
    margin-bottom: 28px;
  }

  /* Hero orbs should not overflow visually on tiny screens */
  .hero-orb-1,
  .hero-orb-2,
  .hero-orb-3 {
    opacity: 0.5;
  }

  /* footer CTA banner – fix padding override conflict */
  .footer-cta-banner {
    padding-top: 20px;
    padding-bottom: 0;
  }

  .phone-float-card {
    display: none;
  }
}

/* =============================================
   TOUCH DEVICES — disable hover transforms
   ============================================= */
@media (hover: none) and (pointer: coarse) {

  .coin-card:hover,
  .why-card:hover,
  .ce-char-item:hover,
  .ben-point:hover,
  .ben-img-wrap:hover img,
  .hfpill:hover,
  .approach-item:hover,
  .footer-links a:hover,
  .nav-links a:hover {
    transform: none;
  }

  .ben-img-wrap:hover img {
    transform: none;
    filter: brightness(0.88) saturate(1.1);
  }
}

/* =============================================
   EXTRA SMALL — 375px (iPhone SE, small Android)
   ============================================= */
@media (max-width: 375px) {
  .hero-headline-line1 {
    font-size: 1.9rem;
  }

  .hero-headline-accent {
    font-size: 2.1rem;
  }

  .coin-card-logo {
    width: 52px;
    height: 52px;
  }

  .coin-card-name {
    font-size: 0.85rem;
  }

  .coin-card-desc {
    font-size: 0.72rem;
  }

  .ce-examples-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .ben-heading {
    font-size: 1.3rem;
  }

  .ben-point {
    padding: 12px 14px;
    gap: 12px;
  }

  .ben-point-icon {
    width: 36px;
    height: 36px;
  }

  .why-card {
    padding: 24px 18px 22px;
  }

  .faq-question span:nth-child(2) {
    font-size: 0.8rem;
  }

  .footer-cta-inner {
    padding: 18px 14px;
  }

  .footer-cta-text h3 {
    font-size: 1.1rem;
  }

  .nav-logo img {
    height: 48px;
  }
}
