/* Product System v3 — aligned with /certificacoes design system
   Shared across Everything DiSC, EQ-i 2.0, EQ360.
   Tokens match the SPA light-mode theme exactly. */

:root {
  --bg: #FAFAF8;
  --s1: #F2F1EE;
  --s2: #E8E7E3;
  --t1: #1A1A1F;
  --t2: #52525B;
  --t3: #8A8A96;
  --gold: #8A6A20;
  --gold-light: #C4A24E;
  --blue: #3B82F6;
  --green: #0F766E;
  --purple: #8B5CF6;
  --bd: rgba(0, 0, 0, 0.06);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Outfit', 'DM Sans', system-ui, sans-serif;
  --container: 1280px;
  --pad: clamp(24px, 5vw, 64px);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-pill: 60px;
  /* Per-product accent — overridden by body class */
  --accent: var(--gold);
  --accent-grad: linear-gradient(135deg, #C4A24E, #A68A3A);
}

/* Product accent overrides */
.product-disc  { --accent: #8A6A20; --accent-grad: linear-gradient(135deg, #C4A24E, #A68A3A); }
.product-eqi   { --accent: #3B82F6; --accent-grad: linear-gradient(135deg, #3B82F6, #1D4ED8); }
.product-eq360 { --accent: #0F766E; --accent-grad: linear-gradient(135deg, #0F766E, #065F46); }

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--t1);
  font-family: var(--sans);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}
h1, h2, h3, p, span, a { overflow-wrap: break-word; word-wrap: break-word; }
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* === SUBTLE GRID BACKGROUND (matches certificacoes) === */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  opacity: .015;
  background-image:
    linear-gradient(var(--accent) 1px, transparent 1px),
    linear-gradient(90deg, var(--accent) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: -1;
}

/* === CONTAINER === */
.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* === NAV (matches main site exactly) === */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(250, 250, 248, .92);
  backdrop-filter: blur(18px);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-brand img {
  height: 28px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 14px;
  font-weight: 600;
}
.nav-links a {
  text-decoration: none;
  color: var(--t2);
  transition: color .2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--t1); }
.nav-links a.is-active { color: var(--gold-light); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 8px;
  background: var(--gold-light);
  color: #0A0A0C;
  font: 600 14px var(--sans);
  text-decoration: none;
  transition: all .3s;
  white-space: nowrap;
}
.nav-cta:hover { opacity: .9; }
.nav-cta svg { width: 14px; height: 14px; }
/* Mobile hamburger */
.nav-hamburger {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: none;
  cursor: pointer;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--t1);
  margin: 5px 0;
  transition: all .3s;
}
.nav-mobile-overlay {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 998;
  background: var(--bg);
  padding: 32px var(--pad);
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}
.nav-mobile-overlay.is-open { display: flex; }
.nav-mobile-overlay a {
  display: block;
  padding: 16px 0;
  font: 600 20px 'Cormorant Garamond', var(--serif);
  color: var(--t1);
  text-decoration: none;
  border-bottom: 1px solid var(--bd);
}
.nav-mobile-overlay .nav-mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  padding: 16px;
  border-radius: 8px;
  background: var(--gold-light);
  color: #0A0A0C;
  font: 700 15px var(--sans);
  text-decoration: none;
  border-bottom: 0;
}

