/* ==========================================
   ASSINATURA.CSS
   ========================================== */

:root {
  --gj-red:        #eb1616;
  --gj-card-bg:    #252836;
  --gj-card-hover: #2c2f42;
  --gj-border:     rgba(255, 255, 255, 0.07);
  --gj-border-hov: rgba(255, 255, 255, 0.14);
  --gj-text:       #f0f1f6;
  --gj-muted:      #8b8fa8;
  --gj-success:    #10b981;
  --gj-warning:    #f59e0b;
  --gj-purple:     #6366f1;
  --radius:        14px;
  --transition:    all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================
   STATUS TOGGLE (dropdown do status)
   ========================================== */
.gj-status-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
}

.gj-status-toggle:focus { outline: none; }

.gj-chevron {
  font-size: 0.85rem;
  color: #6c7293;
  transition: transform 0.25s ease;
}

.gj-status-toggle[aria-expanded="true"] .gj-chevron {
  transform: rotate(180deg);
}

#statusContent {
  padding-top: 0;
}

#statusContent.show { padding-top: 14px; }

/* ==========================================
   CARD UNIFICADO (status + planos)
   ========================================== */
.gj-main-card {
  background: #1e2130;
  border: 1px solid var(--gj-border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}

/* linha vermelha no topo do card */
.gj-main-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gj-red);
  border-radius: var(--radius) var(--radius) 0 0;
}

/* divisória entre status e planos */
.gj-divider {
  border: none;
  border-top: 1px solid var(--gj-red);
  margin: 28px 0;
  opacity: 0.4;
}



/* título dos planos */
#plansSection h3 {
  font-size: 1.8rem !important;
  letter-spacing: -0.03em !important;
}

/* ==========================================
   PERIOD TOGGLE (Mensal / Anual)
   ========================================== */
.gj-period-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.gj-period-toggle {
  position: relative;
  display: inline-flex;
  background: #141720;
  border-radius: 100px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gj-period-pill {
  position: absolute;
  top: 4px;
  left: 4px;
  height: calc(100% - 8px);
  background: var(--gj-red);
  border-radius: 100px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              width   0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 0;
  pointer-events: none;
}

.gj-period-btn {
  position: relative;
  z-index: 1;
  background: transparent;
  border: none;
  padding: 9px 24px;
  border-radius: 100px;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gj-muted);
  transition: color 0.2s ease;
  white-space: nowrap;
  outline: none;
}

.gj-period-btn:focus-visible {
  outline: 2px solid var(--gj-red);
  outline-offset: 3px;
}

.gj-period-btn.is-active { color: #fff; }

.gj-period-save {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  background: rgba(16, 185, 129, 0.15);
  color: var(--gj-success);
  padding: 2px 7px;
  border-radius: 100px;
  margin-left: 5px;
  vertical-align: middle;
  transition: background 0.2s, color 0.2s;
}

.gj-period-btn.is-active .gj-period-save {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* ==========================================
   PLANS GRID
   ========================================== */
.gj-plans-grid,
.gj-plans-grid-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: stretch;
}

/* ==========================================
   PLAN CARD
   ========================================== */
.gj-plan-card {
  background: var(--gj-card-bg);
  border: 1px solid var(--gj-border);
  border-radius: var(--radius);
  padding: 28px 22px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

/* linha colorida no topo de cada card */
.gj-plan-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent, var(--gj-purple));
  border-radius: var(--radius) var(--radius) 0 0;
}

.gj-plan-card:hover {
  background: var(--gj-card-hover);
  border-color: var(--gj-border-hov);
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4);
}

/* ── Profissional (featured) ── */
.gj-plan-featured {
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow:
    0 0 0 1px rgba(245, 158, 11, 0.2),
    0 8px 32px rgba(245, 158, 11, 0.12),
    0 4px 16px rgba(0, 0, 0, 0.4);
}

.gj-plan-featured:hover {
  box-shadow:
    0 0 0 1px rgba(245, 158, 11, 0.4),
    0 20px 48px rgba(245, 158, 11, 0.2),
    0 8px 24px rgba(0, 0, 0, 0.5);
}

/* ==========================================
   BADGES
   ========================================== */
.gj-plan-badge {
  position: absolute;
  top: 18px; right: -32px;
  padding: 4px 42px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transform: rotate(35deg);
  color: #fff;
  z-index: 2;
}

