/* ============================================
   NINJAHUB — Design System & Global Styles
   Premium Black + Orange Tech Theme
   ============================================ */

/* === TOKENS === */
:root {
  --bg: #050505;
  --bg-alt: #0a0a0a;
  --surface: #0e0e0e;
  --card: #111111;
  --card-hover: #171717;
  --border: #1c1c1c;
  --border-light: #2a2a2a;
  --brand: #ff6a00;
  --brand-light: #ff8c33;
  --brand-dark: #d45800;
  --brand-glow: rgba(255, 106, 0, 0.25);
  --brand-subtle: rgba(255, 106, 0, 0.07);
  --text: #f3f3f3;
  --text-2: #ccc;
  --text-muted: #aaa;
  --text-dim: #949494;
  --green: #2dcc6f;
  --gold: #d4a050;
  --gold-dark: #a67830;
  --red: #ff4444;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-xs: 6px;
  --radius-pill: 999px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px rgba(255, 106, 0, 0.12), 0 0 80px rgba(255, 106, 0, 0.04);
  --tr: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
}

/* === RESET === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
}

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

::selection {
  background: var(--brand);
  color: #000;
}

/* === LAYOUT === */
.wrap {
  width: 100%;
  max-width: 1280px; /* Perfectly balanced for 4-column grids */
  margin: 0 auto;
  padding: 0 20px;
}

.wrap-narrow {
  max-width: 900px;
}

/* === TOPBAR === */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
  padding: 4px 0;
}

.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.3px;
  color: var(--text);
}

.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 6px;
}

.brand .hub {
  color: var(--brand);
}

.nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.nav .chip {
  min-height: 38px;
  padding: 8px 16px;
  font-size: 13px;
}

.chip {
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #bbb;
  transition: var(--tr);
  white-space: nowrap;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
}

.chip:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.chip-cta {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  border-color: transparent;
  color: #fff;
  font-weight: 600;
}

.chip-cta:hover {
  box-shadow: 0 0 20px var(--brand-glow);
  transform: translateY(-1px);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1.5px solid var(--brand);
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-size: 18px;
  transition: var(--tr);
  background: rgba(255, 106, 0, 0.08);
  box-shadow: 0 0 12px rgba(255, 106, 0, 0.15);
}

.menu-toggle:hover {
  background: rgba(255, 106, 0, 0.15);
  box-shadow: 0 0 20px rgba(255, 106, 0, 0.3);
  transform: scale(1.05);
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(8, 8, 8, 0.98);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 106, 0, 0.15);
  padding: 12px 16px;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile .chip {
  width: 100%;
  text-align: center;
  min-height: 36px;
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 8px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: var(--tr);
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  border-color: transparent;
  color: #060606;
  font-weight: 800;
}

.btn-primary:hover {
  box-shadow: 0 4px 24px rgba(255, 106, 0, 0.4);
  transform: translateY(-1px);
  color: #060606;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: transparent;
  color: #0a0600;
  font-weight: 800;
}

.btn-gold:hover {
  box-shadow: 0 4px 24px rgba(212, 160, 80, 0.3);
  transform: translateY(-1px);
  color: #0a0600;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--text-dim);
  color: var(--text);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
  border-radius: var(--radius-pill);
}

.btn-block {
  width: 100%;
}

.btn-hotmart,
.btn-kirvano {
  background: transparent;
  border: 1px solid rgba(255, 106, 0, 0.25);
  color: var(--text-muted);
  font-weight: 700;
}

.btn-hotmart {
  animation: pulse-hotmart 2s ease-in-out infinite;
}

.btn-hotmart:hover,
.btn-kirvano:hover {
  border-color: var(--brand);
  color: var(--brand);
  box-shadow: 0 0 16px rgba(255, 106, 0, 0.2);
}

.btn-hotmart:hover {
  animation: none;
}

@keyframes pulse-hotmart {

  0%,
  100% {
    border-color: rgba(255, 106, 0, 0.25);
    box-shadow: none;
  }

  50% {
    border-color: #ff6a00;
    box-shadow: 0 0 14px 2px rgba(255, 106, 0, 0.18);
  }
}

