/* ========= TOKENS ========= */
:root {
  --black: black;
  --black-card: #0d0b07;
  --black-border: #1e1a12;
  --gold: #c9a227;
  --gold-dim: #8b6610;
  --gold-light: #e8c860;
  --gold-glow: rgba(201, 162, 39, 0.18);
  --amber-dark: #1a0e02;
  --cream: #f0e6c8;
  --cream-dim: #c8b88a;
  --muted: #7a6e56;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 30px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--black);
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
ul {
  list-style: none;
}
button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

/* ========= TYPOGRAPHY ========= */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--cream);
  letter-spacing: -1px;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--cream);
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--cream);
}
.heading {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.3;
}
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}
.body-lg {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
}
.body-md {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}
.body-sm {
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

/* ========= LAYOUT ========= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}
.section {
  padding: 110px 0;
}

/* ========= GOLD RULE ========= */
.gold-rule {
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 18px auto 0;
}

/* ========= BUTTONS ========= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.btn-telegram {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  padding: 15px;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.06);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::after {
  opacity: 1;
}
.btn-gold {
  background: linear-gradient(
    135deg,
    var(--gold-dim),
    var(--gold),
    var(--gold-light)
  );
  color: #0a0700;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.25);
  border: none;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 162, 39, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--cream-dim);
  border: 1px solid var(--gold-dim);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-ghost {
  background: rgba(201, 162, 39, 0.08);
  color: var(--gold);
  border: 1px solid rgba(201, 162, 39, 0.2);
}
.btn-ghost:hover {
  background: rgba(201, 162, 39, 0.15);
}
.btn-block {
  width: 100%;
}

/* ========= CARDS ========= */
.card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--r-md);
  padding: 28px;
}
.card-hover {
  transition:
    border-color 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
}
.card-hover:hover {
  border-color: var(--gold-dim);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(201, 162, 39, 0.12);
}

/* ========= DIVIDER ========= */
.section-divider {
  border: none;
  border-top: 1px solid var(--black-border);
  margin: 0;
}

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 14px 0;
  transition:
    background 0.3s,
    box-shadow 0.3s;
}
.navbar.scrolled {
  background: rgba(3, 3, 2, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--black-border);
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo img {
  height: auto;
  width: 190px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
  letter-spacing: 0.3px;
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-icons {
  display: none;
  align-items: center;
  gap: 2px;
}
.nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  color: var(--muted);
  transition: color 0.2s;
  border-radius: 50%;
}
.nav-icon:hover {
  color: var(--gold);
  background: rgba(201, 162, 39, 0.1);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-close {
  display: none;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream-dim);
  border-radius: 2px;
  transition: 0.3s;
}

/* =====================================================
   HERO SLIDER
   ===================================================== */
.hero {
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.2) 100%
  );
  pointer-events: none;
}
.hero-chart-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.15;
}
.hero-chart-bg .trade-chart-svg {
  width: 100%;
  height: 100%;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: url('../images/bg.png') center/cover no-repeat;
}
.hero .owl-carousel {
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.hero-item {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.2) 100%
  );
  z-index: 2;
}
.hero-item .container {
  position: relative;
  z-index: 100;
}
.hero-text {
  position: relative;
  z-index: 999;
  max-width: 620px;
  padding: 40px 0;
}
.hero-text .hero-badge {
  display: inline-block;
  background: rgba(201, 162, 39, 0.15);
  border: 1px solid rgba(201, 162, 39, 0.4);
  padding: 8px 22px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-text h2 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 20px;
  font-family: var(--font-display);
}
.hero-text h2 .gold-text {
  display: block;
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.hero-text p {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 10px 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}
.hero-text .btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-text .btn-gold svg {
  width: 20px;
  height: 20px;
}

/* ---- Owl Carousel overrides ---- */
.hero .owl-dots {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.hero .owl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--gold) !important;
  background: transparent !important;
  transition: all 0.3s;
  outline: none;
}
.hero .owl-dot.active {
  background: var(--gold) !important;
  box-shadow: 0 0 8px rgba(201, 162, 39, 0.6);
  width: 28px;
  border-radius: 6px;
}
.hero .owl-nav {
  display: none;
}

/* ---- Trading Widget ---- */
.trade-widget {
  position: absolute;
  right: 24%;
  top: 33%;
  transform: translateY(-50%);
  z-index: 5;
  width: 375px;
  height: 320px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}
