/* ========================================
   HOME PAGE STYLES - PROFESSIONAL DARK THEME
   Proper Design with Clean Hover Effects
   ======================================== */

/* === HERO SECTION === */
.hero-section {
  position: relative;
  height: 100svh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(80px + var(--space-lg)) 0 var(--space-lg);
  overflow: hidden;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  --hero-spot-x: 72%;
  --hero-spot-y: 34%;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10, 21, 34, 0.68) 0%, rgba(16, 31, 49, 0.56) 42%, rgba(31, 50, 71, 0.48) 68%, rgba(211, 84, 0, 0.38) 100%);
  z-index: 1;
}

.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--hero-spot-x) var(--hero-spot-y), rgba(255, 204, 136, 0.34) 0%, rgba(255, 204, 136, 0.14) 24%, transparent 50%),
    radial-gradient(circle at 18% 82%, rgba(110, 209, 255, 0.16) 0%, transparent 40%);
  z-index: 1;
  pointer-events: none;
  transition: background-position 0.2s linear;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: none;
}

.hero-text {
  animation: fadeInLeft 0.8s var(--ease-out);
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  padding: 10px 16px;
  background: linear-gradient(145deg, rgba(11, 24, 39, 0.44), rgba(17, 32, 50, 0.3));
  border: 1px solid rgba(187, 224, 250, 0.48);
  border-radius: var(--radius-full);
  font-size: 0.98rem;
  color: #f2f8ff;
  font-weight: var(--font-weight-normal);
  margin-bottom: var(--space-xl);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  box-shadow: 0 8px 18px rgba(6, 16, 29, 0.25);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  letter-spacing: 0.01em;
  transition: border-color 220ms var(--ease-out), background 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

.hero-badge-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex: 0 0 12px;
  background: var(--hero-badge-color, #34d07f);
  box-shadow: 0 0 0 5px var(--hero-badge-glow, rgba(52, 208, 127, 0.24));
  transition: background-color 220ms var(--ease-out), box-shadow 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.hero-badge-text {
  display: inline-block;
  min-width: 25ch;
  transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.hero-badge.is-text-switching .hero-badge-text {
  opacity: 0.2;
  transform: translateY(-2px);
}

.hero-badge.state-green {
  --hero-badge-color: #3be08d;
  --hero-badge-glow: rgba(59, 224, 141, 0.22);
}

.hero-badge.state-red {
  --hero-badge-color: #ff6f6f;
  --hero-badge-glow: rgba(255, 111, 111, 0.24);
}

.hero-badge.state-amber {
  --hero-badge-color: #ffbf75;
  --hero-badge-glow: rgba(255, 191, 117, 0.24);
}

.hero-badge.state-blue {
  --hero-badge-color: #6cc7ff;
  --hero-badge-glow: rgba(108, 199, 255, 0.24);
}

.hero-badge.state-green { border-color: rgba(126, 236, 176, 0.62); }
.hero-badge.state-red { border-color: rgba(255, 154, 154, 0.64); }
.hero-badge.state-amber { border-color: rgba(255, 213, 151, 0.64); }
.hero-badge.state-blue { border-color: rgba(165, 221, 255, 0.64); }

.hero-title {
  font-size: clamp(2.4rem, 4.2vw, 4rem);
  font-weight: var(--font-weight-black);
  line-height: 1.04;
  margin-bottom: var(--space-lg);
  color: #ffffff;
  letter-spacing: -0.025em;
  max-width: 12ch;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero-title-highlight {
  background: linear-gradient(135deg, #ffd39f 0%, #ffc077 45%, #f39c3c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--space-2xl);
  line-height: 1.7;
  max-width: 62ch;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 10px;
  margin-bottom: var(--space-lg);
}

.hero-stat {
  text-align: center;
  padding: 14px 12px;
  background:
    linear-gradient(140deg, rgba(21, 41, 66, 0.44) 0%, rgba(15, 31, 52, 0.36) 58%, rgba(27, 49, 74, 0.32) 100%);
  border-radius: 14px;
  border: 1px solid rgba(255, 214, 166, 0.24);
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
}

.hero-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: -40%;
  width: 55%;
  height: 100%;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  transform: skewX(-24deg);
  pointer-events: none;
}

.hero-stat:hover {
  border-color: rgba(255, 193, 118, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 22px rgba(230, 126, 34, 0.18);
}

.hero-stat-value {
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: var(--font-weight-black);
  color: #ffe1b7;
  display: block;
  margin-bottom: 3px;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.32);
}

.hero-stat-label {
  font-size: 10px;
  color: rgba(236, 243, 252, 0.92);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: var(--font-weight-medium);
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}

.hero-actions .btn {
  min-width: 190px;
}

.hero-section .btn-primary {
  background: linear-gradient(135deg, #ffb365 0%, #e67e22 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 12px 26px rgba(230, 126, 34, 0.32);
}

.hero-section .btn-outline {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.85);
  color: #ffffff;
}

.hero-section .btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-color: #ffffff;
}

.hero-trust-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-trust-item {
  padding: 8px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: var(--font-weight-normal);
  color: #f8fbff;
  border: 1px solid rgba(255, 216, 173, 0.52);
  background: linear-gradient(140deg, rgba(25, 45, 72, 0.86) 0%, rgba(16, 31, 53, 0.84) 100%);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.24);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.hero-visual {
  position: relative;
  animation: fadeInRight 0.8s var(--ease-out) 0.3s both;
  z-index: 2;
  align-self: end;
}

.hero-visual::before {
  content: '';
  position: absolute;
  right: -8%;
  top: 6%;
  width: min(45vw, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 185, 102, 0.32) 0%, rgba(255, 185, 102, 0.14) 38%, transparent 72%);
  filter: blur(8px);
  z-index: -1;
  pointer-events: none;
}

.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 740px;
  margin-left: auto;
}

.hero-image-container img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 740px;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  filter: drop-shadow(0 28px 54px rgba(0, 0, 0, 0.42));
}

.hero-energy-canvas {
  position: absolute;
  inset: -8% -6%;
  width: 112%;
  height: 116%;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.9;
}

.hero-image-container img {
  position: relative;
  z-index: 2;
}

.hero-mini-card {
  position: absolute;
  z-index: 3;
  min-width: 150px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 214, 166, 0.3);
  background: linear-gradient(145deg, rgba(20, 36, 58, 0.52) 0%, rgba(11, 23, 41, 0.48) 100%);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.hero-mini-card-top {
  right: 3%;
  top: 6%;
}

.hero-mini-card-mid {
  left: 3%;
  top: 38%;
}

.hero-mini-card-bottom {
  right: 8%;
  bottom: 9%;
}

.hero-mini-label {
  margin: 0 0 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: var(--font-weight-semibold);
}

.hero-mini-value {
  margin: 0;
  color: #ffe0b3;
  font-size: 1.08rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.25;
}

.hero-mini-meta {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
}

/* === ABOUT OVERVIEW SECTION === */
.about-overview-section {
  position: relative;
  padding: clamp(20px, 3vh, 36px) 0;
  background:
    linear-gradient(180deg, rgba(18, 33, 52, 0.68) 0%, rgba(16, 30, 48, 0.62) 100%);
  min-height: clamp(520px, 76svh, 700px);
}

.about-overview-card {
  background: linear-gradient(145deg, rgba(33, 56, 84, 0.62) 0%, rgba(25, 45, 70, 0.56) 100%);
  border: 1px solid rgba(255, 231, 199, 0.18);
  border-radius: 26px;
  padding: clamp(12px, 1.4vw, 20px);
  backdrop-filter: blur(8px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-3xl);
}

.section-subtitle {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  color: var(--color-oil-primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-sm);
}

.section-title {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-black);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.section-description {
  font-size: var(--font-size-lg);
  color: var(--color-text-tertiary);
  line-height: 1.8;
}

.about-overview-section .section-subtitle {
  color: #ffd2a0;
}

.about-overview-section .section-title {
  color: #ffffff;
}

