/* =============================================
   staking.css  –  CIEx Staking Landing Page
   ============================================= */

/* ── Variables ─────────────────────────────── */
:root {
  --gold: #F7B428;
  --gold-dark: #D4950E;
  --gold-light: rgba(247, 180, 40, .12);
  --green: #2DC88A;
  --green-dark: #21A373;
  --green-light: rgba(45, 200, 138, .12);
  --dark: #0A0A0A;
  --dark-2: #111111;
  --dark-3: #1A1A1A;
  --dark-card: #1E1E1E;
  --dark-border: rgba(255, 255, 255, .08);
  --text-white: #FFFFFF;
  --text-gray: #9CA3AF;
  --text-dark: #111827;
  --text-mid: #374151;
  --border: #E5E7EB;
  --bg-page: #FAFAFA;
  --bg-card: #FFFFFF;
  --bg-feat: #F5F7FA;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, .06);
  --shadow-md: 0 4px 28px rgba(0, 0, 0, .10);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, .18);
  --r: 14px;
  --r-lg: 20px;
  --r-pill: 100px;
}

/* ── Reset ─────────────────────────────────── */
.stk * {
  box-sizing: border-box;
}

.stk a {
  text-decoration: none;
}

.stk ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.stk img {
  display: block;
  max-width: 100%;
}

/* ── Layout ────────────────────────────────── */
.stk {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  overflow-x: hidden;
}

.stk-wrap {
  max-width: 1140px;
  margin: 0 200px;
  padding: 0 24px;
}

/* ── Shared Section Styles ─────────────────── */
.stk-section {
  padding: 88px 0;
}

.stk-section-sm {
  padding: 64px 0;
}

.stk-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}

.stk-eyebrow.gold {
  color: var(--gold);
}

.stk-title {
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.15;
  margin: 0 0 14px;
}

.stk-title.white {
  color: var(--text-white);
}

.stk-title .gold {
  color: var(--gold);
}

.stk-title .green {
  color: var(--green);
}

.stk-desc {
  font-size: 16px;
  color: #6B7280;
  line-height: 1.7;
  margin: 0 0 28px;
}

.stk-desc.white {
  color: var(--text-gray);
}

