/* =====================================================
   Infinity Health Organics — Business Plan Page Styles
   Extends css/style.css brand variables & components
   ===================================================== */

/* =========================== Biz Hero =========================== */
.biz-hero {
  position: relative;
  background: var(--grad-navy);
  padding: 150px 0 110px;
  overflow: hidden;
  color: #fff;
}
.biz-hero-bg { position: absolute; inset: 0; overflow: hidden; }
.biz-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  opacity: 0.35;
  animation: biz-float 8s ease-in-out infinite;
}
.biz-orb-1 { width: 340px; height: 340px; background: radial-gradient(circle, var(--ih-green-light), transparent 70%); top: -100px; right: -60px; }
.biz-orb-2 { width: 260px; height: 260px; background: radial-gradient(circle, var(--ih-teal), transparent 70%); bottom: -80px; left: -40px; animation-delay: 1.5s; }
.biz-orb-3 { width: 180px; height: 180px; background: radial-gradient(circle, var(--ih-gold), transparent 70%); top: 40%; left: 46%; opacity: 0.2; animation-delay: 3s; }
@keyframes biz-float { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-24px) scale(1.06); } }
.biz-hero-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1.4px, transparent 1.4px);
  background-size: 26px 26px;
  opacity: 0.5;
}

.biz-hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 991px) {
  .biz-hero-container { grid-template-columns: 1fr; }
}

.biz-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 22px;
  color: #d9f2e2;
}
.biz-hero-eyebrow i { color: var(--ih-green-light); }

.biz-hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  line-height: 1.2;
  margin-bottom: 20px;
}
.biz-hero-accent { color: var(--ih-green-light); display: block; }
.biz-hero-sub { color: #c7d9ec; font-size: 1.08rem; max-width: 560px; margin-bottom: 30px; }

.biz-hero-pills { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 34px; }
.biz-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 9px 16px;
  border-radius: 40px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #fff;
}
.biz-pill i { color: var(--ih-green-light); }

.biz-hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.biz-btn-glow { box-shadow: 0 0 0 0 rgba(46,158,79,0.6); animation: biz-glow-pulse 2.4s infinite; }
@keyframes biz-glow-pulse {
  0% { box-shadow: 0 0 0 0 rgba(46,158,79,0.55); }
  70% { box-shadow: 0 0 0 14px rgba(46,158,79,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,158,79,0); }
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.55);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  transition: var(--transition);
}
.btn-outline-white:hover { background: #fff; color: var(--ih-navy); border-color: #fff; transform: translateY(-3px); }

.biz-hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.biz-stat-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  text-align: center;
  backdrop-filter: blur(6px);
  transition: var(--transition);
}
.biz-stat-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.13); }
.biz-stat-card.highlight-card { background: var(--grad-green); border-color: transparent; }
.biz-stat-icon { font-size: 1.6rem; color: var(--ih-green-light); margin-bottom: 12px; }
.highlight-card .biz-stat-icon { color: #fff; }
.biz-stat-card strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.9rem; color: #fff; margin-bottom: 4px; }
.biz-stat-card span { font-size: 0.78rem; color: #cddeef; text-transform: uppercase; letter-spacing: 0.6px; }
.highlight-card span { color: #eafff0; }

.biz-hero-scroll {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.biz-hero-scroll span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  animation: scroll-bounce 1.6s infinite;
}
.biz-hero-scroll span:nth-child(2) { animation-delay: 0.2s; }
.biz-hero-scroll span:nth-child(3) { animation-delay: 0.4s; }
@keyframes scroll-bounce { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }

/* =========================== Section Header (shared) =========================== */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ih-green-dark);
  background: rgba(46,158,79,0.1);
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 18px;
}
.why-join-section .section-header,
.income-section .section-header,
.comp-section .section-header,
.promo-section .section-header,
.started-section .section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}
.section-subtitle { color: var(--ih-muted); font-size: 1.05rem; }

