/* ===========================================================
   LuzardoFax — Landing CSS
   Filosofía: dark + gold, tipografía premium thin & airy.
   =========================================================== */

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

:root {
  --bg: #050505;
  --bg-card: #0a0a0a;
  --bg-elevated: #111111;
  --gold: #C9A961;
  --gold-light: #E8D49E;
  --gold-dark: #8A7340;
  --gold-soft: rgba(201, 169, 97, 0.15);
  --gold-line: rgba(201, 169, 97, 0.12);
  --text: #E8DDC9;
  --text-mute: rgba(232, 221, 201, 0.65);
  --text-faint: rgba(232, 221, 201, 0.45);
  --text-ghost: rgba(232, 221, 201, 0.25);
  --border: rgba(201, 169, 97, 0.18);
  --border-soft: rgba(201, 169, 97, 0.08);
  --container: 1180px;
  --gutter: 24px;
  --radius: 14px;
  --radius-sm: 10px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Subtle gold glow at top of page */
body::before {
  content: '';
  position: fixed;
  top: -300px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(201,169,97,0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.2;
}

h1 {
  font-size: clamp(34px, 5.2vw, 58px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 300;
  letter-spacing: -0.015em;
}

h3 {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0;
}

p {
  color: var(--text-mute);
  font-weight: 300;
}

a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color 0.18s;
}
a:hover { color: var(--gold); }

.gold { color: var(--gold-light); }
.text-mute { color: var(--text-mute); }
.text-faint { color: var(--text-faint); }
.text-center { text-align: center; }

/* ===== Container ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 1;
}

/* ===== Header / Nav ===== */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-soft);
}

.lp-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.lp-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  text-decoration: none;
  font-family: 'Michroma', 'Helvetica Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 0.12em;
  font-weight: 400;
}
.lp-brand .bn-mark {
  background: linear-gradient(135deg, #C9A961 0%, #8A7340 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lp-brand .bn-fax {
  background: linear-gradient(135deg, #E8D49E 0%, #C9A961 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.15em;
  font-weight: 500;
}

.lp-nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.lp-nav-links a {
  color: var(--text-mute);
  font-size: 13.5px;
  letter-spacing: 0.01em;
  font-weight: 400;
}
.lp-nav-links a:hover { color: var(--gold-light); }
.lp-nav-links a.active { color: var(--gold-light); }

.lp-nav-cta {
  display: flex;
  gap: 14px;
  align-items: center;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.18s;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, #C9A961 0%, #8A7340 100%);
  color: #0a0a0a;
  box-shadow: 0 8px 24px rgba(201,169,97,0.20), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(201,169,97,0.28), inset 0 1px 0 rgba(255,255,255,0.22);
  color: #0a0a0a;
}

.btn-ghost {
  background: transparent;
  color: var(--text-mute);
  border-color: var(--border);
}
.btn-ghost:hover {
  color: var(--gold-light);
  border-color: var(--gold);
}

.btn-link {
  background: transparent;
  color: var(--text-mute);
  padding: 11px 0;
  text-transform: none;
  letter-spacing: 0.02em;
}
.btn-link:hover { color: var(--gold-light); }

.btn-lg { padding: 14px 30px; font-size: 13px; }

/* ===== Sections ===== */
.section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.section-sm { padding: 64px 0; }

.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
  display: block;
}

.section-title {
  margin-bottom: 18px;
}
.section-lead {
  font-size: 17px;
  color: var(--text-mute);
  max-width: 640px;
  margin: 0 auto;
}
.section-head { text-align: center; max-width: 760px; margin: 0 auto 60px; }

/* ===== Cards generic ===== */
.card {
  background: rgba(255,255,255,0.018);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.25s, transform 0.25s;
}
.card:hover {
  border-color: var(--border);
  transform: translateY(-2px);
}

.card-title {
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: 0;
}
.card-text {
  font-size: 14.5px;
  color: var(--text-mute);
  line-height: 1.65;
}

/* ===== Footer ===== */
.lp-footer {
  border-top: 1px solid var(--border-soft);
  padding: 64px 0 40px;
  margin-top: 80px;
  position: relative;
  z-index: 1;
}
.lp-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.lp-footer-brand .lp-brand { font-size: 17px; }
.lp-footer-tagline {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-faint);
  max-width: 280px;
  line-height: 1.6;
}
.lp-footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 18px;
}
.lp-footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-footer-col a {
  color: var(--text-mute);
  font-size: 13.5px;
  font-weight: 300;
}
.lp-footer-col a:hover { color: var(--gold-light); }

.lp-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
  font-size: 12px;
  color: var(--text-faint);
}