.pulse-community {
  animation: pulse-hotmart 2.5s ease-in-out infinite;
}

.pulse-community:hover {
  animation: none;
  background: rgba(255, 106, 0, 0.1) !important;
}

/* === HERO === */
.hero {
  padding: 64px 0 40px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  text-align: center;
  max-width: 1050px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-subtle);
  border: 1px solid rgba(255, 106, 0, 0.2);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 28px;
  letter-spacing: 0.3px;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 1; /* Fix dimming */
    transform: scale(1.5);
  }
}

.hero h1 {
  font-size: clamp(34px, 7vw, 60px);
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero h1 .accent {
  color: var(--brand);
}

.hero-sub {
  font-size: clamp(16px, 3.5vw, 20px);
  color: var(--text-muted);
  margin-bottom: 12px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-mini {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 36px;
}

.hero-mini strong {
  color: var(--text-2);
}

.hero-cta svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s;
}

.hero-cta:hover svg {
  transform: translateX(3px);
}

.hero-banner {
  margin-top: 48px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}

.hero-banner img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.hero-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, transparent 50%);
}

/* === STATS BAR === */
.stats {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 16px;
  text-align: center;
}
.stat-item {
  flex: 1 1 220px;
  max-width: 300px;
}

.stat-item h3 {
  font-size: clamp(28px, 5vw, 40px);
  color: var(--brand);
  font-weight: 800;
}

.stat-item p {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
}

/* === TOOLS MARQUEE === */
.tools-strip {
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.tools-strip-label {
  text-align: center;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--text-dim);
  margin-bottom: 14px;
}

.tools-strip>div {
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.tools-marquee {
  display: flex;
  gap: 16px;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.tool-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  flex-shrink: 0;
}

.tool-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

@keyframes marquee {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-33.33%)
  }
}

/* === SECTION HEADERS === */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: clamp(24px, 5vw, 38px);
  margin-bottom: 12px;
}

.section-header h2 .accent {
  color: var(--brand);
}

.section-header p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
}

/* === FEATURES === */
.features {
  padding: 80px 0 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--tr);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  border-color: rgba(255, 106, 0, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--brand-subtle);
  border: 1px solid rgba(255, 106, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === PLANS === */
.plans {
  padding: 80px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.plan-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-dim);
  opacity: 0.8;
  margin-top: 40px;
  width: 100%;
  display: block;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
  margin-bottom: 50px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.plan-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%; /* Ensure card fills grid cell height */
  position: relative;
  transition: var(--tr);
}

.rec-badge-inside {
  background: #ff6a00;
  color: #fff;
  text-align: center;
  font-size: 11px; /* Robust font size */
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px; /* Bigger vertical padding */
  border-radius: 13px 13px 0 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  margin: 0 !important; /* Force no margin shifts */
}

.plan-card.recommended {
  border-color: #ff6a00;
  box-shadow: var(--shadow-glow);
  z-index: 2;
  margin-top: 25px;
}

.plan-card:not(.recommended) {
  margin-top: 25px;
}

.plan-card:hover {
  transform: translateY(-4px);
}

.plan-top {
  padding: 10px 10px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 106, 0, 0.1);
  margin-bottom: 25px;
  min-height: 180px; /* More vertical space for headers */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  position: relative;
}

.plan-features {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 15px 30px !important; /* Significantly wider gaps */
  padding: 0 20px;
  margin: 25px 0;
}

.plan-features li {
  min-height: auto;
  font-size: 14.5px; /* Standardized and larger */
  display: flex;
  align-items: center;
  gap: 4px; /* Tight and clean */
  white-space: nowrap;
  color: var(--text-2);
}

.plan-features li strong {
  font-size: 14.5px;
  font-weight: 700;
}

