/**
 * General Knowledge page (/general-knowledge/) — complete standalone sheet.
 * 1) base tokens + fonts + reset (shared design system)
 * 2) shared chrome: announce bar, header/nav/mega-menu, footer, CTA
 * 3) page sections: 'What is TrueProfit' grid + commission/earnings calculator
 * Migrated out of the page's embedded <style> so the content is block-editable.
 */

/* ---- base: tokens, fonts, reset ---- */
/* Front page styles — extracted from index.html */


/* Global Font Override to enforce Plus Jakarta Sans */
body, h1, h2, h3, h4, h5, h6, input, button, select, textarea, span, p, a, div, li, ul, ol, th, td, label {
  font-family: 'Plus Jakarta Sans', 'Plus_Jakarta_Sans', sans-serif !important;
}
/* =========================================
   LOCAL FONTS — Plus Jakarta Sans
   ========================================= */
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../fonts/PlusJakartaSans-VariableFont_wght.ttf') format('truetype-variations'),
       url('../fonts/PlusJakartaSans-VariableFont_wght.ttf') format('truetype');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../fonts/PlusJakartaSans-Italic-VariableFont_wght.ttf') format('truetype-variations'),
       url('../fonts/PlusJakartaSans-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 200 800;
  font-style: italic;
  font-display: swap;
}

/* =========================================
   DESIGN TOKENS — TrueProfit Homepage Style
   ========================================= */
:root {
  --green: #1a7a5e;
  --green-bright: #23c48c;
  --green-light: rgba(35,196,140,0.1);
  --green-border: rgba(35,196,140,0.25);

  --navy: #0b1826;
  --navy-mid: #0d2233;
  --navy-teal: #0a2535;

  --light: #f7f8fa;
  --light-alt: #f0f2f5;
  --white: #ffffff;

  --text-dark: #0f1724;
  --text-body: #374151;
  --text-muted: #6b7280;
  --text-light: #94a3b8;

  --border-light: #e5e7eb;
  --border-dark: rgba(255,255,255,0.08);

  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-pill: 100px;
  --transition: 0.2s cubic-bezier(0.4,0,0.2,1);

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-card: 0 2px 8px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.04);
}

/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth;  }
body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6; 
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 3px; }

/* ---- shared chrome: header / nav / footer / cta ---- */
/* =========================================
   ANNOUNCEMENT BAR
   ========================================= */
#announce-bar {background: #0a2a1e;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 24px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  letter-spacing: 0.01em;}
#announce-bar a {background: var(--green-bright);
  color: #071424;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 6px;
  font-size: 13px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: var(--transition);}
#announce-bar a:hover {background: #2dd498;}
#announce-bar .close-btn {position: absolute;
  right: 16px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 2px 6px;
  transition: var(--transition);}
#announce-bar .close-btn:hover {color: #fff;}
.announce-star {color: var(--green-bright);}
/* =========================================
   HEADER
   ========================================= */
#header {position: sticky; top: 0;
  
  
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  height: 72px;
  display: flex;
  align-items: center;}
.header-inner {max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 20px;}
.header-logo {display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;}
.logo-img {height: 42px;
  width: auto;
  object-fit: contain;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: block;}
.header-collapse { display: contents; }
.header-nav {display: flex;
  gap: 2px;
  justify-content: flex-start;}
.header-nav a {font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  padding: 6px 10px;
  border-radius: 7px;
  transition: var(--transition);
  white-space: nowrap;}
