/* ================================================================
   STYLE.CSS — Component styles for El León de la Compensación
   ================================================================ */

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: var(--space-5);
}

.container-wide {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-5);
}

section {
  padding-block: clamp(var(--space-12), 8vw, var(--space-24));
}

/* ---------- Top urgency bar ---------- */
.top-bar {
  background: #000;
  color: #fff;
  font-size: var(--text-xs);
  padding-block: var(--space-2);
  text-align: center;
  letter-spacing: 0.04em;
}
.top-bar strong { color: var(--color-gold-bright); }
.top-bar a { color: var(--color-gold-bright); font-weight: 700; }

/* ---------- Sticky header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-divider);
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: var(--header-h);
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-text);
}
.brand:hover { color: var(--color-gold-light); }
.brand-mark {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-text .brand-primary {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-gold-light);
  letter-spacing: 0.02em;
}
.brand-text .brand-secondary {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-gold);
  color: var(--color-bg);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.7rem 1.1rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
  box-shadow: 0 4px 14px rgba(212, 160, 23, 0.35);
}
.header-cta:hover {
  background: var(--color-gold-bright);
  color: var(--color-bg);
  transform: translateY(-1px);
}
.header-cta svg { width: 16px; height: 16px; }
.header-cta .phone-label { display: none; }
@media (min-width: 560px) {
  .header-cta .phone-label { display: inline; }
}

/* Hide brand secondary text on very small screens */
@media (max-width: 400px) {
  .brand-text .brand-secondary { display: none; }
  .brand-text .brand-primary { font-size: 0.95rem; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  min-height: 48px;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  line-height: 1.1;
}
.btn-lg {
  padding: 1.1rem 2rem;
  font-size: 1.05rem;
}
.btn-primary {
  background: linear-gradient(180deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
  color: var(--color-bg);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: linear-gradient(180deg, var(--color-gold-bright) 0%, var(--color-gold-light) 100%);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(212, 160, 23, 0.5);
  color: var(--color-bg);
}
.btn-outline {
  background: transparent;
  color: var(--color-gold-light);
  border-color: var(--color-gold-light);
}
.btn-outline:hover {
  background: var(--color-gold-light);
  color: var(--color-bg);
}
.btn-block { width: 100%; }
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-block: clamp(var(--space-16), 12vw, var(--space-32));
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 22, 40, 0.82) 0%, rgba(10, 22, 40, 0.92) 60%, var(--color-bg) 100%),
    url('../assets/hero-chicago.jpg') center / cover no-repeat;
  z-index: -2;
}
.hero::after {
  /* Gold radial accent */
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle at center, rgba(212, 160, 23, 0.18) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-gold-bright);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  margin-bottom: var(--space-5);
}
.hero-eyebrow::before {
  content: '';
  width: 32px; height: 2px;
  background: var(--color-gold-bright);
}

.hero h1 {
  font-size: var(--text-hero);
  margin-bottom: var(--space-4);
  color: var(--color-text);
  max-width: 18ch;
}
.hero h1 .accent {
  color: var(--color-gold-light);
  font-style: italic;
}
.hero-sub {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-gold-light);
  font-weight: 600;
  margin-bottom: var(--space-6);
}
.hero-message {
  font-size: var(--text-lg);
  color: var(--color-text);
  margin-bottom: var(--space-8);
  max-width: 40ch;
  line-height: 1.45;
}
.hero-message strong { color: var(--color-gold-bright); }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-10);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5) var(--space-6);
  align-items: center;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text);
  font-weight: 500;
}
.trust-badge svg {
  width: 20px; height: 20px; color: var(--color-gold-bright);
  flex-shrink: 0;
}

/* ---------- Section heading ---------- */
.section-head {
  text-align: center;
  margin-bottom: var(--space-12);
}
.section-eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  color: var(--color-gold-bright);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  margin-bottom: var(--space-3);
}
.section-head h2 {
  font-size: var(--text-2xl);
  color: var(--color-text);
  margin-bottom: var(--space-3);
}
.section-head h2 .accent { color: var(--color-gold-light); }
.section-head p {
  color: var(--color-text-muted);
  font-size: var(--text-lg);
  max-width: 60ch;
  margin-inline: auto;
}
.section-head.dark h2 { color: var(--color-text-dark); }
.section-head.dark p { color: var(--color-text-dark-muted); }

