/* ================================================================
   HOME PAGE CSS
   ================================================================ */

/* ════════════════════════════════════════════
   HERO — COMPLETE REDESIGN
   Full viewport · Deep background · Rich card
════════════════════════════════════════════ */
.hero {
  min-height: 88vh;
  background: #000;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}

/* Layered background effects */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 160, 23, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 160, 23, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-glow-top {
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 900px;
  background: radial-gradient(ellipse at center top,
      rgba(212, 160, 23, 0.22) 0%,
      rgba(212, 160, 23, 0.06) 40%,
      transparent 70%);
  pointer-events: none;
}

.hero-glow-left {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(212, 160, 23, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.hero-glow-right {
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(0, 200, 83, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

/* Subtle noise-like orbs */
.hero-orb-1 {
  position: absolute;
  top: 15%;
  right: 5%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.06) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-2 {
  position: absolute;
  bottom: 20%;
  left: 5%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.05) 0%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
  animation: orbFloat 10s ease-in-out infinite 3s;
}

@keyframes orbFloat {

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

  50% {
    transform: translateY(-20px) scale(1.05);
  }
}

/* Hero inner layout — v3 */
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 1.5rem;
  padding-top: 90px;
  padding-bottom: 20px;
  width: 100%;
}

/* ── LEFT CONTENT ── */
.hero-left {}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(212, 160, 23, 0.07);
  border: 1px solid rgba(212, 160, 23, 0.25);
  border-radius: 100px;
  padding: 7px 18px 7px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 32px;
  animation: fadeIn 0.7s ease both;
  backdrop-filter: blur(8px);
}

.hero-pill-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(0, 200, 83, 0.2);
  animation: pulseGreen 2s ease-in-out infinite;
}

@keyframes pulseGreen {

  0%,
  100% {
    box-shadow: 0 0 0 2px rgba(0, 200, 83, 0.2), 0 0 8px var(--green);
  }

  50% {
    box-shadow: 0 0 0 4px rgba(0, 200, 83, 0.1), 0 0 20px var(--green);
  }
}

.hero-h1 {
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  animation: fadeUp 0.85s ease 0.15s both;
}

.hero-h1 em {
  font-style: normal;
  display: block;
  background: linear-gradient(110deg, var(--gold-bright) 0%, var(--gold-lt) 45%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shimmerGold 4s linear infinite 1s;
}

@keyframes shimmerGold {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

.hero-sub {
  font-size: 0.95rem;
  color: #888;
  line-height: 1.85;
  max-width: 500px;
  margin-bottom: 32px;
  animation: fadeUp 0.85s ease 0.3s both;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeUp 0.85s ease 0.45s both;
}

/* Proof stats row */
.hero-proof {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  overflow: hidden;
  animation: fadeUp 0.85s ease 0.6s both;
  width: fit-content;
}

.hero-proof-item {
  padding: 16px 28px;
  text-align: center;
  position: relative;
}

.hero-proof-item+.hero-proof-item {
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}

.hero-proof-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--gold-lt);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}

.hero-proof-lbl {
  font-size: 0.68rem;
  color: #555;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* ── RIGHT — TRADING DASHBOARD ── */
.hero-right {
  position: relative;
  align-items: center;
  justify-content: flex-end;
  animation: fadeIn 1s ease 0.5s both;
  padding-right: 0;
}

/* Main dashboard card */
.hero-card {
  background: rgba(16, 16, 16, 0.95);
  border: 1px solid rgba(212, 160, 23, 0.22);
  border-radius: 24px;
  padding: 26px;
  width: 100%;
  max-width: none;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 40px 100px rgba(0, 0, 0, 0.8),
    0 0 80px rgba(212, 160, 23, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  position: relative;
  z-index: 2;
}

/* Gold top-edge accent */
.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 160, 23, 0.6), transparent);
  border-radius: 1px;
}

/* Card header */
.hc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hc-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
}

.hc-mkt-tabs {
  display: flex;
  gap: 4px;
}

.hc-tab {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 6px;
  color: var(--text-3);
  cursor: pointer;
  transition: all 0.2s;
}

