/* === DEFENDEMOS TRABAJADORES — design tokens === */
:root {
  --bg: #f5f1ea;
  --bg-2: #ece6db;
  --paper: #fbf8f2;
  --ink: #16202e;
  --ink-2: #2a3a4f;
  --muted: #5c6675;
  --line: #d9d1c2;
  --line-2: #e6dfd1;
  --navy: #163355;
  --navy-2: #0f2440;
  --navy-soft: #214874;
  --gold: #c9a961;
  --gold-2: #b8954a;
  --gold-soft: #e8d9b0;
  --green: #2f6b4f;
  --red: #b14a3a;
  --shadow-sm: 0 1px 2px rgba(20,32,46,.06), 0 1px 0 rgba(20,32,46,.03);
  --shadow-md: 0 2px 6px rgba(20,32,46,.06), 0 12px 28px -12px rgba(20,32,46,.18);
  --shadow-lg: 0 4px 10px rgba(20,32,46,.07), 0 30px 60px -20px rgba(20,32,46,.25);
  --r-sm: 8px;
  --r: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --font-display: "Newsreader", "Source Serif 4", Georgia, serif;
  --font-body: "Manrope", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --container: 1200px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

.serif { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.01em; }
.h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.022em;
  color: var(--ink);
  text-wrap: balance;
}
.h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.018em;
  text-wrap: balance;
}
.h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 2vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.012em;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1.5px;
  background: var(--gold);
}
.lede { font-size: 18px; color: var(--ink-2); line-height: 1.55; text-wrap: pretty; }
.muted { color: var(--muted); }
.ink2 { color: var(--ink-2); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }

/* ===== NAV ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245, 241, 234, 0.86);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  cursor: pointer;
}
.brand-mark {
  width: 38px; height: 38px;
  background: var(--navy);
  color: var(--bg);
  border-radius: 10px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  position: relative;
  flex: 0 0 38px;
}
.brand-mark::after {
  content: ""; position: absolute; bottom: 5px; right: 5px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
}
.brand-name {
  display: flex; flex-direction: column;
  line-height: 1.05;
}
.brand-name strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.brand-name span {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 14.5px; font-weight: 500; color: var(--ink-2);
  padding: 8px 0;
  position: relative;
  transition: color .15s;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a.active { color: var(--navy); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--gold);
}
.nav-cta { display: flex; align-items: center; gap: 10px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform .12s, box-shadow .15s, background .15s, border-color .15s;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-wa {
  background: #25d366;
  color: #07331a;
  box-shadow: 0 1px 0 rgba(0,0,0,.08), 0 8px 24px -10px rgba(37,211,102,.55);
}
.btn-wa:hover { background: #20bd5a; }
.btn-primary {
  background: var(--navy);
  color: var(--paper);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { background: var(--navy-2); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--ink); background: rgba(22,32,46,0.03); }
.btn-gold {
  background: var(--gold);
  color: var(--navy-2);
  box-shadow: var(--shadow-sm);
}
.btn-gold:hover { background: var(--gold-2); color: var(--paper); }
.btn-sm { padding: 9px 14px; font-size: 13.5px; border-radius: 10px; }
.btn-lg { padding: 16px 26px; font-size: 16px; border-radius: 14px; }
.btn .icon { width: 18px; height: 18px; flex: 0 0 18px; }
.btn-block { display: flex; width: 100%; justify-content: center; }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 56px 0 80px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 6px 12px 6px 6px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-2);
  margin-bottom: 22px;
}
.hero-pill .dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: #25d366;
  display: grid; place-items: center;
  color: white; font-size: 12px;
}
.hero h1 strong {
  font-weight: 500;
  font-style: italic;
  color: var(--navy);
  position: relative;
}
.hero h1 strong::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 4px;
  height: 8px;
  background: var(--gold-soft);
  z-index: -1;
}
.hero-sub {
  margin-top: 22px;
  font-size: 18.5px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 540px;
}
.hero-ctas { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }

.hero-trust {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  max-width: 540px;
}
.hero-trust-item .num {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  color: var(--navy);
  font-weight: 500;
}
.hero-trust-item .lbl {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.35;
}

/* Hero right column — case card */
.case-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.case-card-header {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-2);
}
.case-card-avatar {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  display: grid; place-items: center;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  flex: 0 0 52px;
  position: relative;
}
.case-card-avatar .badge {
  position: absolute; bottom: -2px; right: -2px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--paper);
}
.case-card-header h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
}
.case-card-header p {
  margin: 2px 0 0;
  font-size: 13px;
  color: var(--muted);
}
.case-card-form {
  display: flex; flex-direction: column; gap: 14px;
  padding-top: 22px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: 0.02em;
}
.field input, .field select, .field textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: 10px;
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(22, 51, 85, 0.10);
  background: var(--paper);
}
.field-hint { font-size: 12px; color: var(--muted); }
.case-card-foot {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; color: var(--muted);
  margin-top: 6px;
}
.case-card-foot .lock { width: 14px; height: 14px; opacity: 0.6; }
.case-card-or {
  display: flex; align-items: center; gap: 12px;
  margin: 18px 0 14px;
  color: var(--muted); font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.case-card-or::before, .case-card-or::after {
  content: ""; flex: 1; height: 1px; background: var(--line-2);
}

/* "no win no fee" stamp */
.stamp {
  position: absolute;
  top: -18px; right: -18px;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-2);
  display: grid; place-items: center; text-align: center;
  font-family: var(--font-display);
  font-size: 13px;
  line-height: 1.1;
  font-weight: 500;
  transform: rotate(-8deg);
  padding: 12px;
  box-shadow: 0 10px 30px -12px rgba(201,169,97,.7);
}
.stamp::before {
  content: ""; position: absolute; inset: 6px;
  border: 1.5px dashed rgba(22, 36, 64, 0.45);
  border-radius: 50%;
}
.stamp strong {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  font-style: italic;
}

