@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap");

/* ─────────────────────────────────────────────
   DESIGN TOKENS & SYSTEM (HIGH-CONVERTING LUXURY)
───────────────────────────────────────────── */
:root {
  --bg-main:       #080807;
  --bg-surface:    #10100E;
  --bg-card:       #141311;
  --bg-card-hover: #1A1916;
  --bg-highlight:  rgba(200, 162, 101, 0.08);

  --gold-primary:  #C8A265;
  --gold-light:    #E2C799;
  --gold-bright:   #F3DCB0;
  --gold-dark:     #8C6D3B;
  --gold-border:   rgba(200, 162, 101, 0.28);
  --gold-border-h: rgba(200, 162, 101, 0.55);
  --gold-glow:     rgba(200, 162, 101, 0.18);

  --text-pure:     #FFFFFF;
  --text-ivory:    #F8F5EE;
  --text-muted:    #B8B0A0;
  --text-dim:      #7C7567;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-gold:   rgba(200, 162, 101, 0.28);

  --radius-xs:     3px;
  --radius-sm:     6px;
  --radius-md:     10px;
  --radius-full:   9999px;

  --shadow-card:   0 16px 48px rgba(0, 0, 0, 0.5);
  --shadow-gold:   0 12px 36px rgba(200, 162, 101, 0.22);
  --transition:    all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─────────────────────────────────────────────
   RESET & FOUNDATIONS
───────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-main);
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

body {
  background-color: var(--bg-main);
  color: var(--text-ivory);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

::selection {
  background: var(--gold-primary);
  color: #080807;
}

::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: var(--radius-full);
}

/* ─────────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────────── */
.font-display {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.font-editorial {
  font-family: "EB Garamond", Georgia, serif;
}

.t-eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.t-section-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--text-ivory);
  letter-spacing: -0.01em;
  word-wrap: break-word;
}

.t-section-title em {
  font-style: italic;
  font-family: "EB Garamond", Georgia, serif;
  color: var(--gold-light);
}

.t-section-desc {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 620px;
}

.text-gold-gradient {
  background: linear-gradient(135deg, #FFF1D6 0%, #E2C799 40%, #C8A265 80%, #9B7840 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─────────────────────────────────────────────
   REUSABLE UI COMPONENTS
───────────────────────────────────────────── */
.gold-divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-primary), transparent);
  margin: 16px 0 24px;
}

.gold-divider-center {
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  margin: 18px auto 24px;
}

.badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(200, 162, 101, 0.1);
  border: 1px solid var(--gold-border);
  font-family: "Inter", sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-bright);
  max-width: 100%;
}

.badge-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-primary);
  box-shadow: 0 0 8px var(--gold-primary);
  animation: pulse-glow 2.4s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}

.btn-luxury-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #F3DCB0 0%, #C8A265 50%, #A88347 100%);
  color: #080807;
  font-family: "Inter", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--radius-xs);
  box-shadow: 0 10px 30px rgba(200, 162, 101, 0.3);
  overflow: hidden;
  transition: var(--transition);
  text-align: center;
  cursor: pointer;
}

.btn-luxury-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: 0.6s ease;
}

.btn-luxury-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(200, 162, 101, 0.45);
}

.btn-luxury-primary:hover::after {
  left: 100%;
}

.btn-luxury-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-gold);
  color: var(--text-ivory);
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: var(--radius-xs);
  backdrop-filter: blur(8px);
  transition: var(--transition);
  text-align: center;
}

