/* ═══════════════════════════════════════════════════════════════
   CNH FINANCIAL — STYLESHEET v3 (Visual Polish)
   ═══════════════════════════════════════════════════════════════ */

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

:root {
  --black:   #080808;
  --dark:    #0d0d0d;
  --dark2:   #111111;
  --dark3:   #161616;
  --border:  rgba(255,255,255,0.08);
  --green:   #00e676;
  --cyan:    #00bcd4;
  --white:   #ffffff;
  --grey:    #888888;
  --grey2:   #444444;
  --font:    'Inter', sans-serif;
  --serif:   'Playfair Display', serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--black); color: var(--white); overflow-x: hidden; line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--grey2); border-radius: 2px; }

/* ════ SCROLL REVEAL ═════════════════════════════════════════════ */
.reveal-el {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(4px);
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
}
.reveal-el.revealed {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ════ NAVBAR ════════════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 64px; padding: 0 40px;
  display: flex; align-items: center;
  background: rgba(8,8,8,0.8); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border); transition: background 0.3s;
}
.navbar.scrolled { background: rgba(8,8,8,0.97); }
.nav-inner { width: 100%; display: flex; align-items: center; gap: 40px; }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img { height: 28px; width: auto; object-fit: contain; filter: brightness(0) invert(1); }
.nav-links { list-style: none; display: flex; gap: 32px; margin-left: auto; }
.nav-link { text-decoration: none; color: var(--grey); font-size: 14px; transition: color 0.2s; }
.nav-link:hover, .nav-link.active { color: var(--white); }
.btn-nav-portal {
  text-decoration: none; color: var(--white); font-size: 13px; font-weight: 500;
  border: 1px solid rgba(255,255,255,0.25); border-radius: 6px;
  padding: 8px 18px; transition: all 0.2s; white-space: nowrap;
}
.btn-nav-portal:hover { background: var(--white); color: var(--black); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; }

/* ════ HERO ══════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden; background: var(--black);
  padding: 80px 24px 60px;
}
.hero-canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; }
.hero-content { position: relative; z-index: 2; width: 100%; max-width: 1200px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em;
  color: var(--grey); text-transform: uppercase; margin-bottom: 32px;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 10px var(--green), 0 0 20px rgba(0,230,118,0.4);
  animation: pulse 2s infinite; flex-shrink: 0;
}
@keyframes pulse { 0%,100%{opacity:1; box-shadow: 0 0 10px var(--green);} 50%{opacity:0.4; box-shadow: 0 0 20px var(--green), 0 0 40px rgba(0,230,118,0.3);} }
.hero-logo-wrap { margin-bottom: 24px; }
.hero-logo { height: 56px; width: auto; object-fit: contain; filter: brightness(0) invert(1); }
.hero-subtitle {
  font-size: 17px; color: var(--grey); font-weight: 300;
  max-width: 560px; margin: 0 auto 56px; line-height: 1.7;
}

/* ─── HERO CARDS ─── */
.hero-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; text-align: left;
}
.hero-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border); border-radius: 20px;
  padding: 32px 28px; display: flex; flex-direction: column; gap: 16px;
  transition: border-color 0.35s, background 0.35s, transform 0.35s, box-shadow 0.35s;
  position: relative; overflow: hidden;
}
/* Shimmer overlay on hover */
.hero-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  border-radius: 20px;
}
.hero-card:hover::after { opacity: 1; }
.hero-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}
.hero-card:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.05); transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.hero-card--featured { border-color: rgba(0,230,118,0.2); background: rgba(0,230,118,0.03); }
.hero-card--featured::before { background: linear-gradient(90deg, transparent, rgba(0,230,118,0.25), transparent); }
.hero-card--featured:hover { border-color: rgba(0,230,118,0.45); }
.hero-card--wallet { border-color: rgba(0,188,212,0.2); background: rgba(0,188,212,0.03); }
.hero-card--wallet::before { background: linear-gradient(90deg, transparent, rgba(0,188,212,0.25), transparent); }
.hero-card--wallet:hover { border-color: rgba(0,188,212,0.45); box-shadow: 0 20px 60px rgba(0,188,212,0.08); }