.gj-badge-popular {
  background: linear-gradient(90deg, #b45309 0%, #d97706 25%, #f59e0b 45%, #fde68a 50%, #f59e0b 55%, #d97706 75%, #b45309 100%);
  background-size: 300% auto;
  color: #fff;
  animation: gjBadgeShimmer 10s ease-in-out infinite;
  box-shadow: 0 2px 14px rgba(245, 158, 11, 0.4);
}

@keyframes gjBadgeShimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}
.gj-badge-discount { background: var(--gj-warning); color: #1a1a1a; }

/* ==========================================
   PLAN HEADER
   ========================================== */
.gj-plan-header {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--gj-border);
}

.gj-plan-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gj-text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.gj-plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 6px;
}

.gj-currency {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gj-muted);
  align-self: flex-start;
  margin-top: 8px;
}

.gj-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gj-text);
  line-height: 1;
  letter-spacing: -0.04em;
}

.gj-period {
  font-size: 0.85rem;
  color: var(--gj-muted);
}

.gj-plan-annual-note {
  font-size: 0.7rem;
  color: var(--gj-warning);
  margin: 0 0 4px;
}

.gj-plan-desc {
  font-size: 0.8rem;
  color: var(--gj-muted);
  margin: 0 0 6px;
  line-height: 1.4;
}

.gj-plan-limit {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gj-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3px 10px;
  border-radius: 100px;
  margin: 0;
}

.gj-plan-promo-seal {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gj-warning);
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
  padding: 5px 10px;
  border-radius: 6px;
  margin: 6px 0 0;
  line-height: 1.4;
}

.gj-cents {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gj-muted);
  align-self: flex-start;
  margin-top: 8px;
}

/* ==========================================
   FEATURES LIST
   ========================================== */
.gj-plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  flex: 1;
}

.gj-plan-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 0;
  font-size: 13px;
  color: #b0b3c6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.gj-plan-features li:last-child { border-bottom: none; }

.gj-plan-features li i {
  font-size: 13px;
  flex-shrink: 0;
}

.gj-plan-features li i.fa-check-circle  { color: var(--gj-success); }

.gj-feature-locked {
  opacity: 0.55;
}

.gj-feature-locked i.fa-times-circle { color: var(--gj-red); }

/* ==========================================
   BOTÕES CTA
   ========================================== */
.gj-plan-cta {
  text-align: center;
  margin-top: auto;
  padding-top: 4px;
}

.gj-btn {
  display: inline-block;
  width: 100%;
  padding: 11px 20px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.2px;
  border: none;
}

/* Primário — vermelho (Profissional) */
.gj-btn-primary {
  background: var(--gj-red);
  color: #fff;
  box-shadow: 0 4px 16px rgba(235, 22, 22, 0.35);
}

.gj-btn-primary:hover {
  background: #cc1010;
  box-shadow: 0 6px 22px rgba(235, 22, 22, 0.5);
  transform: translateY(-1px);
  color: #fff;
  text-decoration: none;
}

/* Outline — roxo (Solo) */
.gj-btn-outline {
  background: transparent;
  color: var(--gj-text);
  border: 1px solid var(--gj-border-hov);
}

.gj-btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
  text-decoration: none;
}

/* Azul — Iniciante */
.gj-btn-blue {
  background: #3b82f6;
  color: #fff;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.gj-btn-blue:hover {
  background: #2563eb;
  box-shadow: 0 6px 22px rgba(59, 130, 246, 0.45);
  transform: translateY(-1px);
  color: #fff;
  text-decoration: none;
}

/* ==========================================
   SOCIAL PROOF
   ========================================== */
.gj-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #10b981;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.gj-social-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  flex-shrink: 0;
  animation: gjDotPulse 2s ease-in-out infinite;
}

@keyframes gjDotPulse {
  0%, 100% { opacity: 1;   transform: scale(1);    box-shadow: 0 0 0 0 rgba(16,185,129,0.5); }
  50%       { opacity: 0.8; transform: scale(1.15); box-shadow: 0 0 0 5px rgba(16,185,129,0);  }
}

.gj-social-toast.iziToast {
  border-left: 4px solid #f59e0b !important;
  border-radius: 10px !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5) !important;
}

.gj-social-toast.iziToast .iziToast-title {
  font-weight: 700 !important;
}

/* Verde — Pro */
.gj-btn-green {
  background: #10b981;
  color: #fff;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.35);
}

.gj-btn-green:hover {
  background: #059669;
  box-shadow: 0 6px 22px rgba(16, 185, 129, 0.5);
  transform: translateY(-1px);
  color: #fff;
  text-decoration: none;
}

/* Amarelo — Elite */
.gj-btn-yellow {
  background: #f59e0b;
  color: #1a1a1a;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
}