.plan-feature-highlight {
  background: linear-gradient(135deg, #ff6a00 0%, #ff8c3a 100%);
  color: #fff !important;
  border-radius: 6px;
  padding: 8px 12px;
  margin-top: auto;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px; /* Bigger and bolder */
  font-family: var(--font-display);
  box-shadow: 0 4px 12px rgba(255, 106, 0, 0.3);
  width: 100%; /* Robust full-width */
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes pulse-small {
  0% { transform: scale(1); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); }
  50% { transform: scale(1.02); box-shadow: 0 4px 20px rgba(255, 106, 0, 0.2); }
  100% { transform: scale(1); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); }
}

.plan-top > div:last-of-type {
  width: 100%;
  margin-top: auto;
  display: flex;
  justify-content: center;
}

.plan-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.plan-tag-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--brand-subtle);
  border: 1px solid rgba(255, 106, 0, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.plan-price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.plan-price .cur {
  font-size: 18px;
  font-weight: 600;
  vertical-align: super;
  margin-right: 2px;
}

.plan-price .per {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
}

.plan-price-sub {
  font-size: 14.5px; /* Matched to tool names for harmony */
  color: var(--text-dim);
  margin-top: 6px;
}

/* Merged into consolidated block above */

.plan-features li .ic {
  width: auto;
  height: auto;
  background: none !important;
  border: none !important;
  font-size: 12px;
  margin-right: 2px;
  display: inline-flex;
  align-items: center;
}

.plan-features li.on .ic {
  color: #2dcc6f; /* Success Green */
}

.plan-features li.off .ic {
  color: #ff4444; /* Error Red */
}

.plan-features li.off {
  color: var(--text-dim);
  opacity: 1; /* Fix dimming */
}

.plan-features li.off strong {
  text-decoration: line-through;
  opacity: 1; /* Fix dimming */
}

.plan-features li.soon {
  color: var(--text-dim);
  opacity: 0.8;
}

.plan-features li.soon .ic {
  background: rgba(255, 106, 0, 0.1);
  color: var(--brand);
}

.plan-limits {
  margin-top: 25px;
  padding-top: 15px;
  border-top: 1px dashed var(--border-light);
}

.plan-limits-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px; /* Standardized and larger */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.plan-limits-title i {
  color: var(--brand);
  opacity: 1; /* Fix dimming */
}

.limits-grid {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 100px; /* Compacted further */
}

.limit-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: var(--tr);
}

.limit-item:hover {
  border-color: rgba(255, 106, 0, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.limit-name {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-muted);
}

.limit-value {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text);
  font-family: var(--font-display);
}

.badge-unlimited {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ff6a00;
  background: rgba(255, 106, 0, 0.1);
  border: 1px solid rgba(255, 106, 0, 0.4);
  padding: 3px 10px;
  border-radius: 12px;
  margin-left: auto;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.badge-unlimited i {
  font-size: 10px !important;
  color: #ff6a00;
  display: inline-block;
  transform: translateY(1px);
}

.badge-unlimited span.inf {
  display: none; /* Replaced by FA */
}

.plan-features li.soon {
  color: var(--text-muted);
  font-style: italic;
}

.plan-features li.soon .ic {
  background: rgba(255, 162, 89, 0.1);
  color: var(--gold);
}

.plan-features li.hl {
  font-weight: 700;
  color: var(--brand-light);
}

.badge-test {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: #00d2ff; /* Glass Blue */
  background: rgba(0, 210, 255, 0.12);
  border: 1px solid rgba(0, 210, 255, 0.4);
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 4px;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.tool-favicon {
  width: 15px;
  height: 15px;
  border-radius: 3px;
  margin: 0 2px; /* Tightened margin */
  display: inline-block;
  vertical-align: middle;
}

.plan-features li.hl .ic {
  background: rgba(255, 106, 0, 0.2);
  color: var(--brand);
}

.btn-current-plan {
  background: rgba(255, 106, 0, 0.1);
  color: #ff6a00;
  border: 1px solid rgba(255, 106, 0, 0.3);
  pointer-events: none;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.plan-card.recommended {
  border-color: rgba(255, 106, 0, 0.4);
  box-shadow: 0 0 30px rgba(255, 106, 0, 0.1);
}

.plan-card.recommended::after {
  display: none;
}

/* === HOW IT WORKS === */
.how {
  padding: 80px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  counter-reset: step;
}

.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: var(--tr);
}

.step-card:hover {
  border-color: rgba(255, 106, 0, 0.3);
  transform: translateY(-3px);
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-subtle);
  border: 1px solid rgba(255, 106, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* === VIP BOX === */
.vip-info {
  padding: 40px 0;
}

.vip-box {
  background: var(--card);
  border: 1px solid rgba(255, 106, 0, 0.15);
  border-radius: var(--radius);
  padding: 28px 32px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.vip-box h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--gold);
}

.vip-box p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 8px;
}

.vip-box p:last-child {
  margin-bottom: 0;
}

.vip-box strong {
  color: var(--text);
}

.vip-box a {
  color: var(--brand);
  font-weight: 600;
}

.vip-box a:hover {
  color: var(--brand-light);
}

/* === FAQ === */
.faq {
  padding: 80px 0;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--tr);
}