/* ===== Mobile ===== */
@media (max-width: 880px) {
  .lp-nav-links { display: none; }
  .section { padding: 64px 0; }
  .lp-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .lp-footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .lp-nav-cta .btn-ghost { display: none; }
  .lp-footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Subtle entrance animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================================================
   HOME-SPECIFIC SECTIONS
   =========================================================== */

/* ===== Hero — enriquecido ===== */
.hero {
  padding: 90px 0 80px;
  text-align: center;
  position: relative;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  padding: 7px 16px;
  border: 1px solid var(--gold-soft);
  border-radius: 999px;
  margin-bottom: 28px;
}
.hero h1 {
  margin-bottom: 22px;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-mute);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.6;
}
.hero-cta {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-trust {
  margin-top: 22px;
  font-size: 12.5px;
  color: var(--text-faint);
  letter-spacing: 0.04em;
}
.hero-trust .dot { margin: 0 8px; color: var(--text-ghost); }

/* ===== Trust strip ===== */
.trust-strip {
  padding: 38px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 32px;
}
.trust-item {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-weight: 500;
}
.trust-item strong {
  color: var(--gold-light);
  font-weight: 500;
}

/* ===== Features grid ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
}
@media (max-width: 880px) {
  .features-grid { grid-template-columns: 1fr; }
}

.feature-card {
  background: rgba(255,255,255,0.018);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: border-color 0.25s, transform 0.25s, background 0.25s;
}
.feature-card:hover {
  border-color: var(--border);
  background: rgba(255,255,255,0.025);
  transform: translateY(-3px);
}
.feature-num {
  font-family: 'Michroma', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}
.feature-card h3 {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--text);
}
.feature-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-mute);
}

/* ===== How it works (steps) ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
  position: relative;
}
@media (max-width: 880px) {
  .steps { grid-template-columns: 1fr; gap: 18px; }
}

.step {
  position: relative;
  padding: 30px 28px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  background: rgba(201,169,97,0.025);
}
.step-num {
  font-family: 'Michroma', sans-serif;
  font-size: 38px;
  font-weight: 400;
  background: linear-gradient(135deg, #E8D49E 0%, #C9A961 50%, #8A7340 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
  display: block;
}
.step h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}
.step p {
  font-size: 13.5px;
  color: var(--text-mute);
  line-height: 1.6;
}

/* ===== Comparison table ===== */
.compare-wrap {
  margin-top: 50px;
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
}
.compare {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 760px;
}
.compare thead th {
  background: rgba(201,169,97,0.04);
  padding: 22px 18px;
  text-align: left;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  border-bottom: 1px solid var(--border-soft);
}
.compare thead th.us {
  background: linear-gradient(180deg, rgba(201,169,97,0.10) 0%, rgba(201,169,97,0.04) 100%);
  color: var(--gold-light);
}
.compare tbody td {
  padding: 17px 18px;
  border-bottom: 1px solid var(--border-soft);
  color: var(--text-mute);
  font-weight: 300;
}
.compare tbody tr:last-child td { border-bottom: none; }
.compare tbody td:first-child {
  color: var(--text);
  font-weight: 400;
}
.compare .us-col {
  background: rgba(201,169,97,0.04);
  color: var(--gold-light) !important;
  font-weight: 400;
}
.compare .check { color: var(--gold-light); }
.compare .x { color: rgba(212,131,131,0.7); }
.compare .dash { color: var(--text-ghost); }

/* ===== Pricing preview ===== */
.pricing-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 50px;
}
@media (max-width: 980px) {
  .pricing-preview { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .pricing-preview { grid-template-columns: 1fr; }
}

.plan {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 30px 26px;
  background: rgba(255,255,255,0.018);
  transition: border-color 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}
.plan:hover {
  border-color: var(--border);
  transform: translateY(-3px);
}
.plan.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(201,169,97,0.08) 0%, rgba(201,169,97,0.02) 100%);
  position: relative;
}
.plan.featured::before {
  content: 'Most popular';
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #C9A961 0%, #8A7340 100%);
  color: #0a0a0a;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 999px;
}
.plan-name {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 14px;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}
.plan-price .amount {
  font-size: 38px;
  font-weight: 300;
  color: var(--text);
  letter-spacing: -0.02em;
}
.plan-price .per {
  font-size: 13px;
  color: var(--text-faint);
}
.plan-pages {
  font-size: 13.5px;
  color: var(--text-mute);
  margin-bottom: 22px;
}
.plan-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  font-size: 13.5px;
  flex: 1;
}
.plan-features li {
  padding: 7px 0;
  color: var(--text-mute);
  border-bottom: 1px solid var(--border-soft);
  font-weight: 300;
}
.plan-features li:last-child { border-bottom: none; }
.plan-cta {
  margin-top: auto;
}

