/* ═══════════════════════════════════════════════════════════════════
   WERDUM C.A.M.P. ACADEMY — Global Stylesheet
   Identidade: Preto #0F0F0F · Dourado #D4AF37 · Prateado #C0C0C0
   ═══════════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Montserrat:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --bg: #0F0F0F;
  --bg-card: #1A1A1A;
  --bg-muted: #242424;
  --gold: #D4AF37;
  --gold-light: #E8C84A;
  --gold-dim: rgba(212, 175, 55, .15);
  --gold-border: rgba(212, 175, 55, .3);
  --silver: #C0C0C0;
  --silver-dim: rgba(192, 192, 192, .6);
  --fg: #F5F5F5;
  --fg-muted: rgba(245, 245, 245, .7);
  --fg-dim: rgba(245, 245, 245, .4);
  --border: rgba(255, 255, 255, .08);
  --border-hover: rgba(212, 175, 55, .5);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-gold: 0 8px 32px rgba(212, 175, 55, .15);
  --transition: all .3s ease;

  --pilar-color-c-bg: rgba(102, 116, 238, 0.2);
  --pilar-color-c-border: rgba(102, 116, 238, 0.5);

  --pilar-color-a-bg: rgba(0, 121, 246, 0.2);
  --pilar-color-a-border: rgba(0, 121, 246, 0.5);

  --pilar-color-m-bg: rgba(255, 54, 44, 0.2);
  --pilar-color-m-border: rgba(255, 54, 44, 0.5);

  --pilar-color-p-bg: rgba(254, 197, 35, 0.2);
  --pilar-color-p-border: rgba(254, 197, 35, 0.5);
}

html {
  scroll-behavior: smooth
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased
}

a {
  color: inherit;
  text-decoration: none
}

img {
  max-width: 100%;
  display: block
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit
}

input,
select,
textarea {
  font-family: inherit
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 0px 24px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .5px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none
}

.btn-primary {
  background: var(--gold);
  color: #0F0F0F
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold)
}

.btn-outline {
  background: transparent;
  color: var(--fg-muted);
  border: 1px solid var(--border)
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold)
}

.btn-lg {
  padding: 18px 36px;
  font-size: 16px
}

.btn-sm {
  padding: 10px 20px;
  font-size: 13px
}

.btn-full {
  width: 100%;
  justify-content: center
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 999px;
  padding: 6px 16px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .5px
}

.section {
  padding: 80px 0;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: var(--transition);
  padding: 16px 0
}

.navbar.scrolled {
  background: rgba(15, 15, 15, .95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none
}

.navbar-brand img {
  max-width: 160px;
  height: 80px;
  object-fit: contain
}

.navbar-brand span {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--gold)
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none
}

.navbar-links a {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  padding: 8px 12px;
  border-radius: 8px;
  transition: var(--transition);
  text-decoration: none
}

.navbar-links a:hover {
  color: var(--gold);
  background: var(--gold-dim)
}

.navbar-ctas {
  display: flex;
  align-items: center;
  gap: 8px
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: var(--transition)
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 15, 15, .98);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px
}

.mobile-menu.open {
  display: flex
}

.mobile-menu a,
.mobile-menu button {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--fg-muted);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition)
}

.mobile-menu a:hover,
.mobile-menu button:hover {
  color: var(--gold)
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 28px;
  color: var(--fg-muted);
  cursor: pointer;
  background: none;
  border: none
}

@media(max-width:900px) {

  .navbar-links,
  .navbar-ctas {
    display: none
  }

  .mobile-toggle {
    display: flex
  }
}

/* HERO */
.hero {
  /*min-height: 100vh;*/
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, .08) 0%, transparent 70%);
  pointer-events: none
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 20px;
  align-items: center;
  padding: 0;
  line-height: 1;
}

.hero-logo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center
}

.hero-logo-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(212, 175, 55, .12) 0%, transparent 70%);
  border-radius: 50%
}

.hero-logo {
  width: 100%;
  max-width: 380px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 40px rgba(212, 175, 55, .2))
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(27px, 4vw, 50px);
  font-weight: 700;
  line-height: 1.15
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.7vw, 22px);
  font-weight: 600;
  color: var(--gold);
  line-height: 1.3
}

.hero-desc {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7
}

.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.hero-bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--fg-muted)
}

.hero-bullet-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-leaders {
  display: flex;
  gap: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border)
}

.hero-leader-label {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--fg-dim);
  margin-bottom: 8px
}

.hero-leader-name {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700
}

.hero-leader-title {
  font-size: 11px;
  color: var(--fg-dim);
  padding-top: 5px !important;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--fg-dim);
  animation: bounce 2s infinite
}

.hero-scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg)
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0)
  }

  50% {
    transform: translateX(-50%) translateY(6px)
  }
}

@media(max-width:900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0px;
  }

  .hero-logo {
    max-width: 260px;
    margin: 0 auto
  }

  .hero-scroll {
    display: none
  }
}

