/* =============================================================================
   POLK CASH BUYERS — Dark Navy + Glow Edition
   Navy base · Gold accent · Teal glow · Space Grotesk headings
   ============================================================================= */

/* ---------- Custom Properties ---------- */
:root {
  /* Navy palette */
  --navy-900: #071422;
  --navy-800: #0c1d30;
  --navy-700: #112540;
  --navy-600: #163050;
  --navy-500: #1c3a60;
  --navy-400: #234876;

  /* Gold */
  --gold:     #c9a84c;
  --gold-lt:  #dfc070;
  --gold-dk:  #a07828;
  --gold-dim: rgba(201,168,76,0.15);

  /* Teal (investor / tech accent) */
  --teal:     #4cd9c9;
  --teal-lt:  #7de8db;
  --teal-dk:  #2db8a8;
  --teal-dim: rgba(76,217,201,0.12);

  /* Glow values — radial gradient colors */
  --glow-gold-strong: rgba(201,168,76,0.18);
  --glow-gold-mid:    rgba(201,168,76,0.10);
  --glow-gold-soft:   rgba(201,168,76,0.05);
  --glow-teal-strong: rgba(76,217,201,0.13);
  --glow-teal-mid:    rgba(76,217,201,0.07);
  --glow-teal-soft:   rgba(76,217,201,0.03);

  /* Status */
  --green:    #27ae60;
  --green-lt: rgba(39,174,96,0.15);
  --yellow:   #f39c12;
  --red:      #c0392b;
  --red-lt:   rgba(192,57,43,0.15);
  --orange:   #e67e22;

  /* Text */
  --text:     #e2ddd4;
  --text-2:   #b8b0a4;
  --text-3:   #7a8a9a;
  --white:    #ffffff;

  /* Borders */
  --border:       rgba(201,168,76,0.22);
  --border-2:     rgba(255,255,255,0.06);
  --border-teal:  rgba(76,217,201,0.25);

  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 28px rgba(0,0,0,0.32);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.42);
  --glow-card: 0 0 24px rgba(201,168,76,0.10);
  --glow-card-teal: 0 0 24px rgba(76,217,201,0.10);

  /* Typography */
  --font-head: 'Space Grotesk','Helvetica Neue',Arial,sans-serif;
  --font-body: 'Inter','Helvetica Neue',Arial,sans-serif;

  /* Motion */
  --ease: 0.28s ease;
  --ease-fast: 0.15s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--navy-800);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--ease-fast); }
a:hover { color: var(--gold-lt); }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.15rem; }
p  { margin-bottom: 1rem; color: var(--text); }
p:last-child { margin-bottom: 0; }
strong { font-weight: 700; color: var(--white); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section      { padding: 5rem 0; }
.section-alt  { background: var(--navy-700); }
.section-dark { background: var(--navy-900); }
.section-navy { background: var(--navy-800); }

main { padding-top: 68px; }

/* ---------- Helpers ---------- */
.text-center  { text-align: center; }
.text-gold    { color: var(--gold); }
.text-teal    { color: var(--teal); }
.text-muted   { color: var(--text-3); }
.text-white   { color: var(--white); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { margin-bottom: 0.6rem; }
.section-header p  { color: var(--text-3); max-width: 640px; margin: 0.5rem auto 0; font-size: 1.05rem; }

/* Gold rule / divider */
.gold-rule {
  display: inline-block;
  width: 52px; height: 3px;
  background: linear-gradient(90deg, var(--gold-dk), var(--gold));
  margin: 0.75rem 0;
  border-radius: 2px;
}
.gold-rule-center { display: block; margin: 0.75rem auto; }

/* Teal rule */
.teal-rule {
  display: inline-block;
  width: 52px; height: 3px;
  background: linear-gradient(90deg, var(--teal-dk), var(--teal));
  margin: 0.75rem 0;
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(76,217,201,0.4);
}
.teal-rule-center { display: block; margin: 0.75rem auto; }

/* ---------- GLOW SYSTEM ---------- */

/* Atmospheric glow blobs — placed inside position:relative containers */
.glow-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.glow-gold-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--glow-gold-strong) 0%, var(--glow-gold-mid) 35%, transparent 70%);
}
.glow-gold-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--glow-gold-mid) 0%, transparent 65%);
}
.glow-teal-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--glow-teal-strong) 0%, var(--glow-teal-mid) 40%, transparent 70%);
}
.glow-teal-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--glow-teal-mid) 0%, transparent 65%);
}