/* ===== Quote / testimonial block ===== */
.quote-block {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.quote-text {
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 22px;
  letter-spacing: -0.005em;
}
.quote-text::before { content: '"'; color: var(--gold); margin-right: 4px; }
.quote-text::after { content: '"'; color: var(--gold); margin-left: 4px; }
.quote-author {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-weight: 500;
}

/* ===== Final CTA ===== */
.cta-final {
  text-align: center;
  padding: 90px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(201,169,97,0.04) 100%);
  border-top: 1px solid var(--border-soft);
}
.cta-final h2 {
  margin-bottom: 18px;
}
.cta-final p {
  font-size: 16px;
  max-width: 540px;
  margin: 0 auto 32px;
  color: var(--text-mute);
}
.cta-final-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===========================================================
   FLOATING NAV ARROWS (top/bottom)
   =========================================================== */
.nav-arrows {
  position: fixed;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 90;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.nav-arrows.show {
  opacity: 1;
  pointer-events: auto;
}
.nav-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  color: var(--gold-light);
}
.nav-arrow:hover {
  border-color: var(--gold);
  background: rgba(201,169,97,0.10);
  color: var(--gold-light);
  transform: translateY(-1px);
}
.nav-arrow svg {
  width: 16px;
  height: 16px;
}
.nav-arrow.disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* ===========================================================
   FAQ
   =========================================================== */
.faq-list {
  max-width: 820px;
  margin: 50px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--border-soft);
  padding: 4px 0;
}
.faq-item:first-child { border-top: 1px solid var(--border-soft); }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 0;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  letter-spacing: -0.005em;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold-light); }
.faq-q-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-left: 18px;
  position: relative;
  transition: transform 0.3s;
}
.faq-q-icon::before, .faq-q-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  background: var(--gold-light);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
.faq-q-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-item.open .faq-q-icon::after { opacity: 0; }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a-inner {
  padding: 0 0 24px 0;
  font-size: 14.5px;
  color: var(--text-mute);
  line-height: 1.7;
  max-width: 720px;
}
.faq-a-inner p { margin-bottom: 12px; }
.faq-a-inner p:last-child { margin-bottom: 0; }
.faq-a-inner strong { color: var(--text); font-weight: 500; }
.faq-a-inner a { color: var(--gold-light); }

.faq-item.open .faq-a {
  max-height: 600px;
}

/* ===========================================================
   FEATURES EXPANDED
   =========================================================== */
.features-grid-expanded {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 50px;
}
@media (max-width: 880px) {
  .features-grid-expanded { grid-template-columns: 1fr; }
}
.feature-card-expanded {
  background: rgba(255,255,255,0.018);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: border-color 0.25s, background 0.25s;
}
.feature-card-expanded:hover {
  border-color: var(--border);
  background: rgba(255,255,255,0.025);
}
.feature-card-expanded .feature-num {
  margin-bottom: 14px;
}
.feature-card-expanded h3 {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 10px;
}
.feature-card-expanded p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-mute);
  margin-bottom: 12px;
}
.feature-card-expanded p:last-child { margin-bottom: 0; }
.feature-card-expanded ul {
  list-style: none;
  margin-top: 14px;
}
.feature-card-expanded ul li {
  padding: 4px 0 4px 18px;
  position: relative;
  font-size: 13.5px;
  color: var(--text-mute);
  font-weight: 300;
}
.feature-card-expanded ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 1px;
  background: var(--gold);
}

/* ===========================================================
   CHAT AI WIDGET
   =========================================================== */

/* Floating launcher button (bottom right) */
.chat-launcher {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C9A961 0%, #8A7340 100%);
  color: #0a0a0a;
  border: none;
  cursor: pointer;
  z-index: 95;
  box-shadow: 0 10px 30px rgba(201,169,97,0.32), inset 0 1px 0 rgba(255,255,255,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.22s, box-shadow 0.22s;
}
.chat-launcher:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(201,169,97,0.42), inset 0 1px 0 rgba(255,255,255,0.25);
}
.chat-launcher svg {
  width: 22px;
  height: 22px;
}
.chat-launcher.hidden { display: none; }