/* CAMP MODEL */
.camp-model {
  background: var(--bg-card)
}

.camp-model-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px
}

.camp-model-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 42px);
  font-weight: 700;
  margin: 16px 0
}

.camp-model-image-wrap {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center
}

.camp-model-image {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gold-border);
  box-shadow: 0 0 60px rgba(212, 175, 55, .1)
}

.camp-model-caption {
  font-family: var(--font-heading);
  font-size: 11px;
  color: var(--fg-dim);
  letter-spacing: 1px;
  margin-top: 12px
}

.camp-pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px
}

.pillar-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition)
}

.pillar-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px)
}

.pillar-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px
}

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0
}

.pillar-id {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 0px
}

.pillar-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400
}

.pillar-subtitle {
  font-size: 15px;
  color: var(--fg-dim);
  margin-bottom: 16px
}

.pillar-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 20px
}

.pillar-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.pillar-list-label {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 8px
}

.pillar-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px
}

.pillar-list li {
  font-size: 14px;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 6px
}

.pillar-list li::before {
  content: '■';
  color: var(--gold);
  font-size: 10px;
}

.camp-integration {
  background: linear-gradient(135deg, rgba(212, 175, 55, .08), transparent);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center
}

.camp-integration p {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.6
}

.camp-integration strong {
  color: var(--gold)
}

.modelo-card-cristo {
  /*background: rgba(102, 116, 238, 0.2) !important;
  border: 1px solid rgba(102, 116, 238, 0.5) !important;*/
  background: var(--pilar-color-c-bg) !important;
  border: 1px solid var(--pilar-color-c-bg) !important;
  border-radius: 12px;
  padding: 32px;
  position: relative;
}

.modelo-card-amor {
  /*background: rgba(0, 121, 246, 0.2) !important;
  border: 1px solid rgba(0, 121, 246, 0.5) !important;*/
  background: var(--pilar-color-a-bg) !important;
  border: 1px solid var(--pilar-color-a-border) !important;
  border-radius: 12px;
  padding: 32px;
  position: relative;
}

.modelo-card-motivacao {
  /*background: rgba(255, 54, 44, 0.2) !important;
  border: 1px solid rgba(255, 54, 44, 0.5) !important;*/
  background: var(--pilar-color-m-bg) !important;
  border: 1px solid var(--pilar-color-m-border) !important;
  border-radius: 12px;
  padding: 32px;
  position: relative;
}

.modelo-card-plenitude {
  /*background: rgba(254, 197, 35, 0.2) !important;
  border: 1px solid rgba(254, 197, 35, 0.5) !important;*/
  background: var(--pilar-color-p-bg) !important;
  border: 1px solid var(--pilar-color-p-border) !important;
  border-radius: 12px;
  padding: 32px;
  position: relative;
}



@media(max-width:700px) {
  .camp-pillars-grid {
    grid-template-columns: 1fr
  }

  .pillar-lists {
    grid-template-columns: 1fr
  }
}

/* STAKEHOLDER */
.stakeholder-section {
  background: var(--bg)
}

.stakeholder-header {
  /*max-width: 700px;*/
  margin-bottom: 48px
}

.stakeholder-header h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 700;
  margin: 12px 0
}

.stakeholder-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 64px
}

.stakeholder-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition)
}

.stakeholder-item:hover {
  border-color: var(--border-hover)
}

.stakeholder-trigger {
  width: 100%;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--fg);
  text-align: left;
  transition: var(--transition)
}

.stakeholder-trigger:hover {
  background: rgba(255, 255, 255, .02)
}

.stakeholder-trigger-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1
}

.text-accent {
  color: #d4af37;
}

.stakeholder-trigger-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0
}

.stakeholder-trigger-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700
}

.stakeholder-trigger-sub {
  font-size: 13px;
  color: var(--fg-dim)
}

.stakeholder-chevron {
  font-size: 18px;
  color: var(--gold);
  transition: transform .3s ease
}

.stakeholder-chevron.open {
  transform: rotate(90deg)
}

.stakeholder-body {
  display: none;
  border-top: 1px solid var(--border);
  padding: 32px;
  background: rgba(255, 255, 255, .01)
}

.stakeholder-body.open {
  display: block
}

.stakeholder-desc {
  font-size: 15px;
  color: var(--fg-muted);
  margin-bottom: 28px
}

.journey-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--silver-dim);
  margin-bottom: 20px
}

.journey-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px
}

.journey-step {
  display: flex;
  gap: 16px
}

.journey-dot-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0
}

.journey-dot {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0
}

.journey-line {
  width: 1px;
  flex: 1;
  background: linear-gradient(to bottom, var(--gold), rgba(212, 175, 55, .1));
  min-height: 40px
}

.journey-content {
  padding-bottom: 20px
}

.journey-phase {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px
}

.journey-phase-desc {
  font-size: 13px;
  color: var(--fg-dim)
}

.stakeholder-impact {
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 10px;
  padding: 20px
}