/* === BUTTONS (matches certificacoes) === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: var(--bg);
  font: 600 15px var(--sans);
  letter-spacing: -.2px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: all .35s cubic-bezier(.22, 1, .36, 1);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .15);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--t1);
  border: 1px solid var(--bd);
  font: 600 15px var(--sans);
  text-decoration: none;
  cursor: pointer;
  transition: all .35s;
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* === KICKER (matches certificacoes exactly) === */
.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.kicker::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent);
}
.kicker span {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  font-family: var(--sans);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* === TYPOGRAPHY (matches certificacoes) === */
h1, h2, h3 {
  font-family: var(--serif);
  line-height: .95;
  margin: 0;
}
h1 {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 700;
  color: var(--t1);
  letter-spacing: -4px;
  margin-bottom: 32px;
}
h1 em {
  font-style: italic;
  color: var(--accent);
}
.lead {
  font-size: clamp(17px, 1.8vw, 20px);
  color: var(--t2);
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 40px;
}

/* === HERO (typographic, like certificacoes) === */
.hero {
  padding: 80px 0 20px;
  position: relative;
  overflow: hidden;
}
.hero .wrap {
  position: relative;
  z-index: 1;
}
/* Subtle radial accents */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(138, 106, 32, .06) 0%, transparent 55%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: 20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(138, 106, 32, .04) 0%, transparent 50%);
  pointer-events: none;
}
/* Product-specific hero accents */
.product-eqi .hero::before {
  background: radial-gradient(circle, rgba(59, 130, 246, .08) 0%, transparent 55%);
}
.product-eq360 .hero::before {
  background: radial-gradient(circle, rgba(15, 118, 110, .08) 0%, transparent 55%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-badge-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-grad);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
  color: #fff;
  font: 800 22px var(--sans);
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.hero-strip {
  display: flex;
  gap: clamp(32px, 5vw, 64px);
  margin-top: 72px;
  flex-wrap: wrap;
}
.hero-strip dt {
  font-size: 11px;
  color: var(--t3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.hero-strip dd {
  margin: 0;
  font-size: 15px;
  color: var(--t1);
  font-weight: 600;
}

/* === PRODUCT SUITE NAV (3-tab switcher) === */
.product-suite {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: clamp(30px, 4vw, 50px);
}
.product-suite a {
  display: block;
  padding: 20px;
  border: 1px solid var(--bd);
  border-radius: var(--radius-lg);
  background: var(--s1);
  text-decoration: none;
  transition: all .35s;
}
.product-suite a:hover {
  border-color: rgba(0, 0, 0, .12);
  transform: translateY(-3px);
}
.product-suite a.is-active {
  border-color: var(--accent);
  background: #fff;
}
.product-suite .ps-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.product-suite .ps-title {
  display: block;
  margin-top: 10px;
  font: 700 18px/1.1 var(--serif);
  color: var(--t1);
  letter-spacing: -.5px;
}
.product-suite .ps-desc {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--t3);
  line-height: 1.45;
}

/* === SECTIONS (alternating bg/s1, like certificacoes) === */
.section {
  padding: clamp(80px, 10vw, 140px) 0;
}
.section.alt {
  background: var(--s1);
}
.section-header {
  max-width: 800px;
  margin-bottom: 48px;
}
.section-header h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-header h2 em {
  font-style: italic;
  color: var(--accent);
}
.section-header p {
  font-size: 16px;
  color: var(--t2);
  line-height: 1.75;
  max-width: 620px;
}

/* === CARDS (matches certificacoes card pattern) === */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card-grid.two { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--s1);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid var(--bd);
  transition: all .35s;
}
.card:hover {
  border-color: rgba(0, 0, 0, .12);
  transform: translateY(-4px);
}
.card-number {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  display: block;
}
.card h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.5px;
  line-height: 1.25;
  margin-bottom: 10px;
}
.card p {
  font-size: 14px;
  color: var(--t3);
  line-height: 1.65;
  margin: 0;
}
.card ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}
.card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--t2);
  line-height: 1.55;
}
.card li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--accent);
  opacity: .5;
}

/* === EVIDENCE STRIP (stats row) === */
.evidence-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 34px;
}
.evidence-strip > div {
  background: #fff;
  border: 1px solid var(--bd);
  border-radius: var(--radius-md);
  padding: 20px;
}
.evidence-strip strong {
  display: block;
  font: 700 clamp(26px, 4vw, 42px)/1 var(--serif);
  letter-spacing: -2px;
  color: var(--t1);
}
.evidence-strip span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--t3);
  line-height: 1.35;
}

/* === PROCESS STEPS === */
.process {
  counter-reset: step;
  display: grid;
  gap: 12px;
  margin-top: 30px;
}
.process article {
  counter-increment: step;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
  background: var(--s1);
  border: 1px solid var(--bd);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: all .35s;
}
.process article:hover {
  border-color: rgba(0, 0, 0, .12);
  transform: translateY(-2px);
}
.process article::before {
  content: counter(step, decimal-leading-zero);
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--t1);
  color: var(--gold-light);
  font-weight: 900;
}
.process h3 {
  font: 900 18px var(--sans);
  letter-spacing: 0;
  margin-bottom: 6px;
}
.process p { margin: 0; color: var(--t2); line-height: 1.65; font-size: 14px; }