.about-overview-section .section-description {
  color: rgba(238, 245, 255, 0.88);
}

.about-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2vw, 30px);
  align-items: center;
}

.about-overview-visual {
  position: relative;
  border-radius: 18px;
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.about-overview-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 201, 140, 0.32) 0%, rgba(255, 201, 140, 0) 46%),
    radial-gradient(circle at 78% 78%, rgba(118, 209, 255, 0.2) 0%, rgba(118, 209, 255, 0) 44%),
    linear-gradient(145deg, rgba(33, 52, 77, 0.7) 0%, rgba(21, 38, 61, 0.62) 100%);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about-overview-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      115deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 2px,
      transparent 2px,
      transparent 24px
    );
  pointer-events: none;
}

.about-overview-image-wrap img {
  width: 100%;
  max-width: 450px;
  height: auto;
  display: block;
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.3));
  position: relative;
  z-index: 1;
}

.about-overview-tag {
  position: absolute;
  left: var(--space-md);
  bottom: var(--space-md);
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 224, 187, 0.46);
  background: rgba(10, 20, 34, 0.72);
  backdrop-filter: blur(10px);
}

.about-overview-tag-label {
  margin: 0 0 2px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-overview-tag-value {
  margin: 0;
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: #ffd7a8;
}

.about-overview-content {
  padding: clamp(10px, 1.5vw, 18px);
}

.about-overview-content .section-title {
  font-size: clamp(1.7rem, 2.4vw, 2.3rem);
}

.about-overview-content .section-description {
  font-size: clamp(0.92rem, 1.05vw, 1.02rem);
  line-height: 1.6;
}

.about-points-list {
  list-style: none;
  margin: var(--space-lg) 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.about-points-list li {
  margin: 0;
  padding: 9px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.14);
  font-size: var(--font-size-sm);
  line-height: 1.55;
  color: rgba(241, 247, 255, 0.9);
  display: grid;
  gap: 4px;
  position: relative;
  overflow: hidden;
  transition: all 0.32s var(--ease-out);
}

.about-points-list li strong {
  color: #ffd7a9;
  font-weight: var(--font-weight-semibold);
}

.about-pill::before {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  width: var(--pill-progress, 0%);
  background: linear-gradient(90deg, #ffcf9a 0%, #f39c3c 100%);
  transition: width 0.25s linear;
}

.about-pill::after {
  content: '';
  position: absolute;
  top: 10px;
  right: 10px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 0 rgba(243, 156, 60, 0);
  transition: all 0.25s var(--ease-out);
}

.about-pill-title {
  color: #ffddb3;
  font-size: 0.86rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: var(--font-weight-semibold);
  margin-right: 18px;
}

.about-pill-text {
  color: rgba(245, 249, 255, 0.92);
  font-size: 0.9rem;
}

.about-pill.is-active {
  background: linear-gradient(145deg, rgba(56, 88, 123, 0.52), rgba(33, 58, 87, 0.42));
  border-color: rgba(255, 214, 166, 0.52);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
}

.about-pill.is-active::after {
  background: #f5a750;
  box-shadow: 0 0 14px rgba(243, 156, 60, 0.66);
}

.about-points-grid {
  margin-top: var(--space-lg);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.about-point-card {
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(145deg, rgba(28, 47, 72, 0.72) 0%, rgba(17, 31, 52, 0.7) 100%);
  transition: all 0.3s var(--ease-out);
}

.about-point-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 209, 157, 0.42);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.about-point-card h3 {
  margin: 0 0 8px;
  font-size: var(--font-size-lg);
  color: #ffd4a1;
}

.about-point-card p {
  margin: 0;
  font-size: var(--font-size-sm);
  color: rgba(241, 247, 255, 0.87);
  line-height: 1.7;
}

.about-overview-actions {
  margin-top: var(--space-lg);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.about-overview-actions .btn-outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.16);
}

.about-overview-actions .btn-outline:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.95);
}

/* === AI BOT SECTION === */
.ai-bot-section {
  padding: var(--space-3xl) 0;
  background: var(--color-bg-primary);
}

.ai-bot-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.ai-bot-illustration {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background: var(--color-bg-card);
  border: 1px solid rgba(199, 125, 58, 0.15);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-out);
}

.ai-bot-illustration:hover {
  background: var(--color-bg-elevated);
  border-color: rgba(199, 125, 58, 0.25);
  box-shadow: 0 12px 32px rgba(199, 125, 58, 0.15);
}

.ai-bot-icon {
  width: 140px;
  height: 140px;
  position: relative;
  z-index: 1;
}

.ai-bot-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 20px rgba(199, 125, 58, 0.3));
}

.ai-features-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.ai-feature-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-xl);
  background: var(--color-bg-card);
  border: 1px solid rgba(199, 125, 58, 0.12);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease-out);
}

.ai-feature-item:hover {
  background: var(--color-bg-elevated);
  border-color: rgba(199, 125, 58, 0.25);
  transform: translateX(8px);
  box-shadow: 0 8px 20px rgba(199, 125, 58, 0.1);
}

.ai-feature-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(199, 125, 58, 0.12);
  border-radius: var(--radius-lg);
  color: var(--color-oil-primary);
  transition: all 0.3s var(--ease-out);
}

.ai-feature-item:hover .ai-feature-icon {
  background: rgba(199, 125, 58, 0.18);
  transform: scale(1.05);
}

.ai-feature-icon svg {
  width: 28px;
  height: 28px;
}

.ai-feature-content h4 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
}

.ai-feature-content p {
  font-size: var(--font-size-sm);
  color: var(--color-text-tertiary);
  margin: 0;
  line-height: 1.7;
}

/* === WHY TRADE SECTION === */
.why-trade-section {
  padding: var(--space-3xl) 0;
  background: var(--color-bg-secondary);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.benefit-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(199, 125, 58, 0.15);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  transition: all 0.3s var(--ease-out);
}

.benefit-card:hover {
  background: var(--color-bg-elevated);
  border-color: rgba(199, 125, 58, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(199, 125, 58, 0.15);
}

.benefit-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(199, 125, 58, 0.1);
  border-radius: var(--radius-full);
  border: 1px solid rgba(199, 125, 58, 0.2);
  transition: all 0.3s var(--ease-out);
}

.benefit-card:hover .benefit-icon {
  background: rgba(199, 125, 58, 0.15);
  border-color: rgba(199, 125, 58, 0.35);
  transform: scale(1.08);
}

.benefit-icon svg {
  width: 45px;
  height: 45px;
  color: var(--color-oil-primary);
}

.benefit-title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.benefit-description {
  color: var(--color-text-tertiary);
  font-size: var(--font-size-sm);
  line-height: 1.8;
  margin: 0;
}

/* === STRATEGY SECTION === */
.strategy-section {
  padding: var(--space-3xl) 0;
  background: var(--color-bg-primary);
}

.strategy-content {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-3xl);
  align-items: start;
}

.strategy-info {
  position: sticky;
  top: 120px;
}

.strategy-highlights {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.strategy-highlight {
  display: flex;
  align-items: start;
  gap: var(--space-md);
  padding: var(--space-xl);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(199, 125, 58, 0.12);
  transition: all 0.3s var(--ease-out);
}

.strategy-highlight:hover {
  background: var(--color-bg-elevated);
  border-color: rgba(199, 125, 58, 0.25);
  transform: translateX(8px);
  box-shadow: 0 8px 20px rgba(199, 125, 58, 0.1);
}

.strategy-number {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(199, 125, 58, 0.15);
  border-radius: var(--radius-lg);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-black);
  color: var(--color-oil-primary);
  border: 1px solid rgba(199, 125, 58, 0.25);
  transition: all 0.3s var(--ease-out);
}

.strategy-highlight:hover .strategy-number {
  background: rgba(199, 125, 58, 0.22);
  border-color: rgba(199, 125, 58, 0.4);
  transform: scale(1.08);
}

.strategy-text h4 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
}

.strategy-text p {
  font-size: var(--font-size-sm);
  color: var(--color-text-tertiary);
  margin: 0;
  line-height: 1.7;
}