.stakeholder-impact-label {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 8px
}

.stakeholder-impact-text {
  font-size: 13px;
  color: var(--fg-muted)
}

.metrics-grid-header {
  border-top: 1px solid var(--border);
  margin-top: 48px;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 20px;
}

.metrics-grid-header h2 {
  font-family: var(--font-display);
  font-size: clamp(20px, 3.5vw, 25px);
  font-weight: 700;
  margin: 16px 0;
  text-align: center;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.metric-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center
}

.metric-value {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 6px
}

.metric-label {
  font-size: 13px;
  color: var(--silver-dim);
  margin-bottom: 8px
}

.metric-source {
  font-size: 11px;
  color: var(--silver)
}

@media(max-width:900px) {
  .metrics-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width:700px) {
  .metrics-grid {
    grid-template-columns: repeat(1, 1fr)
  }

  .stakeholder-trigger {
    padding: 16px 20px
  }

  .stakeholder-body {
    padding: 20px
  }
}

/* FORMATS */
.formats-section {
  background: var(--bg)
}

.formats-header {
  /*max-width: 700px;*/
  margin-bottom: 48px
}

.formats-header h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 700;
  margin: 12px 0
}

.formats-grid-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px
}

.formats-grid-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px
}

.format-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition)
}

.format-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px)
}

.format-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px
}

.format-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700
}

.format-subtitle {
  font-size: 13px;
  color: var(--fg-dim)
}

.format-divider {
  border: none;
  border-top: 1px solid var(--border)
}

.format-desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
  flex: 1
}

.format-ideal {
  font-size: 12px;
  color: var(--fg-dim)
}

.format-ideal strong {
  color: var(--silver-dim)
}

@media(max-width:900px) {

  .formats-grid-top,
  .formats-grid-bottom {
    grid-template-columns: 1fr
  }
}

/* LEADERS */
.leaders-section {
  background: var(--bg-card)
}

.leaders-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px
}

.leaders-header h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 700;
  margin: 12px 0
}

.leaders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 48px
}

.leader-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  background: linear-gradient(160deg, rgba(30, 30, 30, 0.98), var(--bg));
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
  position: relative;
}

.leader-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(212, 175, 55, 0.08);
}

.leader-card img {
  border-radius: 12px;
  transition: filter 0.3s ease, transform 0.3s ease;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
}

.leader-card:hover img {
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 20px rgba(212, 175, 55, 0.15));
  transform: scale(1.02);
}

.leader-name {
  font-size: 30px;
  letter-spacing: -0.02em;
}

.leader-expertise-tag {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.leader-expertise-tag:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.5);
}

.leader-highlight {
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.25s ease;
}

.leader-card:hover .leader-highlight {
  border-color: rgba(212, 175, 55, 0.15);
}

.leader-highlight-value {
  text-shadow: 0 0 16px rgba(212, 175, 55, 0.4);
}

.leaders-partnership {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.07), rgba(212, 175, 55, 0.02));
  box-shadow: inset 0 1px 0 rgba(212, 175, 55, 0.25), 0 4px 24px rgba(0, 0, 0, 0.2);
}

.header-palestrante {
  border-radius: 18px 18px 0 0;
  height: 16rem;
  /* 256px */
  background: linear-gradient(to bottom right,
      rgba(212, 175, 55, 0.20),
      rgba(120, 120, 120, 0.20));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
}

.header-palestrante img {
  max-height: 320px;
  margin: 0px auto 24px auto;
}

.header-palestrante-divisor {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, #D4AF37 50%, transparent 100%);
}

.leader-card-content {
  padding: 40px;
}

.leader-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin-bottom: 24px
}

.leader-role {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 8px
}

.leader-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 4px
}

.leader-title {
  font-size: 14px;
  color: var(--fg-dim);
  margin-bottom: 20px
}

.leader-bio {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 24px
}

.leader-expertise-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px
}

.leader-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px
}

.leader-expertise-tag {
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 6px;
  padding: 4px;
  font-size: 12px;
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 500
}

.leader-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px
}

.leader-highlight {
  background: var(--bg-card);
  border-radius: 10px;
  padding: 12px
}

.leader-highlight-value {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--gold)
}

.leader-highlight-label {
  font-size: 11px;
  color: var(--fg-dim)
}

.leaders-partnership {
  background: linear-gradient(135deg, rgba(212, 175, 55, .08), transparent);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center
}

.leaders-partnership h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px
}

.leaders-partnership p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7
}

.leaders-partnership strong {
  color: var(--gold)
}

@media(max-width:700px) {
  .leaders-grid {
    grid-template-columns: 1fr
  }

  .leader-highlights {
    grid-template-columns: 1fr
  }
}

/* ROI */
.roi-section {
  background: var(--bg)
}

.roi-header {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 60px
}

.roi-header h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 700;
  margin: 12px 0
}

.roi-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px
}

.roi-benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px
}

.divalign-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.roi-benefit-icon {
  font-size: 28px;
  margin-bottom: 16px
}