.gj-btn-yellow:hover {
  background: #d97706;
  box-shadow: 0 6px 22px rgba(245, 158, 11, 0.45);
  transform: translateY(-1px);
  color: #1a1a1a;
  text-decoration: none;
}


/* ==========================================
   TRIAL STATUS CARD
   ========================================== */
.gj-trial-status {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--gj-border);
  border-radius: 10px;
  padding: 20px 22px;
}

.gj-trial-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.gj-trial-header-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(16,185,129,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.gj-trial-header-icon.danger { background: rgba(235,22,22,0.12); }

.gj-trial-countdown-block {
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 16px 20px;
  text-align: center;
  margin-bottom: 16px;
}

.gj-trial-countdown-label {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #6c7293;
  margin-bottom: 8px;
}

.gj-trial-countdown-value {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
  line-height: 1;
}

.gj-trial-countdown-value.danger { color: var(--gj-red); }

.gj-trial-units {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.gj-trial-unit {
  text-align: center;
}

.gj-trial-unit-val {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.gj-trial-unit-val.danger { color: var(--gj-red); }

.gj-trial-unit-lbl {
  display: block;
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #6c7293;
  margin-top: 4px;
}

.gj-trial-unit-sep {
  font-size: 1.4rem;
  color: #3a3d52;
  align-self: flex-start;
  margin-top: 4px;
}

.gj-trial-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.gj-trial-info-item {
  background: rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 10px 12px;
}

.gj-trial-info-lbl {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6c7293;
  margin-bottom: 3px;
}

.gj-trial-info-val {
  font-size: 0.84rem;
  font-weight: 600;
  color: #c8cbd8;
}

.gj-trial-progress-wrap {
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  height: 5px;
  overflow: hidden;
  margin-bottom: 6px;
}

.gj-trial-progress-bar {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--gj-success), var(--gj-red));
  transition: width 0.5s ease;
}

.gj-trial-progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  color: #6c7293;
  margin-bottom: 18px;
}

@media (max-width: 576px) {
  .gj-trial-info-grid { grid-template-columns: repeat(2, 1fr); }
  .gj-trial-unit-val  { font-size: 1.3rem; }
}

/* ==========================================
   ROI / PERSUASÃO
   ========================================== */

.gj-plans-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gj-red);
  background: rgba(235, 22, 22, 0.08);
  border: 1px solid rgba(235, 22, 22, 0.2);
  padding: 6px 18px;
  border-radius: 100px;
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 3.2rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.15 !important;
}

.gj-roi-section {
  max-width: 860px;
  margin: 20px auto 0;
  text-align: center;
}

.gj-roi-headline {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--gj-text);
  margin-bottom: 10px;
}