/* ── Buttons ───────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold);
  color: #0A0A0A;
  font-weight: 800;
  font-size: 15px;
  border: none;
  border-radius: var(--r-pill);
  padding: 14px 36px;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  text-decoration: none;
  font-family: inherit;
}

.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(247, 180, 40, .45);
  color: #0A0A0A;
}

.btn-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  border: none;
  border-radius: var(--r-pill);
  padding: 14px 36px;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  text-decoration: none;
  font-family: inherit;
}

.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(45, 200, 138, .4);
  color: #fff;
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .3);
  border-radius: var(--r-pill);
  padding: 13px 32px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  font-family: inherit;
}

.btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .07);
  color: #fff;
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.stk-hero {
  background-color: var(--dark);
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 130px 0 90px;
  position: relative;
  overflow: hidden;
}

.stk-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}

/* Left text */
.stk-hero-badge {
  display: inline-block;
  background: rgba(247, 180, 40, .12);
  color: var(--gold);
  border: 1px solid rgba(247, 180, 40, .25);
  border-radius: var(--r-pill);
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.stk-hero-title {
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  margin: 0 0 18px;
}

.stk-hero-title .gold {
  color: var(--gold);
}

.stk-hero-sub {
  font-size: 17px;
  color: #9CA3AF;
  line-height: 1.65;
  margin: 0 0 36px;
  max-width: 460px;
}

.stk-hero-sub strong {
  color: #fff;
}

.stk-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.stk-hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.stk-stat-val {
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  color: var(--gold);
}

.stk-stat-val.green {
  color: var(--green);
}

.stk-stat-val.white {
  color: #fff;
}

.stk-stat-lbl {
  font-size: 12px;
  color: #6B7280;
  margin-top: 5px;
}

/* Right visual */
.stk-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.stk-hero-coin-wrap {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stk-hero-coin-main {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #3A3000, #1A1500);
  box-shadow: 0 0 80px rgba(247, 180, 40, .3), 0 20px 60px rgba(0, 0, 0, .6);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  border: 3px solid rgba(247, 180, 40, .3);
}

.stk-hero-coin-main img {
  width: 160px;
  height: 160px;
  object-fit: contain;
}

.stk-hero-float {
  position: absolute;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stk-hero-float-1 {
  width: 64px;
  height: 64px;
  top: 10px;
  right: 10px;
  background: #1A1A1A;
  border: 2px solid rgba(247, 180, 40, .25);
  animation: floatY 3s ease-in-out infinite;
}

.stk-hero-float-2 {
  width: 52px;
  height: 52px;
  bottom: 30px;
  left: 0;
  background: var(--green);
  border: 2px solid rgba(45, 200, 138, .4);
  animation: floatY 3.5s ease-in-out infinite reverse;
}

.stk-hero-float img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

@keyframes floatY {

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

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

/* Staking card overlay */
.stk-hero-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: rgba(20, 20, 20, .9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(247, 180, 40, .2);
  border-radius: var(--r);
  padding: 16px 20px;
  min-width: 180px;
  z-index: 3;
}

.stk-hero-card-tag {
  font-size: 11px;
  color: #6B7280;
  letter-spacing: .6px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.stk-hero-card-apr {
  font-size: 42px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.stk-hero-card-label {
  font-size: 13px;
  color: #9CA3AF;
  margin-top: 3px;
}

.stk-hero-card-badge {
  display: inline-block;
  background: rgba(45, 200, 138, .15);
  color: var(--green);
  border-radius: var(--r-pill);
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
  margin-top: 10px;
}

/* ═══════════════════════════════════════
   ASSETS SECTION
═══════════════════════════════════════ */
.stk-assets {
  background: #fff;
}

.stk-assets-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.stk-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0 0 36px;
}

.stk-bullet-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-mid);
}

.stk-bullet-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.stk-bullet-dot.gold {
  background: var(--gold);
}

.stk-bullet-dot.green {
  background: var(--green);
}

.stk-bullet-dot.white {
  background: #fff;
}

/* Phone mockup visual */
.stk-phone-outer {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.stk-phone-outer img {
  max-width: 340px;
  width: 100%;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, .15));
}

/* Floating coin accents */
.stk-phone-accent {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.stk-phone-accent-1 {
  width: 56px;
  height: 56px;
  top: 10%;
  right: 5%;
  background: #1A1A1A;
  border: 2px solid rgba(247, 180, 40, .25);
  animation: floatY 3.2s ease-in-out infinite;
}

.stk-phone-accent-2 {
  width: 48px;
  height: 48px;
  bottom: 15%;
  left: 5%;
  background: var(--green);
  border: 2px solid rgba(45, 200, 138, .4);
  animation: floatY 2.8s ease-in-out infinite reverse;
}

.stk-phone-accent img {
  width: 65%;
  height: 65%;
  object-fit: contain;
}

/* ── Hero image ──────────────────────────────── */
.stk-hero-img {
  width: 100%;
  max-width: 560px;
  display: block;
  filter: drop-shadow(0 24px 64px rgba(247, 180, 40, .18));
}

/* ── Phone image ─────────────────────────────── */
.stk-phone-img {
  width: 100%;
  max-width: 380px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, .18));
}

/* ── Hold & Earn image ───────────────────────── */
.stk-hold-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.stk-hold-visual img {
  width: 100%;
  max-width: 480px;
  display: block;
}

/* ── Coin images (plain, no bg) ──────────────── */
.stk-ci-plain {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}

.stk-ci-plain img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Comparison coin header – no background needed since image has its own */
.stk-comp-head-coin {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stk-comp-head-coin img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ═══════════════════════════════════════
   STAKING PLANS
═══════════════════════════════════════ */
.stk-plans {
  background: #fff;

}

.stk-plans-head {
  text-align: center;
  margin-bottom: 48px;
}

/* Toggle pill */
.stk-toggle {
  display: inline-flex;
  background: #F3F4F6;
  border-radius: var(--r-pill);
  padding: 4px;
  margin-top: 22px;
}

.stk-toggle-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  background: transparent;
  border-radius: var(--r-pill);
  padding: 11px 28px;
  font-size: 14px;
  font-weight: 700;
  color: #6B7280;
  cursor: pointer;
  transition: all .22s;
  font-family: inherit;
}

.stk-toggle-btn .t-coin {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stk-toggle-btn .t-coin img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.stk-toggle-btn.active-green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 2px 12px rgba(45, 200, 138, .4);
}

.stk-toggle-btn.active-gold {
  background: var(--gold);
  color: #111;
  box-shadow: 0 2px 12px rgba(247, 180, 40, .45);
}

/* Plans grid */
.stk-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Plan card */
.stk-card {
  background: #fff;
  border-radius: var(--r-lg);
  border: 2px solid transparent;
  padding: 32px 26px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}

.stk-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stk-card.feat-green {
  border-color: var(--green);
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(45, 200, 138, .15);
}

.stk-card.feat-gold {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(247, 180, 40, .2);
}

/* Coin pair */
.stk-coin-pair {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 20px;
}

.stk-ci {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stk-ci img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.stk-ci.cix-bg {
  background: #1A1A1A;
  border: 2px solid rgba(247, 180, 40, .3);
}

.stk-ci.usdt-bg {
  background: #1A9E6F;
  border: 2px solid rgba(45, 200, 138, .3);
}

.stk-ci.arrow {
  background: none;
  border: none;
  font-size: 16px;
  color: #9CA3AF;
  font-weight: 700;
  width: auto;
  overflow: visible;
}

/* Term badge */
.stk-badge {
  display: inline-block;
  border-radius: var(--r-pill);
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.stk-badge.green {
  background: rgba(45, 200, 138, .12);
  color: var(--green-dark);
}

.stk-badge.gold {
  background: rgba(247, 180, 40, .12);
  color: var(--gold-dark);
}

/* Duration */
.stk-duration {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}

/* APR */
.stk-apr-num {
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 2px;
  transition: color .25s;
}

.stk-apr-num.green {
  color: var(--green);
}

.stk-apr-num.gold {
  color: var(--gold);
}

.stk-apr-lbl {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #9CA3AF;
  text-transform: uppercase;
  margin-bottom: 22px;
}

/* Features box */
.stk-features {
  background: var(--bg-feat);
  border-radius: var(--r);
  padding: 14px 16px;
  margin-bottom: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.stk-feat-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
}

.stk-feat-row+.stk-feat-row {}

.stk-feat-row i {
  font-size: 14px;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.stk-feat-row i.green {
  color: var(--green);
}

.stk-feat-row i.gold {
  color: var(--gold);
}

/* Plan CTA button */
.btn-plan {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  border-radius: var(--r-pill);
  font-size: 15px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  font-family: inherit;
}

.btn-plan.green {
  background: var(--green);
  color: #fff;
}

.btn-plan.green:hover {
  background: var(--green-dark);
  box-shadow: 0 4px 18px rgba(45, 200, 138, .45);
  color: #fff;
}

.btn-plan.gold {
  background: var(--gold);
  color: #111;
}

.btn-plan.gold:hover {
  background: var(--gold-dark);
  box-shadow: 0 4px 18px rgba(247, 180, 40, .5);
}

/* ═══════════════════════════════════════
   WHY SECTION
═══════════════════════════════════════ */
.stk-why {
  background: var(--dark-2);
}

.stk-why-head {
  text-align: center;
  margin-bottom: 56px;
}

.stk-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stk-why-card {
  background: var(--dark-3);
  border: 1px solid var(--dark-border);
  border-radius: var(--r);
  padding: 32px 26px;
  transition: border-color .2s, transform .2s;
}

.stk-why-card:hover {
  border-color: rgba(247, 180, 40, .35);
  transform: translateY(-3px);
}

.stk-why-icon {
  width: 54px;
  height: 54px;
  background: var(--gold-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 20px;
}

.stk-why-card-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.stk-why-card-desc {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.65;
  margin: 0;
}

/* ═══════════════════════════════════════
   HOLD & EARN
═══════════════════════════════════════ */
.stk-hold {
  background: #fff;
}

.stk-hold-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.stk-growth {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  padding: 36px 32px 20px;
  background: #F9FAFB;
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
}

.stk-growth::before {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  height: 1px;
  background: var(--border);
}

.stk-growth-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.stk-growth-bar-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.stk-growth-bar {
  width: 64px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, #2DC88A 0%, #1A9E6F 100%);
  position: relative;
}

.stk-growth-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .2) 0%, transparent 50%);
  border-radius: inherit;
}

.stk-growth-coin-top {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark-2);
  border: 2px solid rgba(247, 180, 40, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .25);
}

.stk-growth-coin-top img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.stk-growth-pct {
  font-size: 14px;
  font-weight: 800;
  color: var(--green);
  text-align: center;
}

.stk-growth-lbl {
  font-size: 12px;
  color: #9CA3AF;
  text-align: center;
  font-weight: 600;
}

/* Arrow line */
.stk-growth-arrow {
  position: absolute;
  bottom: 24px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: linear-gradient(90deg, rgba(45, 200, 138, .2), var(--green) 100%);
  pointer-events: none;
}

.stk-growth-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -4px;
  border: 5px solid transparent;
  border-left-color: var(--green);
  border-right: none;
}