.faq-item:hover {
  border-color: rgba(255, 106, 0, 0.2);
}

.faq-q {
  width: 100%;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: var(--tr);
  cursor: pointer;
}

.faq-q:hover {
  color: var(--brand);
}

.faq-q .arrow {
  font-size: 18px;
  transition: transform 0.3s;
  color: var(--text-dim);
}

.faq-item.open .faq-q .arrow {
  transform: rotate(45deg);
  color: var(--brand);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-a-inner {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* === SEO CONTENT === */
.seo-block {
  padding: 60px 0;
}

.seo-content {
  max-width: 800px;
  margin: 0 auto;
}

.seo-content h2 {
  font-size: 22px;
  margin-bottom: 16px;
}

.seo-content h2 .accent {
  color: var(--brand);
}

.seo-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.seo-content p:last-child {
  margin-bottom: 0;
}

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-col-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  padding: 8px 0;
  transition: var(--tr);
}

.footer-col a:hover {
  color: var(--brand);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--text);
}

.footer-brand-text .hub {
  color: var(--brand);
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.footer-bottom a {
  color: var(--brand);
}

.footer-bottom a:hover {
  color: var(--brand-light);
}

/* === LEGAL PAGES === */
.legal-page {
  min-height: 100vh;
  padding: 80px 20px 60px;
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}

.legal-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.legal-title {
  font-size: clamp(24px, 5vw, 40px);
  font-weight: 800;
  margin-bottom: 10px;
}

.legal-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
}

.legal-content h2 {
  color: var(--brand);
  font-size: 1.2rem;
  margin: 28px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--brand);
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-content ul {
  padding-left: 24px;
  list-style: disc;
}

.legal-content li {
  margin-bottom: 6px;
}

.legal-content strong {
  color: var(--text);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-weight: 600;
  margin-bottom: 28px;
  transition: var(--tr);
}

.back-link:hover {
  transform: translateX(-5px);
}

.update-date {
  text-align: center;
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 0.9rem;
}

.highlight-box {
  background: rgba(255, 106, 0, 0.08);
  border-left: 4px solid var(--brand);
  padding: 14px 20px;
  margin: 18px 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* === LOGIN / MEMBER PAGES === */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-image:
    radial-gradient(circle at 50% 0%, rgba(255, 106, 0, 0.05) 0%, transparent 50%),
    linear-gradient(rgba(255, 106, 0, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 106, 0, 0.02) 1px, transparent 1px);
  background-size: 100% 100%, 40px 40px, 40px 40px;
}

.auth-card {
  width: 100%;
  max-width: 420px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
}

.auth-logo {
  text-align: center;
  margin-bottom: 32px;
}

.auth-logo img {
  height: 60px;
  margin: 0 auto 12px;
}

.auth-logo h1 {
  font-size: 22px;
  font-weight: 700;
}

.auth-logo h1 span {
  color: var(--brand);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
}

.form-input {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 15px;
  transition: var(--tr);
}

.form-input:focus {
  border-color: var(--brand);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.15);
}

.form-input::placeholder {
  color: var(--text-dim);
}