/* Card hover glow */
.card-glow-hover {
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.card-glow-hover:hover {
  border-color: rgba(201,168,76,0.45);
  box-shadow: var(--shadow-md), var(--glow-card);
  transform: translateY(-4px);
}
.card-glow-teal-hover:hover {
  border-color: rgba(76,217,201,0.45);
  box-shadow: var(--shadow-md), var(--glow-card-teal);
  transform: translateY(-4px);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  border-radius: 6px;
  text-align: center;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: all var(--ease);
  line-height: 1;
  position: relative;
}

/* Gold primary — for sellers / warm CTAs */
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: var(--navy-900);
  box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  color: var(--navy-900);
  box-shadow: 0 6px 24px rgba(201,168,76,0.50);
  transform: translateY(-2px);
}
.btn-primary:active { transform: translateY(0); }

/* Teal outline — for investors / sharp CTAs */
.btn-investor {
  background: rgba(76,217,201,0.08);
  color: var(--teal);
  border: 1.5px solid var(--teal);
  box-shadow: 0 0 18px rgba(76,217,201,0.20), inset 0 0 14px rgba(76,217,201,0.04);
}
.btn-investor:hover {
  background: rgba(76,217,201,0.15);
  border-color: var(--teal-lt);
  color: var(--teal-lt);
  box-shadow: 0 0 28px rgba(76,217,201,0.35), 0 4px 16px rgba(0,0,0,0.2);
  transform: translateY(-2px);
}
.btn-investor:active { transform: translateY(0); }

/* White/outline */
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 16px rgba(201,168,76,0.2);
  transform: translateY(-2px);
}

/* Gold outline */
.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  box-shadow: 0 0 10px rgba(201,168,76,0.15);
}
.btn-gold-outline:hover {
  background: var(--gold-dim);
  color: var(--gold-lt);
  box-shadow: 0 0 22px rgba(201,168,76,0.3);
  transform: translateY(-2px);
}

.btn-lg { padding: 1.05rem 2.4rem; font-size: 1.05rem; }
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.85rem; }
.btn-block { display: block; width: 100%; text-align: center; }

/* Audience button group — two-lane CTA */
.audience-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(7,20,34,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--ease);
}
.navbar.scrolled {
  background: rgba(7,20,34,0.99);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-brand {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-polk   { color: var(--white); }
.brand-cash   { color: var(--gold); }
.brand-buyers { color: var(--white); }
.brand-dot    { color: var(--gold); }
.brand-com    { color: var(--text-3); font-size: 0.85em; font-weight: 600; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-links a {
  color: var(--text);
  font-family: var(--font-head);
  font-size: 0.83rem;
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  text-decoration: none;
  position: relative;
  transition: color var(--ease-fast);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active {
  color: var(--gold);
}

/* Glowing underline on active nav link */
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 25%; right: 25%;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  box-shadow: 0 0 8px rgba(201,168,76,0.80), 0 0 16px rgba(201,168,76,0.40);
  animation: glow-pulse 2.5s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 8px rgba(201,168,76,0.8), 0 0 16px rgba(201,168,76,0.4); }
  50%       { box-shadow: 0 0 12px rgba(201,168,76,1.0), 0 0 24px rgba(201,168,76,0.6); }
}

/* "For Sellers" nav link — subtle gold tint */
.nav-sellers a { color: var(--gold); }
/* "For Investors" nav link — subtle teal tint */
.nav-investors a { color: var(--teal); }

.nav-sellers a:hover  { color: var(--gold-lt); }
.nav-investors a:hover { color: var(--teal-lt); }

/* Contact CTA pill */
.nav-cta a {
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: var(--navy-900) !important;
  font-weight: 700;
  border-radius: 4px;
  padding: 0.4rem 1rem;
  margin-left: 0.5rem;
  box-shadow: 0 2px 12px rgba(201,168,76,0.35);
  transition: all var(--ease-fast);
}
.nav-cta a:hover {
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  box-shadow: 0 4px 18px rgba(201,168,76,0.55);
  transform: translateY(-1px);
}
.nav-cta a.active::after { display: none; }

/* Language toggle */
.lang-toggle {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-3);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.28rem 0.7rem;
  border-radius: 20px;
  cursor: pointer;
  letter-spacing: 1px;
  margin-left: 0.5rem;
  transition: all var(--ease-fast);
}
.lang-toggle:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 10px rgba(201,168,76,0.25);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  transition: all 0.15s;
  border-radius: 1px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ---------- Hero ---------- */
.hero {
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold-lt);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.38rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.hero-badge .dot { color: var(--gold); }
.hero h1 { margin-bottom: 1.2rem; }
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-3);
  margin-bottom: 2rem;
  max-width: 520px;
  line-height: 1.75;
}