/* ═══════════════════════════════════════
   COMPARISON
═══════════════════════════════════════ */
.stk-comparison {
  background: #fff;
}

.stk-comparison-head {
  text-align: center;
  margin-bottom: 12px;
}

.stk-comparison-sub {
  text-align: center;
  font-size: 15px;
  color: #6B7280;
  max-width: 520px;
  margin: 0 auto 52px;
  line-height: 1.6;
}

.stk-comp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 780px;
  margin: 0 auto;
}

.stk-comp-col {
  background: #F9FAFB;
  border-radius: var(--r-lg);
  padding: 28px 24px;
  border: 1.5px solid var(--border);
}

.stk-comp-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1.5px solid var(--border);
}

.stk-comp-head-coin {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stk-comp-head-coin.cix {
  background: #1A1A1A;
  border: 2px solid rgba(247, 180, 40, .3);
}

.stk-comp-head-coin.usdt {
  background: #1A9E6F;
  border: 2px solid rgba(45, 200, 138, .3);
}

.stk-comp-head-coin img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.stk-comp-head-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-dark);
}

.stk-comp-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stk-comp-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 14px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.stk-comp-row-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stk-comp-period {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 6px;
}

.stk-comp-period i {
  color: #9CA3AF;
  font-size: 12px;
}