.trade-widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.trade-widget-pair {
  font-size: 14px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.5px;
}
.trade-widget-change {
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 6px;
}
.trade-widget-change.up {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}
.trade-widget-change.down {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}
.trade-widget-price {
  font-size: 32px;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--cream);
  margin-bottom: 4px;
  transition: color 0.3s;
}
.trade-widget-price.up {
  color: #22c55e;
}
.trade-widget-price.down {
  color: #ef4444;
}
.trade-widget-chart {
  position: relative;
  height: 180px;
  margin-top: 14px;
  overflow: hidden;
}
.trade-chart-svg {
  width: 100%;
  height: 100%;
}
.trade-chart-path {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 6px currentColor);
}
.trade-chart-path.up {
  stroke: #22c55e;
  color: #22c55e;
}
.trade-chart-path.down {
  stroke: #ef4444;
  color: #ef4444;
}
.trade-chart-fill {
  opacity: 0.08;
}
.trade-chart-fill.up {
  fill: #22c55e;
}
.trade-chart-fill.down {
  fill: #ef4444;
}

/* =====================================================
   SECTION HEADER
   ===================================================== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .gold-rule {
  margin-top: 14px;
}

/* =====================================================
   TRADING SECTION
   ===================================================== */
.trading-section {
  /* background: linear-gradient(180deg, #050503 0%, var(--black) 100%); */
}
.tab-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 10px 24px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 600;
  background: var(--black-card);
  color: var(--muted);
  border: 1px solid var(--black-border);
  transition: all 0.25s;
  cursor: pointer;
}
.tab-btn.active {
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  color: #0a0700;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(201, 162, 39, 0.3);
}
.tv-wrap {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  padding: 20px;
}
.tv-note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
  letter-spacing: 0.3px;
}
.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.grid-cta-wrap {
  grid-column: 1 / -1;
  text-align: center;
}
.grid-cta-btn {
  margin-top: 24px;
  width: auto;
  min-width: 320px;
  justify-content: center;
}
.module-contact {
  grid-column: 1 / -1;
  margin-top: 25px;
  padding: 24px;
  border: 1px solid var(--black-border);
  border-radius: var(--r-md);
  background: var(--black-card);
  text-align: center;
}
.module-contact p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.module-contact a {
  color: var(--gold);
  text-decoration: none;
}
.module-contact a:hover {
  text-decoration: underline;
  color: var(--gold-light);
}
.module-contact a svg {
  display: inline-block;
}
.module-contact-list {
  list-style: none;
  padding: 0;
  margin: 10px auto 0;
  display: inline-block;
  text-align: left;
}
.module-contact-list li {
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.module-contact-list li + li {
  margin-top: 8px;
}
.module-contact-list li svg {
  flex-shrink: 0;
}
.module-contact-list .label {
  width: 85px;
  text-align: right;
  color: var(--cream-dim);
}
.module-contact-divider {
  margin-top: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  opacity: 0.5;
}
.module-card {
  position: relative;
  overflow: hidden;
}
.module-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: rgba(201, 162, 39, 0.08);
  position: absolute;
  top: 12px;
  right: 16px;
  line-height: 1;
}
.module-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 3px 10px;
  background: rgba(201, 162, 39, 0.1);
  color: var(--gold);
  border-radius: 100px;
  margin-bottom: 12px;
}
.module-free {
  background: rgba(34, 197, 94, 0.1);
  color: #4ade80;
}

/* =====================================================
   ASA EN LIGNE SECTION
   ===================================================== */
.asa-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
}
.asa-skills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}
.skill-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--cream-dim);
  transition: border-color 0.2s;
}
.skill-chip:hover {
  border-color: var(--gold-dim);
}
.skill-chip-icon {
  font-size: 18px;
}
.asa-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.stat-block {
  text-align: center;
  padding: 20px 12px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--r-md);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
}
.stat-label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}
.asa-modules {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.asa-module-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--r-md);
  transition:
    border-color 0.25s,
    transform 0.25s;
}
.asa-module-item:hover {
  border-color: var(--gold-dim);
  transform: translateX(4px);
}
.asa-module-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #0a0700;
}
.asa-module-info {
  flex: 1;
}
.asa-module-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--cream-dim);
}
.asa-module-time {
  font-size: 12px;
  color: var(--muted);
}
.asa-module-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 10px;
  background: rgba(201, 162, 39, 0.1);
  color: var(--gold);
  border-radius: 100px;
}
.asa-module-badge.is-free {
  background: rgba(34, 197, 94, 0.1);
  color: #4ade80;
}