.risk-management-visual {
  background: var(--color-bg-card);
  border: 1px solid rgba(199, 125, 58, 0.15);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: all 0.3s var(--ease-out);
}

.risk-management-visual:hover {
  background: var(--color-bg-elevated);
  border-color: rgba(199, 125, 58, 0.25);
  box-shadow: 0 12px 32px rgba(199, 125, 58, 0.12);
}

.risk-chart {
  width: 100%;
  height: 400px;
  background: rgba(199, 125, 58, 0.03);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-xl);
  border: 1px solid rgba(199, 125, 58, 0.1);
}

.risk-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.risk-metric {
  padding: var(--space-lg);
  background: rgba(199, 125, 58, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(199, 125, 58, 0.12);
  text-align: center;
  transition: all 0.3s var(--ease-out);
}

.risk-metric:hover {
  background: rgba(199, 125, 58, 0.08);
  border-color: rgba(199, 125, 58, 0.2);
  transform: translateY(-3px);
}

.risk-metric-label {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-xs);
  font-weight: var(--font-weight-semibold);
}

.risk-metric-value {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-black);
  color: var(--color-oil-primary);
}

/* === PLANS PREVIEW === */
.plans-preview-section {
  padding: var(--space-3xl) 0;
  background: var(--color-bg-secondary);
}

.plans-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.3vw, 22px);
  margin-bottom: var(--space-2xl);
}

.plan-preview-card {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.12) 100%);
  border: 1px solid rgba(255, 225, 190, 0.28);
  border-radius: 18px;
  padding: clamp(12px, 1.2vw, 18px);
  text-align: center;
  transition: all 0.3s var(--ease-out);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
  min-height: 0;
  gap: 10px;
}

.plan-preview-card:hover {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.26) 0%, rgba(255, 255, 255, 0.16) 100%);
  border-color: rgba(255, 214, 166, 0.46);
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.plan-preview-card.featured {
  background: linear-gradient(145deg, rgba(255, 202, 142, 0.2) 0%, rgba(255, 172, 76, 0.12) 100%);
  border-color: rgba(255, 214, 166, 0.54);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.plan-preview-card.featured:hover {
  background: linear-gradient(145deg, rgba(255, 202, 142, 0.26) 0%, rgba(255, 172, 76, 0.18) 100%);
  border-color: rgba(255, 214, 166, 0.65);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.plan-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  min-width: 60px;
  padding: 4px 8px;
  background: linear-gradient(135deg, #ffb35b, #e67e22);
  border: 1px solid rgba(255, 226, 188, 0.6);
  border-top: none;
  border-radius: 0 0 8px 8px;
  font-size: 8px;
  font-weight: var(--font-weight-bold);
  color: #1f2f45;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 3;
}

.plan-name {
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  font-weight: var(--font-weight-semibold);
  color: #fff2dc;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  margin: 0;
}

.plan-hourly-rate {
  font-size: clamp(2.6rem, 4.1vw, 3.8rem);
  font-weight: var(--font-weight-black);
  color: #ffd7a8;
  margin: 0;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  line-height: 1;
  letter-spacing: -0.02em;
}

.plan-duration {
  font-size: clamp(0.74rem, 0.95vw, 0.86rem);
  color: rgba(238, 245, 255, 0.96);
  margin: 0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: var(--font-weight-semibold);
}

.plan-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.plan-quick-item {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  padding: 8px 6px;
  display: grid;
  gap: 2px;
}

.plan-quick-item span {
  font-size: 10px;
  color: rgba(245, 249, 255, 0.82);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.plan-quick-item strong {
  font-size: 0.92rem;
  color: #ffffff;
  font-weight: var(--font-weight-semibold);
}

.plan-live-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.79rem;
  color: rgba(246, 250, 255, 0.9);
}

.plan-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #50d890;
  box-shadow: 0 0 10px rgba(80, 216, 144, 0.7);
}

.plan-live-progress {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  overflow: hidden;
}

.plan-live-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #ffd7a8, #f39c3c);
  transition: width 0.4s var(--ease-out);
}

.plan-preview-card.is-live {
  border-color: rgba(255, 214, 166, 0.58);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24), 0 0 0 1px rgba(255, 214, 166, 0.25) inset;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
}

.plan-features li {
  padding: var(--space-sm) 0;
  color: rgba(245, 249, 255, 0.94);
  font-size: var(--font-size-sm);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.plan-features li:last-child {
  border-bottom: none;
}

/* === MARKET STATS === */
.market-stats-section {
  padding: var(--space-3xl) 0;
  background: var(--color-bg-primary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.stat-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(199, 125, 58, 0.15);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  transition: all 0.3s var(--ease-out);
}

.stat-card:hover {
  background: var(--color-bg-elevated);
  border-color: rgba(199, 125, 58, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(199, 125, 58, 0.15);
}

.stat-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(199, 125, 58, 0.1);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(199, 125, 58, 0.2);
  transition: all 0.3s var(--ease-out);
}

.stat-card:hover .stat-icon {
  background: rgba(199, 125, 58, 0.15);
  border-color: rgba(199, 125, 58, 0.35);
  transform: scale(1.08);
}

.stat-icon svg {
  width: 35px;
  height: 35px;
  color: var(--color-oil-primary);
}

.stat-value {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-black);
  color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: var(--font-size-sm);
  color: var(--color-text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: var(--font-weight-semibold);
}

/* === CTA SECTION === */
.cta-section {
  padding: var(--space-3xl) 0;
  background: rgba(199, 125, 58, 0.04);
  border-top: 1px solid rgba(199, 125, 58, 0.15);
  border-bottom: 1px solid rgba(199, 125, 58, 0.15);
}

.cta-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-black);
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}

.cta-description {
  font-size: var(--font-size-xl);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2xl);
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
  padding: var(--space-xs) var(--space-md);
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s var(--ease-out);
}

.cta-feature:hover {
  background: var(--color-bg-elevated);
  border-color: rgba(199, 125, 58, 0.25);
}

.cta-feature svg {
  width: 20px;
  height: 20px;
  color: var(--color-success);
}

/* === GET STARTED SECTION === */
.get-started-section {
  position: relative;
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 187, 106, 0.14), transparent 34%),
    radial-gradient(circle at 84% 78%, rgba(120, 213, 255, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(35, 53, 78, 0.56) 0%, rgba(26, 43, 68, 0.5) 100%);
}

.get-started-section .section-subtitle {
  color: #ffd2a0;
}

.get-started-section .section-title {
  color: #ffffff;
}

.get-started-section .section-description {
  color: rgba(243, 249, 255, 0.94);
}

.get-started-flow-wrap {
  position: relative;
  border-radius: 22px;
  border: 1px solid rgba(255, 226, 192, 0.22);
  background: linear-gradient(145deg, rgba(50, 72, 104, 0.45), rgba(30, 49, 77, 0.4));
  padding: clamp(14px, 1.8vw, 24px);
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.get-started-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.88;
}

.get-started-flow {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 1.2vw, 18px);
  align-items: stretch;
}

.get-flow-item {
  position: relative;
  padding: 12px;
}

.get-flow-item::before,
.get-flow-item::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.get-flow-item::before {
  top: 0;
  right: 0;
  width: 58%;
  height: 48%;
  border-top: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top-right-radius: 34px;
  border-image: linear-gradient(135deg, #5fd3f8 0%, #8f5cd6 100%) 1;
}

.get-flow-item::after {
  left: 0;
  bottom: 0;
  width: 58%;
  height: 48%;
  border-left: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-bottom-left-radius: 34px;
  border-image: linear-gradient(315deg, #5fd3f8 0%, #8f5cd6 100%) 1;
}

.get-flow-inner {
  position: relative;
  z-index: 1;
  min-height: 250px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(180deg, rgba(36, 58, 84, 0.34) 0%, rgba(28, 48, 72, 0.22) 100%);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  padding: 22px 18px;
  text-align: center;
  display: grid;
  align-content: center;
  gap: 8px;
}

.get-flow-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02) 44%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.get-flow-number {
  margin: 0 0 2px;
  font-size: clamp(2.3rem, 3vw, 2.9rem);
  line-height: 1;
  font-weight: var(--font-weight-black);
  color: #7fd8ff;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.get-flow-icon {
  width: 44px;
  height: 44px;
  margin: 2px auto 4px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.24), rgba(160, 196, 239, 0.14));
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.get-flow-icon svg {
  width: 21px;
  height: 21px;
  color: #ffffff;
}