/* Stats strip */
.hero-stats {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.stat { padding-right: 2rem; }
.stat-number {
  display: block;
  font-family: var(--font-head);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(201,168,76,0.4);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

/* ---------- Hero Form Card ---------- */
.hero-card {
  background: rgba(12,30,52,0.85);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(201,168,76,0.06);
}
.hero-card h3 {
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 0.35rem;
}
.hero-card .sub {
  color: var(--text-3);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: var(--navy-900);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.trust-icon { color: var(--gold); font-size: 0.9rem; }

/* ---------- Forms ---------- */
.form-group { margin-bottom: 1.1rem; }
.form-label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-3);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.form-control {
  width: 100%;
  padding: 0.72rem 1rem;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 6px;
  color: var(--white);
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: all var(--ease-fast);
  -webkit-appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12), 0 0 16px rgba(201,168,76,0.10);
}
.form-control::placeholder { color: rgba(200,200,200,0.28); }
select.form-control { cursor: pointer; }
select.form-control option { background: var(--navy-800); color: var(--white); }
textarea.form-control { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.radio-group { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.radio-label { display: flex; align-items: center; gap: 0.4rem; font-size: 0.9rem; cursor: pointer; color: var(--text); }
.radio-label input { accent-color: var(--gold); }

/* Teal-focus form variant (investors page) */
.form-teal .form-control:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(76,217,201,0.1), 0 0 16px rgba(76,217,201,0.08);
}

.input-prefix { position: relative; }
.input-prefix::before {
  content: '$';
  position: absolute;
  left: 0.85rem; top: 50%;
  transform: translateY(-50%);
  color: var(--text-3);
  font-weight: 700;
  pointer-events: none;
}
.input-prefix .form-control { padding-left: 1.75rem; }

/* ---------- Cards ---------- */
.card {
  background: var(--navy-700);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
  transition: all var(--ease);
}
.card:hover {
  border-color: rgba(201,168,76,0.45);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), 0 0 28px rgba(201,168,76,0.10);
}
.card-icon { font-size: 2.2rem; display: block; margin-bottom: 1rem; }
.card-title { font-size: 1.1rem; margin-bottom: 0.6rem; }
.card-text { color: var(--text-3); font-size: 0.9rem; line-height: 1.65; margin: 0; }

/* Teal-tinted card (investor sections) */
.card-teal {
  background: var(--navy-700);
  border: 1px solid var(--border-teal);
  border-radius: 10px;
  padding: 2rem;
  transition: all var(--ease);
}
.card-teal:hover {
  border-color: rgba(76,217,201,0.55);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), 0 0 28px rgba(76,217,201,0.10);
}

/* Grids */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }

/* ---------- Process Steps ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.5rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 2.4rem; left: calc(12.5% + 0.75rem); right: calc(12.5% + 0.75rem);
  height: 1px;
  background: linear-gradient(90deg, var(--gold-dk), var(--gold), var(--gold-dk));
  opacity: 0.4;
}
.step-card {
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--navy-700);
  border: 1px solid var(--border);
  border-radius: 10px;
  position: relative;
  z-index: 1;
  transition: all var(--ease);
}
.step-card:hover {
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 0 24px rgba(201,168,76,0.08);
}
.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: var(--navy-900);
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
  box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}
.step-card h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.step-card p  { font-size: 0.875rem; color: var(--text-3); margin: 0; }

/* Simple 3-step (sellers page) */
.steps-simple {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md), 0 0 30px rgba(201,168,76,0.06);
}
.step-simple {
  padding: 2.5rem 2rem;
  background: var(--navy-700);
  border-right: 1px solid var(--border);
  position: relative;
}
.step-simple:last-child { border-right: none; }
.step-simple-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(201,168,76,0.2);
  line-height: 1;
  margin-bottom: 1rem;
}
.step-simple h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.step-simple p  { font-size: 0.875rem; color: var(--text-3); margin: 0; }

/* ---------- Deal Type Cards (investors page) ---------- */
.deal-type-card {
  background: var(--navy-700);
  border: 1px solid var(--border-teal);
  border-radius: 10px;
  padding: 1.75rem;
  transition: all var(--ease);
  position: relative;
  overflow: hidden;
}
.deal-type-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--teal-dk), var(--teal));
  box-shadow: 0 0 12px rgba(76,217,201,0.5);
}
.deal-type-card:hover {
  border-color: rgba(76,217,201,0.5);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), 0 0 28px rgba(76,217,201,0.10);
}
.deal-type-icon { font-size: 2rem; margin-bottom: 0.85rem; display: block; }
.deal-type-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--teal-lt); }
.deal-type-card p  { font-size: 0.875rem; color: var(--text-3); }

/* ---------- Situation Cards (sellers page) ---------- */
.situation-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1rem;
}
.situation-card {
  background: var(--navy-700);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  transition: all var(--ease);
}
.situation-card:hover {
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 0 20px rgba(201,168,76,0.08);
}
.situation-icon { font-size: 2rem; display: block; margin-bottom: 0.75rem; }
.situation-card h4 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.situation-card p  { font-size: 0.82rem; color: var(--text-3); margin: 0; }

/* ---------- Comparison Table (sellers page) ---------- */
.compare-wrap { overflow-x: auto; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.compare-table th {
  padding: 0.85rem 1.25rem;
  text-align: left;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.compare-table th:nth-child(1) { background: var(--navy-700); color: var(--text-3); width: 35%; }
.compare-table th:nth-child(2) { background: rgba(201,168,76,0.08); color: var(--gold); border-bottom: 2px solid var(--gold); }
.compare-table th:nth-child(3) { background: var(--navy-700); color: var(--text-3); }
.compare-table td {
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--text);
}
.compare-table td:nth-child(2) {
  background: rgba(201,168,76,0.04);
  font-weight: 600;
  color: var(--gold-lt);
}
.compare-table td:nth-child(3) { color: var(--text-3); }
.compare-table .check-pos { color: var(--green); font-weight: 700; }
.compare-table .check-neg { color: var(--red); font-weight: 700; }

/* ---------- Current Opportunities Placeholder ---------- */
.opportunity-placeholder {
  background: var(--navy-700);
  border: 1px dashed rgba(76,217,201,0.3);
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.opportunity-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(76,217,201,0.05) 0%, transparent 65%);
}
.opp-placeholder-icon { font-size: 3rem; margin-bottom: 1rem; display: block; opacity: 0.5; }
.opportunity-placeholder h3 { color: var(--teal); margin-bottom: 0.75rem; }
.opportunity-placeholder p  { color: var(--text-3); max-width: 480px; margin: 0 auto 1.5rem; font-size: 0.95rem; }

/* ---------- Buyer's List Form ---------- */
.buyers-list-card {
  background: rgba(12,30,52,0.8);
  border: 1px solid var(--border-teal);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-md), 0 0 32px rgba(76,217,201,0.06);
  position: relative;
  overflow: hidden;
}
.buyers-list-card::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--glow-teal-mid) 0%, transparent 70%);
  pointer-events: none;
}
.buyers-list-card h3 { color: var(--teal); margin-bottom: 0.35rem; position: relative; }
.buyers-list-card .sub { color: var(--text-3); font-size: 0.875rem; margin-bottom: 1.5rem; position: relative; }