/* =====================================================
   KAISER RHUM SECTION
   ===================================================== */
.rhum-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
.rhum-hero-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--black-border);
  position: relative;
}
.rhum-hero-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, transparent 60%, var(--black) 100%),
    linear-gradient(to top, var(--black) 0%, transparent 20%);
}
.rhum-hero-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
}
.rhum-badge-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.rhum-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(201, 162, 39, 0.08);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-light);
}
.rhum-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.rhum-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  cursor: pointer;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.rhum-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.rhum-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.5s;
}
.rhum-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.75;
  transition: opacity 0.3s;
}
.rhum-card:hover .rhum-card-bg {
  transform: scale(1.05);
}
.rhum-card-content {
  position: relative;
  z-index: 1;
  padding: 28px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 320px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95) 40%,
    rgba(0, 0, 0, 0.2) 100%
  );
}
.rhum-card-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.rhum-card-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 6px;
}
.rhum-card-desc {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.5;
}
.rhum-card-ingredients {
  font-size: 11px;
  color: var(--gold-dim);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.rhum-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rhum-card-price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
}
.rhum-card-vol {
  font-size: 11px;
  color: var(--muted);
}
.rhum-btn {
  padding: 8px 18px;
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 600;
  background: rgba(201, 162, 39, 0.15);
  color: var(--gold);
  border: 1px solid rgba(201, 162, 39, 0.3);
  cursor: pointer;
  transition: all 0.2s;
}
.rhum-btn:hover {
  background: var(--gold);
  color: #0a0700;
}

/* Rum color themes */
.rhum-passion .rhum-card-bg::after {
  background: linear-gradient(145deg, #2a0a2e, #1a0520, #0d0010);
}
.rhum-tropical .rhum-card-bg::after {
  background: linear-gradient(145deg, #0a2a0e, #061a08, #020d04);
}
.rhum-agrumes .rhum-card-bg::after {
  background: linear-gradient(145deg, #2a1a02, #1a1002, #0d0802);
}
.rhum-fruits .rhum-card-bg::after {
  background: linear-gradient(145deg, #2a0a0a, #1a0505, #0d0202);
}
.rhum-ananas .rhum-card-bg::after {
  background: linear-gradient(145deg, #0a1e2a, #051218, #02090e);
}
.rhum-coco .rhum-card-bg::after {
  background: linear-gradient(145deg, #0a0a1e, #050514, #02020c);
}

/* =====================================================
   INSTAGRAM VERIFICATION POPUP
   ===================================================== */
.ig-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.ig-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.ig-modal {
  background: linear-gradient(145deg, #0d0b07, #15120c);
  border: 1px solid var(--black-border);
  border-radius: var(--r-xl);
  padding: 48px 40px 40px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  position: relative;
  transform: translateY(20px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.ig-modal-overlay.active .ig-modal {
  transform: translateY(0) scale(1);
}
.ig-modal-icon {
  margin-bottom: 20px;
}
.ig-modal-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.3;
}
.ig-modal-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 28px;
}
.ig-modal-desc strong {
  color: var(--gold);
  font-weight: 600;
}
.ig-modal-input-wrap {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-md);
  padding: 0 16px;
  margin-bottom: 12px;
  transition: border-color 0.25s;
}
.ig-modal-input-wrap:focus-within {
  border-color: var(--gold-dim);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.08);
}
.ig-modal-input-wrap.valid {
  border-color: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}
.ig-modal-at {
  font-size: 18px;
  color: var(--muted);
  font-weight: 500;
  flex-shrink: 0;
}
.ig-modal-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  padding: 16px 12px;
  font-size: 17px;
  font-weight: 500;
  color: var(--cream);
  font-family: var(--font-body);
  letter-spacing: 0.3px;
}
.ig-modal-input::placeholder {
  color: var(--muted);
  opacity: 0.4;
}
.ig-modal-error {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #ef4444;
  margin-bottom: 16px;
  min-height: 20px;
  opacity: 0;
  transition: opacity 0.25s;
}
.ig-modal-error.show {
  opacity: 1;
}
.ig-modal-btn {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  border-radius: var(--r-md);
  transition: all 0.25s;
}
.ig-modal-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none !important;
}
.ig-modal-footnote {
  font-size: 12px;
  color: var(--muted);
  margin-top: 16px;
  opacity: 0.5;
}
.ig-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: ig-spin 0.6s linear infinite;
}
.ig-modal-btn.loading .ig-spinner {
  display: inline-block;
}
.ig-modal-btn.loading #igBtnText {
  display: none;
}
@keyframes ig-spin {
  to { transform: rotate(360deg); }
}

.ig-modal-file-wrap {
  margin-bottom: 12px;
  text-align: left;
}
.ig-modal-file-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: var(--r-md);
  font-size: 14px;
  color: var(--muted);
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
}
.ig-modal-file-label:hover {
  border-color: var(--gold-dim);
  background: rgba(201, 162, 39, 0.05);
}
.ig-modal-file-label svg {
  flex-shrink: 0;
  opacity: 0.6;
}
.ig-modal-file-input {
  display: none;
}
.verification-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
}
.verification-success p {
  font-size: 16px;
  color: #10b981;
  font-weight: 600;
  line-height: 1.5;
}