/* ---------- Form section ---------- */
.form-section {
  background:
    linear-gradient(180deg, var(--color-surface) 0%, var(--color-bg) 100%);
  position: relative;
}
.form-card {
  max-width: 720px;
  margin-inline: auto;
  background: linear-gradient(180deg, rgba(13, 43, 94, 0.9) 0%, rgba(10, 22, 40, 0.98) 100%);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-2xl);
  padding: clamp(var(--space-6), 5vw, var(--space-12));
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-bright), var(--color-gold));
}
.form-grid {
  display: grid;
  gap: var(--space-4);
}
.form-row {
  display: grid;
  gap: var(--space-4);
}
@media (min-width: 640px) {
  .form-row.two { grid-template-columns: 1fr 1fr; }
}
.field label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--color-text);
}
.field label .req { color: var(--color-gold-bright); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  min-height: 48px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-size: var(--text-base);
  transition: border-color 180ms, background 180ms, box-shadow 180ms;
}
.field textarea {
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(255, 255, 255, 0.4); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-gold-light);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.15);
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--color-error);
  background: rgba(204, 51, 51, 0.08);
}
.field .error-msg {
  display: none;
  color: #ff8a8a;
  font-size: var(--text-xs);
  margin-top: var(--space-2);
  font-weight: 500;
}
.field.has-error .error-msg { display: block; }

.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23D4A017' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.field select option { background: var(--color-surface); color: var(--color-text); }

.form-footnote {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
}
.form-footnote svg { width: 16px; height: 16px; color: var(--color-gold-bright); }

.form-success {
  display: none;
  text-align: center;
  padding: var(--space-8) var(--space-4);
}
.form-success.active { display: block; }
.form-success .check {
  width: 72px; height: 72px;
  margin-inline: auto;
  background: rgba(46, 139, 87, 0.2);
  border: 2px solid #4ade80;
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-5);
}
.form-success .check svg { width: 36px; height: 36px; color: #4ade80; }
.form-success h3 {
  font-size: var(--text-xl);
  color: var(--color-gold-bright);
  margin-bottom: var(--space-3);
}
.form-success p { color: var(--color-text-muted); margin-inline: auto; }
.form-card.submitted .form-grid,
.form-card.submitted .form-footnote { display: none; }

/* ---------- Services ---------- */
.services {
  background: #fff;
  color: var(--color-text-dark);
}
.services-grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
.service-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--color-text-dark);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive), border-color var(--transition-interactive);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(10, 22, 40, 0.18);
  border-color: var(--color-gold);
  color: var(--color-text-dark);
}
.service-card .service-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-bg);
  position: relative;
}
.service-card .service-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover .service-img img { transform: scale(1.06); }
.service-card .service-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 22, 40, 0.55) 100%);
}
.service-card .service-body { padding: var(--space-6); flex: 1; display: flex; flex-direction: column; }
.service-card .service-icon {
  width: 56px; height: 56px;
  background: var(--color-gold-soft);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-gold);
  margin-top: -40px;
  margin-bottom: var(--space-4);
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}
.service-card .service-icon svg { width: 28px; height: 28px; }
.service-card h3 {
  font-size: 1.4rem;
  color: var(--color-text-dark);
  margin-bottom: var(--space-3);
}
.service-card p {
  color: var(--color-text-dark-muted);
  font-size: var(--text-base);
  line-height: 1.6;
  margin-bottom: var(--space-5);
}
.service-card .service-link {
  margin-top: auto;
  font-weight: 700;
  color: var(--color-gold-dark);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.service-card:hover .service-link { color: var(--color-gold); gap: var(--space-3); }

/* ---------- About / Trust ---------- */
.about {
  background:
    linear-gradient(180deg, var(--color-bg) 0%, var(--color-surface-offset) 100%);
  position: relative;
}
.stats-bar {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2);
  margin-bottom: var(--space-16);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
  padding-block: var(--space-8);
}
@media (min-width: 640px) {
  .stats-bar { grid-template-columns: repeat(3, 1fr); gap: var(--space-8); }
}
.stat {
  text-align: center;
}
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1rem + 3.5vw, 3.5rem);
  color: var(--color-gold-light);
  font-weight: 700;
  line-height: 1;
  margin-bottom: var(--space-2);
}
.stat .label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.about-grid {
  display: grid;
  gap: var(--space-10);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1fr 1.2fr; gap: var(--space-16); }
}
.about-portrait {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  max-width: 460px;
  margin-inline: auto;
  width: 100%;
}
.about-portrait img {
  width: 100%; height: 100%; object-fit: cover;
}
.about-portrait::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 22, 40, 0.75) 100%);
  z-index: 1;
}
.about-portrait::after {
  content: '';
  position: absolute;
  top: var(--space-4); right: var(--space-4);
  bottom: var(--space-4); left: var(--space-4);
  border: 1px solid rgba(212, 160, 23, 0.4);
  pointer-events: none;
  z-index: 2;
}