/* ---------- Areas Chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 0.65rem; justify-content: center; }
.chip {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold-lt);
  padding: 0.45rem 1.1rem;
  border-radius: 20px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--ease-fast);
}
.chip:hover {
  background: rgba(201,168,76,0.16);
  border-color: var(--gold);
  box-shadow: 0 0 12px rgba(201,168,76,0.2);
}

/* ---------- Investment Calculator ---------- */
.calc-wrap {
  background: var(--navy-700);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(76,217,201,0.05);
}
.calc-header {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-600));
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.calc-header h2 { font-size: 1.4rem; margin: 0; }
.calc-header p  { color: var(--text-3); font-size: 0.85rem; margin: 0; }
.calc-body { display: grid; grid-template-columns: 1fr 1fr; }
.calc-inputs  { padding: 2rem; border-right: 1px solid var(--border); }
.calc-results { padding: 2rem; background: rgba(7,20,34,0.5); }

.calc-section-title {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--teal);
  margin-bottom: 1.2rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(76,217,201,0.2);
}

/* Plain-label with tooltip (for beginners) */
.label-with-tip { display: flex; align-items: center; gap: 0.4rem; margin-bottom: 0.4rem; }
.plain-label { font-family: var(--font-head); font-size: 0.82rem; font-weight: 600; color: var(--text-3); }
.tip-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px; height: 16px;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 50%;
  background: rgba(201,168,76,0.08);
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--gold);
  cursor: help;
  flex-shrink: 0;
  position: relative;
}
.tip-btn::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy-900);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.5;
  padding: 0.65rem 0.9rem;
  width: 240px;
  white-space: normal;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s;
  z-index: 200;
  text-align: left;
}
.tip-btn:hover::after { opacity: 1; }

/* Slider */
.slider-wrap { margin-bottom: 1.25rem; }
.slider-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.4rem; }
.slider-lbl { font-family: var(--font-head); font-size: 0.8rem; font-weight: 600; color: var(--text-3); }
.slider-val  { font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; color: var(--gold); }

input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  height: 3px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3), 0 0 10px rgba(201,168,76,0.4);
  transition: box-shadow var(--ease-fast);
}
input[type="range"]::-webkit-slider-thumb:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.3), 0 0 18px rgba(201,168,76,0.7);
}
input[type="range"]::-moz-range-thumb {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  cursor: pointer;
}

/* Advanced settings */
details.adv-settings {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(7,20,34,0.4);
  margin-top: 1.5rem;
}
details.adv-settings summary {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  list-style: none;
  user-select: none;
}
details.adv-settings summary::-webkit-details-marker { display: none; }
details.adv-settings summary::after { content: ' ▼'; font-size: 0.65rem; }
details[open].adv-settings summary::after { content: ' ▲'; }
.adv-body { padding: 1rem; border-top: 1px solid var(--border); }

/* Result rows */
.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem;
}
.result-row:last-child { border-bottom: none; }
.result-lbl { font-family: var(--font-head); font-size: 0.75rem; font-weight: 600; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.3px; }
.result-val { font-family: var(--font-head); font-weight: 700; color: var(--white); font-size: 0.95rem; }

/* Big output boxes */
.output-box {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem;
  margin-bottom: 1rem;
  background: rgba(7,20,34,0.5);
  text-align: center;
}
.output-box-label {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-3);
  margin-bottom: 0.35rem;
}
.output-box-value {
  font-family: var(--font-head);
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}
.output-box-value.pos  { color: var(--green); text-shadow: 0 0 20px rgba(39,174,96,0.4); }
.output-box-value.neg  { color: var(--red); }
.output-box-value.gold { color: var(--gold); text-shadow: 0 0 16px rgba(201,168,76,0.4); }