/* Chat window */
.chat-window {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 380px;
  max-width: calc(100vw - 32px);
  height: 580px;
  max-height: calc(100vh - 44px);
  background: #0a0a0a;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
  z-index: 100;
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.chat-window.open { display: flex; }

/* Header */
.chat-head {
  padding: 18px 18px 16px;
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: linear-gradient(180deg, rgba(201,169,97,0.08) 0%, transparent 100%);
}
.chat-head-title {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.chat-head-title .bn-mark, .chat-head-title .bn-fax {
  font-family: 'Michroma', sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
}
.chat-head-title .bn-mark {
  background: linear-gradient(135deg, #C9A961 0%, #8A7340 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.chat-head-title .bn-fax {
  background: linear-gradient(135deg, #E8D49E 0%, #C9A961 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
}
.chat-head-sub {
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}
.chat-head-sub::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6FCF97;
  box-shadow: 0 0 8px rgba(111,207,151,0.6);
}
.chat-close {
  background: transparent;
  border: 1px solid var(--border-soft);
  color: var(--text-mute);
  width: 30px;
  height: 30px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.chat-close:hover {
  border-color: var(--border);
  color: var(--gold-light);
}
.chat-close svg { width: 14px; height: 14px; }

/* Message list */
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  scrollbar-width: thin;
  scrollbar-color: rgba(201,169,97,0.3) transparent;
}
.chat-messages::-webkit-scrollbar { width: 6px; }
.chat-messages::-webkit-scrollbar-thumb {
  background: rgba(201,169,97,0.3);
  border-radius: 3px;
}

.chat-msg {
  max-width: 88%;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 300;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.chat-msg.assistant {
  align-self: flex-start;
  background: rgba(201,169,97,0.06);
  border: 1px solid var(--border-soft);
  color: var(--text);
  border-bottom-left-radius: 4px;
}
.chat-msg.user {
  align-self: flex-end;
  background: linear-gradient(135deg, rgba(201,169,97,0.22) 0%, rgba(138,115,64,0.22) 100%);
  border: 1px solid var(--border);
  color: var(--text);
  border-bottom-right-radius: 4px;
}
.chat-msg strong { font-weight: 500; color: var(--gold-light); }
.chat-msg a { color: var(--gold-light); text-decoration: underline; }

/* Typing indicator */
.chat-typing {
  align-self: flex-start;
  padding: 12px 16px;
  background: rgba(201,169,97,0.06);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  border-bottom-left-radius: 4px;
  display: flex;
  gap: 5px;
  align-items: center;
}
.chat-typing span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-light);
  animation: chat-bounce 1.4s infinite ease-in-out;
}
.chat-typing span:nth-child(2) { animation-delay: 0.15s; }
.chat-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes chat-bounce {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.5; }
  40% { transform: scale(1); opacity: 1; }
}

/* Lead capture form */
.chat-lead {
  background: rgba(201,169,97,0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  margin: 4px 0;
  align-self: stretch;
}
.chat-lead-title {
  font-size: 13px;
  color: var(--gold-light);
  margin-bottom: 8px;
  font-weight: 400;
}
.chat-lead input {
  width: 100%;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border-soft);
  color: var(--text);
  padding: 9px 11px;
  border-radius: 8px;
  font-size: 13px;
  font-family: inherit;
  margin-bottom: 8px;
}
.chat-lead input:focus {
  outline: none;
  border-color: var(--gold);
}
.chat-lead-actions { display: flex; gap: 8px; }
.chat-lead-actions button {
  flex: 1;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid var(--border-soft);
  font-family: inherit;
}
.chat-lead-submit {
  background: linear-gradient(135deg, #C9A961 0%, #8A7340 100%);
  color: #0a0a0a;
  border-color: transparent;
}
.chat-lead-skip {
  background: transparent;
  color: var(--text-mute);
}

/* Input area */
.chat-input-area {
  border-top: 1px solid var(--border-soft);
  padding: 14px;
  background: rgba(0,0,0,0.25);
  display: flex;
  gap: 8px;
  align-items: flex-end;
}
.chat-input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-soft);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  font-family: inherit;
  font-weight: 300;
  resize: none;
  min-height: 42px;
  max-height: 120px;
  line-height: 1.5;
}
.chat-input:focus {
  outline: none;
  border-color: var(--gold);
}
.chat-send {
  background: linear-gradient(135deg, #C9A961 0%, #8A7340 100%);
  color: #0a0a0a;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s;
  flex-shrink: 0;
}
.chat-send:hover { transform: translateY(-1px); }
.chat-send:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.chat-send svg { width: 16px; height: 16px; }

.chat-footer-hint {
  text-align: center;
  font-size: 10px;
  color: var(--text-ghost);
  padding: 6px 14px 10px;
  letter-spacing: 0.04em;
  font-weight: 300;
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .chat-window {
    right: 8px;
    bottom: 8px;
    width: calc(100vw - 16px);
    height: calc(100vh - 16px);
    max-height: none;
    border-radius: 12px;
  }
}

/* Adjust nav-arrows so they don't collide with chat */
.nav-arrows {
  right: 22px;
}

/* ===========================================================
   PRICING PAGE
   =========================================================== */

.pricing-hero {
  padding: 80px 0 50px;
  text-align: center;
}

/* Detailed plan cards (más grandes que home) */
.pricing-grid-detailed {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
@media (max-width: 1100px) {
  .pricing-grid-detailed { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .pricing-grid-detailed { grid-template-columns: 1fr; }
}

.plan-detailed {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 36px 28px;
  background: rgba(255,255,255,0.018);
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.25s;
}
.plan-detailed:hover {
  border-color: var(--border);
  transform: translateY(-3px);
}
.plan-detailed.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(201,169,97,0.08) 0%, rgba(201,169,97,0.02) 100%);
  position: relative;
}
.plan-detailed.featured::before {
  content: 'Most popular';
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #C9A961 0%, #8A7340 100%);
  color: #0a0a0a;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 999px;
}

.plan-detailed .plan-name {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.plan-detailed .plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}
.plan-detailed .plan-price .amount {
  font-size: 44px;
  font-weight: 300;
  letter-spacing: -0.025em;
  color: var(--text);
}
.plan-detailed .plan-price .per {
  font-size: 14px;
  color: var(--text-faint);
}
.plan-detailed .plan-pages {
  font-size: 14px;
  color: var(--gold-light);
  margin-bottom: 20px;
  font-weight: 400;
}
.plan-detailed .plan-tagline {
  font-size: 13px;
  color: var(--text-mute);
  margin-bottom: 24px;
  line-height: 1.5;
  min-height: 60px;
}
.plan-detailed .plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
  border-top: 1px solid var(--border-soft);
}
.plan-detailed .plan-features li {
  padding: 11px 0 11px 20px;
  font-size: 13.5px;
  color: var(--text-mute);
  font-weight: 300;
  position: relative;
  border-bottom: 1px solid var(--border-soft);
  line-height: 1.5;
}
.plan-detailed .plan-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 1px;
  background: var(--gold);
}
.plan-detailed .plan-features li:last-child { border-bottom: none; }

