/* ============================================================
   PUMA BROKER — STYLES v3.0
   IQ Option-level visual design
   ============================================================ */

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

:root {
  --bg:           #0f0f0f;
  --bg-card:      #161616;
  --bg-card2:     #1c1c1c;
  --bg-card3:     #222222;
  --green:        #22c55e;
  --green-dark:   #16a34a;
  --green-light:  #4ade80;
  --green-glow:   rgba(34, 197, 94, 0.20);
  --green-glow-sm:rgba(34, 197, 94, 0.10);
  --white:        #ffffff;
  --text-dim:     rgba(255, 255, 255, 0.45);
  --text-muted:   rgba(255, 255, 255, 0.28);
  --border:       rgba(255, 255, 255, 0.06);
  --border-hover: rgba(34, 197, 94, 0.35);
  --red:          #ef4444;
  --radius:       12px;
  --radius-lg:    20px;
  --radius-xl:    28px;
  --trans:        0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --trans-fast:   0.16s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; }

::selection { background: var(--green-glow); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--green-dark); border-radius: 3px; }

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

/* ── SECTION SPACING ── */
.section { padding: 120px 0; }

/* ── LABEL TAG ── */
.label-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.label-tag-center { margin-bottom: 20px; }

/* ── TYPOGRAPHY ── */
.dim   { color: var(--text-dim); }
.bright { color: var(--white); }
.accent { color: var(--green); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #000;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--green-glow);
}
.btn-primary:active { transform: translateY(0); }