.get-flow-inner h3 {
  margin: 0;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #f7fbff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
}

.get-flow-inner p {
  margin: 0;
  font-size: 0.84rem;
  color: rgba(231, 241, 252, 0.96);
  line-height: 1.62;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
}

.get-flow-item.is-active .get-flow-inner {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.get-flow-item:nth-child(1) .get-flow-number { color: #75d8ff; }
.get-flow-item:nth-child(2) .get-flow-number { color: #ffd7a2; }
.get-flow-item:nth-child(3) .get-flow-number { color: #c8b3ff; }
.get-flow-item:nth-child(1) .get-flow-icon svg { color: #8ce1ff; }
.get-flow-item:nth-child(2) .get-flow-icon svg { color: #ffd7a2; }
.get-flow-item:nth-child(3) .get-flow-icon svg { color: #ccb7ff; }

.get-flow-item:nth-child(1)::before {
  border-image: linear-gradient(135deg, #53d4f8 0%, #7aa0ff 100%) 1;
}

.get-flow-item:nth-child(1)::after {
  border-image: linear-gradient(315deg, #53d4f8 0%, #7aa0ff 100%) 1;
}

.get-flow-item:nth-child(2)::before {
  border-image: linear-gradient(135deg, #ffbe6e 0%, #f08d22 100%) 1;
}

.get-flow-item:nth-child(2)::after {
  border-image: linear-gradient(315deg, #ffbe6e 0%, #f08d22 100%) 1;
}

.get-flow-item:nth-child(3)::before {
  border-image: linear-gradient(135deg, #6fd5f7 0%, #9a63d6 100%) 1;
}

.get-flow-item:nth-child(3)::after {
  border-image: linear-gradient(315deg, #6fd5f7 0%, #9a63d6 100%) 1;
}

.get-started-foot {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  display: grid;
  gap: 6px;
}

.get-live-value {
  margin: 0;
  color: #ffffff;
  font-size: 1.02rem;
  font-weight: var(--font-weight-semibold);
}

.get-live-meta {
  margin: 0;
  color: rgba(241, 247, 255, 0.88);
  font-size: 0.82rem;
  text-align: center;
}

.get-live-meta strong {
  color: #ffe2bf;
}

.get-started-actions {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.get-started-actions .btn-outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
}

.get-started-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.95);
}

.get-progress-track {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  overflow: hidden;
}

.get-progress-track span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ffd8ab 0%, #f08d22 100%);
  transition: width 0.35s var(--ease-out);
}

/* === AFFILIATE PROGRAM === */
.affiliate-program-section {
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 189, 110, 0.14), transparent 34%),
    radial-gradient(circle at 86% 82%, rgba(120, 212, 255, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(34, 52, 78, 0.56) 0%, rgba(25, 43, 67, 0.5) 100%);
}

.affiliate-program-section .section-subtitle,
.recent-transactions-section .section-subtitle {
  color: #ffd2a0;
}

.affiliate-program-section .section-title,
.recent-transactions-section .section-title {
  color: #ffffff;
}

.affiliate-program-section .section-description,
.recent-transactions-section .section-description {
  color: rgba(243, 249, 255, 0.94);
}

.affiliate-levels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.4vw, 20px);
}

.affiliate-program-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.affiliate-overview-item {
  border-radius: 12px;
  border: 1px solid rgba(255, 226, 192, 0.3);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
  padding: 10px 12px;
  text-align: center;
  transition: all 0.25s var(--ease-out);
}

.affiliate-overview-item:hover,
.affiliate-overview-item.is-active {
  transform: translateY(-3px);
  border-color: rgba(255, 222, 186, 0.56);
  background: linear-gradient(145deg, rgba(255, 194, 122, 0.22), rgba(111, 213, 247, 0.16));
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.affiliate-overview-label {
  display: block;
  font-size: 0.74rem;
  color: rgba(243, 249, 255, 0.84);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.affiliate-overview-value {
  display: block;
  margin-top: 3px;
  color: #ffe0ba;
  font-size: 1rem;
}

.affiliate-level-card {
  border-radius: 18px;
  border: 1px solid rgba(255, 231, 199, 0.28);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  padding: 18px 16px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  min-height: 320px;
  display: grid;
  align-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), background 0.3s var(--ease-out);
}

.affiliate-level-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -45%;
  width: 36%;
  height: 100%;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
  transform: skewX(-20deg);
  opacity: 0;
  transition: all 0.45s var(--ease-out);
  pointer-events: none;
}

.affiliate-level-card:hover::before,
.affiliate-level-card.is-active::before {
  left: 120%;
  opacity: 1;
}

.affiliate-level-card:hover,
.affiliate-level-card.is-active {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(255, 221, 182, 0.62);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.affiliate-level-card.featured {
  border-color: rgba(255, 214, 166, 0.6);
  background: linear-gradient(150deg, rgba(255, 197, 133, 0.2), rgba(255, 162, 61, 0.1));
}

.affiliate-level-label {
  margin: 0;
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #f7fbff;
  font-weight: var(--font-weight-bold);
  line-height: 1;
}

.affiliate-level-rate {
  margin: 0;
  font-size: clamp(6.6rem, 11vw, 10.2rem);
  line-height: 1;
  color: #ffd8ab;
  font-weight: var(--font-weight-black);
  letter-spacing: -0.02em;
  text-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.affiliate-level-card h3 {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 1.04rem;
  display: none;
}

.affiliate-level-card p {
  margin: 0;
  color: rgba(241, 247, 255, 0.94);
  font-size: 1rem;
  line-height: 1.55;
}

/* Dedicated typography for card heading/percentage (isolated from other text) */
.affiliate-level-card p.affiliate-card-level {
  font-size: clamp(1.7rem, 2.8vw, 2.45rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  font-weight: var(--font-weight-bold);
  margin-bottom: 2px;
}

.affiliate-level-card p.affiliate-card-rate {
  font-size: clamp(4.8rem, 8vw, 7.2rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  font-weight: var(--font-weight-black);
  margin-bottom: 8px;
}

.affiliate-level-card.level-1 .affiliate-level-rate { color: #9ce8ff; }
.affiliate-level-card.level-2 .affiliate-level-rate { color: #ffd8ab; }
.affiliate-level-card.level-3 .affiliate-level-rate { color: #c9ddff; }

.affiliate-path {
  margin-top: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 231, 199, 0.24);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 12px;
}

.affiliate-path-node {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 6px 10px;
  color: #f4f9ff;
  font-size: 0.82rem;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.25s var(--ease-out);
}

.affiliate-path-node:hover,
.affiliate-path-node.is-active {
  transform: translateY(-2px);
  border-color: rgba(255, 225, 189, 0.56);
  background: linear-gradient(145deg, rgba(255, 194, 122, 0.24), rgba(111, 213, 247, 0.18));
}

.affiliate-path-arrow {
  color: #ffd6a4;
  font-weight: var(--font-weight-bold);
}

/* === RECENT TRANSACTIONS === */
.recent-transactions-section {
  padding-bottom: clamp(54px, 6vw, 96px);
  background:
    radial-gradient(circle at 16% 14%, rgba(255, 188, 109, 0.14), transparent 34%),
    radial-gradient(circle at 84% 86%, rgba(118, 214, 255, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(30, 48, 73, 0.56) 0%, rgba(24, 40, 63, 0.5) 100%);
}

.recent-transactions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.5vw, 22px);
}

.recent-transactions-card {
  border-radius: 20px;
  border: 1px solid rgba(255, 231, 199, 0.28);
  background: linear-gradient(145deg, rgba(52, 74, 103, 0.62), rgba(31, 50, 76, 0.52));
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24);
  padding: 16px;
  position: relative;
  overflow: hidden;
  transition: all 0.28s var(--ease-out);
}

.recent-transactions-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 216, 171, 0.2), rgba(113, 219, 255, 0.18), transparent 62%);
  opacity: 0.35;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}

.recent-transactions-card::after {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  top: -88px;
  right: -72px;
  background: radial-gradient(circle, rgba(255, 198, 130, 0.24), transparent 70%);
  opacity: 0.7;
  pointer-events: none;
  transition: transform 0.35s var(--ease-out), opacity 0.35s var(--ease-out);
}

.recent-transactions-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 223, 187, 0.46);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.recent-transactions-card:hover::before,
.recent-transactions-card.is-focus::before {
  opacity: 0.72;
}

.recent-transactions-card:hover::after,
.recent-transactions-card.is-focus::after {
  opacity: 1;
  transform: scale(1.08);
}

.recent-transactions-title {
  margin: 0 0 12px;
  font-size: 1.08rem;
  color: #ffe2bc;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.recent-count {
  min-width: 34px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 224, 188, 0.4);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 0.86rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  transition: transform 0.22s var(--ease-out), border-color 0.22s var(--ease-out), background 0.22s var(--ease-out);
}

.recent-count.is-pulse {
  transform: scale(1.07);
  border-color: rgba(255, 224, 188, 0.64);
  background: linear-gradient(145deg, rgba(255, 203, 139, 0.34), rgba(118, 212, 255, 0.28));
}

.recent-transactions-list {
  display: grid;
  gap: 9px;
}

.recent-transaction-item {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 10px;
  align-items: center;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.07));
  padding: 8px 11px;
  position: relative;
  overflow: hidden;
  transition: transform 0.24s var(--ease-out), border-color 0.24s var(--ease-out), background 0.24s var(--ease-out), box-shadow 0.24s var(--ease-out);
}

.recent-transaction-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.16), transparent 42%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s var(--ease-out);
}

.recent-transaction-item::after {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  bottom: 11px;
  width: 3px;
  border-radius: 10px;
  opacity: 0.65;
  transition: opacity 0.24s var(--ease-out), box-shadow 0.24s var(--ease-out);
}

.recent-transaction-item.deposit::after {
  background: linear-gradient(180deg, rgba(142, 240, 186, 0.9), rgba(76, 198, 145, 0.7));
}

.recent-transaction-item.withdrawal::after {
  background: linear-gradient(180deg, rgba(255, 208, 162, 0.9), rgba(255, 170, 111, 0.72));
}

.recent-transaction-item:hover,
.recent-transaction-item.is-active {
  transform: translateX(4px);
  border-color: rgba(255, 224, 188, 0.44);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.17);
}

.recent-transaction-item:hover::before,
.recent-transaction-item.is-active::before {
  opacity: 1;
}

.recent-transaction-item:hover::after,
.recent-transaction-item.is-active::after {
  opacity: 1;
  box-shadow: 0 0 12px currentColor;
}

.recent-transaction-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  justify-self: center;
  align-self: center;
}