.stk-comp-rate {
  font-size: 16px;
  font-weight: 900;
}

.stk-comp-rate.gold {
  color: var(--gold);
}

.stk-comp-rate.green {
  color: var(--green);
}

.stk-comp-bar-track {
  height: 5px;
  background: var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.stk-comp-bar-fill {
  height: 100%;
  border-radius: 10px;
  transition: width .5s ease;
}

.stk-comp-bar-fill.gold {
  background: var(--gold);
}

.stk-comp-bar-fill.green {
  background: var(--green);
}

/* ═══════════════════════════════════════
   CALCULATOR
═══════════════════════════════════════ */
.stk-calc {
  background: var(--bg-page);

}

.stk-calc-head {
  text-align: center;
  margin-bottom: 52px;
}

.stk-calc-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: stretch;
  max-width: 880px;
  margin: 0 auto;
}

/* Form panel */
.stk-calc-form {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.stk-calc-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stk-calc-lbl {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

/* Payout radio */
.stk-payout-wrap {
  display: flex;
  gap: 10px;
}

.stk-payout-lbl {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #F3F4F6;
  border: 1.5px solid transparent;
  border-radius: var(--r-pill);
  padding: 9px 20px;
  font-size: 14px;
  font-weight: 700;
  color: #6B7280;
  cursor: pointer;
  transition: all .2s;
}

.stk-payout-lbl input {
  display: none;
}

.stk-payout-lbl .p-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.stk-payout-lbl.sel-gold {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: rgba(247, 180, 40, .1);
}

.stk-payout-lbl.sel-green {
  border-color: var(--green);
  color: var(--green-dark);
  background: rgba(45, 200, 138, .1);
}

/* Slider row */
.stk-slider-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.stk-slider-val {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-dark);
}

/* Range input */
.stk-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 5px;
  border-radius: 10px;
  background: var(--border);
  outline: none;
  cursor: pointer;
}

.stk-range.gold {
  background: linear-gradient(to right, var(--gold) var(--pct, 80%), var(--border) var(--pct, 80%));
}

.stk-range.green {
  background: linear-gradient(to right, var(--green) var(--pct, 80%), var(--border) var(--pct, 80%));
}