.btn-xl { font-size: 1rem; padding: 16px 36px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 100px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color var(--trans), background var(--trans);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.04);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card2);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 100px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color var(--trans), background var(--trans), transform var(--trans);
}
.btn-dark:hover {
  border-color: rgba(255,255,255,0.15);
  background: var(--bg-card3);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(15, 15, 15, 0.7);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--border);
  transition: background var(--trans), border-color var(--trans);
}
.navbar.scrolled {
  background: rgba(15, 15, 15, 0.95);
  border-bottom-color: rgba(34, 197, 94, 0.08);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 34px; width: auto; object-fit: contain; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: color var(--trans-fast);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--green);
  transition: width var(--trans);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

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

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--trans), opacity var(--trans);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
  background: rgba(15, 15, 15, 0.98);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dim);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--trans-fast);
}
.mobile-menu a:hover { color: var(--white); }
.mobile-menu-btns {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: auto;
  padding: 140px 0 80px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Background elements */
.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.018'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}
.hero-glow-1 {
  position: absolute;
  top: -100px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(34,197,94,0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero-glow-2 {
  position: absolute;
  bottom: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(34,197,94,0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-content { display: flex; flex-direction: column; align-items: center; }

/* Hero Video */
.hero-video-wrap {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 48px auto 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(34,197,94,0.18), 0 32px 64px rgba(0,0,0,0.6);
  border: 1px solid rgba(34,197,94,0.15);
}
.hero-video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 70%, rgba(0,0,0,0.5) 100%);
  border-radius: 20px;
  pointer-events: none;
}

/* Live badge */
.hero-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 32px;
  transition: border-color var(--trans);
}
.hero-live-badge:hover { border-color: rgba(34,197,94,0.25); }
.live-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}
.badge-icon { width: 16px; height: 16px; }
.badge-pair { color: var(--text-dim); }
.badge-price { color: var(--white); font-weight: 700; }
.badge-change.positive { color: var(--green); }
.badge-change.negative { color: var(--red); }

/* Hero title — IQ Option style */
.hero-title {
  font-size: clamp(3.8rem, 8.5vw, 7.5rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -3px;
  margin-bottom: 28px;
  text-align: center;
  width: 100%;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

/* Trustpilot badge */
.trustpilot-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(34,197,94,0.07);
  border: 1px solid rgba(34,197,94,0.15);
  border-radius: 100px;
  padding: 9px 20px;
}
.tp-stars { display: flex; gap: 2px; }
.tp-stars i { color: #22c55e; font-size: 0.9rem; }
.tp-text { display: flex; align-items: baseline; gap: 5px; }
.tp-score { font-size: 0.9rem; font-weight: 800; color: var(--white); }
.tp-label { font-size: 0.78rem; color: var(--text-dim); }
.tp-divider { width: 1px; height: 16px; background: var(--border); }
.tp-reviews { font-size: 0.75rem; color: var(--text-dim); }

/* ── PLATFORM MOCKUP ── */
.platform-mockup {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(34,197,94,0.05);
  position: relative;
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--bg-card2);
  border-bottom: 1px solid var(--border);
}
.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}
.mockup-dots span:nth-child(1) { background: #ef4444; }
.mockup-dots span:nth-child(2) { background: #f59e0b; }
.mockup-dots span:nth-child(3) { background: #22c55e; }
.mockup-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dim);
  flex: 1;
}
.mockup-payout {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-left: auto;
}
.mockup-payout strong { color: var(--green); }

.mockup-chart-area {
  position: relative;
  height: 220px;
  background: var(--bg);
  overflow: hidden;
}
#tradeCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Trade badges on mockup */
.trade-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px 14px;
  font-size: 0.72rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 2;
  white-space: nowrap;
}
.trade-badge.show { opacity: 1; transform: translateY(0); }
.badge-1 { top: 20px; left: 16px; }
.badge-2 { top: 20px; right: 16px; }
.badge-3 { bottom: 20px; left: 50%; transform: translateX(-50%) translateY(8px); }
.badge-3.show { transform: translateX(-50%) translateY(0); }

.tb-avatar {
  width: 28px; height: 28px;
  background: var(--green-glow);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
}
.tb-info { display: flex; flex-direction: column; gap: 1px; }
.tb-name { color: var(--text-dim); font-size: 0.7rem; }
.tb-profit { color: var(--green); font-weight: 800; font-size: 0.78rem; }

.mockup-controls {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}
.mockup-amount, .mockup-time {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 10px;
  border-right: 1px solid var(--border);
}
.mc-label { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.08em; color: var(--text-muted); text-transform: uppercase; margin-bottom: 2px; }
.mc-value { font-size: 0.82rem; font-weight: 700; }
.mockup-call, .mockup-put {
  border: none;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 14px 6px;
  transition: opacity var(--trans);
}
.mockup-call { background: var(--green); color: #000; }
.mockup-put  { background: var(--red); color: #fff; }
.mockup-call:hover, .mockup-put:hover { opacity: 0.85; }

/* ============================================================
   AWARDS BAR
   ============================================================ */
.awards-bar {
  background: #111010;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 32px 0;
}
.awards-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.award-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 8px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.award-item:last-child { border-right: none; }

.award-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}
.award-icon {
  font-size: 1.6rem;
  color: #22c55e;
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}
.award-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
}
.award-source {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}


/* ============================================================
   CRYPTO CAROUSEL
   ============================================================ */
.carousel-wrap {
  overflow: hidden;
  padding: 20px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.carousel-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: carousel-scroll 30s linear infinite;
}
.carousel-track:hover { animation-play-state: paused; }

@keyframes carousel-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.crypto-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  white-space: nowrap;
  cursor: default;
  transition: border-color var(--trans), background var(--trans);
  flex-shrink: 0;
}
.crypto-pill:hover {
  border-color: rgba(255,255,255,0.12);
  background: var(--bg-card2);
}
.crypto-pill img { width: 24px; height: 24px; object-fit: contain; }
.pill-name { font-size: 0.8rem; font-weight: 700; }
.pill-full { font-size: 0.72rem; color: var(--text-dim); }
.pill-pct  { font-size: 0.68rem; font-weight: 700; }

/* ============================================================
   EDITORIAL LAYOUT (services, markets)
   ============================================================ */