/* Deal rating */
.deal-rating {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem;
  text-align: center;
  margin-bottom: 1rem;
  transition: all 0.25s;
}
.deal-rating.rating-good  { background: rgba(39,174,96,0.12); border-color: rgba(39,174,96,0.35); }
.deal-rating.rating-ok    { background: rgba(243,156,18,0.10); border-color: rgba(243,156,18,0.35); }
.deal-rating.rating-thin  { background: rgba(230,126,34,0.10); border-color: rgba(230,126,34,0.35); }
.deal-rating.rating-bad   { background: rgba(192,57,43,0.12); border-color: rgba(192,57,43,0.35); }
.rating-badge { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; margin-bottom: 0.3rem; }
.rating-good  .rating-badge { color: var(--green); text-shadow: 0 0 16px rgba(39,174,96,0.5); }
.rating-ok    .rating-badge { color: var(--yellow); }
.rating-thin  .rating-badge { color: var(--orange); }
.rating-bad   .rating-badge { color: var(--red); }
.rating-tip { font-size: 0.82rem; color: var(--text-3); line-height: 1.5; max-width: 260px; margin: 0 auto; }

/* MAO box */
.mao-box {
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 10px;
  background: rgba(201,168,76,0.06);
  padding: 1rem;
  text-align: center;
}
.mao-label { font-family: var(--font-head); font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text-3); }
.mao-value { display: block; font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: var(--gold); text-shadow: 0 0 14px rgba(201,168,76,0.4); margin: 0.15rem 0; }
.mao-sub { font-size: 0.75rem; color: var(--text-3); }

/* Scenario bar */
.scenario-bar {
  background: var(--navy-900);
  border-bottom: 1px solid var(--border);
  padding: 0.8rem 2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.scenario-bar-label {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-3);
}
.scenario-btn {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text-3);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.85rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--ease-fast);
}
.scenario-btn:hover {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.4);
  color: var(--gold);
  box-shadow: 0 0 12px rgba(201,168,76,0.15);
}
.scenario-btn.reset-btn:hover { color: var(--text); border-color: rgba(255,255,255,0.2); }

.calc-footer {
  background: var(--navy-900);
  border-top: 1px solid var(--border);
  padding: 0.85rem 2rem;
  font-size: 0.75rem;
  color: var(--text-3);
  text-align: center;
}

/* Glossary */
.glossary-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.glossary-item {
  background: var(--navy-700);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
}
.glossary-term {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.4rem;
  display: inline-block;
  border-bottom: 2px solid rgba(201,168,76,0.4);
  padding-bottom: 0.25rem;
}
.glossary-def { font-size: 0.875rem; color: var(--text-3); line-height: 1.6; margin: 0; margin-top: 0.4rem; }

/* ---------- FAQ Accordion ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--navy-700);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 0.6rem;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  gap: 1rem;
  transition: color var(--ease-fast);
}
.faq-q:hover { color: var(--gold); }
.faq-item.open > .faq-q { color: var(--gold); }
.faq-icon {
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 300;
  transition: transform var(--ease-fast);
  flex-shrink: 0;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-a { max-height: 600px; }
.faq-a-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-3);
  font-size: 0.9rem;
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.faq-a-inner ul { padding-left: 1.25rem; list-style: disc; }
.faq-a-inner li { margin-bottom: 0.4rem; }
.faq-a-inner a { color: var(--gold); font-weight: 600; }

.faq-section-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 3rem 0 1.5rem;
}
.faq-section-head h3 {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  white-space: nowrap;
}
.faq-line { flex: 1; height: 1px; background: var(--border); }

/* ---------- Resources ---------- */
.resource-card {
  background: var(--navy-700);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.4rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all var(--ease);
}
.resource-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm), 0 0 20px rgba(201,168,76,0.08);
}
.res-icon { font-size: 1.75rem; flex-shrink: 0; line-height: 1; margin-top: 0.1rem; }
.res-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.3rem; color: var(--white); }
.res-desc  { font-size: 0.82rem; color: var(--text-3); margin-bottom: 0.5rem; }
.res-link  { font-size: 0.8rem; font-weight: 700; color: var(--gold); }
.res-link:hover { color: var(--gold-lt); }

/* Resources grid */
.res-section-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.75rem; }
.res-section-head h2 { white-space: nowrap; font-size: 1.5rem; }
.res-section-line { flex: 1; height: 1px; background: var(--border); }
.res-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; margin-bottom: 3rem; }

/* Tags */
.tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.18rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.4rem;
}
.tag-investor { background: rgba(76,217,201,0.12); color: var(--teal); }
.tag-seller   { background: rgba(201,168,76,0.12); color: var(--gold-lt); }
.tag-free     { background: rgba(39,174,96,0.15); color: var(--green); }