.recent-transaction-avatar svg {
  width: 18px;
  height: 18px;
}

.recent-transaction-item.deposit .recent-transaction-avatar {
  color: #8ef0ba;
  border-color: rgba(142, 240, 186, 0.55);
}

.recent-transaction-item.withdrawal .recent-transaction-avatar {
  color: #ffd0a2;
  border-color: rgba(255, 208, 162, 0.54);
}

.recent-transaction-meta {
  display: grid;
  gap: 0;
}

.recent-user {
  color: #f4f9ff;
  font-size: 0.9rem;
  font-weight: var(--font-weight-semibold);
  line-height: 1.3;
}

.recent-payment-icon {
  width: auto;
  height: auto;
  border-radius: 0;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  box-shadow: none;
  padding: 0;
  transition: transform 0.24s var(--ease-out), filter 0.24s var(--ease-out);
}

.recent-payment-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
}

.recent-transaction-item:hover .recent-payment-icon,
.recent-transaction-item.is-active .recent-payment-icon {
  transform: translate(-50%, -50%) scale(1.08);
  filter: drop-shadow(0 0 8px rgba(110, 220, 255, 0.35));
}

.recent-amount {
  color: #8ef0ba;
  font-size: 0.95rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.01em;
}

.recent-transactions-card.withdrawals .recent-amount {
  color: #ffc48e;
}

/* === PLATFORM STATICS & PAYMENT METHODS === */
.platform-overview-section {
  padding-top: clamp(26px, 3vw, 44px);
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 184, 102, 0.14), transparent 34%),
    radial-gradient(circle at 88% 86%, rgba(109, 208, 255, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(34, 53, 79, 0.56) 0%, rgba(25, 42, 66, 0.5) 100%);
}

.platform-overview-section .section-subtitle {
  color: #ffd2a0;
}

.platform-overview-section .section-title {
  color: #ffffff;
}

.platform-overview-section .section-description {
  color: rgba(241, 248, 255, 0.92);
}

.platform-overview-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(14px, 1.5vw, 24px);
}

.platform-stats-panel,
.platform-methods-panel {
  border-radius: 20px;
  border: 1px solid rgba(255, 229, 195, 0.28);
  background: linear-gradient(145deg, rgba(52, 75, 104, 0.58), rgba(30, 50, 76, 0.5));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24);
  padding: clamp(14px, 1.4vw, 20px);
}

.platform-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.platform-stat-card {
  border-radius: 14px;
  border: 1px solid rgba(255, 224, 188, 0.3);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
  padding: 12px 14px;
  min-height: 94px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  gap: 4px;
  transition: transform 0.25s var(--ease-out), border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.platform-stat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 220, 182, 0.52);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.platform-stat-label {
  margin: 0;
  color: rgba(242, 248, 255, 0.84);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.platform-stat-value {
  margin: 0;
  color: #ffe0ba;
  font-size: clamp(1.05rem, 1.8vw, 1.48rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.25;
  word-break: break-word;
}

.platform-methods-title {
  margin: 0 0 10px;
  font-size: 1rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #ffe1bd;
  font-weight: var(--font-weight-semibold);
}

.platform-methods-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.platform-method-pill {
  min-height: 72px;
  border-radius: 14px;
  border: 1px solid rgba(255, 227, 195, 0.28);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  transition: transform 0.24s var(--ease-out), border-color 0.24s var(--ease-out), box-shadow 0.24s var(--ease-out), background 0.24s var(--ease-out);
}

.platform-method-pill:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 222, 184, 0.56);
  background: linear-gradient(145deg, rgba(255, 205, 145, 0.24), rgba(114, 218, 255, 0.18));
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.platform-method-pill img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
}

/* === UNIFIED SECTION SYSTEM === */
.ai-bot-section,
.why-trade-section,
.strategy-section,
.plans-preview-section,
.market-stats-section,
.cta-section,
.get-started-section {
  --section-v-pad: clamp(22px, 3.2vh, 42px);
  min-height: calc(100svh - 80px);
  display: flex;
  align-items: center;
  padding: var(--section-v-pad) 0;
}

.about-overview-section {
  --section-v-pad: clamp(20px, 3vh, 36px);
  display: flex;
  align-items: center;
  padding: var(--section-v-pad) 0;
}

.ai-bot-section,
.strategy-section,
.market-stats-section {
  background: linear-gradient(180deg, rgba(23, 41, 64, 0.56) 0%, rgba(20, 36, 58, 0.5) 100%);
}

.why-trade-section,
.plans-preview-section,
.cta-section,
.get-started-section {
  background: linear-gradient(180deg, rgba(30, 48, 73, 0.54) 0%, rgba(24, 40, 63, 0.48) 100%);
}

.plans-preview-section .section-header {
  max-width: 780px;
  margin-bottom: clamp(16px, 2.2vh, 28px);
}