.about-badge {
  position: absolute;
  bottom: var(--space-5);
  left: var(--space-5);
  right: var(--space-5);
  background: rgba(10, 22, 40, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--color-gold);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  z-index: 3;
}
.about-badge .name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-gold-bright);
  font-weight: 700;
}
.about-badge .role {
  font-size: var(--text-sm);
  color: var(--color-text);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-content h2 {
  font-size: var(--text-2xl);
  color: var(--color-text);
  margin-bottom: var(--space-5);
}
.about-content h2 .accent { color: var(--color-gold-light); }
.about-content .lead {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}
.trust-points {
  list-style: none;
  display: grid;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}
.trust-points li {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}
.trust-points li svg {
  width: 28px; height: 28px;
  color: var(--color-gold-bright);
  flex-shrink: 0;
  margin-top: 2px;
}
.trust-points li span {
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.5;
}
.trust-points li strong {
  color: var(--color-gold-bright);
  font-weight: 600;
}

/* ---------- Video ---------- */
.video-section {
  background: var(--color-bg);
  text-align: center;
}
.video-wrap {
  max-width: 880px;
  margin-inline: auto;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--color-border-strong);
  aspect-ratio: 16/9;
  background: #000;
  box-shadow: var(--shadow-lg);
}
.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.video-section .video-cta {
  margin-top: var(--space-8);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
  align-items: center;
}
.video-section .video-cta span {
  color: var(--color-text-muted);
  font-size: var(--text-base);
}

/* ---------- FAQ ---------- */
.faq {
  background: var(--color-surface-light);
  color: var(--color-text-dark);
}
.faq-list {
  max-width: 820px;
  margin-inline: auto;
  display: grid;
  gap: var(--space-3);
}
.faq-item {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition-interactive), border-color var(--transition-interactive);
}
.faq-item[open],
.faq-item:hover {
  box-shadow: 0 8px 24px rgba(10, 22, 40, 0.08);
  border-color: var(--color-gold);
}
.faq-item summary {
  padding: var(--space-5) var(--space-6);
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  list-style: none;
  min-height: 60px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  width: 28px; height: 28px;
  flex-shrink: 0;
  background: var(--color-gold-soft);
  border-radius: var(--radius-full);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M3 5L7 9L11 5' stroke='%23A67C0F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform var(--transition-interactive), background-color var(--transition-interactive);
}
.faq-item[open] summary::after {
  transform: rotate(180deg);
  background-color: var(--color-gold);
}
.faq-item .faq-body {
  padding: 0 var(--space-6) var(--space-6);
  color: var(--color-text-dark-muted);
  line-height: 1.65;
}
.faq-item .faq-body p + p { margin-top: var(--space-3); }
.faq-item .faq-body strong { color: var(--color-text-dark); }
.faq-item .faq-body ul,
.faq-item .faq-body ol {
  margin: var(--space-3) 0 var(--space-3) var(--space-6);
}
.faq-item .faq-body li { margin-bottom: var(--space-2); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background:
    radial-gradient(ellipse at top, rgba(212, 160, 23, 0.2) 0%, transparent 60%),
    linear-gradient(180deg, var(--color-surface) 0%, var(--color-bg) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(212, 160, 23, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(212, 160, 23, 0.08) 0%, transparent 40%);
  pointer-events: none;
}
.cta-banner > * { position: relative; }
.cta-banner h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-5);
  color: var(--color-text);
}
.cta-banner h2 .accent { color: var(--color-gold-light); font-style: italic; }
.cta-banner p {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  margin-inline: auto;
  margin-bottom: var(--space-8);
}
.cta-banner p strong { color: var(--color-gold-bright); font-weight: 700; }
.cta-banner .btn-group {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #060F1D;
  padding-block: var(--space-16) calc(var(--space-8) + var(--mobile-bar-h));
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-divider);
}
@media (min-width: 720px) {
  .site-footer { padding-bottom: var(--space-8); }
}
.footer-grid {
  display: grid;
  gap: var(--space-10);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-gold-bright);
  margin-bottom: var(--space-4);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-col .brand { margin-bottom: var(--space-4); }