.stk-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 3px var(--gold), 0 2px 8px rgba(0, 0, 0, .2);
  cursor: pointer;
  transition: box-shadow .2s;
}

.stk-range.green::-webkit-slider-thumb {
  box-shadow: 0 0 0 3px var(--green), 0 2px 8px rgba(0, 0, 0, .2);
}

.stk-range::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 0 0 3px var(--gold), 0 2px 8px rgba(0, 0, 0, .2);
  cursor: pointer;
}

/* Results panel */
.stk-calc-result {
  background: var(--dark-2);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.stk-res-title {
  font-size: 13px;
  font-weight: 700;
  color: #6B7280;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.stk-res-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 0;
  border-bottom: 1px solid var(--dark-border);
}

.stk-res-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.stk-res-lbl {
  font-size: 13px;
  color: #6B7280;
  font-weight: 600;
}

.stk-res-val {
  font-size: 42px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1.05;
}

.stk-res-val.rewards {
  color: var(--text-white);
  font-size: 36px;
}

.stk-res-val.daily {
  color: var(--green);
  font-size: 32px;
}

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.stk-faq {
  background: #fff;

}

.stk-faq-head {
  text-align: center;
  margin-bottom: 52px;
}

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

.stk-faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .2s;
}

.stk-faq-item.open {
  border-color: var(--gold);
}

.stk-faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: transparent;
  border: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  font-family: inherit;
  cursor: pointer;
  text-align: left;
  outline: unset !important;
}

.stk-faq-item.open .stk-faq-q {
  color: var(--gold);
}

.stk-faq-arrow {
  font-size: 18px;
  color: #9CA3AF;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform .25s;
}

.stk-faq-item.open .stk-faq-arrow {
  transform: rotate(90deg);
  color: var(--gold);
}

.stk-faq-a {
  display: none;
  padding: 0 22px 18px;
  font-size: 14px;
  color: #6B7280;
  line-height: 1.7;
}

.stk-faq-item.open .stk-faq-a {
  display: block;
}

/* ═══════════════════════════════════════
   CTA FOOTER
═══════════════════════════════════════ */
.stk-cta-section {
  background: var(--dark-2);
  padding: 96px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stk-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 800px 400px at 50% 50%, rgba(45, 200, 138, .05) 0%, transparent 70%);
  pointer-events: none;
}

.stk-cta-logo {
  margin: 0 auto 28px;
  font-size: 24px;
  font-weight: 900;
  color: #fff;
}

.stk-cta-logo span {
  color: var(--gold);
}

.stk-cta-title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 900;
  color: #fff;
  margin: 0 0 6px;
}

.stk-cta-title span {
  color: var(--gold);
}

.stk-cta-sub {
  font-size: 15px;
  color: #9CA3AF;
  margin: 0 0 36px;
}

.stk-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.stk-copyright {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
}

.stk-copyright-text {
  font-size: 13px;
  color: #6B7280;
}

.stk-copyright-links {
  display: flex;
  gap: 20px;
}

.stk-copyright-links a {
  font-size: 13px;
  color: #6B7280;
  text-decoration: none;
  transition: color .2s;
}

.stk-copyright-links a:hover {
  color: #fff;
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 991px) {

  .stk-wrap {
    margin: 0 auto !important;
  }

  .stk-hero-inner,
  .stk-assets-inner,
  .stk-hold-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .stk-hero {
    text-align: center;
    padding: 100px 0 60px;
    background-position: center center;
  }

  .stk-hero-inner {
    grid-template-columns: 1fr;
  }

  .stk-hero-sub {
    margin: 0 auto 36px;
  }

  .stk-hero-actions {
    justify-content: center;
  }

  .stk-hero-stats {
    justify-content: center;
  }

  .stk-plans-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .stk-why-grid {
    grid-template-columns: 1fr;
  }

  .stk-comp-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .stk-calc-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .stk-wrap {
    margin: 0 auto;
  }

  .stk-section,
  .stk-section-sm {
    padding: 60px 0;
  }

  .stk-hero {
    padding: 88px 0 60px;
    background-size: cover;
  }

  .stk-toggle-btn {
    padding: 10px 18px;
    font-size: 13px;
  }

  .stk-copyright {
    justify-content: center;
    text-align: center;
  }
}