.gj-roi-sub {
  font-size: 1rem;
  color: var(--gj-muted);
  max-width: 580px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.gj-roi-sub strong { color: #d0d3e8; }

.gj-roi-calc {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 16px 24px;
  margin-bottom: 28px;
}

.gj-roi-calc-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.gj-roi-calc-label {
  font-size: 0.68rem;
  color: #6c7293;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gj-roi-calc-value {
  font-size: 0.95rem;
  font-weight: 700;
}

.gj-roi-calc-arrow {
  color: #3a3d52;
  font-size: 0.9rem;
  padding: 0 4px;
}

.gj-contrast {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  text-align: left;
}

.gj-contrast-col {
  border-radius: 10px;
  padding: 20px;
  border: 1px solid transparent;
}

.gj-contrast-bad {
  background: rgba(235, 22, 22, 0.05);
  border-color: rgba(235, 22, 22, 0.15);
}

.gj-contrast-good {
  background: rgba(16, 185, 129, 0.05);
  border-color: rgba(16, 185, 129, 0.15);
}

.gj-contrast-header {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}

.gj-contrast-bad  .gj-contrast-header { color: #eb1616; }
.gj-contrast-good .gj-contrast-header { color: var(--gj-success); }

.gj-contrast-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gj-contrast-col ul li {
  font-size: 0.96rem;
  color: var(--gj-muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.gj-contrast-col ul li::before {
  position: absolute;
  left: 0;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 0.7rem;
  top: 2px;
}

.gj-contrast-bad  ul li::before { content: "\f00d"; color: rgba(235,22,22,0.6); }
.gj-contrast-good ul li::before { content: "\f00c"; color: var(--gj-success); }
.gj-contrast-good ul li { color: #b0b8cc; }

.gj-contrast-bad  ul li strong { color: #e05555; font-weight: 600; }
.gj-contrast-good ul li strong { color: #e0e3ee; font-weight: 600; }

.gj-roi-punch {
  margin-top: 26px;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 700;
  color: #c8cbd8;
  font-style: italic;
  letter-spacing: 0.01em;
}

.gj-why-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: #10b981;
  font-size: 0.9rem !important;
  padding: 4px 0;
  cursor: pointer;
  transition: color 0.15s;
}

.gj-why-btn:hover,
.gj-why-btn:focus {
  color: #34d399;
  outline: none;
}

.gj-why-btn i { font-size: 0.65rem; }

/* Popover customizado */
.popover {
  background: #252836;
  border: 1px solid rgba(255,255,255,0.1);
  max-width: 320px;
}

.popover-header {
  background: #1e2130;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.popover-body { padding: 12px 14px; }

.popover .gj-popover-headline {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.popover .gj-popover-sub {
  font-size: 0.76rem;
  color: #8b8fa8;
  line-height: 1.5;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.popover .gj-popover-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.popover .gj-popover-list li {
  font-size: 0.9rem;
  color: #fff;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.fpp{
  font-size: 0.8rem;
}

.popover .gj-popover-list li i {
  color: #10b981;
  font-size: 0.7rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.popover .popover-arrow::before { border-top-color: rgba(255,255,255,0.1); }
.popover .popover-arrow::after  { border-top-color: #252836; }

.popover .gj-popover-list { margin-bottom: 12px; }

.popover .gj-popover-list--bad li  { color: #fff; }
.popover .gj-popover-list--good li { color: #fff; }

.popover .gj-popover-headline--bad  { color: #eb1616; }
.popover .gj-popover-headline--good { color: #10b981; margin-top: 4px; }

.popover .gj-popover-punch {
  font-size: 0.78rem;
  font-weight: 700;
  font-style: italic;
  color: #fff;
  margin: 10px 0 0;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.popover { max-width: 360px; }

@media (max-width: 600px) {
  .gj-contrast { grid-template-columns: 1fr; }
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 680px) {
  .gj-plans-grid,
  .gj-plans-grid-inner {
    grid-template-columns: 1fr;
  }

  .gj-plan-featured { order: -1; }

  .gj-main-card { padding: 20px 16px; }

  .gj-period-btn { padding: 9px 18px; font-size: 0.8125rem; }
}

@media (max-width: 480px) {
  .gj-plan-card { padding: 22px 16px; }
  .gj-amount    { font-size: 2.4rem; }
}

/* ==========================================
   ROI DRAMA BLOCK
   ========================================== */
.gj-roi-drama-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.gj-roi-drama {
  width: 100%;
  max-width: 680px;
  background: #1a1d2e;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 44px 44px;
  text-align: left;
}

.gj-roi-lead {
  font-size: 1.15rem;
  font-weight: 500;
  color: #8b8fa8;
  margin-bottom: 22px;
}

.gj-roi-lead strong { color: #c8cbd8; }

.gj-roi-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.gj-roi-list li {
  font-size: 1.05rem;
  padding-left: 26px;
  position: relative;
  line-height: 1.5;
}

.gj-roi-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  font-weight: 700;
}

.gj-roi-list--bad li          { color: #9ca3af; }
.gj-roi-list--bad li::before  { color: rgba(235, 22, 22, 0.75); }

.gj-roi-end {
  color: #6c7293;
  font-size: 0.93rem;
}

.gj-roi-evap {
  font-size: 1.2rem;
  font-weight: 800;
  color: #eb1616;
  font-style: italic;
  margin: 0;
  letter-spacing: -0.01em;
}

.gj-roi-separator {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin: 32px 0;
}

.gj-roi-pivot {
  font-size: 1.15rem;
  font-weight: 500;
  color: #8b8fa8;
  margin-bottom: 22px;
}

.gj-roi-pivot strong { color: #c8cbd8; }

.gj-roi-list--good li           { color: #b0b8cc; }
.gj-roi-list--good li::before   { color: #10b981; }
.gj-roi-list--good li strong    { color: #e0e3ee; }

.gj-roi-punch-block {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
}

.gj-roi-punch-main {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.gj-roi-punch-sub {
  font-size: 1rem;
  color: #6c7293;
  font-style: italic;
  margin: 0;
}

@media (max-width: 600px) {
  .gj-roi-drama { padding: 32px 24px; }
  .gj-roi-punch-main { font-size: 1.4rem; }
  .gj-roi-lead, .gj-roi-pivot { font-size: 1rem; }
  .gj-roi-list li { font-size: 0.97rem; }
}