.editorial-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 72px;
}
.editorial-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
}
.editorial-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  padding-top: 16px;
}
.editorial-body {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.75;
  max-width: 460px;
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform var(--trans), border-color var(--trans), background var(--trans);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  background: var(--bg-card2);
}
.sc-icon {
  font-size: 1.8rem;
  line-height: 1;
  color: #22c55e;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}
.service-card p {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ── ASSET TABLE ── */
.asset-tabs {
  display: flex;
  gap: 4px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px;
}
.asset-tab {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  cursor: pointer;
  transition: background var(--trans), color var(--trans);
  white-space: nowrap;
}
.asset-tab.active {
  background: var(--bg-card3);
  color: var(--white);
}
.asset-tab:hover:not(.active) { color: var(--white); }

.asset-table-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.asset-table-head {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 0.7fr 1fr;
  gap: 16px;
  padding: 14px 24px;
  background: var(--bg-card2);
  border-bottom: 1px solid var(--border);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.asset-table-body {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.asset-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 0.7fr 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  animation: rowIn 0.3s ease both;
  transition: background var(--trans-fast);
}
.asset-row:last-child { border-bottom: none; }
.asset-row:hover { background: var(--bg-card2); }

@keyframes rowIn {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.asset-row-icon { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; }
.asset-row-icon img { width: 28px; height: 28px; }
.asset-row-name { font-size: 0.88rem; font-weight: 700; }
.asset-row-full { font-size: 0.72rem; color: var(--text-muted); margin-top: 2px; }
.asset-row-price { font-size: 0.88rem; font-weight: 700; font-variant-numeric: tabular-nums; }
.asset-row-change { font-size: 0.82rem; font-weight: 700; }
.asset-row-change.positive { color: var(--green); }
.asset-row-change.negative { color: var(--red); }
.asset-row-payout { font-size: 0.82rem; font-weight: 800; color: var(--green); }
.asset-row-trade {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 100px;
  cursor: pointer;
  transition: background var(--trans), border-color var(--trans), color var(--trans);
  white-space: nowrap;
}
.asset-row-trade:hover {
  background: var(--green);
  border-color: var(--green);
  color: #000;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-section { background: var(--bg); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.about-body {
  font-size: 0.975rem;
  color: var(--text-dim);
  line-height: 1.75;
  max-width: 480px;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.about-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform var(--trans), border-color var(--trans);
}
.about-stat:hover {
  transform: translateY(-3px);
  border-color: rgba(34,197,94,0.2);
}
.stat-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.stat-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ============================================================
   VIP SECTION
   ============================================================ */
.vip-section { padding: 80px 0; }

.vip-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(34,197,94,0.15);
  border-radius: var(--radius-xl);
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 0;
  min-height: 420px;
}
.vip-glow {
  position: absolute;
  top: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(34,197,94,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.vip-content {
  position: relative;
  z-index: 1;
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.vip-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000;
  background: var(--green);
  padding: 5px 14px;
  border-radius: 100px;
}
.vip-title {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
}
.vip-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vip-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-dim);
}
.perk-icon {
  width: 22px; height: 22px;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #22c55e;
  font-weight: 900;
  color: var(--green);
  flex-shrink: 0;
  line-height: 20px;
  text-align: center;
}
.vip-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(34,197,94,0.06) 0%, transparent 100%);
  border-left: 1px solid rgba(34,197,94,0.1);
}
.vip-icon {
  font-size: 5rem;
  z-index: 2;
  color: #ffffff;
  filter: drop-shadow(0 0 24px rgba(255,255,255,0.2));
  animation: float-icon 3s ease-in-out infinite;
}
@keyframes float-icon {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
.vip-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(34,197,94,0.15);
  animation: ring-pulse 3s ease-in-out infinite;
}
.vip-ring-1 { width: 120px; height: 120px; animation-delay: 0s; }
.vip-ring-2 { width: 200px; height: 200px; animation-delay: 0.5s; }
.vip-ring-3 { width: 300px; height: 300px; animation-delay: 1s; }
@keyframes ring-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.04); }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--bg); }

.section-center-header {
  text-align: center;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-title-center {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-dim);
}

/* ── Testimonials Carousel ── */
.tc-carousel-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.tc-carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: tc-scroll 40s linear infinite;
}
.tc-carousel-track:hover { animation-play-state: paused; }
@keyframes tc-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.testimonial-card {
  flex: 0 0 360px;
  min-width: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--trans), border-color var(--trans);
}
.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.1);
}
.tc-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tc-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--green);
  flex-shrink: 0;
  overflow: hidden;
}
.tc-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.tc-meta { flex: 1; }
.tc-name { font-size: 0.85rem; font-weight: 700; }
.tc-handle { font-size: 0.72rem; color: var(--text-muted); }
.tc-stars { display: flex; gap: 2px; color: var(--green); font-size: 0.8rem; margin-top: 2px; }
.testimonial-card p {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.7;
  flex: 1;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--bg); }

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--trans);
}
.faq-item:hover { border-color: rgba(255,255,255,0.1); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  text-align: left;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  transition: color var(--trans-fast);
}
.faq-question:hover { color: var(--green); }
.faq-icon {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--text-dim);
  flex-shrink: 0;
  transition: transform var(--trans), color var(--trans);
  line-height: 1;
}
.faq-icon.rotated { transform: rotate(45deg); color: var(--green); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s;
  padding: 0 24px;
}
.faq-answer.open { max-height: 300px; padding: 0 24px 22px; }
.faq-answer p { font-size: 0.9rem; color: var(--text-dim); line-height: 1.75; }