.plan-detailed .plan-cta {
  margin-top: auto;
}

/* Add-ons table */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 50px;
}
@media (max-width: 880px) {
  .addons-grid { grid-template-columns: 1fr; }
}

.addon-card {
  background: rgba(255,255,255,0.018);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 26px;
}
.addon-card h3 {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}
.addon-card .addon-price {
  color: var(--gold-light);
  font-size: 22px;
  font-weight: 300;
  margin: 8px 0 12px 0;
  display: block;
}
.addon-card .addon-price .per {
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: 0.04em;
}
.addon-card p {
  font-size: 13.5px;
  color: var(--text-mute);
  line-height: 1.6;
}

/* Bundles cards */
.bundles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
@media (max-width: 880px) {
  .bundles-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .bundles-grid { grid-template-columns: 1fr; }
}

.bundle-card {
  background: rgba(201,169,97,0.04);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  transition: border-color 0.2s;
}
.bundle-card:hover { border-color: var(--border); }
.bundle-card .bundle-amount {
  font-size: 26px;
  font-weight: 300;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.bundle-card .bundle-pages {
  font-size: 13.5px;
  color: var(--text-mute);
}
.bundle-card .bundle-per {
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 0.06em;
  margin-top: 6px;
  text-transform: uppercase;
}

/* All-features comparison table */
.feat-table-wrap {
  margin-top: 50px;
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
}
.feat-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  min-width: 760px;
}
.feat-table thead th {
  background: rgba(201,169,97,0.04);
  padding: 18px 16px;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  border-bottom: 1px solid var(--border-soft);
}
.feat-table thead th:first-child { text-align: left; }
.feat-table thead th.featured-col {
  background: linear-gradient(180deg, rgba(201,169,97,0.12) 0%, rgba(201,169,97,0.04) 100%);
  color: var(--gold-light);
}
.feat-table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-soft);
  color: var(--text-mute);
  font-weight: 300;
  text-align: center;
}
.feat-table tbody td:first-child {
  text-align: left;
  color: var(--text);
  font-weight: 400;
}
.feat-table tbody td.featured-col {
  background: rgba(201,169,97,0.04);
  color: var(--gold-light) !important;
  font-weight: 400;
}
.feat-table tbody tr:last-child td { border-bottom: none; }
.feat-table .check { color: var(--gold-light); }
.feat-table .dash { color: var(--text-ghost); }
.feat-table .section-row td {
  background: rgba(201,169,97,0.02);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  color: var(--gold);
  font-weight: 500;
  padding: 14px 16px;
}

/* Enterprise card */
.enterprise-card {
  margin-top: 60px;
  padding: 50px 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(201,169,97,0.06) 0%, rgba(201,169,97,0.02) 100%);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 880px) {
  .enterprise-card { grid-template-columns: 1fr; gap: 30px; padding: 36px 28px; }
}
.enterprise-card h3 {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
}
.enterprise-card .enterprise-features {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  columns: 2;
  column-gap: 24px;
}
@media (max-width: 600px) {
  .enterprise-card .enterprise-features { columns: 1; }
}
.enterprise-card .enterprise-features li {
  padding: 6px 0 6px 16px;
  font-size: 13px;
  color: var(--text-mute);
  font-weight: 300;
  position: relative;
  break-inside: avoid;
}
.enterprise-card .enterprise-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 1px;
  background: var(--gold);
}
.enterprise-card .enterprise-cta {
  text-align: center;
}
.enterprise-card .enterprise-price {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}