.hc-tab.on {
  background: rgba(212, 160, 23, 0.12);
  color: var(--gold-lt);
}

.hc-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--green);
  background: rgba(0, 200, 83, 0.08);
  border: 1px solid rgba(0, 200, 83, 0.2);
  padding: 3px 10px;
  border-radius: 100px;
}

.hc-live::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--green);
  border-radius: 50%;
  animation: pulseGreen 1.5s ease-in-out infinite;
}

/* Price row */
.hc-price-row {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 6px;
}

.hc-price {
  font-family: 'Outfit', sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.hc-change {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green);
  background: rgba(0, 200, 83, 0.09);
  border: 1px solid rgba(0, 200, 83, 0.2);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 4px;
}

.hc-ticker {
  font-size: 0.72rem;
  color: var(--text-3);
  margin-bottom: 18px;
}

/* Candlestick chart */
.hc-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 90px;
  margin-bottom: 18px;
  padding: 8px 0 0;
  background: rgba(255, 255, 255, 0.01);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 12px 14px 10px;
}

.hc-chart .c {
  flex: 1;
  border-radius: 2px;
  transition: opacity 0.2s, transform 0.2s;
  cursor: pointer;
}

.hc-chart .c:hover {
  opacity: 1 !important;
  transform: scaleY(1.05);
  transform-origin: bottom;
}

.hc-chart .cg {
  background: linear-gradient(to top, #00C853, #69f0ae);
  opacity: 0.85;
}

.hc-chart .cr {
  background: linear-gradient(to top, #b71c1c, #FF1744);
  opacity: 0.8;
}

/* Timeframe tabs */
.hc-timeframes {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.hc-tf {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--text-3);
  padding: 3px 8px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s;
}

.hc-tf.on {
  background: rgba(212, 160, 23, 0.1);
  color: var(--gold-lt);
}

/* Metric grid */
.hc-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.hm-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 10px 12px;
}

.hm-label {
  font-size: 0.58rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.hm-val {
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text);
}

.hm-val.up {
  color: var(--green);
}

.hm-val.dn {
  color: var(--red);
}

/* Mini market tickers */
.hc-tickers {
  display: flex;
  gap: 8px;
}

.hc-ticker-item {
  flex: 1;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ht-name {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ht-val {
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--white);
}

.ht-chg {
  font-size: 0.62rem;
  font-weight: 700;
}

.ht-chg.up {
  color: var(--green);
}

.ht-chg.dn {
  color: var(--red);
}

/* Floating micro-badges — BELOW the card, not overlapping */
.hero-badges {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  width: 100%;
  max-width: 460px;
  justify-content: space-between;
}

.hf-badge {
  flex: 1;
  background: rgba(16, 16, 16, 0.9);
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  animation: floatY 5s ease-in-out infinite;
  backdrop-filter: blur(12px);
}

.hf-badge:nth-child(2) {
  animation-delay: 2s;
}

@keyframes floatY {

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

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

.hf-badge img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(212, 160, 23, 0.2);
}

.hfb-text strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--white);
  line-height: 1.2;
}

.hfb-text span {
  font-size: 0.66rem;
  color: var(--text-3);
}

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--black-2);
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
  padding: 28px 0;
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 36px;
  text-align: center;
  border-right: 1px solid var(--border-2);
}

.trust-item:last-child {
  border-right: none;
}

.trust-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--gold-lt);
  line-height: 1;
  display: block;
}

.trust-lbl {
  font-size: 0.7rem;
  color: var(--text-3);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

/* ── FEATURES (image cards) ── */
.features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 52px;
}

.feat-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--black-3);
  border: 1px solid var(--border-2);
  transition: all var(--dur) var(--ease);
  position: relative;
}

.feat-card:hover {
  border-color: var(--border);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 160, 23, 0.1);
}

.feat-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.feat-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.feat-card:hover .feat-img-wrap img {
  transform: scale(1.06);
}

.feat-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.85));
}

.feat-body {
  padding: 20px 22px 24px;
}

.feat-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 8px;
}