.roi-benefit-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px
}

.roi-benefit-subtitle {
  font-size: 13px;
  color: var(--fg-dim);
  margin-bottom: 12px
}

.roi-benefit-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 12px
}

.roi-benefit-insight {
  font-size: 12px;
  color: var(--fg-dim);
  font-style: italic
}

.roi-expectations {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px
}

.roi-expectations h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 32px
}

.roi-expectations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px
}

.roi-expectation-item {
  background: var(--bg);
  border-radius: 10px;
  padding: 20px
}

.roi-expectation-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 8px
}

.roi-expectation-text {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6
}

.roi-sources {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.roi-source-tag {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px;
  color: var(--fg-dim);
  font-family: var(--font-heading)
}

@media(max-width:700px) {

  .roi-benefits-grid,
  .roi-expectations-grid {
    grid-template-columns: 1fr
  }
}

/* CTA FINAL */
.cta-section {
  background: var(--bg-card);
  position: relative;
  overflow: hidden
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(212, 175, 55, .08) 0%, transparent 70%);
  pointer-events: none
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 42px);
  font-weight: 700;
  margin: 16px 0
}

.cta-inner>p {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 40px
}

.cta-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px
}

.cta-trust-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center
}

.cta-trust-icon {
  font-size: 18px;
  margin-bottom: 8px
}

.cta-trust-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px
}

.cta-trust-desc {
  font-size: 12px;
  color: var(--fg-dim)
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px
}

.cta-buttons-tagline {
  font-size: 14px;
  color: var(--fg-dim);
  margin: 12px 0 20px;
}

.cta-contacts {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap
}

.cta-contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: var(--transition)
}

.cta-contact-link:hover {
  color: var(--gold)
}

@media(max-width:700px) {
  .cta-trust {
    grid-template-columns: 1fr
  }
}

/* FOOTER */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 64px 0 0
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--gold)
}

.footer-brand-sub {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--silver-dim)
}

.footer-tagline {
  font-size: 14px;
  color: var(--fg-dim);
  margin: 12px 0 20px
}

.footer-socials {
  display: flex;
  gap: 12px
}

.footer-social {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: var(--transition)
}

.footer-social:hover {
  border-color: var(--gold);
  color: var(--gold)
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--fg-dim);
  margin-bottom: 16px
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.footer-links a,
.footer-links button {
  font-size: 14px;
  color: var(--fg-muted);
  text-decoration: none;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  padding: 0;
  transition: var(--transition)
}

.footer-links a:hover,
.footer-links button:hover {
  color: var(--gold)
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px
}

.footer-contact-icon {
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0
}

.footer-contact-text {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5
}

.footer-contact-text a {
  text-decoration: none;
  color: var(--fg-muted);
  transition: var(--transition)
}

.footer-contact-text a:hover {
  color: var(--gold)
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px
}

.footer-copyright {
  font-size: 13px;
  color: var(--fg-dim)
}

.footer-legal {
  display: flex;
  gap: 20px
}

.footer-legal a {
  font-size: 13px;
  color: var(--fg-dim);
  text-decoration: none;
  transition: var(--transition)
}

.footer-legal a:hover {
  color: var(--gold)
}

@media(max-width:900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr
  }
}

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

  .footer-bottom {
    flex-direction: column;
    text-align: center
  }
}

/* CHATBOT */
.chatbot-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  width: 56px;
  height: 56px;
  background: var(--gold);
  color: #0F0F0F;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(212, 175, 55, .4);
  transition: var(--transition)
}

.chatbot-toggle:hover {
  background: var(--gold-light);
  transform: scale(1.1)
}

.chatbot-window {
  position: fixed;
  bottom: 96px;
  right: 24px;
  z-index: 200;
  width: 380px;
  max-width: calc(100vw - 32px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
  display: none;
  flex-direction: column;
  max-height: 420px;
  overflow: hidden
}

.chatbot-window.open {
  display: flex
}

.chatbot-header {
  background: var(--gold);
  color: #0F0F0F;
  padding: 16px 20px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0
}

.chatbot-header h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700
}

.chatbot-header p {
  font-size: 12px;
  opacity: .8
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.chatbot-messages::-webkit-scrollbar {
  width: 4px
}

.chatbot-messages::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 2px
}

.chat-msg {
  display: flex;
  max-width: 85%
}

.chat-msg.bot {
  align-self: flex-start
}

.chat-msg.user {
  align-self: flex-end
}

.chat-bubble {
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.5;
  white-space: pre-wrap
}

.chat-msg.bot .chat-bubble {
  background: var(--bg-muted);
  color: var(--fg);
  border-bottom-left-radius: 4px
}

.chat-msg.user .chat-bubble {
  background: var(--gold);
  color: #0F0F0F;
  border-bottom-right-radius: 4px
}

.chat-options {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 16px 16px
}