/* Custom scrollbar for chat textarea (matches LuzardoFax theme) */
.chat-input {
  scrollbar-width: thin;
  scrollbar-color: rgba(201,169,97,0.35) transparent;
}
.chat-input::-webkit-scrollbar {
  width: 6px;
}
.chat-input::-webkit-scrollbar-track {
  background: transparent;
}
.chat-input::-webkit-scrollbar-thumb {
  background: rgba(201,169,97,0.30);
  border-radius: 3px;
}
.chat-input::-webkit-scrollbar-thumb:hover {
  background: rgba(201,169,97,0.55);
}

/* ===========================================================
   SECURITY PAGE
   =========================================================== */

.security-hero {
  padding: 80px 0 50px;
  text-align: center;
}

/* At-a-glance badges grid */
.sec-glance {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 50px;
}
@media (max-width: 980px) { .sec-glance { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .sec-glance { grid-template-columns: repeat(2, 1fr); } }

.sec-glance-item {
  padding: 22px 16px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.018);
  text-align: center;
  transition: border-color 0.25s;
}
.sec-glance-item:hover { border-color: var(--border); }
.sec-glance-item .sec-glance-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 8px;
  font-weight: 500;
}
.sec-glance-item .sec-glance-value {
  font-size: 14px;
  color: var(--gold-light);
  font-weight: 400;
  letter-spacing: 0;
}

/* Security section blocks */
.sec-block {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 60px;
  padding: 60px 0;
  border-bottom: 1px solid var(--border-soft);
}
.sec-block:last-child { border-bottom: none; }
@media (max-width: 880px) {
  .sec-block { grid-template-columns: 1fr; gap: 24px; padding: 44px 0; }
}

.sec-block-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.sec-block h3 {
  font-size: 22px;
  font-weight: 400;
  margin: 10px 0 14px;
  letter-spacing: -0.005em;
}
.sec-block-intro {
  font-size: 14px;
  color: var(--text-mute);
  line-height: 1.6;
}
.sec-block-content p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-mute);
  margin-bottom: 14px;
}
.sec-block-content p:last-child { margin-bottom: 0; }
.sec-block-content strong { color: var(--text); font-weight: 500; }
.sec-block-content ul {
  list-style: none;
  margin-top: 16px;
}
.sec-block-content ul li {
  padding: 8px 0 8px 20px;
  position: relative;
  font-size: 14px;
  color: var(--text-mute);
  font-weight: 300;
  line-height: 1.55;
}
.sec-block-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 1px;
  background: var(--gold);
}
.sec-block-content ul li strong { color: var(--gold-light); font-weight: 400; }

/* Subprocessor table */
.subproc-wrap {
  margin-top: 18px;
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
}
.subproc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  min-width: 580px;
}
.subproc-table thead th {
  background: rgba(201,169,97,0.04);
  padding: 14px 16px;
  text-align: left;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  border-bottom: 1px solid var(--border-soft);
}
.subproc-table tbody td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--border-soft);
  color: var(--text-mute);
  font-weight: 300;
  font-size: 13px;
}
.subproc-table tbody td strong { color: var(--text); font-weight: 400; }
.subproc-table tbody tr:last-child td { border-bottom: none; }

/* Honest disclosure box */
.honest-box {
  margin-top: 24px;
  padding: 22px 24px;
  background: rgba(201,169,97,0.04);
  border-left: 2px solid var(--gold);
  border-radius: 10px;
}
.honest-box-title {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
  font-weight: 500;
}
.honest-box p {
  font-size: 13.5px;
  color: var(--text-mute);
  line-height: 1.65;
  margin: 0;
}

/* ===========================================================
   LEGAL / DOCUMENT PAGES (BAA, Terms, Privacy, Help)
   =========================================================== */