.feat-body h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.feat-body p {
  font-size: 0.85rem;
  color: var(--text-3);
  line-height: 1.8;
}

.feat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-lt), transparent);
  opacity: 0;
  transition: opacity var(--dur);
}

.feat-card:hover::before {
  opacity: 1;
}

/* ── SPECIALIZATIONS (2-col list) ── */
.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 52px;
}

.spec-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--black-3);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: all var(--dur) var(--ease);
}

.spec-item:hover {
  border-color: var(--border);
  transform: translateX(5px);
  background: var(--black-4);
}

.spec-img {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.spec-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spec-text h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}

.spec-text p {
  font-size: 0.83rem;
  color: var(--text-3);
  line-height: 1.75;
}

/* ── COURSES ── */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 52px;
}

.course-card {
  background: var(--black-3);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--dur) var(--ease);
  position: relative;
}

.course-card.featured {
  border-color: rgba(212, 160, 23, 0.3);
  box-shadow: 0 0 50px rgba(212, 160, 23, 0.07);
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.6), 0 0 40px rgba(212, 160, 23, 0.12);
  border-color: rgba(212, 160, 23, 0.4);
}

.course-top-img {
  position: relative;
  height: 175px;
  overflow: hidden;
}

.course-top-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.course-card:hover .course-top-img img {
  transform: scale(1.06);
}

.course-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.85) 100%);
}

.course-ribbon {
  position: absolute;
  top: 14px;
  right: -28px;
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  color: var(--black);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 40px;
  transform: rotate(35deg);
  z-index: 2;
}

.course-price-overlay {
  position: absolute;
  bottom: 14px;
  left: 18px;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.7rem;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
  z-index: 2;
}

.course-body {
  padding: 20px 22px;
  flex: 1;
}

.course-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}

.course-sub {
  font-size: 0.78rem;
  color: var(--text-3);
  margin-bottom: 14px;
}

.course-includes-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.course-list li {
  font-size: 0.82rem;
  color: var(--text-3);
  padding: 5px 0;
  border-bottom: 1px solid var(--border-2);
  display: flex;
  align-items: center;
  gap: 7px;
}

.course-list li:last-child {
  border-bottom: none;
}

.course-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.course-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--border-2);
}

.course-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.course-btns .btn {
  width: 100%;
  justify-content: center;
  padding: 10px 14px;
  font-size: 0.8rem;
  border-radius: 10px;
}

/* ── GALLERY ── */
.gallery-outer {
  position: relative;
}

.gallery-fade-l,
.gallery-fade-r {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.gallery-fade-l {
  left: 0;
  background: linear-gradient(to right, var(--black), transparent);
}

.gallery-fade-r {
  right: 0;
  background: linear-gradient(to left, var(--black), transparent);
}

.gallery-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 8px 0;
  scroll-snap-type: x mandatory;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.gallery-scroll::-webkit-scrollbar {
  display: none;
}

.gallery-scroll.dragging {
  cursor: grabbing;
}

.g-item {
  flex: 0 0 340px;
  height: 240px;
  border-radius: var(--r-lg);
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid var(--border-2);
  position: relative;
  transition: all var(--dur);
}

.g-item:hover {
  border-color: var(--border);
  transform: scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 160, 23, 0.15);
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.g-item:hover img {
  transform: scale(1.07);
}

.g-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 20px 16px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-lt);
  opacity: 0;
  transition: opacity var(--dur);
}

.g-item:hover .g-caption {
  opacity: 1;
}

.gallery-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.g-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--black-4);
  border: 1px solid var(--border);
  color: var(--gold-lt);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--dur);
}

.g-nav-btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* ── TESTIMONIALS (horizontal drag-scroll) ── */
.testi-scroll-wrap {
  position: relative;
  margin-top: 48px;
  overflow: hidden;
  /* clips cards at section edges */
}

.testi-fade-l,
.testi-fade-r {
  position: absolute;
  top: 0;
  bottom: 20px;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.testi-fade-l {
  left: 0;
  background: linear-gradient(to right, var(--black) 0%, transparent 100%);
}

.testi-fade-r {
  right: 0;
  background: linear-gradient(to left, var(--black) 0%, transparent 100%);
}

.testi-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 60px 24px;
  cursor: grab;
}