.btn-luxury-ghost:hover {
  background: rgba(200, 162, 101, 0.1);
  border-color: var(--gold-light);
  color: var(--gold-bright);
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────────
   LAYOUT WRAPPERS
───────────────────────────────────────────── */
.section-wrapper {
  padding: 90px 24px;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.section-wrapper-sm {
  padding: 50px 24px;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.container-luxury {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.container-narrow {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.section-header-block {
  margin-bottom: 50px;
}

.section-header-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ─────────────────────────────────────────────
   NAVBAR
───────────────────────────────────────────── */
.site-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(8, 8, 7, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  width: 100%;
  box-sizing: border-box;
}

.site-navbar.scrolled {
  background: rgba(8, 8, 7, 0.96);
  border-color: var(--border-gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-logo-remax {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.brand-separator {
  width: 1px;
  height: 26px;
  background: var(--gold-border);
}

.bern-brand-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-bern {
  height: 34px;
  width: auto;
  object-fit: contain;
  display: block;
}

.bern-logo-text {
  font-family: "Inter", sans-serif;
  text-align: left;
  line-height: 1.05;
}
.bern-top {
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold-light);
  display: block;
}
.bern-main {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text-pure);
  letter-spacing: 0.06em;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.navbar-nav a {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.navbar-nav a:hover {
  color: var(--gold-bright);
}

.nav-cta-btn {
  padding: 10px 22px;
  font-size: 0.65rem;
}

.mobile-sticky-cta {
  display: none;
}

/* ─────────────────────────────────────────────
   SPLIT HERO SECTION (HIGH CONVERTING)
───────────────────────────────────────────── */
.hero-split-section {
  position: relative;
  padding: 120px 24px 70px;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: brightness(0.5) contrast(1.15) saturate(1.1);
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 20%, rgba(8, 8, 7, 0.3) 0%, rgba(8, 8, 7, 0.88) 75%, var(--bg-main) 100%),
    linear-gradient(180deg, rgba(8, 8, 7, 0.2) 0%, rgba(8, 8, 7, 0.85) 60%, var(--bg-main) 100%);
  z-index: 1;
}

.hero-split-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.hero-copy-column {
  text-align: left;
}

.hero-main-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 300;
  line-height: 0.98;
  color: var(--text-pure);
  letter-spacing: -0.02em;
  margin: 16px 0 12px;
}

.hero-main-title span {
  font-style: italic;
  font-family: "EB Garamond", Georgia, serif;
}

.hero-lead-text {
  font-family: "Inter", sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.hero-lead-text strong {
  color: var(--gold-bright);
  font-weight: 600;
}

/* 4 Quick Value Proposition Badges */
.hero-value-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.value-stack-item {
  background: rgba(20, 19, 17, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xs);
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.value-stack-item:hover {
  border-color: var(--gold-border);
  background: rgba(200, 162, 101, 0.06);
}

.value-stack-icon {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background: rgba(200, 162, 101, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.value-stack-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-pure);
  line-height: 1.3;
  margin-bottom: 2px;
}

.value-stack-desc {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Event Logistics Badges */
.hero-logistics-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 14px 18px;
  background: rgba(200, 162, 101, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xs);
}

.logistics-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--text-ivory);
}

.logistics-item svg {
  color: var(--gold-light);
  flex-shrink: 0;
}

/* Embedded Form Column */
.hero-form-column {
  position: relative;
}

.lead-form-card {
  background: var(--bg-card);
  border: 1.5px solid var(--gold-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(200, 162, 101, 0.15);
  backdrop-filter: blur(20px);
  position: relative;
}

.lead-form-header {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-gold);
  padding: 20px 24px;
  text-align: center;
}

.lead-form-header h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 400;
  color: var(--text-pure);
  line-height: 1.15;
}

.lead-form-header h3 em {
  font-style: italic;
  font-family: "EB Garamond", Georgia, serif;
  color: var(--gold-light);
}

.lead-form-header p {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.lead-form-body {
  padding: 20px 20px 16px;
  background: var(--bg-card);
}

.lead-form-body iframe {
  width: 100% !important;
  min-height: 480px !important;
  border: none !important;
  display: block;
}

.lead-form-footer {
  padding: 12px 20px 16px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.64rem;
  color: var(--text-dim);
}

.lead-form-footer span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ─────────────────────────────────────────────
   COUNTDOWN & SCARCITY BAR
───────────────────────────────────────────── */
.countdown-ribbon {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 20px 40px;
  width: 100%;
  box-sizing: border-box;
}

.countdown-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.countdown-context h4 {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 2px;
}
.countdown-context p {
  font-size: 0.84rem;
  color: var(--text-muted);
}

.timer-boxes {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.timer-box {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xs);
  padding: 6px 12px;
  min-width: 58px;
  text-align: center;
}

.timer-digits {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
  color: var(--gold-light);
}

.timer-label {
  font-size: 0.48rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 2px;
}

.timer-colon {
  color: var(--gold-dark);
  font-size: 1.3rem;
  font-weight: 300;
  padding-bottom: 4px;
}

/* ─────────────────────────────────────────────
   STRATEGIC VALUE GRID (POR QUÉ PANAMÁ)
───────────────────────────────────────────── */
.opportunity-matrix {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.opportunity-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 32px 24px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.opportunity-card:hover {
  border-color: var(--gold-border-h);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.opp-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background: rgba(200, 162, 101, 0.1);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  margin-bottom: 18px;
}

.opp-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-ivory);
  margin-bottom: 10px;
  line-height: 1.25;
}

.opp-body {
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* Statistics Bar */
.stats-banner {
  margin-top: 40px;
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 28px 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.3rem;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-item p {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ─────────────────────────────────────────────
   ADVISORS SECTION (EQUIPO DE EXPERTOS)
───────────────────────────────────────────── */
.advisors-grid-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

.advisors-grid-bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.advisor-card-v2 {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 30px 18px 24px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.advisor-card-v2:hover {
  border-color: var(--gold-border-h);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
}

.advisor-card-v2.featured-leader {
  background: linear-gradient(180deg, rgba(200, 162, 101, 0.08) 0%, var(--bg-card) 100%);
  border-color: var(--gold-border);
}

.leader-ribbon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #E2C799, #C8A265);
  color: #080807;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 3px 14px;
  border-radius: 0 0 var(--radius-xs) var(--radius-xs);
  box-shadow: 0 4px 12px rgba(200, 162, 101, 0.3);
}

.advisor-portrait-frame {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  padding: 3px;
  background: radial-gradient(circle, rgba(200, 162, 101, 0.4) 0%, rgba(200, 162, 101, 0.06) 70%, transparent 100%);
  border: 1px solid var(--border-gold);
  margin-bottom: 18px;
  transition: var(--transition);
  position: relative;
}

.advisor-portrait-frame.large-frame {
  width: 136px;
  height: 136px;
  border-color: var(--gold-primary);
  box-shadow: 0 0 24px rgba(200, 162, 101, 0.2);
}

.advisor-portrait-frame.compact-frame {
  width: 104px;
  height: 104px;
}

.advisor-card-v2:hover .advisor-portrait-frame {
  border-color: var(--gold-light);
  transform: scale(1.04);
}

.portrait-circle-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: #080807;
}

.portrait-circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.03) brightness(0.98);
}

.advisor-full-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-pure);
  margin-bottom: 3px;
  line-height: 1.2;
}

.advisor-job-title {
  font-family: "EB Garamond", Georgia, serif;
  font-style: italic;
  font-size: 0.88rem;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.advisor-org-tag {
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ─────────────────────────────────────────────
   FAQ ACCORDION
───────────────────────────────────────────── */
.faq-accordion {
  border-top: 1px solid var(--border-subtle);
  width: 100%;
}

.faq-card-item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-button-trigger {
  width: 100%;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  transition: var(--transition);
}

.faq-button-trigger:hover .faq-question-text {
  color: var(--gold-light);
}

.faq-question-text {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 1.15rem;
  color: var(--text-ivory);
  font-weight: 400;
  line-height: 1.4;
  transition: var(--transition);
}

.faq-icon-chevron {
  width: 18px;
  height: 18px;
  color: var(--gold-dark);
  flex-shrink: 0;
  transition: transform 0.35s ease, color 0.35s ease;
}

.faq-card-item.open .faq-icon-chevron {
  transform: rotate(45deg);
  color: var(--gold-light);
}

.faq-card-item.open .faq-question-text {
  color: var(--gold-bright);
}

.faq-answer-collapse {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.faq-card-item.open .faq-answer-collapse {
  max-height: 400px;
  opacity: 1;
}

.faq-answer-text {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-muted);
  padding-bottom: 24px;
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-gold);
  padding: 60px 24px 36px;
  width: 100%;
  box-sizing: border-box;
}

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

.footer-logo-remax {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-logo-bern {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-col-title {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.footer-desc-text {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 360px;
}

.footer-bottom-bar {
  padding-top: 28px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.68rem;
  color: var(--text-dim);
}

/* ─────────────────────────────────────────────
   RESPONSIVE DESIGN (TABLET & MOBILE)
───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-split-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-copy-column {
    text-align: center;
  }
  .hero-eyebrow-container {
    justify-content: center;
  }
  .hero-logistics-bar {
    justify-content: center;
  }
  .opportunity-matrix {
    grid-template-columns: repeat(2, 1fr);
  }
  .advisors-grid-top {
    grid-template-columns: repeat(2, 1fr);
  }
  .advisors-grid-bottom {
    grid-template-columns: repeat(2, 1fr);
  }
  .navbar-nav {
    display: none;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 74px; /* Space for bottom sticky CTA */
  }

  /* Mobile Navbar */
  .site-navbar {
    height: 58px;
    padding: 0 16px;
    background: rgba(8, 8, 7, 0.96);
    border-bottom: 1px solid var(--border-gold);
    justify-content: center !important;
  }

  .site-navbar .navbar-nav,
  .site-navbar .nav-cta-btn,
  .site-navbar .brand-separator,
  .site-navbar .bern-brand-wrap,
  .site-navbar .bern-logo-text {
    display: none !important;
  }

  .site-navbar .navbar-brand {
    justify-content: center;
    gap: 0;
  }

  .site-navbar .nav-logo-remax {
    height: 32px;
    width: auto;
  }

  /* Mobile Sticky Bottom CTA Bar */
  .mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    background: rgba(8, 8, 7, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-gold);
    z-index: 999;
    display: flex;
    justify-content: center;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.85);
  }

  .mobile-sticky-cta .mobile-cta-btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 0.76rem;
    letter-spacing: 0.16em;
    box-shadow: 0 6px 24px rgba(200, 162, 101, 0.35);
  }

  /* Hero Adjustments */
  .hero-split-section {
    padding: 78px 16px 40px;
  }

  .hero-main-title {
    font-size: 2.35rem;
    line-height: 1.02;
    margin: 12px 0 10px;
  }

  .hero-lead-text {
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .hero-value-stack {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 20px;
  }

  .value-stack-item {
    padding: 12px 14px;
    text-align: left;
  }

  .hero-logistics-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
  }

  .lead-form-header {
    padding: 16px 14px;
  }

  .lead-form-header h3 {
    font-size: 1.45rem;
  }

  .lead-form-body {
    padding: 14px 6px;
  }

  /* Countdown */
  .countdown-ribbon {
    padding: 18px 12px;
  }

  .countdown-flex {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }

  .timer-boxes {
    gap: 4px;
    justify-content: center;
    width: 100%;
  }

  .timer-box {
    min-width: 48px;
    padding: 5px 4px;
  }

  .timer-digits {
    font-size: 1.35rem;
  }

  /* Section Padding */
  .section-wrapper {
    padding: 48px 16px;
  }

  .section-header-block {
    margin-bottom: 28px;
  }

  .t-section-title {
    font-size: 1.95rem;
  }

  .opportunity-matrix {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .stats-banner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px 14px;
    margin-top: 24px;
  }

  .advisors-grid-top,
  .advisors-grid-bottom {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .advisor-card-v2 {
    padding: 24px 14px 18px;
  }

  .footer-columns-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
  }

  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}