.hc-logo-wrap { display: flex; align-items: center; margin-bottom: 4px; }
.hc-logo { height: 52px; width: auto; object-fit: contain; mix-blend-mode: screen; }
.hc-logo-wrap--wallet { gap: 12px; align-items: center; }
.hc-logo--wallet { height: 44px; width: 44px; object-fit: contain; filter: none; }
.hc-wallet-name { font-size: 20px; font-weight: 600; color: var(--white); }
.hc-wallet-name strong { color: var(--cyan); }
.hc-desc { font-size: 14px; color: var(--grey); line-height: 1.7; flex: 1; }
.hc-badge-row { display: flex; gap: 8px; }
.hc-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.15em;
  color: var(--grey); text-transform: uppercase;
  border: 1px solid var(--border); border-radius: 100px; padding: 5px 12px;
}
.hc-badge .badge-dot { background: var(--green); box-shadow: 0 0 6px var(--green); }
.hc-badge--cyan { color: var(--cyan); border-color: rgba(0,188,212,0.2); }
.hc-btn-row { display: flex; gap: 10px; flex-wrap: wrap; }
.hc-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; border-radius: 8px;
  padding: 11px 20px; text-decoration: none; transition: all 0.25s;
  white-space: nowrap;
}
.hc-btn svg { width: 15px; height: 15px; }
.hc-btn--white { background: var(--white); color: var(--black); }
.hc-btn--white:hover { background: #e8e8e8; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,255,255,0.15); }
.hc-btn--green { background: var(--green); color: var(--black); }
.hc-btn--green:hover { background: #00ff88; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,230,118,0.3); }
.hc-btn--cyan { background: var(--cyan); color: var(--black); }
.hc-btn--cyan:hover { background: #26c6da; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,188,212,0.3); }
.hc-btn--ghost {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}
.hc-btn--ghost:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.06); }

.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 2; animation: bounce 2s infinite;
}
.hero-scroll svg { width: 28px; height: 28px; color: var(--grey); }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ════ PILLARS ═══════════════════════════════════════════════════ */
.pillars {
  background: #0e0e0e; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 44px 0;
  overflow: hidden;
}
.pillars-row {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap;
  font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 16px;
}
.pill-sep { color: var(--green); }
.pillars-desc {
  text-align: center; color: var(--grey); font-size: 15px;
  max-width: 680px; margin: 0 auto; line-height: 1.8;
}
.pillars-desc strong { color: var(--white); }

/* ════ ANIMATED DIVIDER ══════════════════════════════════════════ */
.anim-divider {
  position: relative; height: 90px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: var(--black);
}
.divider-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.divider-label {
  position: relative; z-index: 2;
  font-size: 11px; font-weight: 700; letter-spacing: 0.35em;
  color: rgba(255,255,255,0.3); text-transform: uppercase;
  background: rgba(8,8,8,0.85); padding: 6px 20px;
  border: 1px solid rgba(255,255,255,0.1); border-radius: 100px;
  backdrop-filter: blur(8px);
}