/* ===== TRUST STRIP ===== */
.strip {
  background: var(--navy);
  color: var(--paper);
  padding: 22px 0;
}
.strip-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.strip-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14.5px;
  color: rgba(251, 248, 242, 0.92);
}
.strip-item .check {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold);
  color: var(--navy-2);
  display: grid; place-items: center;
  font-size: 12px;
  font-weight: 700;
  flex: 0 0 20px;
}

/* ===== SECTION SHELL ===== */
.section { padding: 96px 0; }
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}
.section-head .lede { max-width: 480px; }
.section-head.center {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
  align-items: center;
  margin-bottom: 56px;
}
.section-head.center .lede { max-width: 620px; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px 26px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  cursor: pointer;
  display: flex; flex-direction: column;
  min-height: 220px;
  position: relative;
  text-align: left;
}
.service-card:hover {
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.service-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--bg-2);
  display: grid; place-items: center;
  color: var(--navy);
  margin-bottom: 18px;
}
.service-icon svg { width: 22px; height: 22px; }
.service-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 21px;
  letter-spacing: -0.01em;
  line-height: 1.18;
}
.service-card p {
  margin: 0;
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.5;
  flex: 1;
}
.service-card .arrow {
  margin-top: 18px;
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--navy);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.service-card .arrow svg {
  width: 14px; height: 14px;
  transition: transform .2s;
}
.service-card:hover .arrow svg { transform: translateX(4px); }

/* ===== STEPS ===== */
.steps {
  background: var(--bg-2);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.step {
  padding: 0 22px 0 0;
  position: relative;
}
.step + .step { padding-left: 22px; border-left: 1px dashed var(--line); }
.step-num {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
  font-style: italic;
}
.step h4 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
}
.step p {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.5;
}