.footer-col p { font-size: var(--text-sm); line-height: 1.6; }
.footer-col ul { list-style: none; display: grid; gap: var(--space-2); }
.footer-col ul a { color: var(--color-text-muted); }
.footer-col ul a:hover { color: var(--color-gold-light); }
.footer-phone {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-gold-bright);
  font-weight: 700;
  display: inline-block;
  margin-bottom: var(--space-2);
}
.footer-phone:hover { color: var(--color-gold-bright); }
.footer-address {
  font-style: normal;
  color: var(--color-text-muted);
  line-height: 1.6;
}
.footer-bottom {
  margin-top: var(--space-10);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-divider);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  font-size: var(--text-xs);
}
.footer-disclaimer {
  color: var(--color-text-faint);
  font-size: var(--text-xs);
  line-height: 1.6;
  max-width: 72ch;
}

/* ---------- Mobile sticky bar ---------- */
.mobile-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--color-border-strong);
  display: grid;
  grid-template-columns: 1fr 1fr;
  z-index: 90;
  min-height: var(--mobile-bar-h);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}
.mobile-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  min-height: var(--mobile-bar-h);
}
.mobile-bar .mb-call {
  background: var(--color-gold);
  color: var(--color-bg);
}
.mobile-bar .mb-call:hover { background: var(--color-gold-bright); color: var(--color-bg); }
.mobile-bar .mb-form {
  background: transparent;
  color: var(--color-gold-light);
  border-left: 1px solid var(--color-border-strong);
}
.mobile-bar .mb-form:hover { background: rgba(212, 160, 23, 0.1); }
.mobile-bar svg { width: 20px; height: 20px; }

@media (min-width: 720px) {
  .mobile-bar { display: none; }
}

/* ---------- Privacy page styles ---------- */
.page-banner {
  background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-bg) 100%);
  padding-block: var(--space-20) var(--space-16);
  text-align: center;
  border-bottom: 1px solid var(--color-divider);
}
.page-banner h1 {
  font-size: var(--text-2xl);
  color: var(--color-text);
}
.page-banner h1 .accent { color: var(--color-gold-light); }
.page-banner .breadcrumb {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-4);
}

.prose-section { background: var(--color-surface-light); color: var(--color-text-dark); }
.prose {
  max-width: 780px;
  margin-inline: auto;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-6), 4vw, var(--space-12));
  box-shadow: 0 8px 24px rgba(10, 22, 40, 0.06);
}
.prose h2 {
  font-size: var(--text-xl);
  color: var(--color-text-dark);
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
  border-bottom: 2px solid var(--color-gold);
  padding-bottom: var(--space-3);
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-size: 1.15rem;
  color: var(--color-text-dark);
  margin-top: var(--space-6);
  margin-bottom: var(--space-3);
}
.prose p,
.prose li {
  color: var(--color-text-dark-muted);
  line-height: 1.7;
  margin-bottom: var(--space-4);
  max-width: none;
}
.prose ul, .prose ol {
  margin-left: var(--space-6);
  margin-bottom: var(--space-4);
}
.prose li { margin-bottom: var(--space-2); }
.prose strong { color: var(--color-text-dark); }
.prose a { color: var(--color-gold-dark); font-weight: 600; text-decoration: underline; }
.prose a:hover { color: var(--color-gold); }
.prose .updated {
  font-size: var(--text-sm);
  color: var(--color-text-dark-muted);
  margin-bottom: var(--space-8);
  font-style: italic;
}

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-8 { margin-top: var(--space-8); }