.doc-hero {
  padding: 70px 0 30px;
  text-align: center;
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 40px;
}
.doc-hero h1 {
  font-size: clamp(28px, 4.4vw, 42px);
  margin-bottom: 12px;
}
.doc-meta {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-weight: 400;
}
.doc-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--gutter) 80px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-mute);
  font-weight: 300;
}
.doc-wrap h2 {
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  margin: 44px 0 14px;
  letter-spacing: -0.005em;
  scroll-margin-top: 90px;
}
.doc-wrap h2:first-child { margin-top: 0; }
.doc-wrap h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--gold-light);
  margin: 24px 0 10px;
}
.doc-wrap p { margin-bottom: 14px; }
.doc-wrap strong { color: var(--text); font-weight: 500; }
.doc-wrap a { color: var(--gold-light); }
.doc-wrap ul, .doc-wrap ol {
  margin: 6px 0 18px 0;
  padding-left: 22px;
}
.doc-wrap li {
  padding: 4px 0;
  color: var(--text-mute);
}
.doc-wrap li strong { color: var(--text); }
.doc-wrap blockquote {
  margin: 20px 0;
  padding: 16px 20px;
  background: rgba(201,169,97,0.04);
  border-left: 2px solid var(--gold);
  border-radius: 8px;
  font-size: 14px;
  color: var(--text-mute);
}
.doc-toc {
  background: rgba(255,255,255,0.018);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-bottom: 36px;
}
.doc-toc-title {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 500;
}
.doc-toc ol {
  list-style: decimal;
  padding-left: 22px;
  margin: 0;
}
.doc-toc li { padding: 3px 0; font-size: 13.5px; }
.doc-toc a {
  color: var(--text-mute);
  font-weight: 300;
}
.doc-toc a:hover { color: var(--gold-light); }

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  margin-top: 50px;
}
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
}
.contact-form .field { margin-bottom: 18px; }
.contact-form label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 7px;
  font-weight: 500;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-soft);
  color: var(--text);
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  font-weight: 300;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--gold);
}
.contact-form textarea {
  resize: vertical;
  min-height: 140px;
  font-family: inherit;
}
.contact-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 560px) { .contact-form .row { grid-template-columns: 1fr; } }
.contact-form .submit-row {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.contact-form .submit-status {
  font-size: 13px;
  color: var(--text-faint);
}
.contact-form .submit-status.ok { color: #6FCF97; }
.contact-form .submit-status.error { color: #D48383; }

.contact-side h3 {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 12px;
}
.contact-side p {
  font-size: 14px;
  color: var(--text-mute);
  line-height: 1.65;
  margin-bottom: 18px;
}
.contact-side .contact-method {
  padding: 18px 0;
  border-top: 1px solid var(--border-soft);
}
.contact-side .contact-method:last-child { border-bottom: 1px solid var(--border-soft); }
.contact-side .contact-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
  font-weight: 500;
}
.contact-side .contact-value {
  font-size: 14px;
  color: var(--text);
}
.contact-side .contact-value a { color: var(--gold-light); }

/* ===========================================================
   CONTACT FORM — match app field style (fld-flat)
   =========================================================== */
.contact-form input,
.contact-form textarea,
.contact-form select {
  background: rgba(0,0,0,0.30);
  border: 1px solid rgba(201,169,97,0.15);
  color: #E8DDC9;
  border-radius: 10px;
  font-size: 13.5px;
  letter-spacing: 0.01em;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(201,169,97,0.45);
  background: rgba(0,0,0,0.45);
  outline: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(232,221,201,0.30);
}

/* Custom select arrow (dark theme, gold accent) */
.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A961' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 38px;
  cursor: pointer;
}
.contact-form select option {
  background: #0a0a0a;
  color: #E8DDC9;
  padding: 10px;
}

/* ============================================================
   Custom select styling for landing forms (no JS deps)
   Replaces native browser dropdowns with dark/gold theme.
   ============================================================ */
select,
.form-row select,
form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(232, 212, 158, 0.18);
  border-radius: 10px;
  padding: 12px 38px 12px 14px;
  font-size: 14px;
  font-family: inherit;
  line-height: 1.4;
  width: 100%;
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A961' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
}

select:hover,
form select:hover {
  border-color: rgba(232, 212, 158, 0.35);
  background-color: rgba(255, 255, 255, 0.05);
}

select:focus,
form select:focus {
  outline: none;
  border-color: rgba(232, 212, 158, 0.55);
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(232, 212, 158, 0.08);
}

/* Option styling — works in most browsers (Firefox best, Chrome partial) */
select option {
  background-color: #0a0a0a;
  color: rgba(255, 255, 255, 0.92);
  padding: 10px;
}

select option:hover,
select option:focus,
select option:checked {
  background-color: #C9A961;
  color: #0a0a0a;
}

/* Firefox-specific: dotted focus outline removal */
select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 rgba(255, 255, 255, 0.92);
}

/* ============================================================
   Custom dropdown for landing forms (overrides browser native)
   ============================================================ */
.lfx-landing-dd {
  position: relative;
  width: 100%;
}

.lfx-landing-dd-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  color: rgba(255, 255, 255, 0.92);
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(232, 212, 158, 0.18);
  border-radius: 10px;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.15s, background-color 0.15s;
}

.lfx-landing-dd-trigger:hover {
  border-color: rgba(232, 212, 158, 0.35);
  background-color: rgba(255, 255, 255, 0.05);
}