.ai-bot-section .section-subtitle,
.why-trade-section .section-subtitle,
.strategy-section .section-subtitle,
.plans-preview-section .section-subtitle,
.market-stats-section .section-subtitle,
.cta-section .section-subtitle,
.get-started-section .section-subtitle {
  color: #ffd2a0;
}

.ai-bot-section .section-title,
.why-trade-section .section-title,
.strategy-section .section-title,
.plans-preview-section .section-title,
.market-stats-section .section-title,
.cta-section .section-title,
.get-started-section .section-title {
  color: #ffffff;
}

.ai-feature-item,
.benefit-card,
.strategy-highlight,
.risk-management-visual,
.plan-preview-card,
.stat-card,
.cta-feature {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.ai-feature-item:hover,
.benefit-card:hover,
.strategy-highlight:hover,
.risk-management-visual:hover,
.plan-preview-card:hover,
.stat-card:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 213, 165, 0.45);
}

.ai-feature-content h4,
.benefit-title,
.strategy-text h4,
.plan-name,
.stat-value,
.cta-title {
  color: #ffffff;
}

.ai-feature-content p,
.benefit-description,
.strategy-text p,
.plan-duration,
.plan-features li,
.stat-label,
.cta-description,
.section-description {
  color: rgba(243, 248, 255, 0.94);
}

.section-header {
  margin: 0 auto var(--space-xl);
}

.ai-features-list,
.strategy-highlights {
  gap: var(--space-md);
}

.benefits-grid,
.plans-preview-grid,
.stats-grid {
  gap: clamp(14px, 1.5vw, 24px);
}

/* === PREMIUM PLANS POLISH === */
.plans-preview-section {
  background:
    radial-gradient(circle at 22% 12%, rgba(255, 185, 102, 0.18), transparent 34%),
    radial-gradient(circle at 82% 88%, rgba(120, 210, 255, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(36, 54, 80, 0.58) 0%, rgba(28, 45, 69, 0.52) 100%);
}

.plans-preview-grid {
  align-items: stretch;
}

.plans-preview-grid .plan-preview-card {
  border-radius: 16px;
  padding: 12px 12px 10px;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.plans-preview-grid .plan-preview-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.12), transparent 42%);
  pointer-events: none;
  z-index: 0;
}

.plans-preview-grid .plan-preview-card > * {
  position: relative;
  z-index: 1;
}

.plans-preview-grid .plan-preview-card > .plan-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 46%;
  max-width: 130px;
  min-width: 86px;
  padding: 4px 6px;
  min-height: 22px;
  border-radius: 0 0 8px 8px;
  border: 1px solid rgba(255, 226, 188, 0.62);
  border-top: none;
  z-index: 4;
}

.plans-preview-grid .plan-preview-card:nth-child(1) {
  background: linear-gradient(150deg, rgba(77, 93, 114, 0.72), rgba(58, 74, 95, 0.66));
  border-color: rgba(203, 214, 226, 0.44);
}

.plans-preview-grid .plan-preview-card:nth-child(2) {
  background: linear-gradient(150deg, rgba(214, 146, 64, 0.36), rgba(149, 89, 34, 0.28));
  border-color: rgba(255, 214, 166, 0.62);
}

.plans-preview-grid .plan-preview-card:nth-child(3) {
  background: linear-gradient(150deg, rgba(94, 111, 129, 0.72), rgba(70, 88, 108, 0.66));
  border-color: rgba(214, 224, 235, 0.44);
}

.plans-preview-grid .plan-name {
  font-size: clamp(0.95rem, 1.05vw, 1.16rem);
}

.plans-preview-grid .plan-preview-card.featured {
  padding-top: 32px;
}

.plans-preview-grid .plan-preview-card.featured::after {
  content: '';
  position: absolute;
  top: 0;
  left: 12px;
  right: 12px;
  height: 1px;
  background: rgba(255, 224, 187, 0.55);
  z-index: 2;
}

.plans-preview-grid .plan-hourly-rate {
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  margin-top: 2px;
}

.plans-preview-grid .plan-duration {
  font-size: clamp(0.72rem, 0.9vw, 0.84rem);
}

.plans-preview-grid .plan-quick-grid {
  gap: 6px;
}

.plans-preview-grid .plan-quick-item {
  padding: 7px 5px;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.14);
}

.plans-preview-grid .plan-live-row {
  font-size: 0.74rem;
}

.plans-preview-grid .btn.btn-full {
  padding: 0.68rem 0.9rem;
  border-radius: 12px;
  font-weight: var(--font-weight-semibold);
}

.plans-preview-grid .plan-preview-card .btn-outline {
  color: #f4f8ff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(17, 33, 52, 0.28);
}

.plans-preview-grid .plan-preview-card .btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(23, 43, 67, 0.46);
}

.plans-preview-grid .plan-preview-card.featured .btn-primary {
  background: linear-gradient(135deg, #f08d22 0%, #dc6e00 100%);
  box-shadow: 0 10px 20px rgba(220, 110, 0, 0.28);
}

.plans-preview-grid .plan-preview-card.is-live {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24), 0 0 0 1px rgba(255, 214, 166, 0.32) inset;
}

.plans-preview-grid .plan-live-dot {
  animation: planPulse 1.8s ease-in-out infinite;
}

@keyframes planPulse {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.22); opacity: 1; }
  100% { transform: scale(1); opacity: 0.8; }
}

/* === WHY CHOOSE US (HEX) === */
.why-choose-us-section {
  position: relative;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 190, 112, 0.14), transparent 34%),
    radial-gradient(circle at 88% 80%, rgba(122, 214, 255, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(36, 54, 80, 0.56) 0%, rgba(26, 44, 69, 0.5) 100%);
}

.why-choose-us-section .section-subtitle {
  color: #ffd2a0;
}

.why-choose-us-section .section-title {
  color: #ffffff;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.why-choose-us-section .section-description {
  color: rgba(242, 248, 255, 0.95);
}

.why-choose-us-section .text-gradient {
  background: linear-gradient(135deg, #ffb365 0%, #e67e22 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.choose-hex-stage {
  position: relative;
  margin-top: var(--space-lg);
  isolation: isolate;
  background: transparent;
  display: flex;
  justify-content: center;
}

.choose-hex-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: normal;
  opacity: 0.52;
}

.choose-hex-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(160px, auto));
  column-gap: 0;
  row-gap: 0;
  align-items: stretch;
  justify-items: center;
  width: min(980px, calc(100% - 20px));
  max-width: 980px;
  margin: 0 auto;
}

.choose-hex-card {
  position: relative;
  --hex-shift-x: 0px;
  width: clamp(198px, 20vw, 248px);
  height: 244px;
  min-height: 244px;
  padding: 20px 16px 16px;
  background: linear-gradient(155deg, rgba(89, 112, 142, 0.5), rgba(50, 72, 102, 0.34));
  border: 1px solid rgba(214, 229, 248, 0.3);
  clip-path: polygon(23% 1%, 77% 1%, 99% 50%, 77% 99%, 23% 99%, 1% 50%);
  text-align: center;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 8px;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(6px);
  overflow: hidden;
  margin-left: -30px;
  margin-right: -30px;
  transform: translateX(var(--hex-shift-x));
}

.choose-hex-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0) 50%);
  pointer-events: none;
}

.choose-hex-card:hover {
  transform: translateX(var(--hex-shift-x)) translateY(-4px);
  border-color: rgba(255, 214, 166, 0.56);
  background: linear-gradient(155deg, rgba(106, 129, 160, 0.54), rgba(58, 82, 114, 0.36));
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.26);
}

.choose-hex-card.is-active {
  border-color: rgba(255, 216, 170, 0.72);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(255, 216, 170, 0.26) inset;
  background: linear-gradient(155deg, rgba(120, 145, 180, 0.56), rgba(64, 89, 121, 0.42));
}