/* ===== LAWYER ===== */
.lawyer {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.lawyer-photo {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--bg-2), var(--gold-soft));
}
.lawyer-photo .ph-stripes {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(22, 51, 85, 0.05) 0,
    rgba(22, 51, 85, 0.05) 8px,
    transparent 8px,
    transparent 16px
  );
}
.lawyer-photo .ph-label {
  position: absolute; left: 16px; bottom: 16px;
  background: rgba(22, 51, 85, 0.85);
  color: var(--paper);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  padding: 5px 9px;
  border-radius: 6px;
  letter-spacing: 0.04em;
}
.lawyer-photo .signature {
  position: absolute; right: 18px; top: 18px;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--navy);
  font-size: 26px;
  opacity: 0.7;
}
.lawyer-creds {
  list-style: none; padding: 0; margin: 24px 0 28px;
  display: grid; gap: 10px;
}
.lawyer-creds li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15px; color: var(--ink-2);
}
.lawyer-creds li::before {
  content: "✓";
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  background: var(--gold-soft);
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center;
  flex: 0 0 22px;
  margin-top: 1px;
}
.lawyer-quote {
  background: var(--paper);
  border-left: 3px solid var(--gold);
  padding: 18px 22px;
  border-radius: 0 var(--r) var(--r) 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  line-height: 1.45;
  margin: 0 0 24px;
}

/* ===== RESULTS ===== */
.results {
  background: var(--navy);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.results h2 { color: var(--paper); }
.results .eyebrow { color: var(--gold); }
.results .eyebrow::before { background: var(--gold); }
.results .lede { color: rgba(251, 248, 242, 0.8); }
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.result-card {
  background: rgba(251, 248, 242, 0.04);
  border: 1px solid rgba(251, 248, 242, 0.12);
  border-radius: var(--r);
  padding: 30px 26px;
  display: flex; flex-direction: column;
}
.result-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(201, 169, 97, 0.15);
  color: var(--gold);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
}
.result-amount {
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1;
  color: var(--paper);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.result-amount .currency {
  font-size: 22px;
  color: var(--gold);
  margin-right: 4px;
  vertical-align: 8px;
}
.result-card p {
  margin: 14px 0 0;
  color: rgba(251, 248, 242, 0.72);
  font-size: 14.5px;
  line-height: 1.55;
}
.result-card .meta {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(251, 248, 242, 0.1);
  font-size: 12.5px;
  color: rgba(251, 248, 242, 0.55);
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.testimonial {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px;
  display: flex; flex-direction: column;
}
.stars {
  display: flex; gap: 2px;
  color: var(--gold);
  margin-bottom: 14px;
  font-size: 16px;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.45;
  color: var(--ink);
  margin: 0 0 22px;
  flex: 1;
  text-wrap: pretty;
}
.testimonial-by {
  display: flex; align-items: center; gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line-2);
}
.testimonial-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--bg-2);
  color: var(--navy);
  display: grid; place-items: center;
  font-weight: 600;
  font-size: 14px;
  flex: 0 0 38px;
}
.testimonial-by .name {
  font-weight: 600;
  font-size: 14.5px;
}
.testimonial-by .meta {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 1px;
}

/* ===== FAQ ===== */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
}
.faq-list { display: flex; flex-direction: column; gap: 4px; }
.faq-item {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  cursor: pointer;
  user-select: none;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.faq-toggle {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg-2);
  display: grid; place-items: center;
  color: var(--navy);
  flex: 0 0 28px;
  transition: background .2s, transform .25s;
  font-size: 14px;
  font-weight: 600;
}
.faq-item.open .faq-toggle { background: var(--navy); color: var(--paper); transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, margin-top .25s, opacity .25s;
  opacity: 0;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.6;
}
.faq-item.open .faq-a {
  max-height: 320px;
  margin-top: 14px;
  opacity: 1;
}

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 88px 0;
}
.final-cta-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 64px 60px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.final-cta-card::before {
  content: "";
  position: absolute;
  right: -120px; bottom: -120px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-soft), transparent 70%);
  opacity: 0.7;
  z-index: 0;
}
.final-cta-card > * { position: relative; z-index: 1; }
.final-cta-card h2 { margin: 12px 0 16px; }
.final-cta-card .actions { display: flex; flex-direction: column; gap: 12px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-2);
  color: rgba(251, 248, 242, 0.78);
  padding: 64px 0 32px;
  font-size: 14.5px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(251, 248, 242, 0.1);
}
.footer h5 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--paper);
  font-size: 16px;
  margin: 0 0 16px;
  letter-spacing: -0.005em;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer a:hover { color: var(--gold); }