.chat-option {
  width: 100%;
  text-align: left;
  padding: 10px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
  color: var(--fg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  font-family: var(--font-body)
}

.chat-option:hover {
  border-color: var(--gold);
  color: var(--gold)
}

/* CONTACT PAGE */
.contact-page {
  padding-top: 100px;
  min-height: 100vh
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
  padding-top: 60px;
  padding-bottom: 60px;
}

.contact-info h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  margin: 16px 0
}

.contact-info>p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 32px
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px
}

.contact-detail-icon {
  width: 36px;
  height: 36px;
  background: var(--gold-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0
}

.contact-detail-text {
  font-size: 14px;
  color: var(--fg-muted)
}

.contact-detail-text strong {
  display: block;
  color: var(--fg);
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: .5px;
  margin-bottom: 2px
}

.contact-trust {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.contact-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--fg-muted)
}

.contact-trust-check {
  color: var(--gold);
  font-size: 16px
}

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px
}

.contact-form-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px
}

.contact-form-sub {
  font-size: 14px;
  color: var(--fg-dim);
  margin-bottom: 28px
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px
}

.form-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--fg-dim)
}

.form-input,
.form-select,
.form-textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--fg);
  transition: var(--transition);
  width: 100%
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold)
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--fg-dim)
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center
}

.form-select option {
  background: var(--bg-card);
  color: var(--fg)
}

.form-textarea {
  resize: vertical;
  min-height: 100px
}

.form-privacy {
  font-size: 12px;
  color: var(--fg-dim);
  text-align: center;
  margin-top: 8px
}

@media(max-width:900px) {
  .contact-grid {
    grid-template-columns: 1fr
  }

  .form-row {
    grid-template-columns: 1fr
  }
}

/* THANK YOU */
.thankyou-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 60px
}

.thankyou-inner {
  max-width: 700px;
  width: 100%;
  text-align: center
}

.thankyou-check {
  width: 80px;
  height: 80px;
  background: var(--gold-dim);
  border: 2px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 32px
}

.thankyou-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  margin-bottom: 16px
}

.thankyou-inner>p {
  font-size: 16px;
  color: var(--fg-muted);
  margin-bottom: 48px
}

.thankyou-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
  text-align: left
}

.thankyou-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px
}

.thankyou-step-num {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 8px
}

.thankyou-step-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px
}

.thankyou-step-desc {
  font-size: 13px;
  color: var(--fg-muted)
}

.thankyou-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px
}

.thankyou-quote {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--fg-muted);
  font-style: italic
}

.thankyou-quote strong {
  color: var(--gold)
}

@media(max-width:700px) {
  .thankyou-steps {
    grid-template-columns: 1fr
  }
}

/* DIAGNOSTICO */
.diag-page {
  min-height: 100vh;
  padding-top: 80px
}

.diag-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--bg-muted);
  z-index: 150
}

.diag-progress-fill {
  height: 100%;
  background: var(--gold);
  transition: width .5s ease
}

.diag-intro {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 24px
}

.diag-intro-hero {
  text-align: center;
  margin-bottom: 48px
}

.diag-intro-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 39px);
  font-weight: 700;
  margin: 16px 0;
  line-height: 1.2
}

.diag-intro-hero p {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7
}

.diag-pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 40px
}

.diag-pillar-preview {
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid
}

.diag-pillar-preview-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px
}

.diag-pillar-preview-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border: 1px solid
}

.diag-pillar-preview-id {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px
}

.diag-pillar-preview-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700
}

.diag-pillar-preview-sub {
  font-size: 11px;
  color: var(--fg-dim);
  margin-bottom: 10px
}

.diag-pillar-stat {
  display: flex;
  align-items: center;
  gap: 8px;
}

.diag-pillar-stat-value {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--gold);
}

.diag-pillar-stat-label {
  font-size: 11px;
  color: var(--fg-dim)
}

.diag-what-you-get {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 32px
}

.diag-what-you-get h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px
}

.diag-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.diag-benefit {
  text-align: center
}

.diag-benefit-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 12px
}

.diag-benefit-title {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px
}

.diag-benefit-desc {
  font-size: 12px;
  color: var(--fg-dim)
}

.diag-questions {
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 24px
}

.diag-pillar-indicators {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap
}

.diag-pillar-indicators img {
  max-width: 20px;
}

.diag-pillar-indicator {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  border: 1px solid;
  transition: var(--transition)
}

.diag-narrative-card {
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid;
  margin-bottom: 24px
}

.diag-narrative-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px
}

.diag-narrative-subtitle {
  font-size: 11px;
}

.diag-narrative-text {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 16px
}

.diag-narrative-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .06)
}

.diag-stat-value {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--gold);
}

.diag-stat-label {
  font-size: 11px;
  color: var(--fg-dim);
  line-height: 1.4
}

.diag-stat-source {
  font-size: 10px;
  color: var(--fg-dim);
  opacity: .6;
  margin-top: 2px
}

.diag-question-counter {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 11px;
  color: var(--fg-dim);
  margin-bottom: 12px
}

.diag-question-text {
  font-family: var(--font-display);
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 24px
}