.choose-hex-card:nth-child(1) { grid-column: 1; grid-row: 1; }
.choose-hex-card:nth-child(2) { grid-column: 1; grid-row: 3; margin-top: -68px; }
.choose-hex-card:nth-child(3) { grid-column: 2; grid-row: 2; margin-top: -34px; --hex-shift-x: 10px; }
.choose-hex-card:nth-child(4) { grid-column: 3; grid-row: 1; }
.choose-hex-card:nth-child(5) { grid-column: 3; grid-row: 3; margin-top: -68px; }
.choose-hex-card:nth-child(6) { grid-column: 4; grid-row: 2; margin-top: -34px; --hex-shift-x: -10px; }
.choose-hex-card:nth-child(7) { grid-column: 5; grid-row: 1; }
.choose-hex-card:nth-child(8) { grid-column: 5; grid-row: 3; margin-top: -68px; }

.choose-hex-card > * {
  position: relative;
  z-index: 1;
}

.choose-hex-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, rgba(255, 194, 122, 0.44), rgba(233, 131, 36, 0.34));
  border: 1px solid rgba(255, 224, 187, 0.62);
  color: #fff0da;
  box-shadow: 0 8px 18px rgba(225, 138, 49, 0.2);
}

.choose-hex-icon svg {
  width: 22px;
  height: 22px;
}

.choose-hex-card h3 {
  margin: 0;
  font-size: 0.98rem;
  color: #ffffff;
  font-weight: var(--font-weight-semibold);
  line-height: 1.25;
}

.choose-hex-card p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(243, 249, 255, 0.95);
  line-height: 1.5;
  max-width: 22ch;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* === WHY CHOOSE FLOW (NEW LAYOUT) === */
.why-flow-wrap {
  position: relative;
  --flow-offset: 34px;
  margin-top: clamp(18px, 2.4vh, 30px);
  display: grid;
  gap: 0;
  padding: 18px 0;
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
}

.why-flow-line {
  position: absolute;
  left: 5%;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  background: linear-gradient(90deg, rgba(232, 240, 252, 0.45), rgba(232, 240, 252, 0.9), rgba(232, 240, 252, 0.45));
  z-index: 0;
}

.why-flow-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.why-flow-row.top {
  margin-bottom: var(--flow-offset);
}

.why-flow-row.bottom {
  margin-top: var(--flow-offset);
}

.why-flow-item {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 106px minmax(140px, 1fr);
  gap: 11px;
  align-items: center;
}

.why-flow-item.top,
.why-flow-item.bottom {
  margin: 0;
}

.why-flow-link {
  position: absolute;
  left: -14px;
  width: 114px;
  pointer-events: none;
  z-index: -1;
}

.why-flow-item.top .why-flow-link {
  top: -6px;
  height: calc(100% + 18px);
}

.why-flow-item.bottom .why-flow-link {
  bottom: -6px;
  height: calc(100% + 18px);
}

.why-flow-link::before {
  content: '';
  position: absolute;
  left: 0;
  width: 98px;
}

.why-flow-item.top .why-flow-link::before {
  top: 0;
  bottom: 0;
  border-left: 2px solid rgba(232, 240, 252, 0.82);
  border-bottom: 2px solid rgba(232, 240, 252, 0.82);
  border-bottom-left-radius: 14px;
}

.why-flow-item.bottom .why-flow-link::before {
  top: 0;
  bottom: 0;
  border-left: 2px solid rgba(232, 240, 252, 0.82);
  border-top: 2px solid rgba(232, 240, 252, 0.82);
  border-top-left-radius: 14px;
}

.why-flow-link .dot-start,
.why-flow-link .dot-end {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(233, 241, 252, 0.94);
  box-shadow: 0 0 0 2px rgba(34, 56, 84, 0.5);
}

.why-flow-item.top .why-flow-link .dot-start {
  left: -4px;
  top: -4px;
}

.why-flow-item.bottom .why-flow-link .dot-start {
  left: -4px;
  bottom: -4px;
}

.why-flow-item.top .why-flow-link .dot-end {
  right: 8px;
  bottom: -4px;
}

.why-flow-item.bottom .why-flow-link .dot-end {
  right: 8px;
  top: -4px;
}

.why-flow-card {
  width: 104px;
  height: 104px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(29, 47, 72, 0.98), rgba(20, 36, 58, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 12px 12px 24px rgba(8, 16, 30, 0.55), -8px -8px 18px rgba(48, 74, 108, 0.16);
}

.why-flow-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4ce0d2;
  border: 1px solid rgba(76, 224, 210, 0.44);
  background: rgba(76, 224, 210, 0.08);
}

.why-flow-icon svg {
  width: 23px;
  height: 23px;
}

.why-flow-text h3 {
  margin: 0 0 3px;
  font-size: 1.02rem;
  color: #f2f7ff;
  font-weight: var(--font-weight-semibold);
}

.why-flow-text p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(222, 234, 249, 0.88);
  line-height: 1.5;
  max-width: 24ch;
}

@media (max-width: 1366px) {
  .ai-bot-section,
  .why-trade-section,
  .strategy-section,
  .plans-preview-section,
  .market-stats-section,
  .cta-section,
  .get-started-section {
    min-height: auto;
    padding: clamp(30px, 5vh, 56px) 0;
  }

  .about-overview-section {
    min-height: auto;
    padding: clamp(24px, 4vh, 44px) 0;
  }
}

/* === SCROLL ANIMATIONS === */
.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.animated {
  opacity: 1;
  transform: translateY(0);
}

.stagger-item {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-item.animated {
  opacity: 1;
  transform: translateX(0);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .about-overview-section,
  .ai-bot-section,
  .why-trade-section,
  .strategy-section,
  .plans-preview-section,
  .market-stats-section,
  .cta-section,
  .get-started-section {
    min-height: auto;
    padding: calc(var(--space-2xl) + 12px) 0;
  }
  .hero-section {
    height: auto;
    min-height: auto;
    padding: calc(80px + var(--space-lg)) 0 var(--space-2xl);
  }
  .hero-content, .ai-bot-content { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .hero-title { max-width: none; }
  .hero-description { max-width: none; }
  .hero-visual { order: -1; }
  .hero-image-container img {
    max-width: 650px;
    margin: 0 auto;
  }
  .hero-energy-canvas {
    inset: -7% -4%;
    width: 108%;
    height: 112%;
  }
  .plans-preview-grid, .benefits-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .strategy-content { grid-template-columns: 1fr; }
  .strategy-info { position: static; }
  .about-overview-grid { grid-template-columns: 1fr; }
  .about-points-list { gap: 8px; }
  .about-overview-card { padding: var(--space-md); }
  .about-overview-content { padding: var(--space-md); }
  .choose-hex-canvas {
    display: none;
  }
  .choose-hex-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 12px;
  }
  .choose-hex-card:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    margin-top: 0;
  }
  .why-flow-wrap {
    gap: 12px;
    padding: 12px 0 0;
  }
  .why-flow-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0 !important;
  }
  .why-flow-item {
    grid-template-columns: 92px 1fr;
    gap: 10px;
    margin: 0 !important;
  }
  .why-flow-card {
    width: 88px;
    height: 88px;
    border-radius: 14px;
  }
  .why-flow-line {
    display: none;
  }
  .why-flow-link {
    display: none;
  }
  .get-started-flow {
    grid-template-columns: 1fr;
  }
  .affiliate-levels-grid {
    grid-template-columns: 1fr;
  }
  .affiliate-program-overview {
    grid-template-columns: 1fr;
  }
  .recent-transactions-grid {
    grid-template-columns: 1fr;
  }
  .platform-overview-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-title { font-size: var(--font-size-4xl); }
  .hero-badge {
    font-size: 0.9rem;
    padding: 9px 14px;
  }
  .hero-badge-text {
    min-width: 20ch;
  }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stat {
    padding: 12px 10px;
  }
  .hero-stat-value {
    font-size: 1.25rem;
  }
  .hero-stat-label {
    font-size: 10px;
  }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-trust-list { flex-direction: column; }
  .hero-trust-item {
    text-align: center;
    font-size: 12px;
    padding: 10px 12px;
  }
  .about-overview-actions { flex-direction: column; }
  .about-overview-actions .btn { width: 100%; }
  .hero-image-container img { max-width: 520px; }
  .hero-mini-card {
    min-width: 132px;
    padding: 8px 10px;
  }
  .hero-mini-card-mid { left: 0; top: 36%; }
  .hero-mini-card-top { right: 0; top: 4%; }
  .hero-mini-card-bottom { right: 4%; bottom: 6%; }
  .choose-hex-grid { grid-template-columns: 1fr; }
  .choose-hex-card {
    clip-path: none;
    border-radius: 14px;
    min-height: auto;
    padding: 16px 14px;
  }
  .why-flow-wrap {
    gap: 10px;
  }
  .why-flow-row {
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 0 !important;
  }
  .why-flow-item {
    grid-template-columns: 90px 1fr;
    gap: 10px;
  }
  .why-flow-card {
    width: 86px;
    height: 86px;
    border-radius: 14px;
  }
  .why-flow-icon {
    width: 40px;
    height: 40px;
  }
  .why-flow-text h3 {
    font-size: 0.96rem;
  }
  .why-flow-text p {
    font-size: 0.8rem;
  }
  .recent-transaction-item {
    grid-template-columns: 44px 1fr auto;
    gap: 6px;
  }
  .recent-payment-icon {
    width: auto;
    height: auto;
    position: static;
    transform: none;
    z-index: 1;
  }
  .recent-payment-icon img {
    width: 22px;
    height: 22px;
  }
  .recent-transaction-item:hover .recent-payment-icon,
  .recent-transaction-item.is-active .recent-payment-icon {
    transform: scale(1.05);
  }
  .recent-amount {
    grid-column: 1 / -1;
    text-align: right;
  }
  .platform-stats-grid {
    grid-template-columns: 1fr;
  }
  .platform-methods-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .hero-section::after {
    background:
      radial-gradient(circle at 68% 18%, rgba(255, 196, 120, 0.33) 0%, rgba(255, 196, 120, 0.12) 22%, transparent 48%),
      radial-gradient(circle at 15% 88%, rgba(86, 199, 255, 0.15) 0%, transparent 34%);
  }
  .stats-grid { grid-template-columns: 1fr; }
  .cta-title { font-size: var(--font-size-3xl); }
}