/* === COMPARISON TABLE === */
.comparison {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 30px;
  background: #fff;
  border: 1px solid var(--bd);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.comparison th,
.comparison td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--bd);
  text-align: left;
  vertical-align: top;
  line-height: 1.55;
  font-size: 14px;
}
.comparison th {
  background: var(--s1);
  font-size: 12px;
  color: var(--t3);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
}
.comparison tr:last-child td { border-bottom: 0; }
.comparison td:first-child {
  font-weight: 800;
  color: var(--t1);
  width: 26%;
}

/* === QUOTE PANEL === */
.quote-panel {
  margin-top: 34px;
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 26px;
  background: var(--s1);
}
.quote-panel p {
  margin: 0;
  color: var(--t1);
  font: 700 clamp(20px, 2.4vw, 30px)/1.22 var(--serif);
  letter-spacing: -.5px;
}
.quote-panel .quote-sub {
  display: block;
  margin-top: 14px;
  color: var(--t2);
  font: 400 14px/1.6 var(--sans);
}

/* === SPLIT LAYOUT (content + form) === */
.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

/* === FORM CARD === */
.form-card {
  background: var(--s1);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid rgba(0, 0, 0, .04);
  position: sticky;
  top: 92px;
}
.form-card .form-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 8px;
  background: rgba(0, 0, 0, .03);
  border: 1px solid var(--bd);
  margin-bottom: 20px;
}
.form-card .form-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.form-card .form-badge-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
}
.form-card label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--t2);
  margin: 15px 0 6px;
}
.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--bd);
  background: var(--s1);
  color: var(--t1);
  font: 500 15px var(--sans);
  outline: none;
  transition: border-color .3s;
}
.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  border-color: var(--accent);
}
.form-card textarea {
  min-height: 90px;
  resize: vertical;
}
.form-card .form-submit {
  width: 100%;
  margin-top: 20px;
}
.form-error, [data-form-error] {
  display: none;
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(239, 68, 68, .08);
  border: 1px solid rgba(239, 68, 68, .2);
  color: #EF4444;
  font-size: 13px;
  font-weight: 500;
}
.form-success, [data-form-success] {
  display: none;
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(22, 163, 74, .08);
  border: 1px solid rgba(22, 163, 74, .2);
  color: #166534;
  font-size: 13px;
  font-weight: 500;
}