.diag-options {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.diag-option {
  width: 100%;
  text-align: left;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 14px;
  color: var(--fg-muted);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 10px
}

.diag-option:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
  color: var(--fg)
}

.diag-option.selected {
  border-color: var(--gold);
  background: var(--gold-dim);
  color: var(--gold)
}

.diag-option-num {
  font-family: var(--font-heading);
  font-size: 11px;
  color: var(--fg-dim);
  flex-shrink: 0
}

.diag-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px
}

.diag-nav-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--fg-dim);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--transition)
}

.diag-nav-btn:hover {
  color: var(--gold)
}

.diag-lead {
  max-width: 480px;
  margin: 0 auto;
  padding: 60px 24px;
  text-align: center
}

.diag-lead-icon {
  width: 64px;
  height: 64px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 24px
}

.diag-lead h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px
}

.diag-lead-subtitle {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 16px
}

.diag-lead>p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 28px
}

.diag-lead-form {
  text-align: left
}

.diag-result {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px 80px
}

.diag-result-hero {
  text-align: center;
  margin-bottom: 40px
}

.diag-result-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  margin: 12px 0
}

.diag-result-hero p {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto
}

.diag-overall-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 32px;
  margin-bottom: 24px
}

.diag-overall-score-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--fg-dim);
  margin-bottom: 8px
}

.diag-overall-score-value {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1
}

.diag-overall-score-level {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700
}

.diag-overall-score-sub {
  font-size: 13px;
  color: var(--fg-dim)
}

.diag-overall-desc p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 12px
}

.diag-urgency-box {
  border-radius: 10px;
  padding: 14px 16px;
  border: 1px solid;
  display: flex;
  align-items: flex-start;
  gap: 10px
}

.diag-urgency-icon {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px
}

.diag-urgency-text {
  font-size: 13px;
  line-height: 1.6
}

.diag-pillars-result {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 24px
}

.diag-pillar-result-card {
  border-radius: var(--radius-lg);
  border: 1px solid;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.diag-pillar-result-header {
  display: flex;
  justify-content: space-between;
  align-items: center
}

.diag-pillar-result-info {
  display: flex;
  align-items: center;
  gap: 10px
}

.diag-pillar-result-icon {
  font-size: 20px
}

.diag-pillar-result-name {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700
}

.diag-pillar-result-sub {
  font-size: 11px;
  color: var(--fg-dim)
}

.diag-pillar-result-score {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900
}

.diag-pillar-result-level {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700
}

.diag-bar-track {
  background: rgba(255, 255, 255, .06);
  border-radius: 999px;
  height: 8px
}

.diag-bar-fill {
  height: 100%;
  border-radius: 999px;
  transition: width 1s ease
}

.diag-pillar-opportunity {
  font-size: 12px;
  color: var(--fg-dim);
  line-height: 1.5
}

.diag-pillar-recommendation {
  border-radius: 8px;
  padding: 12px;
  border: 1px solid
}

.diag-pillar-rec-label {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 4px
}

.diag-pillar-rec-text {
  font-size: 12px;
  color: var(--fg-muted)
}

.diag-insights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 24px
}

.diag-insight-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px
}

.diag-insight-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px
}

.diag-insight-icon {
  font-size: 18px;
  color: var(--gold);
  padding-top: 8px;
}

.diag-insight-label {
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--fg-dim);
  letter-spacing: .5px;
}

.diag-insight-pillar {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px
}

.diag-insight-desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 8px
}

.diag-insight-score {
  font-size: 12px;
  color: var(--fg-dim)
}

.diag-market-data {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px
}

.diag-market-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--fg-dim);
  text-align: center;
  margin-bottom: 24px
}

.diag-market-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center
}

.diag-market-icon {
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 8px
}

.diag-market-stat {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  color: var(--gold)
}

.diag-market-desc {
  font-size: 13px;
  color: var(--fg-muted)
}

.diag-market-source {
  font-size: 11px;
  color: var(--fg-dim);
  margin-top: 4px
}

.diag-cta-box {
  background: linear-gradient(135deg, rgba(212, 175, 55, .12), var(--bg));
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 40px
}

.diag-cta-box-header {
  text-align: center;
  margin-bottom: 28px
}

.diag-cta-box-header>p {
  font-family: var(--font-heading);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 12px
}

.diag-cta-box-header h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px
}

.diag-cta-box-header .desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7
}

.diag-pdf-row {
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap
}

.diag-pdf-info {
  display: flex;
  align-items: center;
  gap: 12px
}

.diag-pdf-icon {
  font-size: 24px;
  color: var(--gold)
}

.diag-pdf-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700
}

.diag-pdf-sub {
  font-size: 12px;
  color: var(--fg-dim)
}

.diag-cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px
}

.diag-cta-note {
  font-size: 12px;
  color: var(--fg-dim);
  text-align: center
}