.lfx-landing-dd.open .lfx-landing-dd-trigger {
  border-color: rgba(232, 212, 158, 0.55);
  box-shadow: 0 0 0 3px rgba(232, 212, 158, 0.08);
}

.lfx-landing-dd-label {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lfx-landing-dd-arrow {
  color: #C9A961;
  display: flex;
  align-items: center;
  margin-left: 12px;
  transition: transform 0.2s ease;
}

.lfx-landing-dd.open .lfx-landing-dd-arrow {
  transform: rotate(180deg);
}

.lfx-landing-dd-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  max-height: 280px;
  overflow-y: auto;
  margin: 0;
  padding: 6px;
  list-style: none;
  background-color: #0d0d0d;
  border: 1px solid rgba(232, 212, 158, 0.25);
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
  z-index: 1000;
  display: none;
}

.lfx-landing-dd.open .lfx-landing-dd-menu {
  display: block;
}

.lfx-landing-dd.flip .lfx-landing-dd-menu {
  top: auto;
  bottom: calc(100% + 6px);
}

.lfx-landing-dd-option {
  padding: 10px 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.1s, color 0.1s;
}

.lfx-landing-dd-option:hover {
  background-color: rgba(232, 212, 158, 0.12);
  color: #fff;
}

.lfx-landing-dd-option.selected {
  background-color: #C9A961;
  color: #0a0a0a;
  font-weight: 500;
}

.lfx-landing-dd-option.selected:hover {
  background-color: #d4b878;
}

/* Custom scrollbar in menu */
.lfx-landing-dd-menu::-webkit-scrollbar { width: 6px; }
.lfx-landing-dd-menu::-webkit-scrollbar-track { background: transparent; }
.lfx-landing-dd-menu::-webkit-scrollbar-thumb {
  background: rgba(232, 212, 158, 0.3);
  border-radius: 3px;
}


/* === Plan features: new items (terracotta highlight) === */
.plan-detailed .plan-features.plan-features-new li {
  color: #D48383 !important;
}

/* Expand button for included features */
.plan-expand-btn {
  background: transparent;
  border: none;
  color: rgba(232, 212, 158, 0.55);
  font-size: 12px;
  letter-spacing: 0.04em;
  cursor: pointer;
  padding: 8px 0;
  margin: 0 0 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  transition: color 0.18s;
  width: 100%;
  text-align: left;
}
.plan-expand-btn:hover {
  color: var(--gold-light);
}
.plan-features-included {
  margin-bottom: 8px;
}
.plan-expand-btn .expand-arrow {
  font-size: 10px;
  display: inline-block;
  transition: transform 0.2s;
}

/* Included features list (when expanded) */
.plan-features-included {
  margin-top: 0;
  padding-top: 4px;
  animation: lfx-expand-fade 0.25s ease;
}
@keyframes lfx-expand-fade {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}


/* === Plan CTA: 2 botones apilados (trial + subscribe) === */
.plan-cta-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}
.plan-cta-group .plan-cta {
  width: 100%;
  text-align: center;
}

/* === Plan card tap-to-select: just border change, no glow === */
.plan-detailed {
  cursor: pointer;
  transition: border-color 0.25s ease;
}
.plan-detailed.is-selected {
  border-color: #C9A961 !important;
}
/* Cuando hay una card seleccionada, la Plus (featured) se apaga si NO es la seleccionada */
.pricing-grid-detailed.has-selection .plan-detailed.featured:not(.is-selected) {
  border-color: var(--border) !important;
  background: var(--bg-card) !important;
}

.pricing-grid-detailed .plan-detailed.featured::before,
.pricing-grid-detailed .plan-detailed.featured {
  transition: opacity 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}


/* === Global page scrollbar (golden, matches theme) === */
html {
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 169, 97, 0.4) rgba(10, 10, 10, 0.5);
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 10px;
}
html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
  background: #050505;
}
html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(232, 212, 158, 0.35), rgba(201, 169, 97, 0.35));
  border-radius: 5px;
  border: 2px solid #050505;
}
html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(232, 212, 158, 0.6), rgba(201, 169, 97, 0.6));
}

/* === PRICING TEASER (replaces full pricing in landing) === */
.pricing-teaser-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.pricing-teaser-title {
  margin: 0 0 16px;
  font-weight: 300;
  letter-spacing: -0.01em;
}
.pricing-teaser-sub {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(245, 233, 200, 0.65);
  margin: 0 0 32px;
}
.pricing-teaser-sub strong {
  color: #E8D49E;
  font-weight: 500;
}
.pricing-teaser-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.pricing-teaser-trust {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: rgba(245, 233, 200, 0.45);
}
.pricing-teaser-trust .dot {
  color: rgba(201, 169, 97, 0.35);
}