/* === CHECKOUT CARD (DiSC only) === */
.checkout-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid var(--bd);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .06);
  position: sticky;
  top: 92px;
}
.checkout-card .price-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--bd);
}
.checkout-card .price-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--t3);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.checkout-card .price-value {
  display: block;
  font: 700 clamp(42px, 5vw, 58px)/1 var(--serif);
  color: var(--accent);
  letter-spacing: -2px;
}
.checkout-card .price-vat {
  color: var(--t3);
  font-size: 13px;
}
.checkout-card .price-total {
  display: block;
  margin-top: 6px;
  font-weight: 900;
  font-size: 14px;
}
.checkout-card .checkout-intro {
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--bd);
}
.checkout-card .checkout-intro h3 {
  font: 800 24px/1.1 var(--serif);
  letter-spacing: -.5px;
  margin-bottom: 8px;
}
.checkout-card .checkout-intro p {
  color: var(--t3);
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}
.checkout-card label {
  display: block;
  font-size: 11px;
  font-weight: 900;
  color: var(--t3);
  letter-spacing: .11em;
  text-transform: uppercase;
  margin: 14px 0 6px;
}
.checkout-card input,
.checkout-card select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--bd);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--t1);
  padding: 0 14px;
  font: 650 15px var(--sans);
  outline: none;
}
.checkout-card input:focus,
.checkout-card select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(138, 106, 32, .08);
}
.checkout-card .input-help {
  margin: 4px 0 10px;
  color: var(--t3);
  font-size: 12px;
}
.checkout-card .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.checkout-card .method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 8px;
}
.checkout-card .method-grid input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.checkout-card .method-grid label {
  margin: 0;
}
.checkout-card .method-grid span {
  display: grid;
  place-items: center;
  min-height: 46px;
  border: 1px solid var(--bd);
  border-radius: var(--radius-md);
  color: var(--t2);
  font-weight: 800;
  cursor: pointer;
  background: #fff;
  font-size: 13px;
  transition: all .2s;
}
.checkout-card .method-grid input:checked + span {
  border-color: var(--accent);
  color: #fff;
  background: var(--accent);
}
.checkout-card .team-note {
  margin: 14px 0 0;
  padding: 12px 14px;
  border: 1px solid var(--bd);
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, .02);
  color: var(--t3);
  font-size: 13px;
  line-height: 1.5;
}
.checkout-card .error {
  display: none;
  margin: 16px 0 0;
  border: 1px solid rgba(220, 38, 38, .25);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  color: #991b1b;
  background: rgba(220, 38, 38, .06);
  font-weight: 700;
  font-size: 13px;
}
.checkout-card .success {
  display: none;
  margin-top: 22px;
  border: 1px solid rgba(22, 163, 74, .28);
  border-radius: var(--radius-lg);
  padding: 18px;
  color: #14532d;
  background: rgba(22, 163, 74, .06);
}
.checkout-card .success h3 { margin: 0 0 10px; color: #052e16; font-size: 20px; }
.checkout-card .success dl { display: grid; grid-template-columns: auto 1fr; gap: 8px 14px; margin: 12px 0 0; }
.checkout-card .success dt { color: var(--t3); font-size: 13px; }
.checkout-card .success dd { margin: 0; font-weight: 800; font-size: 14px; }

/* === INCLUDES LIST === */
.includes-panel {
  background: var(--s1);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--bd);
}
.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 48px;
}
.includes-grid > div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--bd);
  transition: padding-left .2s;
}
.includes-grid > div:hover {
  padding-left: 8px;
}
.includes-grid .check {
  flex-shrink: 0;
  margin-top: 2px;
  width: 16px;
  height: 16px;
  color: var(--accent);
}
.includes-grid span {
  font-size: 15px;
  font-weight: 500;
  color: var(--t1);
  line-height: 1.5;
}

/* === FAQ (matches certificacoes) === */
.faq {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 900px;
  margin: 0 auto;
}
.faq details {
  background: var(--s1);
  border-radius: var(--radius-md);
  border: 1px solid var(--bd);
  overflow: hidden;
  transition: border-color .3s;
}
.faq details[open] {
  border-color: rgba(0, 0, 0, .12);
}
.faq summary {
  cursor: pointer;
  padding: 20px 24px;
  font: 600 15px var(--sans);
  color: var(--t1);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '';
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--t3);
  border-bottom: 2px solid var(--t3);
  transform: rotate(45deg);
  transition: transform .3s;
  flex-shrink: 0;
}
.faq details[open] summary::after {
  transform: rotate(-135deg);
}
.faq .faq-body {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--t3);
  line-height: 1.7;
}

/* === FINAL CTA (dark panel) === */
.final-cta {
  margin: 0 auto clamp(40px, 5vw, 60px);
  max-width: var(--container);
  padding: 0 var(--pad);
}
.final-cta-inner {
  border-radius: var(--radius-xl);
  background: var(--t1);
  color: #fff;
  padding: clamp(42px, 7vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta-inner::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196, 162, 78, .15) 0%, transparent 55%);
  pointer-events: none;
}
.final-cta h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  letter-spacing: -2.5px;
  line-height: 1.1;
  margin-bottom: 20px;
  position: relative;
}
.final-cta h2 em {
  font-style: italic;
  color: var(--gold-light);
}
.final-cta p {
  font-size: 17px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.7;
  margin: 0 auto 32px;
  max-width: 560px;
  position: relative;
}
.final-cta .btn-primary {
  position: relative;
  background: var(--gold-light);
  color: var(--t1);
}