/* ============================================================
   CTA
   ============================================================ */
.cta-section { padding: 80px 0 120px; }

.cta-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(34,197,94,0.15);
  border-radius: var(--radius-xl);
  padding: 80px 64px;
  text-align: center;
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(34,197,94,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 20px;
}
.cta-body {
  font-size: 1.05rem;
  color: var(--text-dim);
  margin-bottom: 40px;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.cta-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 72px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.footer-logo { height: 30px; width: auto; object-fit: contain; }
.footer-tagline { font-size: 0.85rem; color: var(--text-dim); max-width: 260px; line-height: 1.6; }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  transition: color var(--trans), border-color var(--trans), background var(--trans);
}
.social-link:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.15);
  background: var(--bg-card3);
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.85rem;
  color: var(--text-dim);
  transition: color var(--trans-fast);
}
.footer-col a:hover { color: var(--white); }

.footer-risk {
  display: flex;
  gap: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 40px;
}
.risk-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; color: #f59e0b; }
.footer-risk p { font-size: 0.75rem; color: var(--text-muted); line-height: 1.7; }
.footer-risk strong { color: var(--text-dim); }

.footer-bottom {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 28px;
}
.footer-bottom a { color: var(--text-muted); transition: color var(--trans-fast); }
.footer-bottom a:hover { color: var(--white); }
.footer-sep { color: var(--border); }

/* ============================================================
   MODALS — RIGHT-SIDE PANEL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal-box {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 100vw;
  height: 100vh;
  overflow-y: auto;
  background: #1a1714;
  padding: 0;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -12px 0 48px rgba(0,0,0,0.6);
}
.modal-overlay.open .modal-box {
  transform: translateX(0);
}

/* Scrollbar */
.modal-box::-webkit-scrollbar { width: 3px; }
.modal-box::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); }

/* Header */
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px 0;
  flex-shrink: 0;
}
.modal-logo-img { height: 26px; width: auto; object-fit: contain; }

.modal-close {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.08);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,0.6);
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.modal-close:hover { background: rgba(255,255,255,0.15); color: #fff; }

/* Content area */
.modal-content { padding: 28px 28px 40px; flex: 1; }

.modal-greeting {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
  font-weight: 400;
}

.modal-title {
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 28px;
  color: #fff;
}

/* Social login label */
.modal-social-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
  font-weight: 500;
}

/* Social buttons */
.social-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: #fff;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.social-btn:hover { background: rgba(255,255,255,0.13); border-color: rgba(255,255,255,0.2); }

/* OR divider */
.form-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 4px 0 20px;
  color: rgba(255,255,255,0.25);
  font-size: 0.78rem;
}
.form-divider::before,
.form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.12);
}

/* Forms */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
}
.form-group input {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 0.9rem;
  color: #fff;
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus {
  border-color: rgba(34,197,94,0.5);
  background: rgba(255,255,255,0.1);
}
.form-group input::placeholder { color: rgba(255,255,255,0.25); }

/* Password field with eye icon */
.input-wrap {
  position: relative;
}
.input-wrap input { padding-right: 46px; }
.password-eye {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  padding: 4px;
  transition: color 0.2s;
}
.password-eye:hover { color: rgba(255,255,255,0.7); }
.eye-icon { display: block; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}
.form-check input[type="checkbox"] {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--green);
  cursor: pointer;
}
.form-check label {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
  cursor: pointer;
}
.form-check a { color: var(--green); }

/* Primary modal button */
.btn-modal-primary {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
  border: none;
  border-radius: 10px;
  color: #000;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  margin-top: 6px;
  margin-bottom: 4px;
  transition: opacity 0.2s, transform 0.15s;
  letter-spacing: 0.02em;
}
.btn-modal-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-modal-primary:active { transform: translateY(0); }

/* Bottom links row */
.modal-foot-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  gap: 8px;
}
.foot-link-dim {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: color 0.2s;
}
.foot-link-dim:hover { color: rgba(255,255,255,0.7); }
.foot-link-green {
  font-size: 0.82rem;
  color: var(--green);
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
}
.foot-link-green:hover { opacity: 0.75; }