.header-nav > a:hover {background: var(--light); color: var(--text-dark);}
.header-nav > a.active {color: #1d9e75 !important; font-weight: 700;}
.header-nav > a.active:hover {color: #1d9e75 !important;}
/* Resources Hover & Active States */
.header-nav .nav-dropdown-trigger:hover,
.nav-dropdown-wrapper:hover .nav-dropdown-trigger,
.nav-dropdown-wrapper.active .nav-dropdown-trigger,
.header-nav .nav-dropdown-trigger.active {color: #1d9e75 !important;
  font-weight: 700;
  background: transparent;
  text-decoration: none !important;}
.header-actions {display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;}
.btn-ghost {font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  background: transparent;
  border: 1.5px solid var(--border-light);
  padding: 8px 16px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;}
.btn-ghost:hover {border-color: #9ca3af; background: var(--light); transform: translateY(-2px);}
.btn-cta {font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: var(--green);
  border: none;
  padding: 9px 18px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;}
.btn-cta:hover {background: #155f48; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(26,122,94,0.3);}
.hamburger {display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;}
.hamburger span {display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);}
/* =========================================
   MEGA MENU STYLES
   ========================================= */
.nav-dropdown-wrapper {position: relative;
  display: flex;
  align-items: center;}
.mega-menu {position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 1160px;
  min-width: unset;
  max-width: calc(100vw - 48px);
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 99999;
  display: flex;
  overflow: hidden; /* overflow: hidden only on the card itself */
  padding: 0;}
.nav-dropdown-wrapper:hover .mega-menu {opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);}
.mega-zone {padding: 32px 32px 40px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;}
.mega-zone-1 {background: #ffffff;
  flex: 0 0 35%;
  min-width: 0;}
.mega-zone-2 {background: #f0fdf4;
  border-left: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light);
  flex: 0 0 25%;
  min-width: 0;}
.mega-zone-3 {background: #002d33;
  color: #ffffff;
  flex: 1;
  min-width: 0;
  padding: 32px 40px 40px 40px;}
.mega-pill-badge {display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #0a2540;
  border: 1px solid #cbd5e1;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  transition: all 0.2s ease;
  letter-spacing: 0.05em;
  align-self: flex-start;
  text-decoration: none;}
.mega-pill-badge:hover {border-color: #1d9e75;
  color: #1d9e75;
  background: #f0fdf4;}
.mega-pill-badge svg {color: #1d9e75;}
.mega-pill-badge-dark {color: #ffffff !important;
  border-color: rgba(255,255,255,0.4) !important;}
.mega-pill-badge-dark:hover {border-color: #2dd498 !important;
  color: #2dd498 !important;
  background: rgba(45, 212, 152, 0.1) !important;}
.mega-pill-badge-dark svg {color: #ffffff !important;}
.mega-pill-badge-dark:hover svg {color: #2dd498 !important;}
.mega-links-grid {display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 16px;
  margin-bottom: 32px;}
.mega-links-list {display: flex;
  flex-direction: column;
  gap: 16px;}
.mega-link-item {font-size: 14px;
  font-weight: 600;
  color: #334155;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;}
.mega-link-item:hover {color: #1d9e75;}
.mega-section-label {font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;}
.mega-gems-list {display: flex;
  flex-direction: column;
  gap: 16px;}
.mega-gem-card {display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.2s ease;
  text-decoration: none;}
.mega-gem-card:hover .mega-gem-img {transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);}
.mega-gem-card:hover .mega-gem-text {color: #1d9e75;}
.mega-gem-img {width: 92px;
  height: 64px;
  border-radius: 12px;
  background: #e6fbf1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;}
.mega-gem-img img {width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 2px;
  transition: transform 0.2s ease;}
.mega-gem-text {font-size: 13px;
  font-weight: 500;
  color: #475569;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;}
.mega-asset-card {display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background: #1a3a4a;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 10px;
  transition: all 0.25s ease;
  position: relative;
  text-decoration: none;
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;}
.mega-asset-card:last-child {margin-bottom: 0;}
.mega-asset-card:hover {filter: brightness(1.15);
  border-color: rgba(0,200,150,0.3) !important;}
.mega-asset-card::after {content: "+";
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1;
  z-index: 5;}
.mega-asset-content {position: relative;
  z-index: 3;
  flex: 1;
  padding-right: 20px;
  box-sizing: border-box;}
.mega-asset-name {font-size: 14px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 6px;
  transition: color 0.25s ease;}
.mega-asset-desc {font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
  word-wrap: break-word;}
.mega-asset-card:hover .mega-asset-name {color: #2dd498;}
.mega-mcp-card {display: flex;
  align-items: center;
  gap: 12px;
  background: #e6fbf1;
  border: 1px dashed #1d9e75;
  border-radius: 8px;
  padding: 12px 16px;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-top: auto;
  box-sizing: border-box;
  width: 100%;}
.mega-mcp-card:hover {background: #d1f7e4 !important;
  border-color: #157347 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(29, 158, 117, 0.15);}
.mega-mcp-icon {color: #1d9e75;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;}
.mega-mcp-info {display: flex;
  flex-direction: column;
  gap: 2px;}
.mega-mcp-title {color: #0f5132;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.2;}
.mega-mcp-subtitle {color: #157347;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;}
footer {
  background: #051d29;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 52px 28px 32px;
}
.footer-inner {max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 28px;}
.footer-brand {font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 10px;}
.footer-tagline {font-size: 13px; color: rgba(255,255,255,0.35); max-width: 240px; line-height: 1.55;}
.footer-links a {display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 9px;
  transition: var(--transition);}
.footer-links a:hover {color: var(--green-bright); transform: translateX(4px);}
.footer-links h5 {font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.25); margin-bottom: 14px;}
.footer-bottom {max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.25);}
/* =========================================
   BOTTOM CTA
   ========================================= */
.cta-section {background: #051d29;
  background-image: url('../images/trueprofit_affiliate_background.svg');
  background-size: cover;
  background-position: center;
  padding: 100px 28px;
  text-align: center;}
.cta-inner {max-width: 700px;
  margin: 0 auto;}
.cta-h2 {font-size: 36px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.02em;}
.cta-h2 span {color: var(--green-bright);}
.cta-sub {font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;}
.cta-btns {display: flex;
  gap: 16px;
  justify-content: center;}
.btn-cta-white {background: #fff;
  color: var(--navy);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: var(--transition);
  display: inline-block;}
.btn-cta-white:hover {background: var(--light); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255,255,255,0.2);}
.btn-cta-ghost {background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: var(--transition);
  display: inline-block;}
.btn-cta-ghost:hover {background: rgba(255,255,255,0.1);
  border-color: #fff;
  transform: translateY(-2px);}
@media (max-width: 1100px) {
  .header-nav {display: none;}
  .header-actions {display: none;}
  .hamburger {display: flex;}
  #header.nav-open { background: #ffffff; }
  #header.nav-open .header-collapse {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 16px 24px 24px;
    gap: 4px;
    border-top: 1px solid var(--border-light);
    box-shadow: 0 16px 32px rgba(0,0,0,0.12);
    z-index: 999;
    max-height: calc(100dvh - 64px);
    overflow-y: auto;
  }
  #header.nav-open .header-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  #header.nav-open .header-nav a {
    padding: 12px 4px;
    font-size: 16px;
    border-bottom: 1px solid var(--border-light);
  }
  #header.nav-open .header-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin: 16px 0 0;
    width: 100%;
  }
  #header.nav-open .header-actions a {
    justify-content: center;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .footer-inner {flex-direction: column; gap: 28px;}
  .footer-bottom {flex-direction: column; gap: 8px; text-align: center;}
  .cta-section {padding: 64px 24px;}
  .cta-btns {flex-direction: column;}
}
/* Hover Micro-interactions - Navbar Links */
.header-nav > a,
.nav-dropdown-trigger {position: relative;}
.header-nav > a::after,
.nav-dropdown-trigger::after {content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #00C896;
  transition: width 0.2s ease;}
.header-nav > a:hover::after,
.header-nav > a.active::after,
.nav-dropdown-trigger:hover::after,
.nav-dropdown-trigger.active::after,
.nav-dropdown-wrapper:hover .nav-dropdown-trigger::after,
.nav-dropdown-wrapper.active .nav-dropdown-trigger::after {width: 100%;}
@media (max-width: 1200px) {
  .mega-menu {padding: 20px 16px;
    gap: 16px;}
  .mega-zone-1 {flex: 0 0 30%;}
  .mega-zone-2 {flex: 0 0 24%;}
  .mega-zone-3 {flex: 1;}
  .mega-gem-img {width: 64px !important;
    height: 64px !important;}
  .mega-asset-name {font-size: 13px !important;}
  .mega-asset-desc {font-size: 11px !important;}
  .mega-gem-text {font-size: 12px !important;}
  .mega-link-item {font-size: 13px !important;}
  .mega-mcp-title {font-size: 15px !important;}
}
@media (max-width: 1024px) {
  .mega-menu {flex-wrap: wrap;}
  .mega-zone-1 {flex: 0 0 48%;}
  .mega-zone-2 {flex: 0 0 48%;}
  .mega-zone-3 {flex: 0 0 100%;
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 16px;
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;}
  .mega-navy-title {grid-column: 1 / -1;}
  .mega-asset-card {margin-bottom: 0 !important;}
}

/* ---- page sections ---- */
/* =========================================
   COMMISSION REDESIGN - PREMIUM SaaS
   ========================================= */

#commission {background: #051d29;
  background-image: radial-gradient(circle at 50% 20%, rgba(35, 196, 140, 0.08) 0%, transparent 70%);
  padding: 100px 24px;}
#commission .section-inner {max-width: 1180px; margin: 0 auto;}
/* Header */
.comm-header {text-align: center;
  margin-bottom: 64px;}
.comm-h2 {font-size: clamp(36px, 5vw, 48px);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 900px;
  margin: 0 auto;}
/* Top Row Layout */
.comm-top-row {display: grid;
  grid-template-columns: 38% 1fr;
  gap: 24px;
  margin-bottom: 24px;}
.comm-card-glass {background: linear-gradient(135deg, rgba(13, 34, 51, 0.6) 0%, rgba(10, 37, 53, 0.6) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), inset 0 0 20px rgba(35, 196, 140, 0.03);
  padding: 40px;}
.comm-panel-title {font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 32px;}
/* Timeline Left Panel */
.comm-timeline {position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;}
.comm-tl-line {position: absolute;
  top: 10px;
  left: 17px;
  bottom: 10px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, #1d9e75, transparent);
  opacity: 0.4;
  z-index: 1;}
.comm-tl-item {position: relative;
  display: flex;
  gap: 24px;
  z-index: 2;}
.comm-tl-badge {width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #051d29;
  border: 1.5px solid #1d9e75;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #1d9e75;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(29, 158, 117, 0.2);}
.comm-tl-header {display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 6px;}
.comm-tl-title {font-size: 14px;
  font-weight: 600;
  color: #fff;}
.comm-tl-highlight {font-size: 18px;
  font-weight: 800;
  color: #2dd498;
  letter-spacing: -0.01em;}
.comm-tl-desc {font-size: 13px;
  color: #94a3b8;
  line-height: 1.5;}
/* Calculator Right Panel Overrides */
.comm-calc-card .calc-box {background: transparent;
  border: none;
  padding: 0;}
.comm-calc-card .calc-field label {display: block;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;}
.comm-calc-card .slider-num {font-size: 24px;}
.comm-calc-card .calc-results-grid {margin-top: 32px;
  gap: 16px;}
.comm-calc-card .calc-result-tile {background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px;}
.comm-calc-card .r-val {font-size: 28px;}
.comm-calc-card .calc-highlight {padding: 20px;
  background: rgba(35, 196, 140, 0.08);
  border: 1px solid rgba(35, 196, 140, 0.15);
  font-size: 16px;}
/* Middle Insight Strip */
.comm-insight-strip {display: grid;
  grid-template-columns: 190px 1fr;
  padding: 0;
  overflow: hidden;
  margin-bottom: 16px;
  align-items: stretch;}
.comm-insight-label-panel {padding: 24px;
  background: rgba(35, 196, 140, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;}
.comm-insight-icon {color: #2dd498;
  opacity: 0.8;}
.comm-insight-label {font-size: 12px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.06em;
  line-height: 1.4;}
.comm-insight-grid {display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 32px 30px;}
.comm-insight-item {padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);}
.comm-insight-item:last-child {border-right: none;}
.comm-insight-header {display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;}
.comm-insight-dot {width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1d9e75;}
.comm-insight-title {font-size: 16px;
  font-weight: 800;
  color: #fff;}
.comm-insight-desc {font-size: 14px;
  color: #cbd5e1;
  line-height: 1.6;}
/* Payment Strip */
.comm-payment-strip {display: flex;
  align-items: center;
  gap: 48px;
  padding: 24px 40px;}
.comm-payment-label {font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
  white-space: nowrap;}
.comm-payment-grid {display: flex;
  gap: 48px;
  flex: 1;}
.comm-payment-item {display: flex;
  align-items: center;
  gap: 16px;}
.comm-payment-icon {width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2dd498;
  flex-shrink: 0;}
.comm-payment-title {font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;}
.comm-payment-desc {font-size: 12px;
  color: #94a3b8;}
/* Backwards compatibility for existing calc logic classes if needed */
.calc-box {background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;}
.calc-title {font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 22px;}
.calc-field {margin-bottom: 18px;}
.calc-field label {display: block;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;}
.slider-row {display: flex;
  align-items: center;
  gap: 12px;}
input[type="range"] {flex: 1;
  -webkit-appearance: none;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--green-bright) var(--pct,20%), rgba(255,255,255,0.12) var(--pct,20%));
  outline: none;}
input[type="range"]::-webkit-slider-thumb {-webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-bright);
  cursor: pointer;
  box-shadow: 0 0 8px rgba(35,196,140,0.5);}
.slider-num {font-size: 18px;
  font-weight: 800;
  color: var(--green-bright);
  min-width: 32px;
  text-align: right;
  letter-spacing: -0.02em;}
select.calc-select {width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  padding: 10px 14px;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;}
select.calc-select option {background: var(--navy-mid);}
.calc-results-grid {display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;}
.calc-result-tile {background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 14px 16px;}
.calc-result-tile .r-label {font-size: 11px; color: rgba(255,255,255,0.45); margin-bottom: 4px;}
.calc-result-tile .r-val {font-size: 22px; font-weight: 800; color: var(--green-bright); letter-spacing: -0.03em;}
.calc-highlight {grid-column: span 2;
  background: rgba(35,196,140,0.1);
  border: 1px solid rgba(35,196,140,0.25);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green-bright);
  text-align: center;}
@media (max-width: 768px) {
  .comm-cards-row {grid-template-columns: 1fr;}
}
/* Hover Micro-interactions - Cards */
.opp-node, .calc-box, #playbook-card, .footer-col {transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s ease, border-color 0.2s ease;}
.calc-box:hover, #playbook-card:hover {transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);}
.comm-stat-block {text-align: center;
    padding: 24px;}
.comm-stat-value {font-size: 48px;
    font-weight: 800;
    color: #1d9e75;
    line-height: 1;
    margin-bottom: 8px;}
.comm-stat-label {font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;}
.tp-dashboard-visual-wrapper {position: relative;
    display: flex;
    justify-content: center;
    align-items: center;}
.tp-dashboard-visual {position: relative;
    width: 100%;
    border-radius: 24px;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;}
@media (max-width: 768px) {
  #why-trueprofit {padding: 40px 16px !important;}
  #why-trueprofit .section-inner {padding: 40px 24px !important;}
  .why-tp-grid {grid-template-columns: 1fr !important;
      gap: 48px !important;}
}
/* Custom Select Dropdown */
  .custom-select-wrapper {position: relative; width: 100%; user-select: none;}
.custom-select-trigger {display: flex; justify-content: space-between; align-items: center;
    background: #1A2B3C; border: 1px solid rgba(0, 200, 150, 0.3); border-radius: 8px;
    color: #fff; font-weight: 600; padding: 12px 16px; cursor: pointer; width: 100%; box-sizing: border-box;}
.custom-select-trigger svg {transition: transform 0.2s ease;}
.custom-select-wrapper.open .custom-select-trigger svg {transform: rotate(180deg);}
.custom-options {position: absolute; top: calc(100% + 8px); left: 0; width: 100%;
    background: #1A2B3C; border: 1px solid rgba(0, 200, 150, 0.2); border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3); opacity: 0; visibility: hidden;
    transform: translateY(-10px); transition: all 0.2s ease; z-index: 10; overflow: hidden;}
.custom-select-wrapper.open .custom-options {opacity: 1; visibility: visible; transform: translateY(0);}
.custom-option {padding: 12px 16px; color: #fff; cursor: pointer; border-left: 2px solid transparent;
    transition: background 0.2s ease, color 0.2s ease;}
.custom-option:hover {background: #0F3528; color: #00C896;}
.custom-option.selected {background: #0F3528; border-left: 2px solid #00C896; color: #00C896;}

/* ---- commission section: stack on mobile ---- */
@media (max-width: 900px) {
  .comm-top-row { grid-template-columns: 1fr; }
  .comm-insight-strip { grid-template-columns: 1fr; }
  .comm-insight-grid { grid-template-columns: 1fr; gap: 24px; }
  .comm-payment-strip { flex-direction: column; align-items: flex-start; gap: 24px; }
  .comm-payment-grid { flex-direction: column; gap: 24px; }
}