/* =========================== Why Join Grid =========================== */
.why-join-section { padding: 90px 0; background: #fff; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 991px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  background: #fff;
  border: 1px solid var(--ih-border);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.why-icon {
  width: 62px; height: 62px;
  border-radius: 18px;
  background: var(--grad-navy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: var(--transition);
}
.why-card:hover .why-icon { background: var(--grad-green); transform: rotate(-6deg) scale(1.05); }
.why-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.why-card p { font-size: 0.93rem; margin-bottom: 0; }

/* =========================== Income Streams =========================== */
.income-section { padding: 90px 0; background: var(--ih-sky); }
.income-streams {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .income-streams { grid-template-columns: 1fr; } }

.income-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ih-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.income-card:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); }
.income-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 5px;
  background: var(--grad-green);
}
.income-card-header { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 16px; }
.income-icon-wrap {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: rgba(46,158,79,0.1);
  color: var(--ih-green-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}
.income-label { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1.4px; color: var(--ih-muted); font-weight: 700; margin-bottom: 4px; }
.income-card-header h3 { font-size: 1.25rem; margin-bottom: 0; }
.income-badge-big {
  margin-left: auto;
  background: var(--grad-navy);
  color: #fff;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  align-self: center;
}
.income-card > p { font-size: 0.95rem; margin-bottom: 20px; }

.income-example {
  background: var(--ih-sky);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin-bottom: 18px;
}
.example-label { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; color: var(--ih-navy); margin-bottom: 8px; }
.example-calc { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 0.86rem; color: var(--ih-ink); }
.example-calc .arrow { color: var(--ih-green); font-weight: 700; }
.example-calc .result { color: var(--ih-green-dark); font-weight: 700; }

.income-free-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--grad-green);
  color: #fff;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.88rem;
}

.commission-levels { margin-bottom: 16px; }
.commission-row {
  display: grid;
  grid-template-columns: 1fr 1.6fr 0.8fr;
  align-items: center;
  gap: 10px;
  padding: 10px 4px;
  font-size: 0.88rem;
  border-bottom: 1px dashed var(--ih-border);
}
.commission-row.header-row {
  font-weight: 700;
  color: var(--ih-navy);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.6px;
  border-bottom: 2px solid var(--ih-border);
}
.level-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.76rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.level-badge.l1 { background: var(--ih-navy); }
.level-badge.l2 { background: var(--ih-teal); }
.level-badge.l3 { background: var(--ih-green); }
.rate-badge {
  font-weight: 800;
  color: var(--ih-green-dark);
  background: rgba(46,158,79,0.1);
  padding: 4px 10px;
  border-radius: 20px;
  text-align: center;
  font-size: 0.85rem;
}
.total-earn {
  font-size: 0.88rem;
  color: var(--ih-muted);
  padding-top: 6px;
}
.total-earn strong { color: var(--ih-navy); }