/* ---------- CMA Timeline ---------- */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0.55rem; top: 0.4rem; bottom: 0.4rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(201,168,76,0.1));
}
.tl-item { position: relative; padding-left: 2.25rem; margin-bottom: 2rem; }
.tl-item:last-child { margin-bottom: 0; }
.tl-dot {
  position: absolute;
  left: -1.45rem; top: 0.3rem;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15), 0 0 12px rgba(201,168,76,0.4);
}
.tl-item h4 { color: var(--gold-lt); font-size: 1rem; margin-bottom: 0.4rem; }
.tl-item p  { font-size: 0.875rem; color: var(--text-3); margin: 0; }

/* ---------- Contact Page ---------- */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--navy-700);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 0.6rem;
}
.ci-icon { font-size: 1.3rem; color: var(--gold); flex-shrink: 0; }
.ci-label { font-family: var(--font-head); font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-3); margin-bottom: 0.2rem; }
.ci-value { color: var(--white); font-size: 0.95rem; margin: 0; }

.form-card { background: var(--navy-700); border: 1px solid var(--border); border-radius: 12px; padding: 2rem; }
.contact-wrap { display: grid; grid-template-columns: 1fr 360px; gap: 3rem; align-items: start; }

.form-section-title {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gold);
  margin: 1.75rem 0 1rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid var(--border);
}
.form-section-title:first-child { margin-top: 0; }

/* Contact step cards */
.step-check { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.85rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.step-check:last-child { border-bottom: none; }
.check-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: var(--navy-900);
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(201,168,76,0.3);
}
.check-content h5 { font-size: 0.9rem; font-weight: 600; color: var(--white); margin-bottom: 0.2rem; }
.check-content p  { font-size: 0.82rem; color: var(--text-3); margin: 0; }
.guarantee-box {
  background: rgba(39,174,96,0.08);
  border: 1px solid rgba(39,174,96,0.25);
  border-radius: 8px;
  padding: 1.1rem;
  text-align: center;
  margin-top: 1.25rem;
}
.guarantee-box p { font-size: 0.82rem; color: var(--text-3); margin: 0; }

/* ---------- Notices ---------- */
.notice {
  padding: 1rem 1.25rem;
  border-radius: 8px;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  line-height: 1.65;
  border: 1px solid;
}
.notice-gold    { background: rgba(201,168,76,0.08); border-color: rgba(201,168,76,0.3); border-left: 4px solid var(--gold); }
.notice-info    { background: rgba(28,58,96,0.5); border-color: rgba(255,255,255,0.06); border-left: 4px solid var(--navy-400); }
.notice-success { background: rgba(39,174,96,0.10); border-color: rgba(39,174,96,0.3); border-left: 4px solid var(--green); }
.notice-teal    { background: rgba(76,217,201,0.08); border-color: rgba(76,217,201,0.25); border-left: 4px solid var(--teal); }

/* ---------- Bilingual ---------- */
.lang-es { display: none; }
.lang-en { display: block; }
[data-lang="es"] .lang-es { display: block; }
[data-lang="es"] .lang-en { display: none; }
span.lang-es { display: none; }
span.lang-en { display: inline; }
[data-lang="es"] span.lang-es { display: inline; }
[data-lang="es"] span.lang-en { display: none; }

/* ---------- Page Hero ---------- */
.page-hero {
  padding: 6.5rem 0 3rem;
  background: var(--navy-900);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero > .container { position: relative; z-index: 1; }
.page-badge {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-lt);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.32rem 1rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.page-badge-teal {
  background: rgba(76,217,201,0.10);
  border: 1px solid rgba(76,217,201,0.3);
  color: var(--teal-lt);
}
.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero p  { color: var(--text-3); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* ---------- CTA Section ---------- */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 50%, var(--navy-900) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section > .container { position: relative; z-index: 1; }
.cta-section h2 { margin-bottom: 1rem; }
.cta-section p  { color: var(--text-3); max-width: 540px; margin: 0 auto 2rem; font-size: 1.05rem; }
.cta-section .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-900);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand-wrap { margin-bottom: 0.75rem; }
.footer-tagline { color: var(--text-3); font-size: 0.85rem; line-height: 1.6; margin-bottom: 0.75rem; }
.footer-col-title {
  font-family: var(--font-head);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: var(--text-3); font-size: 0.85rem; }
.footer-links a:hover { color: var(--gold-lt); }
.footer-disclaimer {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}
.footer-disclaimer p { font-size: 0.75rem; color: var(--text-3); line-height: 1.65; margin: 0; }
.footer-bottom {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-3); margin: 0; }