.choice-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}
.choice-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  font-size: 16px;
  border-radius: var(--r-md);
  cursor: pointer;
  border: none;
  transition: all 0.25s;
}
.choice-btn svg {
  flex-shrink: 0;
}
.choice-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.25);
}
.donation-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(145deg, var(--black-card) 0%, #0f0d08 100%);
  border: 1px solid var(--black-border);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
.donation-inner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 40%;
  background: radial-gradient(ellipse, rgba(201, 162, 39, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.donation-amounts {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 36px 0 24px;
  position: relative;
  z-index: 1;
}
.amount-btn {
  padding: 14px 24px;
  border-radius: var(--r-md);
  font-size: 15px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.03);
  color: var(--cream-dim);
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--font-display);
  min-width: 110px;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}
.amount-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity 0.25s;
}
.amount-btn:hover::after {
  opacity: 0.12;
}
.amount-btn:hover {
  color: var(--gold);
  border-color: rgba(201, 162, 39, 0.3);
  transform: translateY(-2px);
}
.amount-btn.selected {
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  color: #0a0700;
  border-color: transparent;
  box-shadow: 0 4px 24px rgba(201, 162, 39, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
.amount-btn.selected::after {
  display: none;
}
.donation-custom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 420px;
  margin: 32px auto 36px;
  position: relative;
  z-index: 1;
}
.donation-input {
  flex: 1;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-md);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  outline: none;
  transition: all 0.25s;
}
.donation-input::placeholder {
  color: var(--muted);
  opacity: 0.6;
}
.donation-input:focus {
  border-color: var(--gold-dim);
  background: rgba(201, 162, 39, 0.04);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.08);
}
.donation-custom .btn-gold {
  padding: 14px 32px;
  flex-shrink: 0;
}
.donation-methods {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.method-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--cream-dim);
  transition: all 0.25s;
  cursor: pointer;
  position: relative;
}
.method-badge:hover {
  border-color: rgba(201, 162, 39, 0.25);
  background: rgba(201, 162, 39, 0.05);
  transform: translateY(-1px);
}
.method-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.method-radio-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  position: relative;
}
.method-radio-dot::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  transform: scale(0);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.method-radio:checked ~ .method-radio-dot {
  border-color: var(--gold);
  box-shadow: 0 0 8px rgba(201, 162, 39, 0.3);
}
.method-radio:checked ~ .method-radio-dot::after {
  transform: scale(1);
}
.method-badge:has(.method-radio:checked) {
  border-color: var(--gold-dim);
  background: rgba(201, 162, 39, 0.08);
}
.method-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.method-icon img {
  display: block;
}
.donation-thanks {
  margin-top: 32px;
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  position: relative;
  z-index: 1;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* =====================================================
   FOOTER
   ===================================================== */
footer {
  background: var(--black-card);
  border-top: 1px solid var(--black-border);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--black-border);
  margin-bottom: 28px;
}
.footer-brand img {
  height: 28px;
  width: auto;
  margin-bottom: 16px;
}
.footer-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 240px;
}
.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links-list a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-links-list a:hover {
  color: var(--gold);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 13px;
  color: var(--muted);
}
.footer-tagline {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

/* =====================================================
   MODAL CART / NOTIFICATION
   ===================================================== */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--black-card);
  border: 1px solid var(--gold-dim);
  border-radius: var(--r-md);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--cream);
  z-index: 999;
  opacity: 0;
  transition: all 0.3s;
  pointer-events: none;
  white-space: nowrap;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast-icon {
  font-size: 20px;
}