/* ════ THREE COLUMNS ══════════════════════════════════════════════ */
.three-cols { display: grid; grid-template-columns: repeat(3, 1fr); }
.tc-col { position: relative; overflow: hidden; border-right: 1px solid var(--border); }
.tc-col:last-child { border-right: none; }
.tc-col--dark { background: var(--dark2); }
.tc-col--mid { background: #131313; }
.tc-col::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='52'%3E%3Cpath d='M30 0L60 17.3V34.6L30 52 0 34.6V17.3Z' fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 52px; pointer-events: none;
}
/* Hover glow on columns */
.tc-col::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,230,118,0.04) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.4s; pointer-events: none;
}
.tc-col:hover::after { opacity: 1; }
.tc-inner {
  position: relative; z-index: 1; padding: 56px 40px;
  height: 100%; display: flex; flex-direction: column;
}
.tc-inner h3 { font-size: 22px; font-weight: 700; color: var(--white); line-height: 1.3; margin-bottom: 14px; }
.tc-sub { font-size: 15px; font-weight: 400; color: var(--grey); }
.tc-inner > p { font-size: 14px; color: var(--grey); line-height: 1.7; margin-bottom: 20px; }
.tc-inner > p strong { color: var(--white); }
.tc-list { list-style: none; flex: 1; margin-bottom: 32px; }
.tc-list li {
  font-size: 14px; color: var(--grey); padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 10px;
}
.tc-list li::before { content: '—'; color: var(--grey2); flex-shrink: 0; }
.btn-outline-tc {
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 14px; font-weight: 500;
  border: 1px solid rgba(255,255,255,0.2); border-radius: 100px;
  padding: 13px 28px; text-decoration: none; transition: all 0.25s; align-self: flex-start;
}
.btn-outline-tc:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.06); transform: translateY(-2px); }
.btn-white-tc {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--white); color: var(--black);
  font-size: 14px; font-weight: 600; border-radius: 100px;
  padding: 13px 28px; text-decoration: none; transition: all 0.25s; align-self: flex-start;
}
.btn-white-tc:hover { background: #e0e0e0; transform: translateY(-2px); }

/* ════ WALLET SECTION ════════════════════════════════════════════ */
.wallet-section { padding: 100px 0; background: #060d14; position: relative; overflow: hidden; }
.wallet-bg-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.ws-header { margin-bottom: 60px; position: relative; z-index: 1; }
.ws-logo-row { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; }
.ws-icon { width: 56px; height: 56px; object-fit: contain; }
.ws-badge { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; color: var(--cyan); text-transform: uppercase; margin-bottom: 12px; }
.ws-title { font-size: clamp(32px, 4vw, 48px); font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 16px; }
.ws-title-wallet { color: var(--cyan); }
.ws-desc { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.8; max-width: 680px; }
.ws-desc strong { color: var(--white); }
.ws-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 48px; align-items: start; position: relative; z-index: 1; }
.ws-features { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.ws-feature {
  display: flex; align-items: flex-start; gap: 16px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px; padding: 16px 18px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.ws-feature:hover { border-color: rgba(0,188,212,0.3); background: rgba(0,188,212,0.04); transform: translateX(4px); }
.wsf-icon {
  width: 38px; height: 38px; border-radius: 8px; flex-shrink: 0;
  background: rgba(0,188,212,0.1); border: 1px solid rgba(0,188,212,0.15);
  display: flex; align-items: center; justify-content: center; color: var(--cyan);
  transition: background 0.3s, box-shadow 0.3s;
}
.ws-feature:hover .wsf-icon { background: rgba(0,188,212,0.18); box-shadow: 0 0 16px rgba(0,188,212,0.2); }
.wsf-icon svg { width: 17px; height: 17px; }
.wsf-text { display: flex; flex-direction: column; gap: 4px; }
.wsf-text strong { font-size: 14px; font-weight: 600; color: var(--white); }
.wsf-text span { font-size: 13px; color: var(--grey); line-height: 1.5; }
.ws-footer-tags { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: 12px; color: var(--grey); }
.ws-footer-tags svg { width: 12px; height: 12px; }
.ws-footer-tags span { display: inline-flex; align-items: center; gap: 5px; }
.wft-sep { color: var(--grey2); }

/* Cold Storage Block */
.cs-block {
  background: rgba(255,255,255,0.02); border: 1px solid var(--border);
  border-radius: 16px; padding: 36px; position: relative; overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
}
.cs-block:hover { border-color: rgba(255,255,255,0.14); background: rgba(255,255,255,0.03); }
.cs-badge-label { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; color: var(--grey); text-transform: uppercase; margin-bottom: 16px; }
.cs-block-title { font-size: 24px; font-weight: 800; color: var(--white); line-height: 1.3; margin-bottom: 14px; }
.cs-block-title em { font-family: var(--serif); font-style: italic; }
.cs-block > p { font-size: 14px; color: var(--grey); line-height: 1.7; margin-bottom: 20px; }
.cs-block > p strong { color: var(--white); }
.cs-list { list-style: none; margin-bottom: 24px; }
.cs-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: var(--grey); padding: 11px 0;
  border-bottom: 1px solid var(--border);
}
.cs-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); flex-shrink: 0; margin-top: 7px; box-shadow: 0 0 6px var(--cyan); }
.cs-image-wrap { border-radius: 10px; overflow: hidden; border: 1px solid var(--border); margin-bottom: 20px; }
.cs-image { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform 0.5s ease; }
.cs-image-wrap:hover .cs-image { transform: scale(1.04); }
.btn-outline-cs {
  display: inline-flex; align-items: center;
  color: var(--white); font-size: 14px; font-weight: 500;
  border: 1px solid rgba(255,255,255,0.2); border-radius: 100px;
  padding: 12px 24px; text-decoration: none; transition: all 0.25s;
}
.btn-outline-cs:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.06); transform: translateY(-2px); }