/* ---------- Scroll-to-top ---------- */
.scroll-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  border: none;
  border-radius: 50%;
  color: var(--navy-900);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0; visibility: hidden;
  transition: all var(--ease);
  z-index: 900;
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(201,168,76,0.6); }

/* ---------- Misc ---------- */
.tip-card { background: rgba(201,168,76,0.06); border: 1px solid rgba(201,168,76,0.2); border-radius: 10px; padding: 1.5rem; }
.tip-card h4 { color: var(--gold-lt); margin-bottom: 0.5rem; }
.tip-card p  { font-size: 0.875rem; color: var(--text-3); margin: 0; }

/* CMA table */
.comp-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.comp-table th { background: rgba(201,168,76,0.10); color: var(--gold-lt); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.8px; padding: 0.65rem 1rem; text-align: left; border-bottom: 1px solid var(--border); }
.comp-table td { padding: 0.65rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.04); color: var(--text); }
.comp-table tr:last-child td { border-bottom: none; }
.comp-table tr:hover td { background: rgba(255,255,255,0.03); }
.pill-pos { background:rgba(39,174,96,0.15); color:var(--green); padding:0.2rem 0.6rem; border-radius:4px; font-weight:700; font-size:0.78rem; }
.pill-neg { background:rgba(192,57,43,0.15); color:var(--red); padding:0.2rem 0.6rem; border-radius:4px; font-weight:700; font-size:0.78rem; }

/* CMA grid */
.cma-grid { display: grid; grid-template-columns: 1fr 400px; gap: 3rem; align-items: start; }

/* Empathy section top border (sellers page) */
.empathy-band {
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.04));
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.empathy-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dk), var(--gold));
  box-shadow: 0 0 12px rgba(201,168,76,0.5);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4   { grid-template-columns: repeat(2,1fr); }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { max-width: 520px; }
  .cma-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .situation-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .section { padding: 3rem 0; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .calc-body { grid-template-columns: 1fr; }
  .calc-inputs { border-right: none; border-bottom: 1px solid var(--border); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-items { gap: 1.2rem; }
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(7,20,34,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0;
    transform: translateY(-110%);
    transition: transform 0.22s ease;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { font-size: 1rem; padding: 0.75rem 0.5rem; border-bottom: 1px solid rgba(255,255,255,0.04); }
  .nav-links a.active::after { display: none; }
  .nav-cta a { margin: 0.5rem 0 0; text-align: center; padding: 0.65rem 1rem !important; }
  .lang-toggle { margin: 0.5rem 0 0; }
  .res-grid { grid-template-columns: 1fr; }
  .res-section-head h2 { font-size: 1.2rem; }
  .glossary-grid { grid-template-columns: 1fr; }
  .steps-simple { grid-template-columns: 1fr; }
  .steps-simple .step-simple { border-right: none; border-bottom: 1px solid var(--border); }
  .steps-simple .step-simple:last-child { border-bottom: none; }
  .situation-grid { grid-template-columns: 1fr; }
  .compare-wrap { overflow-x: auto; }
  .audience-cta { flex-direction: column; }
  .audience-cta .btn { display: block; width: 100%; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 0; }
  .stat { padding-right: 1.5rem; }
  .cta-section .btn-group { flex-direction: column; align-items: center; }
  .btn-lg { display: block; width: 100%; }
}

/* ---------- Print ---------- */
@media print {
  .navbar, .footer, .scroll-top, .cta-section, .trust-bar,
  .scenario-bar, .adv-settings, .calc-footer { display: none !important; }
  body { background: white; color: black; }
  .calc-wrap { box-shadow: none; border: 1px solid #ccc; }
}