/* =========================== Compensation Table =========================== */
.comp-section { padding: 90px 0; background: #fff; }
.comp-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--ih-border);
}
.comp-table { width: 100%; border-collapse: collapse; min-width: 900px; background: #fff; }
.comp-table thead tr { background: var(--grad-navy); }
.comp-table thead th {
  color: #fff;
  font-weight: 700;
  padding: 18px 20px;
  text-align: left;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}
.comp-table tbody tr { border-bottom: 1px solid var(--ih-border); transition: var(--transition); }
.comp-table tbody tr:hover { background: var(--ih-sky); }
.comp-table tbody tr:last-child { border-bottom: none; }
.comp-table td { padding: 18px 20px; vertical-align: middle; }

.rank-num-badge {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 1.1rem;
  background: var(--grad-navy);
}
.rank-num-badge.rn-6, .rank-num-badge.rn-7 { background: linear-gradient(135deg, #d99a12, #f2a900); }
.rank-num-badge.rn-8, .rank-num-badge.rn-9 { background: linear-gradient(135deg, #1a8fc1, #0c2d52); }
.rank-num-badge.rn-10 { background: linear-gradient(135deg, #2e9e4f, #0c2d52); }

.zone-name { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--ih-navy); font-size: 0.98rem; }
.zone-name i { color: var(--ih-green); }

.req-list { list-style: none; padding: 0; margin: 0; }
.req-list li { display: flex; align-items: center; gap: 8px; font-size: 0.84rem; color: var(--ih-muted); margin-bottom: 6px; }
.req-list li:last-child { margin-bottom: 0; }
.req-list li i { color: var(--ih-green); width: 14px; }

.bonus-chip {
  display: inline-block;
  background: rgba(46,158,79,0.1);
  color: var(--ih-green-dark);
  font-weight: 800;
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 0.88rem;
  white-space: nowrap;
}
.bonus-chip.gold-chip { background: rgba(242,169,0,0.14); color: #b17a00; }
.bonus-chip.platinum-chip { background: rgba(26,143,193,0.14); color: var(--ih-teal); }
.bonus-chip.car-chip { background: rgba(12,45,82,0.1); color: var(--ih-navy); }
.bonus-chip.house-chip { background: rgba(46,158,79,0.16); color: var(--ih-green-dark); }

.salary-chip {
  display: inline-block;
  background: var(--grad-navy);
  color: #fff;
  font-weight: 800;
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 0.88rem;
  white-space: nowrap;
}
.salary-chip small { font-weight: 500; font-size: 0.7rem; opacity: 0.85; }
.salary-chip.gold-salary { background: linear-gradient(135deg, #d99a12, #f2a900); }
.salary-dash { color: var(--ih-muted); font-weight: 700; }

/* Mobile rank cards */
.rank-cards-mobile { display: none; flex-direction: column; gap: 18px; margin-top: 20px; }
@media (max-width: 767px) {
  .comp-table-wrap { display: none; }
  .rank-cards-mobile { display: flex; }
}
.rank-card-m {
  background: #fff;
  border: 1px solid var(--ih-border);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.rank-card-m .rcm-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.rank-card-m .rcm-head h4 { font-size: 1.1rem; margin-bottom: 0; }
.rank-card-m .req-list { margin-bottom: 14px; }
.rank-card-m .rcm-rewards { display: flex; gap: 10px; flex-wrap: wrap; }

/* =========================== Promotions =========================== */
.promo-section { padding: 90px 0; background: var(--ih-sky); }
.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 991px) { .promo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 650px) { .promo-grid { grid-template-columns: 1fr; } }

.promo-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ih-border);
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.promo-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.promo-card-glow {
  position: absolute;
  top: -60px; right: -60px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,158,79,0.18), transparent 70%);
}
.promo-card-glow.car-glow { background: radial-gradient(circle, rgba(26,143,193,0.2), transparent 70%); }
.promo-card-glow.cruise-glow { background: radial-gradient(circle, rgba(26,143,193,0.2), transparent 70%); }
.promo-card-glow.leadership-glow,
.promo-card-glow.house-glow { background: radial-gradient(circle, rgba(242,169,0,0.22), transparent 70%); }
.promo-card-glow.financial-glow { background: radial-gradient(circle, rgba(46,158,79,0.2), transparent 70%); }

.promo-icon-wrap {
  position: relative; z-index: 1;
  width: 58px; height: 58px;
  border-radius: 16px;
  background: var(--grad-green);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.promo-icon-wrap.car-icon, .promo-icon-wrap.cruise-icon { background: linear-gradient(135deg, var(--ih-teal), var(--ih-navy)); }
.promo-icon-wrap.leadership-icon, .promo-icon-wrap.house-icon { background: linear-gradient(135deg, #d99a12, #f2a900); }
.promo-icon-wrap.financial-icon { background: var(--grad-navy); }

.promo-tag {
  position: relative; z-index: 1;
  display: inline-block;
  background: rgba(46,158,79,0.1);
  color: var(--ih-green-dark);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.promo-tag-orange { background: rgba(26,143,193,0.12); color: var(--ih-teal); }
.promo-tag-blue { background: rgba(12,45,82,0.1); color: var(--ih-navy); }
.promo-tag-gold, .promo-tag-legacy { background: rgba(242,169,0,0.15); color: #b17a00; }
.promo-tag-green { background: rgba(46,158,79,0.1); color: var(--ih-green-dark); }

.promo-card h3 { font-size: 1.2rem; margin-bottom: 10px; position: relative; z-index: 1; }
.promo-card > p { font-size: 0.92rem; margin-bottom: 18px; position: relative; z-index: 1; }
.promo-features { list-style: none; padding: 0; margin: 0 0 20px; position: relative; z-index: 1; }
.promo-features li { display: flex; align-items: center; gap: 8px; font-size: 0.86rem; color: var(--ih-ink); margin-bottom: 8px; }
.promo-features li i { color: var(--ih-green); }

.promo-unlock {
  position: relative; z-index: 1;
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ih-green-dark);
  background: rgba(46,158,79,0.08);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
}
.promo-unlock-orange, .promo-unlock-blue { background: rgba(26,143,193,0.1); color: var(--ih-teal); }
.promo-unlock-gold, .promo-unlock-legacy { background: rgba(242,169,0,0.14); color: #b17a00; }
.promo-unlock-green { background: rgba(46,158,79,0.1); color: var(--ih-green-dark); }

/* =========================== Calculator =========================== */
.calc-section { padding: 90px 0; background: #fff; }
.calc-container {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 991px) { .calc-container { grid-template-columns: 1fr; } }

.calc-content h2 { margin-bottom: 16px; }
.calc-content > p { margin-bottom: 22px; }
.calc-disclaimer {
  display: flex;
  gap: 10px;
  background: var(--ih-sky);
  border-left: 4px solid var(--ih-teal);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--ih-navy-light);
}
.calc-disclaimer i { color: var(--ih-teal); margin-top: 2px; }

.calc-widget {
  background: var(--ih-sky);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-md);
}
.calc-field { margin-bottom: 22px; }
.calc-field label { display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--ih-navy); margin-bottom: 10px; font-size: 0.92rem; }
.calc-field label i { color: var(--ih-green); }
.calc-slider-wrap { display: flex; align-items: center; gap: 14px; }
.calc-slider-wrap input[type="range"] {
  flex: 1;
  height: 6px;
  border-radius: 10px;
  background: var(--ih-border);
  accent-color: var(--ih-green);
  cursor: pointer;
}
.calc-slider-wrap output {
  min-width: 58px;
  text-align: center;
  background: var(--grad-green);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 10px;
  border-radius: 20px;
}

.calc-result {
  background: var(--grad-navy);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 26px;
  margin-top: 10px;
}
.calc-result-header { font-weight: 700; font-size: 0.95rem; margin-bottom: 16px; color: #d9f2e2; }
.calc-breakdown { display: flex; flex-direction: column; gap: 10px; }
.calc-row { display: flex; justify-content: space-between; font-size: 0.88rem; color: #c7d9ec; }
.calc-row strong { color: #fff; }
.calc-divider { height: 1px; background: rgba(255,255,255,0.15); margin: 6px 0; }
.calc-total-row { display: flex; justify-content: space-between; align-items: center; font-weight: 800; font-size: 1.3rem; }
.calc-total-row strong { color: var(--ih-green-light); font-family: 'Playfair Display', serif; }
.calc-note { font-size: 0.78rem; color: #a9c3dd; margin-top: 12px; margin-bottom: 0; }

/* =========================== Getting Started Steps =========================== */
.started-section { padding: 90px 0; background: var(--ih-sky); }
.started-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  counter-reset: step;
}
@media (max-width: 1100px) { .started-steps { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .started-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .started-steps { grid-template-columns: 1fr; } }

.started-step {
  position: relative;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 30px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ih-border);
  transition: var(--transition);
}
.started-step:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.step-num { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 800; color: var(--ih-border); margin-bottom: 6px; line-height: 1; }
.step-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--grad-green);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 16px;
}
.started-step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.started-step p { font-size: 0.85rem; margin-bottom: 14px; }
.step-tag {
  display: inline-block;
  background: rgba(46,158,79,0.1);
  color: var(--ih-green-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
}

/* =========================== Join CTA =========================== */
.join-section {
  position: relative;
  background: var(--grad-cta);
  padding: 90px 0;
  overflow: hidden;
  color: #fff;
}
.join-bg { position: absolute; inset: 0; opacity: 0.5; background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.12), transparent 60%); }
.join-container {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 991px) { .join-container { grid-template-columns: 1fr; } }

.join-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.28);
  padding: 8px 18px;
  border-radius: 40px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.join-content h2 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.6rem); margin-bottom: 18px; }
.join-content > p { color: #dce9f5; margin-bottom: 24px; max-width: 560px; }
.join-promises { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.join-promises span { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.88rem; color: #fff; }
.join-promises i { color: var(--ih-green-light); }
.join-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

.btn-whatsapp-join {
  display: flex; align-items: center; gap: 14px;
  background: #25D366;
  color: #fff;
  padding: 14px 26px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 26px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.btn-whatsapp-join:hover { transform: translateY(-4px); color: #fff; }
.btn-whatsapp-join i { font-size: 1.9rem; }
.btn-whatsapp-join .wa-main { display: block; font-weight: 800; font-size: 1.05rem; }
.btn-whatsapp-join .wa-sub { display: block; font-size: 0.76rem; opacity: 0.92; }

.join-rank-preview {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(6px);
}
.jrp-header { font-weight: 700; margin-bottom: 18px; color: #fff; font-size: 1rem; }
.jrp-steps { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.jrp-step {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.08);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: #dce9f5;
}
.jrp-step.active-step { background: var(--grad-green); color: #fff; font-weight: 700; }
.jrp-num {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700;
  flex-shrink: 0;
}
.active-step .jrp-num { background: rgba(255,255,255,0.3); }
.jrp-more { font-style: italic; opacity: 0.85; justify-content: center; }
.jrp-footer { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: #d9f2e2; font-weight: 600; }

/* =========================== Utility =========================== */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