/* === MEMBER DASHBOARD === */
.dash-layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: var(--card);
  border-right: 1px solid var(--border);
  padding: 20px;
  display: flex;
  flex-direction: column;
  position: fixed;
  height: 100vh;
  z-index: 100;
}

.sidebar .logo-area {
  margin-bottom: 32px;
  text-align: center;
}

.sidebar .logo-area img {
  max-width: 130px;
  margin: 0 auto;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: var(--radius-xs);
  transition: var(--tr);
  font-weight: 500;
  font-size: 14px;
}

.nav-item:hover,
.nav-item.active {
  background: rgba(255, 106, 0, 0.1);
  color: var(--brand);
}

.nav-item i {
  width: 18px;
  text-align: center;
}

.user-profile {
  padding-top: 18px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 40px;
  height: 40px;
  background: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #050505;
}

.user-info .name {
  font-size: 14px;
  font-weight: 600;
}

.user-info .plan {
  font-size: 12px;
  color: var(--brand);
}

.main-content {
  flex: 1;
  margin-left: 260px;
  padding: 36px;
  max-width: 1400px;
}

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 16px;
}

.welcome-text h1 {
  font-size: clamp(22px, 4vw, 28px);
  margin-bottom: 4px;
}

.welcome-text p {
  color: var(--text-muted);
  font-size: 14px;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.tool-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  transition: var(--tr);
  position: relative;
  overflow: hidden;
}

.tool-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}

.tool-card:hover {
  border-color: var(--brand);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.tool-card:hover::before {
  transform: scaleX(1);
}

.tool-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}

.tool-icon-lg {
  font-size: 28px;
  color: var(--text);
}

.status-badge {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: var(--radius-xs);
  background: rgba(45, 204, 111, 0.1);
  color: var(--green);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-badge.soon {
  background: rgba(212, 160, 80, 0.1);
  color: var(--gold);
}

.tool-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
  font-family: var(--font-display);
}

.tool-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.launch-btn {
  display: block;
  width: 100%;
  padding: 11px;
  background: transparent;
  border: 1px solid var(--brand);
  color: var(--brand);
  text-align: center;
  border-radius: var(--radius-xs);
  font-weight: 600;
  font-size: 13px;
  transition: var(--tr);
  letter-spacing: 0.3px;
}

.launch-btn:hover {
  background: var(--brand);
  color: #060606;
  box-shadow: 0 0 15px rgba(255, 106, 0, 0.2);
}

.mobile-menu-btn {
  display: none !important;
}

/* === TOAST === */
.toast-msg {
  position: fixed;
  bottom: 24px;
  left: 50%;
  z-index: 9999;
  transform: translateX(-50%) translateY(20px);
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(255, 106, 0, 0.4);
  opacity: 0;
  transition: all 0.3s ease;
  text-align: center;
  max-width: 90vw;
  pointer-events: none;
}