.ws-cta-row { display: flex; gap: 16px; flex-wrap: wrap; position: relative; z-index: 1; }
.btn-cyan {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cyan); color: var(--black);
  font-size: 15px; font-weight: 700; border-radius: 8px;
  padding: 14px 28px; text-decoration: none; transition: all 0.25s;
}
.btn-cyan svg { width: 16px; height: 16px; }
.btn-cyan:hover { background: #26c6da; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,188,212,0.35); }
.btn-outline-wallet {
  display: inline-flex; align-items: center;
  color: var(--white); font-size: 15px; font-weight: 500;
  border: 1px solid rgba(255,255,255,0.2); border-radius: 8px;
  padding: 14px 28px; text-decoration: none; transition: all 0.25s;
}
.btn-outline-wallet:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.06); transform: translateY(-2px); }

/* ════ KYC SECTION ═══════════════════════════════════════════════ */
.kyc-full { padding: 100px 0; background: var(--dark2); position: relative; overflow: hidden; }
.kyc-bg-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.kyc-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; position: relative; z-index: 1; }
.section-badge { font-size: 11px; font-weight: 600; letter-spacing: 0.25em; color: var(--grey); text-transform: uppercase; margin-bottom: 16px; }
.section-title { font-size: clamp(28px, 3.5vw, 42px); font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 16px; }
.kyc-left p { font-size: 15px; color: var(--grey); line-height: 1.8; margin-bottom: 28px; }
.kyc-list { list-style: none; margin-bottom: 32px; }
.kyc-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--grey); padding: 10px 0;
  border-bottom: 1px solid var(--border); transition: color 0.2s;
}
.kyc-list li:hover { color: var(--white); }
.kyc-list li svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; }
.btn-primary {
  display: inline-flex; align-items: center;
  background: var(--white); color: var(--black);
  font-size: 14px; font-weight: 700; border-radius: 8px;
  padding: 13px 24px; text-decoration: none; transition: all 0.25s;
}
.btn-primary:hover { background: #e0e0e0; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,255,255,0.15); }
.kyc-price-cards { display: flex; flex-direction: column; gap: 20px; }
.kyc-price-card {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 16px; padding: 36px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.kyc-price-card:hover { border-color: rgba(255,255,255,0.15); background: rgba(255,255,255,0.05); transform: translateY(-4px); }
.kyc-price-card--cyan { border-color: rgba(0,188,212,0.15); }
.kyc-price-card--cyan:hover { border-color: rgba(0,188,212,0.35); box-shadow: 0 16px 48px rgba(0,188,212,0.08); }
.kyc-price-card--green { border-color: rgba(0,230,118,0.15); }
.kyc-price-card--green:hover { border-color: rgba(0,230,118,0.35); box-shadow: 0 16px 48px rgba(0,230,118,0.08); }
.kpc-badge { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; color: var(--grey); text-transform: uppercase; margin-bottom: 16px; }
.kpc-badge--cyan { color: var(--cyan); }
.kpc-badge--green { color: var(--green); }
.kpc-price { font-size: 52px; font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 6px; }
.kpc-label { font-size: 13px; color: var(--grey); margin-bottom: 24px; }
.kpc-divider { height: 1px; background: var(--border); margin-bottom: 24px; }
.kpc-features { list-style: none; margin-bottom: 28px; }
.kpc-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--grey); padding: 9px 0;
  border-bottom: 1px solid var(--border);
}
.kpc-features li svg { width: 15px; height: 15px; color: var(--green); flex-shrink: 0; }
.kpc-features--cyan li svg { color: var(--cyan); }