.footer .brand-name strong { color: var(--paper); }
.footer .brand-name span { color: rgba(251, 248, 242, 0.5); }
.footer .brand-mark { background: var(--paper); color: var(--navy); }
.footer-desc { margin: 18px 0; max-width: 320px; color: rgba(251, 248, 242, 0.62); font-size: 13.5px; line-height: 1.55; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact a, .footer-contact span {
  display: flex; align-items: center; gap: 10px;
  font-size: 14.5px;
}
.footer-contact .ic {
  width: 28px; height: 28px; border-radius: 8px;
  background: rgba(251, 248, 242, 0.08);
  display: grid; place-items: center;
  color: var(--gold);
  flex: 0 0 28px;
}
.footer-bottom {
  padding-top: 28px;
  display: flex; justify-content: space-between; gap: 16px;
  font-size: 12.5px;
  color: rgba(251, 248, 242, 0.5);
  flex-wrap: wrap;
}

/* ===== WHATSAPP FLOATING ===== */
.wa-float {
  position: fixed;
  bottom: 22px; right: 22px;
  z-index: 100;
  background: #25d366;
  color: white;
  border-radius: 999px;
  padding: 14px 20px 14px 14px;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.6), 0 2px 6px rgba(0,0,0,.12);
  display: flex; align-items: center; gap: 10px;
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
  border: none;
  cursor: pointer;
}
.wa-float:hover { transform: translateY(-2px); }
.wa-float .pulse {
  position: absolute; inset: 0; border-radius: 999px;
  border: 2px solid #25d366;
  animation: pulse 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.25); opacity: 0; }
}

/* ===== SERVICE DETAIL ===== */
.svc-hero {
  padding: 56px 0 64px;
}
.crumbs {
  display: flex; gap: 8px; align-items: center;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}
.crumbs a:hover { color: var(--navy); }
.crumbs .sep { opacity: 0.5; }
.svc-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: start;
}
.svc-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 24px;
}
.tag {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-2);
}
.svc-side-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
}
.svc-side-card h4 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
}
.svc-side-card p { margin: 0 0 18px; color: var(--ink-2); font-size: 14px; }
.svc-stat {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--line-2);
  font-size: 14px;
}
.svc-stat strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--navy);
}