.testi-scroll::-webkit-scrollbar {
  display: none;
}

.testi-scroll.dragging {
  cursor: grabbing;
}

.testi-card {
  flex: 0 0 360px;
  scroll-snap-align: start;
  background: var(--black-3);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  padding: 28px;
  position: relative;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testi-card:hover {
  border-color: rgba(212, 160, 23, 0.3);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 160, 23, 0.08);
}

.testi-card.featured-testi {
  border-color: rgba(212, 160, 23, 0.22);
  background: rgba(212, 160, 23, 0.03);
}

.testi-quote-icon {
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 0.6;
  color: rgba(212, 160, 23, 0.12);
  display: block;
  height: 28px;
}

.testi-stars {
  color: var(--gold-lt);
  font-size: 0.85rem;
  letter-spacing: 3px;
}

.testi-quote {
  font-size: 0.86rem;
  color: var(--text-2);
  line-height: 1.82;
  flex: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border-2);
  margin-top: auto;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dk), var(--black-5));
  border: 2px solid rgba(212, 160, 23, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  color: var(--gold-lt);
  font-size: 0.88rem;
  flex-shrink: 0;
}

.testi-name {
  font-weight: 700;
  color: var(--white);
  font-size: 0.86rem;
}

.testi-role {
  font-size: 0.7rem;
  color: var(--gold);
  margin-top: 2px;
}

/* ── CTA BANNER ── */
.cta-band {
  margin: 0;
  padding: 90px 0;
  background: var(--black-2);
  border-top: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(212, 160, 23, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.cta-band h2 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  margin-bottom: 14px;
  position: relative;
}

.cta-band h2 em {
  font-style: normal;
  color: var(--gold-lt);
}

.cta-band p {
  font-size: 1rem;
  color: var(--text-2);
  max-width: 480px;
  margin: 0 auto 36px;
  position: relative;
}

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

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-right {
    display: none;
  }

  .hero-left {
    max-width: 100%;
  }

  .features-row {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 768px) {

  /* Mobile hero — clean, centered, properly spaced */
  .hero {
    min-height: 100svh;
    align-items: flex-start;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 110px;
    padding-bottom: 30px;
    text-align: center;
    gap: 0;
  }

  .hero-right {
    display: none;
  }

  .hero-pill {
    margin: 0 auto 18px;
    font-size: 0.52rem;
    padding: 5px 12px 5px 8px;
    letter-spacing: 0.06em;
  }

  .hero-pill-dot {
    width: 6px;
    height: 6px;
  }

  .hero-h1 {
    font-size: clamp(2.1rem, 8vw, 2.8rem);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
  }

  .hero-sub {
    font-size: 0.88rem;
    max-width: 100%;
    margin: 0 auto 28px;
    color: #777;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
  }

  .hero-btns .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .hero-proof {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    border-radius: 14px;
    justify-content: center;
  }

  .hero-proof-item {
    padding: 10px 12px;
    min-width: 50%;
    border-left: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    flex: 1;
  }

  .hero-proof-item+.hero-proof-item {
    border-left: 1px solid rgba(255, 255, 255, 0.07) !important;
  }

  .hero-proof-item:nth-child(odd) {
    border-left: none !important;
  }

  .hero-proof-num {
    font-size: 1.35rem;
  }

  .hero-proof-lbl {
    font-size: 0.62rem;
  }

  /* Other sections */
  .features-row {
    grid-template-columns: 1fr;
  }

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

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

  .testi-card {
    flex: 0 0 300px;
  }

  .g-item {
    flex: 0 0 260px;
    height: 190px;
  }

  .course-btns {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .hero-inner {
    padding-top: 105px;
  }

  .hero-h1 {
    font-size: 1.85rem;
  }

  .hero-proof-num {
    font-size: 1.2rem;
  }

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

  .course-btns {
    grid-template-columns: 1fr 1fr;
  }
}