@media (max-width: 640px) {
  .home-page .section-padding {
    padding: clamp(42px, 10vw, 62px) 0;
  }

  .home-page .section-header {
    margin-bottom: var(--space-lg);
    padding: 0 2px;
  }

  .home-page .section-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .home-page .section-description {
    font-size: 0.94rem;
    line-height: 1.58;
  }
  .home-page .platform-methods-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-page .platform-method-pill {
    min-height: 66px;
  }

  .home-page .hero-section {
    padding-top: calc(70px + 14px);
    padding-bottom: var(--space-xl);
  }

  .home-page .hero-content {
    gap: var(--space-lg);
  }

  .home-page .hero-image-container {
    max-width: 430px;
    margin: 0 auto;
    display: block;
    padding-bottom: 12px;
  }

  .home-page .hero-image-container img {
    max-width: 100%;
  }

  .home-page .hero-mini-card {
    position: absolute;
    min-width: 112px;
    max-width: 148px;
    padding: 7px 9px;
    border-radius: 10px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  .home-page .hero-mini-label {
    font-size: 9px;
  }

  .home-page .hero-mini-value {
    font-size: 0.92rem;
  }

  .home-page .hero-mini-meta {
    font-size: 10px;
  }

  .home-page .hero-mini-card-top {
    right: 1%;
    top: 2%;
  }

  .home-page .hero-mini-card-mid {
    left: 1%;
    top: 34%;
  }

  .home-page .hero-mini-card-bottom {
    right: 3%;
    bottom: 4%;
  }

  .home-page .about-overview-tag {
    position: static;
    margin-top: 10px;
    display: inline-block;
  }

  .home-page .about-overview-visual {
    padding: 10px;
  }

  .home-page .plan-preview-card {
    padding: 12px 10px 10px;
  }

  .home-page .get-started-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .home-page .affiliate-path {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: 8px;
  }

  .home-page .affiliate-path-arrow {
    display: none;
  }

  .home-page .recent-transactions-card {
    padding: 14px 10px;
  }

  .home-page .recent-transactions-title {
    margin-bottom: 10px;
  }

  .home-page .recent-transactions-list {
    max-height: none;
  }
}

@media (max-width: 480px) {
  .home-page .hero-badge {
    font-size: 0.84rem;
    padding: 8px 12px;
    gap: 0.52rem;
  }

  .home-page .hero-badge-text {
    min-width: 16ch;
  }

  .home-page .hero-title-line {
    white-space: normal;
  }

  .home-page .hero-stats {
    grid-template-columns: 1fr;
  }

  .home-page .hero-image-container {
    max-width: 360px;
  }

  .home-page .hero-mini-card {
    min-width: 96px;
    max-width: 128px;
    padding: 6px 8px;
  }

  .home-page .hero-mini-value {
    font-size: 0.84rem;
  }

  .home-page .hero-mini-meta {
    font-size: 9px;
  }

  .home-page .hero-mini-card-top {
    right: 1%;
    top: 1%;
  }

  .home-page .hero-mini-card-mid {
    left: 1%;
    top: 31%;
  }

  .home-page .hero-mini-card-bottom {
    right: 2%;
    bottom: 2%;
  }

  .home-page .hero-stat {
    padding: 10px 9px;
  }

  .home-page .hero-actions .btn {
    min-width: 0;
  }

  .home-page .plan-quick-grid {
    grid-template-columns: 1fr;
  }

  .home-page .why-flow-item {
    grid-template-columns: 74px 1fr;
  }

  .home-page .why-flow-card {
    width: 72px;
    height: 72px;
  }

  .home-page .why-flow-icon {
    width: 34px;
    height: 34px;
  }

  .home-page .recent-transaction-item {
    grid-template-columns: 38px 1fr auto;
  }

  .home-page .recent-user {
    font-size: 0.82rem;
  }

  .home-page .recent-amount {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .home-page .footer-content {
    padding: 1.2rem 0.9rem 1rem;
  }

  .home-page .footer-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
  }

  .home-page .footer-brand,
  .home-page .footer-links-shell,
  .home-page .footer-contact-card {
    padding: 0.75rem;
    border: 1px solid rgba(170, 218, 249, 0.2);
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(26, 46, 70, 0.54), rgba(18, 34, 54, 0.44));
  }

  .home-page .footer-logo {
    margin-bottom: 0.55rem;
  }

  .home-page .footer-description {
    margin-bottom: 0;
    font-size: 0.87rem;
    line-height: 1.5;
  }

  .home-page .footer-shell-title {
    margin-bottom: 0.5rem;
  }

  .home-page .footer-links-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .home-page .footer-section-title {
    font-size: 0.88rem;
    margin-bottom: 0.45rem;
  }

  .home-page .footer-link {
    margin-bottom: 0.28rem;
  }

  .home-page .footer-link a {
    font-size: 0.83rem;
    padding: 0.1rem 0;
  }

  .home-page .footer-contact-item {
    padding: 0.5rem 0.56rem;
    border-radius: 10px;
  }

  .home-page .footer-contact-text strong {
    font-size: 0.82rem;
  }

  .home-page .footer-contact-text small {
    font-size: 0.74rem;
  }

  .home-page .footer-bottom {
    justify-content: center;
    text-align: center;
    padding-top: 0.75rem;
    gap: 0.55rem;
  }

  .home-page .footer-copyright {
    width: 100%;
    font-size: 0.78rem;
  }

  .home-page .footer-legal {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }

  .home-page .footer-legal a {
    font-size: 0.78rem;
    border: 1px solid rgba(169, 218, 249, 0.25);
    border-radius: 999px;
    padding: 0.3rem 0.58rem;
    background: rgba(17, 34, 54, 0.5);
  }
}

@media (max-width: 480px) {
  .home-page .footer-links-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.55rem;
  }
}