/* === FOOTER (matches main site exactly — 5 columns) === */
.site-footer {
  padding: clamp(48px, 7vw, 80px) 0 0;
  border-top: 1px solid var(--bd);
  color: var(--t3);
  font-size: 13px;
}
.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 28px;
}
.footer-brand-col img { height: 24px; margin-bottom: 16px; }
.footer-brand-col p {
  margin: 0 0 20px;
  color: var(--t3);
  line-height: 1.6;
  max-width: 320px;
}
.footer-brand-col .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}
.footer-brand-col .footer-contact a {
  color: var(--t2);
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
}
.footer-brand-col .footer-contact span {
  color: var(--t3);
  font-size: 13px;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin: 16px 0 0;
}
.footer-social a {
  color: var(--t3);
  transition: color .2s;
  display: flex;
  align-items: center;
}
.footer-social a:hover { color: var(--gold-light); }
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }
.footer-dgert {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  opacity: .5;
}
.footer-dgert img { height: 22px; }
.footer-dgert span { font-size: 11px; color: var(--t3); }
.footer-col b {
  display: block;
  color: var(--t1);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  margin-top: 10px;
  color: var(--t3);
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--t1); }
.footer-accreditations {
  max-width: var(--container);
  margin: 40px auto 0;
  padding: 24px var(--pad);
  border-top: 1px solid var(--bd);
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 32px);
  flex-wrap: wrap;
}
.footer-accreditations span {
  font-size: 11px;
  color: var(--t3);
  opacity: .5;
  white-space: nowrap;
}
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px var(--pad);
  border-top: 1px solid var(--bd);
  font-size: 12px;
  color: var(--t3);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom em {
  font-style: italic;
  font-family: var(--serif);
  color: var(--t3);
}
.footer-bottom a {
  color: var(--gold-light);
  text-decoration: none;
}

/* === SOURCE NOTE === */
.source-note {
  margin-top: 18px;
  color: var(--t3);
  font-size: 13px;
  line-height: 1.6;
}
.source-note a {
  color: var(--t1);
  font-weight: 700;
}

/* === CAMPAIGN BAR === */
.campaign-bar {
  display: none;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 20px;
  background: var(--t1);
  color: #fff;
  font-size: 13px;
  border-bottom: 1px solid rgba(196, 162, 78, .3);
}
.campaign-bar strong {
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.campaign-bar a {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--gold-light);
  color: var(--t1);
  font-weight: 900;
  text-decoration: none;
  font-size: 12px;
}