@media(max-width:700px) {

  .diag-pillars-result,
  .diag-insights,
  .diag-market-grid,
  .diag-pillars-grid,
  .diag-benefits-grid,
  .diag-narrative-stats {
    grid-template-columns: 1fr
  }
}

.hidden {
  display: none !important
}

/* ═══════════════════════════════════════════════════════════════════
   VISUAL ENHANCEMENT OVERRIDES — matching home.html reference design
   ═══════════════════════════════════════════════════════════════════ */

/* ── Enhanced CSS Variables ── */
:root {
  --gold-glow: rgba(212, 175, 55, 0.25);
  --gold-glow-strong: rgba(212, 175, 55, 0.4);
}

/* ── Body: subtle dot grid pattern ── */
body {
  background: var(--bg);
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.035) 1px, transparent 0);
  background-size: 32px 32px;
}

/* ── Global section padding increase ── */
.section {
  padding: 100px 0;
}

/* ── Badge: enhanced with stronger glow ── */
.badge {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.1), inset 0 1px 0 rgba(212, 175, 55, 0.15);
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
  backdrop-filter: blur(8px);
}

/* ── Centered section headings: decorative underline ── */
.camp-model-header h2,
.leaders-header h2,
.roi-header h2,
.cta-inner h2 {
  position: relative;
}

.camp-model-header h2::after,
.leaders-header h2::after,
.roi-header h2::after,
.cta-inner h2::after {
  content: '';
  display: block;
  margin: 12px auto 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
}

/* ── Left-aligned section headings: decorative underline ── */
.stakeholder-header h2,
.formats-header h2 {
  position: relative;
}

.stakeholder-header h2::after,
.formats-header h2::after {
  content: '';
  display: block;
  margin-top: 12px;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}

/* ── Hero section: enhanced with radial glow and floating orbs ── */
.hero {
  background: radial-gradient(ellipse at 70% 40%, rgba(212, 175, 55, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
    var(--bg);
}

.hero::before {
  background: radial-gradient(circle, rgba(212, 175, 55, 0.10) 0%, transparent 65%);
  animation: pulse-glow 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
  pointer-events: none;
  animation: pulse-glow 8s ease-in-out infinite reverse;
}

@keyframes pulse-glow {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

/* ── Hero image container: glow aura ── */
.hero-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  /*margin-left: -100px;
  margin-top: -100px;*/
}

.hero-image-container::before {
  content: '';
  position: absolute;
  inset: -20px;
  pointer-events: none;
  z-index: 0;
}

.hero-image-container img {
  max-width: 180%;
}

/* ── Golden text highlight ── */
.highlight-gold {
  color: var(--gold);
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.35);
}

/* ── Hero typography: strong hierarchy ── */
.hero-desc {
  font-size: 16px !important;
  color: rgba(245, 245, 245, 0.82) !important;
  line-height: 1.75 !important;
  text-align: left;
}

.hero-desc strong {
  color: var(--fg);
  font-weight: 700;
}

.hero-bullet {
  font-size: 14.5px !important;
}

.hero-bullet strong {
  color: var(--fg);
  font-weight: 700;
}

/* ── Hero CTAs: high contrast ── */
.hero-ctas .btn-primary {
  background: linear-gradient(135deg, #FFC107, #E6A800) !important;
  color: #000000 !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  /*padding: 18px 40px !important;*/
  border-radius: 12px !important;
  box-shadow: 0 0 32px rgba(255, 193, 7, 0.35), 0 4px 16px rgba(0, 0, 0, 0.3) !important;
  letter-spacing: 0.03em;
  transition: all 0.25s ease;
}

.hero-ctas .btn-primary:hover {
  background: linear-gradient(135deg, #FFD740, #FFC107) !important;
  box-shadow: 0 0 48px rgba(255, 215, 64, 0.5), 0 8px 24px rgba(0, 0, 0, 0.3) !important;
  transform: translateY(-3px) !important;
}

.hero-ctas .btn-outline {
  color: var(--fg-muted) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.22) !important;
  font-size: 15px !important;
  /*padding: 18px 36px !important;*/
  border-radius: 12px !important;
  backdrop-filter: blur(8px);
}

.hero-ctas .btn-outline:hover {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
  background: rgba(212, 175, 55, 0.08) !important;
}

.hero-ctas {
  margin-top: 8px;
}

/* ── Hero leaders strip: enhanced ── */
.hero-leaders {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  padding: 16px 20px;
}

/* ── CAMP Model section ── */
.camp-model {
  background:
    radial-gradient(ellipse at 0% 0%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
    var(--bg-card);
  position: relative;
}

/* ── Pillar cards: enhanced glassmorphism ── */
.pillar-card {
  background: linear-gradient(135deg, rgba(30, 30, 30, 0.9), var(--bg-card));
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pillar-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.1);
}

.pillar-icon {
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.15);
  transition: box-shadow 0.3s ease;
}

.pillar-card:hover .pillar-icon {
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.3);
}

/* ── Camp model image: enhanced ── */
.camp-model-image {
  box-shadow: 0 0 80px rgba(212, 175, 55, 0.12), 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: box-shadow 0.4s ease;
}