.svc-body {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  padding: 32px 0 88px;
}
.svc-body p { font-size: 16px; color: var(--ink-2); line-height: 1.65; }
.svc-body h3 { margin: 32px 0 14px; }
.svc-body h3:first-child { margin-top: 0; }
.checklist { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.checklist li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
}
.checklist li::before {
  content: "";
  width: 8px; height: 8px;
  margin-top: 9px;
  background: var(--gold);
  border-radius: 2px;
  flex: 0 0 8px;
  transform: rotate(45deg);
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
  padding: 56px 0 32px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  padding: 24px 0 88px;
}
.contact-side {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  gap: 6px;
}
.contact-method {
  display: flex; gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line-2);
}
.contact-method:first-of-type { border-top: 0; padding-top: 0; }
.contact-method .ic {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--bg-2);
  color: var(--navy);
  display: grid; place-items: center;
  flex: 0 0 42px;
}
.contact-method .ic.wa { background: rgba(37, 211, 102, 0.12); color: #1aa552; }
.contact-method h5 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
}
.contact-method p { margin: 0; color: var(--ink-2); font-size: 14px; line-height: 1.5; }
.contact-method .val {
  margin-top: 6px;
  font-weight: 600;
  color: var(--navy);
  font-size: 15px;
}
.contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 18px;
}
.contact-form h3 { margin: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.success-state {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 48px 40px;
  text-align: center;
}
.success-state .icon-wrap {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  background: var(--gold-soft);
  color: var(--navy);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 28px;
}

/* ===== PROGRESS bar for form ===== */
.progress {
  display: flex; gap: 6px;
  margin-bottom: 24px;
}
.progress span {
  flex: 1; height: 4px;
  background: var(--line);
  border-radius: 2px;
  position: relative;
}
.progress span.done { background: var(--navy); }
.progress span.active { background: var(--gold); }

/* ===== TWEAK PALETTES ===== */
body.pal-sereno {
  --bg: #eef1ed;
  --bg-2: #e1e7e0;
  --paper: #f7faf6;
  --ink: #14241e;
  --ink-2: #2a3d34;
  --muted: #5c6d63;
  --line: #d2dccd;
  --line-2: #dfe7da;
  --navy: #1f4d3a;
  --navy-2: #14352a;
  --navy-soft: #2f6651;
  --gold: #b08a5a;
  --gold-2: #94703f;
  --gold-soft: #e3d6bd;
}
body.pal-editorial {
  --bg: #f4efe7;
  --bg-2: #e9e1d2;
  --paper: #fbf7ef;
  --ink: #1a1815;
  --ink-2: #2b2925;
  --muted: #6a6157;
  --line: #ddd2bd;
  --line-2: #e7ddc9;
  --navy: #2a2926;
  --navy-2: #161513;
  --navy-soft: #4a4742;
  --gold: #b14a3a;
  --gold-2: #8d3727;
  --gold-soft: #e9c8be;
}

/* ===== TONE: MODERNO (sans-led, no italic flair) ===== */
body.tone-moderno {
  --font-display: "Manrope", system-ui, sans-serif;
}
body.tone-moderno .h1,
body.tone-moderno .h2,
body.tone-moderno .h3,
body.tone-moderno .serif,
body.tone-moderno .case-card-header h4,
body.tone-moderno .step h4,
body.tone-moderno .footer h5,
body.tone-moderno .testimonial-quote,
body.tone-moderno .lawyer-quote,
body.tone-moderno .faq-q,
body.tone-moderno .result-amount,
body.tone-moderno .step-num,
body.tone-moderno .brand-name strong {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: -0.022em;
}
body.tone-moderno .h1 { font-weight: 700; letter-spacing: -0.03em; }
body.tone-moderno .hero h1 strong { font-style: normal; }
body.tone-moderno .hero h1 strong::after { display: none; }
body.tone-moderno .lawyer-quote { font-style: normal; }
body.tone-moderno .stamp { display: none; }
body.tone-moderno .step-num { font-style: normal; font-weight: 600; }
body.tone-moderno .testimonial-quote { font-style: normal; }
body.tone-moderno .btn { border-radius: 8px; }
body.tone-moderno .service-card,
body.tone-moderno .result-card,
body.tone-moderno .testimonial,
body.tone-moderno .case-card,
body.tone-moderno .final-cta-card { border-radius: 10px; }
body.tone-moderno .case-card { border-radius: 16px; }

/* ===== TONE: BOLD (large display, heavier weight, dramatic) ===== */
body.tone-bold .h1 {
  font-size: clamp(48px, 6.4vw, 84px);
  font-weight: 600;
  letter-spacing: -0.028em;
  line-height: 0.98;
}
body.tone-bold .h2 {
  font-size: clamp(36px, 4.4vw, 58px);
  font-weight: 600;
  letter-spacing: -0.024em;
}
body.tone-bold .result-amount { font-size: 56px; font-weight: 600; }
body.tone-bold .hero-trust-item .num { font-size: 44px; font-weight: 600; }
body.tone-bold .step-num { font-size: 76px; }
body.tone-bold .stamp { width: 130px; height: 130px; }
body.tone-bold .btn-lg { padding: 18px 30px; font-size: 17px; }
body.tone-bold .service-card { padding: 32px 28px; }
body.tone-bold .service-card h3 { font-size: 24px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .services-grid, .testimonials-grid, .results-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 28px 0; }
  .lawyer { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }
  .final-cta-card { grid-template-columns: 1fr; padding: 40px 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links { display: none; }
  .svc-hero-grid, .svc-body, .contact-grid { grid-template-columns: 1fr; }
  .svc-side-card { position: static; }
  .section { padding: 64px 0; }
  .section-head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 36px; }
}
@media (max-width: 620px) {
  .services-grid, .testimonials-grid, .results-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .step + .step { border-left: 0; padding-left: 0; padding-top: 18px; border-top: 1px dashed var(--line); margin-top: 4px; }
  .hero { padding: 36px 0 56px; }
  .stamp { width: 90px; height: 90px; font-size: 11px; top: -10px; right: -10px; }
  .stamp strong { font-size: 14px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .strip-inner { justify-content: flex-start; }
  .final-cta-card { padding: 32px 22px; }
}