.modal-switch {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.modal-switch span {
  color: var(--green);
  cursor: pointer;
  font-weight: 600;
  transition: opacity 0.2s;
}
.modal-switch span:hover { opacity: 0.75; }

/* Demo features */
.demo-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  padding: 18px;
  background: rgba(34,197,94,0.07);
  border: 1px solid rgba(34,197,94,0.18);
  border-radius: 12px;
}
.demo-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.demo-feat span { color: var(--green); font-size: 1rem; display: flex; align-items: center; }

/* Hidden utility */
.hidden { display: none !important; }

/* ============================================================
   FADE UP ANIMATION (scroll observer)
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Stagger delays for grid items ── */
.services-grid .service-card:nth-child(1) { transition-delay: 0.05s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.10s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.15s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.20s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.25s; }
.services-grid .service-card:nth-child(6) { transition-delay: 0.30s; }
.testimonials-grid .testimonial-card:nth-child(1) { transition-delay: 0.05s; }
.testimonials-grid .testimonial-card:nth-child(2) { transition-delay: 0.10s; }
.testimonials-grid .testimonial-card:nth-child(3) { transition-delay: 0.15s; }
.testimonials-grid .testimonial-card:nth-child(4) { transition-delay: 0.05s; }
.testimonials-grid .testimonial-card:nth-child(5) { transition-delay: 0.10s; }
.testimonials-grid .testimonial-card:nth-child(6) { transition-delay: 0.15s; }
.testimonials-grid .testimonial-card:nth-child(7) { transition-delay: 0.05s; }
.testimonials-grid .testimonial-card:nth-child(8) { transition-delay: 0.10s; }
.testimonials-grid .testimonial-card:nth-child(9) { transition-delay: 0.15s; }
.testimonials-grid .testimonial-card:nth-child(10) { transition-delay: 0.20s; }
.stats-grid .about-stat:nth-child(1) { transition-delay: 0.05s; }
.stats-grid .about-stat:nth-child(2) { transition-delay: 0.10s; }
.stats-grid .about-stat:nth-child(3) { transition-delay: 0.15s; }
.stats-grid .about-stat:nth-child(4) { transition-delay: 0.20s; }

/* ============================================================
   RESPONSIVE — TABLET 768px
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner {
    gap: 56px;
  }
  .platform-mockup {
    max-width: 560px;
    margin: 0 auto;
  }
  .awards-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .award-sep { display: none; }
  .editorial-header {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .testimonial-card { flex: 0 0 300px; }
  .vip-card { grid-template-columns: 1fr; }
  .vip-visual { display: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .container { padding: 0 20px; }

  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 90px 0 60px; }
  .hero-inner { padding: 0 20px; gap: 40px; }
  .hero-title { font-size: clamp(2.6rem, 10vw, 4.5rem); letter-spacing: -2px; }
  .hero-sub { font-size: 0.95rem; }
  .hero-actions { gap: 12px; }
  .btn-xl { font-size: 0.9rem; padding: 14px 26px; }
  .desk-only { display: none; }

  .awards-inner { grid-template-columns: 1fr; gap: 20px; }
  .award-item { padding: 0 16px; }

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

  .asset-table-head { display: none; }
  .asset-row {
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    gap: 8px;
  }
  .asset-row-icon { grid-row: 1 / 3; }
  .asset-row-payout { display: none; }

  .testimonial-card { flex: 0 0 280px; }

  .cta-card { padding: 48px 28px; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn-xl { width: 100%; justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-wrap: wrap; }

  .modal-box { padding: 28px 24px; }
  .form-row { grid-template-columns: 1fr; }

  .vip-content { padding: 40px 32px; }

  .about-grid { gap: 40px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(2.2rem, 12vw, 3.5rem); }
  .editorial-title { font-size: clamp(1.8rem, 8vw, 2.6rem); }
  .section-title-center { font-size: clamp(1.8rem, 8vw, 2.6rem); }
  .stats-grid { grid-template-columns: 1fr; }
  .asset-tabs { flex-wrap: wrap; }
  .trustpilot-badge { flex-wrap: wrap; gap: 8px; }
  .hero-live-badge { font-size: 0.72rem; padding: 6px 12px; }
  .awards-inner { padding: 0 20px; }
}