.camp-model-image:hover {
  box-shadow: 0 0 100px rgba(212, 175, 55, 0.2), 0 30px 80px rgba(0, 0, 0, 0.5);
}

/* ── Camp integration block ── */
.camp-integration {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.03));
  box-shadow: inset 0 1px 0 rgba(212, 175, 55, 0.2), 0 4px 24px rgba(0, 0, 0, 0.2);
}

/* ── Stakeholder section ── */
.stakeholder-section {
  background:
    radial-gradient(ellipse at 100% 50%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
    var(--bg);
}

.stakeholder-item {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), var(--bg-card));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.stakeholder-item:hover {
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35), 0 0 20px rgba(212, 175, 55, 0.06);
  transform: translateX(4px);
}

.stakeholder-trigger-icon {
  background: rgba(212, 175, 55, 0.12);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.1);
}

.stakeholder-chevron {
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.journey-dot {
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* ── Metric cards: golden glow ── */
.metric-card {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), var(--bg-card));
  border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.metric-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 24px rgba(212, 175, 55, 0.1);
}

.metric-value {
  font-size: 40px;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
  letter-spacing: -0.02em;
}

/* ── Formats section ── */
.formats-section {
  background:
    radial-gradient(ellipse at 30% 70%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
    var(--bg);
}

.format-card {
  background: linear-gradient(135deg, rgba(28, 28, 28, 0.95), var(--bg-card));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.format-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.1);
  transform: translateY(-6px);
}

.format-icon {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.1);
  width: 52px;
  height: 52px;
  font-size: 22px;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.format-card:hover .format-icon {
  background: rgba(212, 175, 55, 0.2);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.25);
}



/* ── ROI section ── */
.roi-section {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.06) 0%, transparent 60%),
    var(--bg);
}

.roi-benefit-card {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), var(--bg-card));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  transition: all 0.35s ease;
  position: relative;
}

.roi-benefit-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.roi-benefit-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 24px rgba(212, 175, 55, 0.08);
}

.roi-benefit-card:hover::before {
  opacity: 1;
}

.roi-benefit-icon {
  width: 52px;
  height: 52px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.1);
  transition: all 0.3s ease;
}

.roi-benefit-card:hover .roi-benefit-icon {
  background: rgba(212, 175, 55, 0.18);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.2);
}

.roi-expectations {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), var(--bg-card));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.roi-expectation-item {
  background: rgba(15, 15, 15, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.25s ease;
}

.roi-expectation-item:hover {
  border-color: rgba(212, 175, 55, 0.2);
  background: rgba(20, 20, 20, 0.9);
}

.roi-source-tag {
  transition: all 0.2s ease;
}

.roi-source-tag:hover {
  border-color: rgba(212, 175, 55, 0.25);
  color: var(--gold);
}

/* ── CTA Section ── */
.cta-section {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.1) 0%, transparent 60%),
    var(--bg-card);
  padding: 100px 0px 60px 0px;
}

.cta-trust-item {
  background: rgba(15, 15, 15, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.cta-trust-item:hover {
  border-color: rgba(212, 175, 55, 0.3);
  background: rgba(20, 20, 20, 0.9);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.cta-buttons .btn-primary {
  background: linear-gradient(135deg, var(--gold), #C8A000);
  box-shadow: 0 0 28px rgba(212, 175, 55, 0.3), 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.cta-buttons .btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 48px rgba(212, 175, 55, 0.45), 0 8px 24px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}

/* ── Footer ── */
.footer {
  background: linear-gradient(to bottom, rgba(10, 10, 10, 1), var(--bg));
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: inset 0 1px 0 rgba(212, 175, 55, 0.1);
}

/* ── Custom scrollbar ── */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 175, 55, 0.5);
}

/* ── Navbar: enhanced glassmorphism ── */
.navbar.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
}

.navbar-brand img {
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.2));
  transition: filter 0.3s ease;
}

.navbar-brand:hover img {
  filter: drop-shadow(0 0 16px rgba(212, 175, 55, 0.4));
}

.navbar-ctas .btn-primary {
  background: linear-gradient(135deg, var(--gold), #C8A000);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.25);
  font-weight: 700;
  transition: all 0.25s ease;
}

.navbar-ctas .btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 28px rgba(212, 175, 55, 0.4);
  transform: translateY(-1px);
}

/* ── Chatbot enhanced ── */
.chatbot-toggle {
  background: linear-gradient(135deg, var(--gold), #C8A000);
  box-shadow: 0 4px 24px rgba(212, 175, 55, 0.45);
}

.chatbot-toggle:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 6px 32px rgba(212, 175, 55, 0.6);
  transform: scale(1.1);
}

/* ── Hero grid: responsive ── */
@media (max-width: 900px) {
  .hero-image-container {
    order: -1;
  }

  .hero-content {
    text-align: left;
  }

  .hero::after {
    display: none;
  }
}