/* =====================================================
   STICKY CTA
   ===================================================== */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 300;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s;
  pointer-events: none;
}
.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* =====================================================
   SCROLL REVEAL
   ===================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal][data-delay="1"] {
  transition-delay: 0.15s;
}
[data-reveal][data-delay="2"] {
  transition-delay: 0.3s;
}
[data-reveal][data-delay="3"] {
  transition-delay: 0.45s;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .trade-widget {
    width: 300px;
    right: 5%;
  }
  .trade-widget-chart {
    height: 120px;
  }
  .hero-text h2 {
    font-size: clamp(30px, 4vw, 44px);
  }
  .hero-pillars {
    grid-template-columns: repeat(2, 1fr);
  }
  .modules-grid {
    grid-template-columns: 1fr 1fr;
  }
  .asa-layout {
    grid-template-columns: 1fr;
  }
  .rhum-hero {
    grid-template-columns: 1fr;
  }
  .rhum-hero-img {
    display: none;
  }
  .rhum-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  .section {
    padding: 70px 0;
  }
  .hero-item {
    min-height: 100vh;
  }
  .hero-text {
    text-align: center;
    margin: 0 auto;
    padding: 20px 0;
  }
  .hero-text h2 {
    font-size: clamp(28px, 6vw, 38px);
  }
  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }
  .trade-widget {
    display: none;
  }
  .section {
    padding: 70px 0;
  }
  .hero {
    padding: 0;
  }
  .hero::before,
  .hero-overlay {
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
  }
  .hero .owl-dots {
    bottom: 16px;
  }
  .nav-links {
    display: none;
  }
  .navbar {
    padding: 6px 0 4px;
    background: rgba(3, 3, 2, 0.92);
    backdrop-filter: blur(12px);
  }
  .navbar-inner {
    padding: 0 12px;
    gap: 2px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .nav-logo {
    flex: 0 0 100%;
    text-align: center;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 4px;
  }
  .nav-logo img {
    width: 100px;
  }
  .nav-icons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2px;
    flex: 0 0 100%;
  }
  .nav-icon {
    padding: 6px;
    color: var(--muted);
  }
  .nav-actions {
    display: none;
  }
  .donation-methods {
    flex-direction: column;
    align-items: stretch;
  }
  .donation-methods .method-badge {
    width: 100%;
  }
  .donation-input {
    width: 100%;
    box-sizing: border-box;
  }
  .rhum-badge-row {
    justify-content: center;
  }
  .rhum-stats {
    justify-content: center;
  }
  .rhum-cta-btn {
    width: 100%;
  }
  .cart-summary {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: none;
    border-radius: 0;
    padding: 20px;
    min-width: 0;
    width: auto;
    transform: none;
    transition: opacity 0.3s;
    z-index: 300;
  }
  .cart-summary.visible {
    transform: none;
    pointer-events: auto;
  }
  .cart-summary .cart-card {
    width: 100%;
    max-width: 400px;
    background: var(--black-card);
    border: 1px solid var(--gold-dim);
    border-radius: var(--r-md);
    padding: 16px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  }
  .modules-grid {
    grid-template-columns: 1fr;
  }
  .asa-skills {
    grid-template-columns: 1fr;
  }
  .asa-stats {
    grid-template-columns: 1fr;
  }
  .rhum-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-pillars {
    grid-template-columns: repeat(2, 1fr);
  }
  .donation-inner {
    padding: 32px 20px;
    border-radius: var(--r-lg);
  }
  .donation-amounts {
    gap: 8px;
  }
  .amount-btn {
    padding: 12px 16px;
    min-width: 80px;
    font-size: 14px;
  }
  .donation-custom {
    flex-direction: column;
    max-width: 100%;
  }
  .donation-custom > div {
    flex-direction: column !important;
    gap: 8px !important;
  }
  .donation-custom .btn-gold {
    width: 100%;
    padding: 12px 20px !important;
    font-size: 14px;
  }
  .donation-input {
    padding: 12px 16px;
    font-size: 15px;
  }
  .method-badge {
    padding: 8px 14px;
    font-size: 12px;
  }
  .method-badge img {
    height: 28px !important;
  }
}