/* ════ PORTALS ═══════════════════════════════════════════════════ */
.portals { padding: 100px 0; background: var(--dark); position: relative; overflow: hidden; }
.portals::before {
  content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,188,212,0.04) 0%, transparent 70%);
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite;
}
@keyframes orbFloat { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(-30px)} }
.section-badge-center { text-align: center; font-size: 11px; font-weight: 600; letter-spacing: 0.25em; color: var(--grey); text-transform: uppercase; margin-bottom: 20px; position: relative; z-index: 1; }
.portals-title { text-align: center; font-size: clamp(36px, 5vw, 52px); font-weight: 800; color: var(--white); margin-bottom: 52px; position: relative; z-index: 1; }
.portals-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
.portal-card {
  display: flex; align-items: flex-start; gap: 20px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 16px; padding: 32px; transition: all 0.3s;
}
.portal-card:hover { border-color: rgba(255,255,255,0.18); background: rgba(255,255,255,0.06); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.3); }
.portal-card--wallet { border-color: rgba(0,188,212,0.15); }
.portal-card--wallet:hover { border-color: rgba(0,188,212,0.4); box-shadow: 0 16px 48px rgba(0,188,212,0.08); }
.portal-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--grey); flex-shrink: 0; transition: all 0.3s;
}
.portal-card:hover .portal-icon { background: rgba(255,255,255,0.1); }
.portal-icon svg { width: 22px; height: 22px; }
.portal-icon--cyan { background: rgba(0,188,212,0.1); border-color: rgba(0,188,212,0.2); color: var(--cyan); }
.portal-card--wallet:hover .portal-icon--cyan { background: rgba(0,188,212,0.2); box-shadow: 0 0 20px rgba(0,188,212,0.2); }
.portal-text strong { display: block; font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.portal-text p { font-size: 14px; color: var(--grey); line-height: 1.6; margin-bottom: 12px; }
.portal-link { font-size: 13px; color: var(--grey); text-decoration: none; transition: color 0.2s; }
.portal-link:hover { color: var(--white); }
.portal-link--cyan { color: var(--cyan); }
.portal-link--cyan:hover { color: #80deea; }

/* ════ CONTACT CTA ═══════════════════════════════════════════════ */
.contact-cta { padding: 100px 0; background: var(--dark2); text-align: center; position: relative; overflow: hidden; }
.contact-cta::before {
  content: ''; position: absolute; bottom: -80px; right: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,230,118,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { max-width: 600px; margin: 0 auto; position: relative; z-index: 1; }
.cta-title { font-size: clamp(32px, 5vw, 52px); font-weight: 800; color: var(--white); margin-bottom: 16px; }
.cta-desc { font-size: 16px; color: var(--grey); line-height: 1.7; margin-bottom: 36px; }
.cta-btn { display: inline-flex; align-items: center; gap: 10px; font-size: 15px; padding: 16px 36px; }
.cta-btn svg { width: 18px; height: 18px; }

/* ════ FOOTER ════════════════════════════════════════════════════ */
.footer { background: #060606; border-top: 1px solid var(--border); padding: 64px 0 0; }
.footer-top { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; padding-bottom: 48px; border-bottom: 1px solid var(--border); }
.footer-logo-img { height: 32px; width: auto; object-fit: contain; filter: brightness(0) invert(1); margin-bottom: 12px; display: block; }
.footer-brand p { font-size: 13px; color: var(--grey); line-height: 1.6; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.social-icon {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  color: var(--grey); text-decoration: none; transition: all 0.25s;
}
.social-icon svg { width: 15px; height: 15px; }
.social-icon:hover { border-color: rgba(255,255,255,0.3); color: var(--white); background: rgba(255,255,255,0.06); transform: translateY(-2px); }
.footer-nav-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.fn-col { display: flex; flex-direction: column; gap: 12px; }
.fn-col h4 { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; color: var(--grey); text-transform: uppercase; margin-bottom: 4px; }
.fn-col a { font-size: 14px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.fn-col a:hover { color: var(--white); }
.footer-disclaimer { padding: 24px 0; border-bottom: 1px solid var(--border); }
.footer-disclaimer p { font-size: 12px; color: var(--grey2); line-height: 1.7; max-width: 900px; }
.footer-bottom { padding: 20px 0; text-align: center; font-size: 12px; color: var(--grey2); }

/* ════ WHATSAPP FLOAT ════════════════════════════════════════════ */
.wa-float { position: fixed; bottom: 28px; left: 28px; z-index: 999; }
.wa-toggle {
  width: 52px; height: 52px; border-radius: 50%;
  background: #3a3a3a; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  transition: all 0.25s; border: 1px solid rgba(255,255,255,0.12);
}
.wa-dots { display: flex; align-items: center; gap: 4px; }
.wa-dots span {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255,255,255,0.75); display: block;
}
.wa-toggle:hover { background: #4a4a4a; transform: scale(1.08); box-shadow: 0 6px 24px rgba(0,0,0,0.6); }
.wa-menu {
  position: absolute; bottom: 64px; left: 0;
  display: flex; flex-direction: column; gap: 10px;
  opacity: 0; pointer-events: none; transform: translateY(12px);
  transition: all 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.wa-menu.open { opacity: 1; pointer-events: all; transform: translateY(0); }
.wa-item {
  display: flex; align-items: center; gap: 12px;
  background: var(--dark3); border: 1px solid var(--border);
  border-radius: 12px; padding: 12px 16px; text-decoration: none;
  min-width: 220px; transition: all 0.2s;
}
.wa-item:hover { border-color: rgba(255,255,255,0.2); background: var(--dark2); transform: translateX(3px); }
.wa-item-icon {
  width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.wa-item-icon svg { width: 17px; height: 17px; }
.wa-item--cyan .wa-item-icon { background: rgba(0,188,212,0.15); color: var(--cyan); }
.wa-item--green .wa-item-icon { background: rgba(0,230,118,0.15); color: var(--green); }
.wa-item--grey .wa-item-icon { background: rgba(255,255,255,0.07); color: var(--grey); }
.wa-item-text { display: flex; flex-direction: column; gap: 2px; }
.wa-item-text strong { font-size: 13px; font-weight: 600; color: var(--white); }
.wa-item-text span { font-size: 11px; color: var(--grey); }

/* ════ RESPONSIVE ════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .three-cols { grid-template-columns: 1fr; }
  .tc-col { border-right: none; border-bottom: 1px solid var(--border); }
  .ws-split { grid-template-columns: 1fr; gap: 40px; }
  .kyc-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
}
/* ═══════════════════════════════════════════════════════════════
   LANGUAGE SWITCHER
═══════════════════════════════════════════════════════════════ */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 3px;
  flex-shrink: 0;
}
.lang-btn {
  background: transparent;
  border: none;
  color: var(--grey);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 4px 8px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
}
.lang-btn:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.lang-btn.active {
  background: rgba(0,200,255,0.15);
  color: #00c8ff;
  border: 1px solid rgba(0,200,255,0.3);
}

@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .btn-nav-portal { display: none; }
  .lang-switcher { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 64px; left: 0; right: 0;
    background: rgba(8,8,8,0.98); padding: 20px;
    gap: 16px; border-bottom: 1px solid var(--border);
  }
  .portals-grid { grid-template-columns: 1fr; }
  .footer-nav-cols { grid-template-columns: 1fr 1fr; }
  .container { padding: 0 20px; }
  .hero { padding: 80px 16px 60px; }
}