.toast-msg.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width:960px) {
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .plan-card.recommended {
    transform: scale(1);
  }

  .plan-card.recommended:hover {
    transform: translateY(-4px);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:768px) {
  .sidebar {
    display: none;
  }

  .mobile-menu-btn {
    display: inline-flex !important;
  }

  .main-content {
    margin-left: 0;
    padding: 20px;
  }

  .dash-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .tools-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width:640px) {
  .nav .chip:not(.chip-cta) {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .plans-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero {
    padding: 40px 0 24px;
  }

  .hero-banner img {
    height: 160px;
  }

  .features,
  .plans,
  .faq,
  .how {
    padding: 50px 0;
  }

  .vip-box {
    padding: 20px 18px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .stat-item h3 {
    font-size: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
  }

  .footer-col-title {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .footer-col a {
    font-size: 12px;
    padding: 6px 0;
  }

  .footer {
    padding: 20px 0 14px;
  }

  .footer-bottom {
    padding-top: 12px;
  }

  .footer-brand-text {
    font-size: 13px;
  }

  .footer-bottom p {
    font-size: 11px;
  }

  .legal-container {
    padding: 24px 18px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .auth-card {
    padding: 28px 20px;
  }

}

.launch-btn {
  display: block;
  width: 100%;
  padding: 11px;
  background: transparent;
  border: 1px solid var(--brand);
  color: var(--brand);
  text-align: center;
  border-radius: var(--radius-xs);
  font-weight: 600;
  font-size: 13px;
  transition: var(--tr);
  letter-spacing: 0.3px;
}

.launch-btn:hover {
  background: var(--brand);
  color: #060606;
  box-shadow: 0 0 15px rgba(255, 106, 0, 0.2);
}

.mobile-menu-btn {
  display: none !important;
}

/* === TOAST === */
.toast-msg {
  position: fixed;
  bottom: 24px;
  left: 50%;
  z-index: 9999;
  transform: translateX(-50%) translateY(20px);
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(255, 106, 0, 0.4);
  opacity: 0;
  transition: all 0.3s ease;
  text-align: center;
  max-width: 90vw;
  pointer-events: none;
}

.toast-msg.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === NINJABR PREMIUM PRICING STYLE === */
.plans .wrap {
  max-width: 1400px; /* Increased to fit prices and '/mês' without breaking */
  width: 95%;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px; /* More breathing room between cards */
  padding: 45px 0 20px; /* Increased top padding to fit external floating badge */
}

.pricing-card.ninjabr-style {
  background: rgba(20, 20, 20, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  display: flex !important;
  flex-direction: column !important;
  height: 720px !important; /* Fixed height! flex:1 below will handle the rest */
  min-height: 720px !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.pricing-card.ninjabr-style:hover {
  border-color: rgba(255, 106, 0, 0.4);
  box-shadow: 0 0 40px rgba(255, 106, 0, 0.15);
  transform: translateY(-5px);
}

.pricing-card.ninjabr-style.recommended {
  border-color: rgba(255, 106, 0, 0.5);
  border-top: 4px solid #ff7a18; /* Replaces linear gradient line to cleanly follow border-radius */
  box-shadow: 0 0 50px rgba(255, 106, 0, 0.15);
}

.rec-badge-top {
  display: inline-flex;
  background: rgba(255, 106, 0, 0.15);
  border: 1px solid rgba(255, 106, 0, 0.3);
  color: var(--brand);
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  letter-spacing: 2px;
  z-index: 999;
  position: absolute;
  top: -40px; /* Pushed completely outside the card to avoid any overlap */
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
}

.card-header-dark {
  padding: 25px 24px 10px; /* Reduced vertical padding */
}

.card-header-dark h3 {
  font-family: 'Orbitron', var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.card-header-dark h3 i {
  color: var(--brand);
  font-size: 18px;
}

.price-container {
  padding: 5px 24px 15px; /* Reduced vertical padding */
  text-align: center;
}

.price-container .current-price {
  white-space: nowrap;
}

.price-container .amount {
  font-family: 'Orbitron', var(--font-display);
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  color: #fff;
}

.price-container .currency {
  font-size: 20px;
  font-weight: 900;
  margin-right: 4px;
}

.price-container .period {
  font-size: 13px;
  color: var(--text-muted);
  opacity: 0.8;
}

.price-container .subtext {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 5px; /* Reduced margin */
  opacity: 0.8;
}

.generations-banner {
  background: transparent;
  padding: 14px 4px;
  margin: 5px 24px 20px;
  border-radius: 12px;
  color: var(--brand);
  font-family: 'Orbitron', var(--font-display);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0px;
  border: 2px solid var(--brand);
  animation: bannerPulse 2s ease-in-out infinite;
  box-shadow: 0 0 15px rgba(255, 106, 0, 0.2), inset 0 0 15px rgba(255, 106, 0, 0.05);
  white-space: nowrap;
}

@keyframes bannerPulse {
  0% { border-color: rgba(255, 106, 0, 0.5); box-shadow: 0 0 5px rgba(255, 106, 0, 0.1), inset 0 0 5px rgba(255, 106, 0, 0.02); }
  50% { border-color: rgba(255, 106, 0, 1); box-shadow: 0 0 25px rgba(255, 106, 0, 0.4), inset 0 0 15px rgba(255, 106, 0, 0.08); }
  100% { border-color: rgba(255, 106, 0, 0.5); box-shadow: 0 0 5px rgba(255, 106, 0, 0.1), inset 0 0 5px rgba(255, 106, 0, 0.02); }
}

.pricing-features-container {
  flex: 1; /* Take all available space in the card */
  overflow-y: auto;
  min-height: 0;
  padding-right: 12px;
  margin: 0 24px 15px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  /* Premium Dynamic Scrollbar */
  scrollbar-width: thin;
  scrollbar-color: #ff6a00 rgba(255, 255, 255, 0.05);
}

.pricing-features-container::-webkit-scrollbar {
  width: 5px;
}

.pricing-features-container::-webkit-scrollbar-thumb {
  background: #ff6a00;
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(255, 106, 0, 0.5);
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #fff;
  font-weight: 600;
  width: 100%;
  white-space: nowrap;
}

.pricing-feature-item > span:last-child {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pricing-feature-item i.lucide-check {
  font-size: 10px;
}

.feature-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%; /* Official uses rounded-full */
  background: rgba(45, 204, 111, 0.15);
  border: 1px solid rgba(45, 204, 111, 0.3);
  color: #2dcc6f;
  flex-shrink: 0;
}

.feature-check.off {
  background: rgba(255, 0, 0, 0.15); /* Vibrant Red background */
  border-color: rgba(255, 0, 0, 0.4); /* Vibrant Red border */
  color: #ff0000; /* Pure vibrant Red X */
  opacity: 1 !important;
}

.pricing-feature-item.off span {
  opacity: 0.4;
  text-decoration: line-through;
}

.badge-teste {
  font-size: 7.5px;
  background: rgba(255, 165, 0, 0.12);
  border: 1px solid rgba(255, 165, 0, 0.25);
  color: #ffa500;
  padding: 1px 5px;
  border-radius: 10px;
  text-transform: uppercase;
  font-weight: 900;
  margin-left: 6px;
  white-space: nowrap;
  display: inline-block;
  vertical-align: middle;
  line-height: normal;
}

/* Specific shrink for limits section to look even sleeker */
.limits-grid .badge-teste {
  font-size: 6.5px;
  padding: 0px 4px;
  margin-left: 4px;
  opacity: 0.9;
}

.badge-unlimited-official {
  margin-left: auto;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--brand);
  background: rgba(255, 106, 0, 0.15);
  border: 1px solid rgba(255, 106, 0, 0.3);
  padding: 2px 10px;
  border-radius: 10px;
  white-space: nowrap;
}

.daily-limits-wrapper {
  padding: 15px 0; /* Reduced padding since it's now inside the scroll container */
  text-align: left;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 10px;
}

.daily-limits-title {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
}

.limits-grid {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.limit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 8px 14px;
  width: 100%;
}

.limit-row span:first-child {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  min-width: 70px;
}

.limit-row span:last-child {
  font-size: 13px;
  color: #fff;
  font-weight: 900;
  font-family: 'Inter', sans-serif;
}

.btn-hotmart-new {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px;
  width: 90% !important;
  margin: auto auto 25px !important;
  padding: 18px 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ff6a00, #ff8c3a);
  color: #fff !important;
  font-family: 'Orbitron', var(--font-display);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 6px 25px rgba(255, 106, 0, 0.3);
  text-decoration: none;
}

.btn-hotmart-new:hover {
  transform: translateY(-4px) scale(1.02);
  filter: brightness(1.1);
  box-shadow: 0 10px 35px rgba(255, 106, 0, 0.5);
}

.vip-footer-links {
  display: flex;
  gap: 12px;
  padding: 10px 24px 25px;
}

.vip-footer-links a {
  flex: 1;
  text-align: center;
  padding: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: var(--brand);
  font-size: 12px;
  font-family: 'Orbitron', var(--font-display);
  font-weight: 800;
  text-decoration: none;
  transition: all 0.2s;
}

.vip-footer-links a:hover {
  background: rgba(255, 106, 0, 0.15);
  border-color: var(--brand);
}

.expand-features-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.8);
  border: 1px solid rgba(255, 106, 0, 0.4);
  color: var(--brand);
  margin: -5px auto 15px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 10;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.expand-features-btn:hover {
  background: var(--brand);
  color: #000;
  transform: scale(1.15);
  box-shadow: 0 0 25px rgba(255, 106, 0, 0.6);
}

.expand-features-btn i {
  font-size: 14px;
  transition: transform 0.4s;
}

.pricing-card.ninjabr-style.expanded .expand-features-btn i {
  transform: rotate(180deg);
}

.pricing-features-container.expanded {
  height: auto !important;
  max-height: 2000px !important; /* Allow growth */
  overflow: visible !important;
}

.pricing-card.ninjabr-style.expanded {
  height: auto !important;
  min-height: 720px;
  padding-bottom: 20px;
}

.tool-favicon-feature {
  width: 18px;
  height: 18px;
  border-radius: 5px;
}

.infinity-symbol {
  font-size: 20px;
  margin-left: 8px;
  color: var(--brand);
  font-weight: 900;
  vertical-align: middle;
}

/* === VIP INFO MODAL SYSTEM === */
.vip-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.vip-modal-overlay.active {
  display: flex !important;
  opacity: 1;
}

.vip-modal-content {
  background: linear-gradient(135deg, #1a1a1f, #111116);
  border: 1px solid rgba(255, 106, 0, 0.4);
  border-radius: 20px;
  width: 90%;
  max-width: 400px;
  padding: 30px;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(255, 106, 0, 0.1);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
}

.vip-modal-overlay.active .vip-modal-content {
  transform: scale(1);
}

.vip-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 106, 0, 0.1);
  border: 1px solid rgba(255, 106, 0, 0.3);
  color: var(--brand);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.vip-modal-close:hover {
  background: var(--brand);
  color: #000;
}

.vip-modal-icon {
  font-size: 40px;
  color: var(--brand);
  margin-bottom: 20px;
  filter: drop-shadow(0 0 15px rgba(255, 106, 0, 0.4));
}

.vip-modal-title {
  font-family: 'Orbitron', var(--font-display);
  font-size: 20px;
  color: #fff;
  margin-bottom: 15px;
}

.vip-modal-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 0;
}

.vip-modal-text strong {
  color: var(--brand);
}

/* Badge Refinements */
.badge-teste {
  font-size: 8px; /* Standard visible size */
  background: rgba(255, 165, 0, 0.15);
  border: 1px solid rgba(255, 165, 0, 0.3);
  color: #ffa500;
  padding: 1px 6px;
  border-radius: 10px;
  text-transform: uppercase;
  font-weight: 800;
  margin-left: 6px;
  white-space: nowrap;
  display: inline-block;
  vertical-align: middle;
}

/* Slightly more compact but still very readable in limits */
.limits-grid .badge-teste {
  font-size: 7.5px !important;
  padding: 1px 5px !important;
  margin-left: 5px !important;
  opacity: 1 !important;
  background: rgba(255, 165, 0, 0.15) !important;
  border: 1px solid rgba(255, 165, 0, 0.25) !important;
}

@keyframes vipPulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 106, 0, 0.4); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(255, 106, 0, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 106, 0, 0); }
}

.vip-info-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  margin-left: 10px;
}

.vip-info-icon {
  font-size: 20px;
  color: var(--brand);
  cursor: pointer;
  background: rgba(255, 106, 0, 0.1);
  border-radius: 50%;
  padding: 2px;
  transition: all 0.3s ease;
  animation: vipPulse 2s infinite;
}

.vip-info-icon:hover {
  animation: none;
  transform: scale(1.3);
  background: var(--brand);
  color: #000;
  filter: drop-shadow(0 0 15px rgba(255, 106, 0, 0.8));
}

/* === RESPONSIVE PRICING ADJUSTMENTS === */
@media (max-width: 1300px) {
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .pricing-card.ninjabr-style {
    margin-bottom: 20px;
  }
}


/* PageSpeed contrast fix */
.plan-note { color: #b0b0b0 !important; }