@media (max-width: 480px) {
  .hero-item {
    min-height: 100vh;
  }
  .hero-text h2 {
    font-size: clamp(20px, 6vw, 26px);
  }
  .hero .owl-dot {
    width: 8px;
    height: 8px;
  }
  .hero .owl-dot.active {
    width: 20px;
  }
  .section {
    padding: 50px 0;
  }
  .hero {
    padding: 0;
  }
  .hero::before,
  .hero-overlay {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
  .hero .owl-dots {
    bottom: 5px;
  }
  .hero-title {
    font-size: clamp(30px, 10vw, 44px);
  }
  .hero-subtitle {
    font-size: 15px;
    margin: 16px auto 30px;
  }
  .rhum-stats {
    gap: 8px !important;
  }
  .rhum-stats > div:nth-child(odd) > div:first-child {
    font-size: 24px !important;
  }
  .rhum-stats > div:nth-child(odd) > div:last-child {
    font-size: 11px !important;
  }
  .rhum-cta-btn {
    width: 100%;
  }
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 14px;
  }
  .hero-pillars {
    grid-template-columns: 1fr 1fr;
    border-radius: var(--r-sm);
  }
  .hero-pillar {
    padding: 14px 10px;
  }
  .hero-pillar-label {
    font-size: 11px;
  }
  .hero-pillar-sub {
    font-size: 10px;
  }
  .hero-badge {
    font-size: 10px;
    padding: 6px 14px;
  }
  .section-header {
    margin-bottom: 36px;
  }
  .card {
    padding: 20px;
  }
  .modules-grid {
    gap: 14px;
  }
  .grid-cta-btn {
    width: 100%;
    min-width: 0;
  }
  .module-num {
    font-size: 36px;
    top: 8px;
    right: 12px;
  }
  .tv-wrap {
    padding: 12px;
  }
  .tab-btn {
    padding: 8px 16px;
    font-size: 12px;
  }
  .asa-layout {
    gap: 40px;
  }
  .asa-module-item {
    padding: 12px 16px;
  }
  .asa-module-title {
    font-size: 13px;
  }
  .stat-number {
    font-size: 26px;
  }
  .rhum-hero {
    gap: 30px;
    margin-bottom: 50px;
  }
  .rhum-hero-img img {
    height: 280px;
  }
  .rhum-card-content {
    padding: 20px 16px;
    min-height: 240px;
  }
  .rhum-card-name {
    font-size: 22px;
  }
  .rhum-grid {
    gap: 16px;
  }
  .donation-inner {
    padding: 24px 16px;
  }
  .amount-btn {
    padding: 10px 14px;
    min-width: 70px;
    font-size: 13px;
  }
  .donation-input {
    padding: 12px 16px;
    font-size: 14px;
  }
  .donation-custom .btn-gold {
    padding: 12px 24px;
  }
  .footer-grid {
    gap: 24px;
  }
  .sticky-cta {
    bottom: 16px;
    right: 16px;
  }
  .btn-telegram {
    width: 54px;
    height: 54px;
    padding: 12px;
  }
  .btn-telegram svg {
    width: 28px;
    height: 28px;
  }
  .ig-modal {
    padding: 32px 20px 28px;
  }
  .ig-modal-title {
    font-size: 20px;
  }
  .ig-modal-desc {
    font-size: 14px;
  }
  .ig-modal-input {
    padding: 14px 10px;
    font-size: 15px;
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0 8px;
  }
  .hero {
    padding: 0;
  }
  .hero-pillars {
    grid-template-columns: 1fr 1fr;
    gap: 1px;
  }
  .hero-pillar {
    padding: 10px 6px;
  }
  .hero-pillar-icon {
    font-size: 18px;
    margin-bottom: 4px;
  }
  .hero-pillar-label {
    font-size: 10px;
  }
  .hero-pillar-sub {
    display: none;
  }
  .section {
    padding: 40px 0;
  }
  .card {
    padding: 16px;
    border-radius: var(--r-sm);
  }
  .heading {
    font-size: clamp(16px, 5vw, 20px);
  }
  .body-md {
    font-size: 14px;
  }
  .btn {
    padding: 10px 18px;
    font-size: 13px;
  }
  .modules-grid {
    gap: 12px;
    margin-top: 30px;
  }
  .module-num {
    font-size: 28px;
  }
  .rhum-card-content {
    padding: 16px 12px;
    min-height: 200px;
  }
  .rhum-card-name {
    font-size: 18px;
  }
  .rhum-card-price {
    font-size: 16px;
  }
  .asa-module-item {
    padding: 10px 12px;
    gap: 10px;
  }
  .asa-module-num {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }
  .donation-inner {
    padding: 20px 12px;
  }
  .nav-links.open {
    padding: 80px 20px;
  }
  .nav-links.open a {
    font-size: 18px;
  }
}