/* === DiSC WHEEL (CSS-only visual) === */
.disc-wheel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  width: min(360px, 80vw);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--bd);
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .08);
  margin: 0 auto;
}
.disc-wheel::before,
.disc-wheel::after {
  content: '';
  position: absolute;
  z-index: 2;
  background: rgba(255, 255, 255, .9);
}
.disc-wheel::before {
  left: 50%; top: 0; width: 2px; height: 100%;
  transform: translateX(-50%);
}
.disc-wheel::after {
  top: 50%; left: 0; width: 100%; height: 2px;
  transform: translateY(-50%);
}
.disc-wheel .dq {
  display: grid;
  place-items: center;
  color: #fff;
  font: 900 clamp(36px, 8vw, 56px)/1 var(--sans);
}
.disc-wheel .dq-d { background: #10b654; }
.disc-wheel .dq-i { background: #d73445; }
.disc-wheel .dq-s { background: #1fa7df; }
.disc-wheel .dq-c { background: #ffd21a; }
.disc-wheel .dq-center {
  position: absolute;
  z-index: 3;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(90px, 24vw, 120px);
  height: clamp(90px, 24vw, 120px);
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: 0 16px 42px rgba(0, 0, 0, .14);
  font: 900 clamp(16px, 4vw, 20px)/1.1 var(--sans);
  color: var(--t1);
}

/* === EQ-i 5-AREA DIAGRAM === */
.eq-areas {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 34px;
}
.eq-area {
  text-align: center;
  padding: 24px 16px;
  border-radius: var(--radius-lg);
  background: var(--s1);
  border: 1px solid var(--bd);
  transition: all .35s;
}
.eq-area:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
}
.eq-area-bar {
  width: 6px;
  height: clamp(40px, 6vw, 60px);
  margin: 0 auto 12px;
  border-radius: 99px;
  background: var(--accent);
  opacity: .3;
}
.eq-area:nth-child(1) .eq-area-bar { height: 50px; opacity: .7; }
.eq-area:nth-child(2) .eq-area-bar { height: 40px; opacity: .5; }
.eq-area:nth-child(3) .eq-area-bar { height: 60px; opacity: .8; }
.eq-area:nth-child(4) .eq-area-bar { height: 35px; opacity: .45; }
.eq-area:nth-child(5) .eq-area-bar { height: 45px; opacity: .6; }
.eq-area strong {
  display: block;
  font: 700 14px/1.2 var(--sans);
  color: var(--t1);
  margin-bottom: 6px;
}
.eq-area span {
  font-size: 12px;
  color: var(--t3);
  line-height: 1.4;
}

/* === 360 FLOW DIAGRAM === */
.flow-360 {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
  margin-top: 34px;
}
.flow-360-step {
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius-lg);
  background: var(--s1);
  border: 1px solid var(--bd);
}
.flow-360-step strong {
  display: block;
  font: 700 clamp(28px, 4vw, 40px)/1 var(--serif);
  color: var(--accent);
  margin-bottom: 8px;
}
.flow-360-step span {
  font-size: 13px;
  color: var(--t2);
}
.flow-360-arrow {
  text-align: center;
  color: var(--t3);
  font-size: 24px;
  padding: 0 8px;
}

/* === PARA QUEM (audience grid) === */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 34px;
}
.audience-card {
  background: var(--s1);
  border: 1px solid var(--bd);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 32px);
  transition: all .35s;
}
.audience-card:hover {
  border-color: rgba(0, 0, 0, .12);
  transform: translateY(-4px);
}
.audience-card .aud-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: .6;
  margin-bottom: 12px;
}
.audience-card h3 {
  font: 700 16px/1.3 var(--sans);
  margin-bottom: 8px;
}
.audience-card p {
  font-size: 14px;
  color: var(--t3);
  line-height: 1.6;
  margin: 0;
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: block; }
}
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero-strip { gap: 24px; }
  .card-grid, .card-grid.two { grid-template-columns: 1fr; }
  .evidence-strip { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .form-card { position: static; }
  .checkout-card { position: static; }
  .product-suite { grid-template-columns: 1fr; gap: 8px; }
  .includes-grid { grid-template-columns: 1fr; }
  .comparison { display: block; overflow-x: auto; }
  .comparison th, .comparison td { min-width: 160px; }
  h1 { font-size: clamp(36px, 10vw, 60px); letter-spacing: -2px; }
  .section-header h2 { font-size: clamp(26px, 6vw, 38px); }
  .eq-areas { grid-template-columns: repeat(3, 1fr); }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .flow-360 { grid-template-columns: 1fr; gap: 12px; }
  .flow-360-arrow { transform: rotate(90deg); }
}
@media (max-width: 640px) {
  .nav-inner { min-height: 60px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-accreditations { flex-direction: column; align-items: center; }
  .hero { padding-top: 48px; }
  h1 { font-size: clamp(28px, 8vw, 42px); letter-spacing: -1px; max-width: 100%; }
  .lead { font-size: 15px; max-width: 100%; }
  .hero-strip { flex-direction: column; gap: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary { width: 100%; text-align: center; box-sizing: border-box; }
  .evidence-strip { grid-template-columns: 1fr; }
  .checkout-card .two-col { grid-template-columns: 1fr; }
  .checkout-card .method-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .final-cta-inner { padding: clamp(32px, 8vw, 48px); }
  .card-grid[style*="repeat(4"] { grid-template-columns: 1fr 1fr !important; }
  .wrap { padding: 0 20px; }
  .lead, .section-header p { max-width: 100%; }
  .campaign-bar { flex-direction: column; gap: 8px; text-align: left; padding: 12px 20px; }
  .campaign-bar a:last-child { display: none; }
  .nav-inner { padding: 0 16px; gap: 8px; overflow: hidden; }
  body::before { display: none; }
  .hero::before, .hero::after { display: none; }
  h1 { max-width: calc(100vw - 40px); }
  .eq-areas { grid-template-columns: 1fr 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .flow-360-arrow { display: none; }
  .flow-360 { grid-template-columns: 1fr; gap: 10px; }
  /* Collapse 2-col layouts that use inline grid styles */
  [style*="grid-template-columns: minmax"],
  [style*="grid-template-columns:minmax"] { grid-template-columns: 1fr !important; }
  .disc-wheel { width: min(260px, 70vw); margin-top: 24px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
