/* ═══════════════════════════════════════════════════
   LÁZARO LUCIO — ABOGADO EXTRANJERÍA
   Palma de Mallorca
   styles.css
════════════════════════════════════════════════════ */

/* ─── 1. TOKENS ────────────────────────────────────── */
:root {
  --cream:      #F9F6F1;
  --cream-dark: #F0EDE6;
  --black:      #1A1A1A;
  --navy:       #1E3A5F;
  --navy-mid:   #2A4E7F;
  --gold:       #C9A96E;
  --gold-light: #E8CFA0;
  --white:      #FFFFFF;
  --muted:      #6B6B6B;
  --border:     #E2DDD6;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max:  1200px;
  --r:    6px;
  --ease: 0.3s ease;
}

/* ─── 2. RESET ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 72px;
}
img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
button { font-family: var(--sans); cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ─── 3. LAYOUT UTILS ──────────────────────────────── */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}
.section { padding: clamp(64px, 9vw, 120px) clamp(20px, 4vw, 64px); }
.section--white { background: var(--white); }
.section--dark  { background: var(--cream-dark); }
.section--navy  { background: var(--navy); color: var(--white); }

/* ─── 4. TYPE UTILS ─────────────────────────────────── */
.label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.label--light { color: var(--gold-light); }

/* ─── 5. BUTTONS ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--r);
  border: none;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), border-color var(--ease), color var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }

.btn-navy  { background: var(--navy);  color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); }

.btn-gold  { background: var(--gold);  color: var(--black); font-weight: 700; }
.btn-gold:hover { background: var(--gold-light); }

.btn-wa    { background: #25D366; color: var(--white); }
.btn-wa:hover { background: #20BA58; box-shadow: 0 6px 20px rgba(37,211,102,.35); }

.btn-ghost {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--navy); color: var(--navy); }

.btn-ghost--light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.3);
}
.btn-ghost--light:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.06);
}

.btn--lg   { padding: 18px 38px; font-size: 0.95rem; }
.btn--full { width: 100%; justify-content: center; }

/* ─── 6. HEADER ─────────────────────────────────────── */
.hdr {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: 72px;
  background: rgba(249,246,241,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--ease);
}
.hdr.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.08); }

.hdr__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.hdr__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.hdr__logo img  { height: 38px; width: auto; }
.hdr__logo-text {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--black);
}
.hdr__logo-text span { color: var(--gold); }

.hdr__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.hdr__nav a {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--black);
  opacity: .65;
  transition: opacity var(--ease);
}
.hdr__nav a:hover { opacity: 1; }

.hdr__ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hdr__ham span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--ease);
  transform-origin: center;
}
.hdr__ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hdr__ham.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hdr__ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── 7. MOBILE NAV ─────────────────────────────────── */
.mob-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px 28px;
  z-index: 190;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
}
.mob-nav.open { display: flex; }
.mob-nav a {
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--black);
}
.mob-nav a:last-of-type { border-bottom: none; }
.mob-nav .btn { margin-top: 12px; }

/* ─── 8. URGENCY STRIP ──────────────────────────────── */
.strip {
  background: var(--navy);
  color: rgba(255,255,255,.85);
  padding: 12px clamp(20px, 4vw, 64px);
  font-size: 0.82rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.55;
}
.strip strong { color: var(--gold-light); }
.strip a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── 9. HERO ────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - 72px);
  background: var(--cream);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: var(--cream-dark);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  padding: 80px clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.hero__headline {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.8vw, 4rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}
.hero__headline em { font-style: italic; color: var(--navy); }

.hero__sub {
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  color: var(--muted);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero__sub strong { color: var(--black); font-weight: 600; }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero__trust { display: flex; flex-wrap: wrap; gap: 18px; }
.trust-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
}
.trust-chip__dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Hero photo column */
.hero__photo-wrap { position: relative; }
.hero__photo-frame {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-height: 580px;
}
.hero__photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero__photo-card {
  position: absolute;
  bottom: -20px; left: -24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 22px;
  max-width: 260px;
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
}
.hero__photo-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #7A4F00;
  background: #FFF4DC;
  border: 1px solid var(--gold);
  padding: 5px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.hero__photo-card-badge::before {
  content: '●';
  color: var(--gold);
  animation: blink 2s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.15; }
}
.hero__photo-card p {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--black);
  font-weight: 500;
}
.hero__photo-card a {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
}
.hero__photo-card a:hover { color: var(--gold); }

/* ─── 10. PROBLEM ───────────────────────────────────── */
.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.problem__copy h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 22px;
}
.problem__copy p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 14px;
  max-width: 440px;
}
.problem__copy p strong { color: var(--black); }

.pains { display: flex; flex-direction: column; gap: 14px; }
.pain {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--navy);
  border-radius: var(--r);
  padding: 18px 20px;
}
.pain__icon {
  width: 36px; height: 36px;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.pain__main { font-size: 0.88rem; font-weight: 600; line-height: 1.4; }
.pain__sub  { font-size: 0.8rem; color: var(--muted); margin-top: 4px; line-height: 1.5; }

/* ─── 11. OPPORTUNITY ───────────────────────────────── */
.opp__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.opp__copy h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 22px;
}
.opp__copy p {
  font-size: 0.95rem;
  color: rgba(255,255,255,.7);
  line-height: 1.8;
  margin-bottom: 14px;
}
.opp__copy p strong { color: var(--white); }
.opp__copy .btn { margin-top: 10px; }

.decree-box {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  overflow: hidden;
}
.decree-box__hdr {
  background: var(--gold);
  padding: 14px 24px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--black);
}
.decree-box__body { padding: 8px 0; }
.decree-item {
  display: flex;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.decree-item:last-child { border-bottom: none; }
.decree-item__n {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  width: 36px;
  flex-shrink: 0;
}
.decree-item__title { font-size: 0.88rem; font-weight: 600; color: var(--white); margin-bottom: 3px; }
.decree-item__desc  { font-size: 0.8rem; color: rgba(255,255,255,.55); line-height: 1.5; }

.warn-box {
  margin-top: 20px;
  background: rgba(201,169,110,.12);
  border: 1px solid rgba(201,169,110,.35);
  border-radius: var(--r);
  padding: 14px 18px;
  font-size: 0.82rem;
  color: var(--gold-light);
  display: flex;
  gap: 10px;
  line-height: 1.55;
}

/* ─── 12. SERVICES ──────────────────────────────────── */
.svcs__hdr {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 56px;
}
.svcs__hdr h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  font-weight: 600;
  margin-bottom: 16px;
}
.svcs__hdr p { font-size: 0.95rem; color: var(--muted); line-height: 1.75; }

.svcs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  gap: 1px;
  background: var(--border);
}
.svc {
  background: var(--white);
  padding: 32px 28px;
  transition: background var(--ease);
}
.svc:hover { background: var(--navy); }
.svc:hover .svc__tag   { color: var(--gold-light); }
.svc:hover .svc__title,
.svc:hover .svc__desc  { color: rgba(255,255,255,.88); }
.svc:hover .svc__ico   { background: rgba(255,255,255,.1); }

.svc__ico {
  width: 46px; height: 46px;
  background: var(--cream-dark);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
  transition: background var(--ease);
}
.svc__tag {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  transition: color var(--ease);
}
.svc__title {
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.2;
  transition: color var(--ease);
}
.svc__desc {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.65;
  transition: color var(--ease);
}

/* ─── 13. PROCESS ───────────────────────────────────── */
.proc__hdr { max-width: 560px; margin-bottom: 60px; }
.proc__hdr h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  font-weight: 600;
  margin-bottom: 16px;
}
.proc__hdr p { font-size: 0.95rem; color: var(--muted); line-height: 1.75; }

.proc__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
}
.proc__steps::before {
  content: '';
  position: absolute;
  top: 27px; left: 10%; right: 10%;
  height: 1px;
  background: var(--border);
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
}
.step__n {
  width: 54px; height: 54px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.step__title { font-size: 0.88rem; font-weight: 700; margin-bottom: 7px; }
.step__desc  { font-size: 0.8rem; color: var(--muted); line-height: 1.6; }

.proc__pledge {
  margin-top: 60px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--navy);
  border-radius: var(--r);
  padding: 32px 36px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.proc__pledge-ico { font-size: 2rem; flex-shrink: 0; margin-top: 2px; }
.proc__pledge h4 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.proc__pledge p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

/* ─── 14. AUTHORITY ─────────────────────────────────── */
.auth__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.auth__left h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 22px;
}
.auth__left h2 em { font-style: italic; color: var(--navy); }
.auth__intro {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 36px;
}

.creds { display: flex; flex-direction: column; gap: 10px; }
.cred {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--cream-dark);
  border-radius: var(--r);
  padding: 14px 16px;
}
.cred__ico {
  width: 38px; height: 38px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.cred__main { font-size: 0.87rem; font-weight: 600; }
.cred__sub  { font-size: 0.78rem; color: var(--muted); margin-top: 2px; }

.auth__photo {
  margin-top: 28px;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.auth__photo img { width: 100%; height: 100%; object-fit: cover; }

/* Stats */
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 30px;
}
.stat {
  background: var(--navy);
  color: var(--white);
  padding: 26px 20px;
  border-radius: var(--r);
  text-align: center;
}
.stat__n {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat__l { font-size: 0.78rem; color: rgba(255,255,255,.65); line-height: 1.4; }

/* Values */
.values { margin-top: 4px; }
.val {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.val:last-child { border-bottom: none; }
.val__title {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.val__title::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.val__desc { font-size: 0.84rem; color: var(--muted); line-height: 1.6; padding-left: 14px; }

/* ─── 15. TESTIMONIALS ──────────────────────────────── */
.testi__hdr {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}
.testi__hdr h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  font-weight: 600;
  margin-bottom: 16px;
}
.testi__hdr p { font-size: 0.95rem; color: var(--muted); line-height: 1.75; }

.testi__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.tcard {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 30px 28px;
}
.tcard__stars { color: var(--gold); font-size: 0.88rem; margin-bottom: 16px; }
.tcard__q {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--black);
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
  padding-top: 28px;
}
.tcard__q::before {
  content: '"';
  position: absolute;
  top: -4px; left: -4px;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  font-family: var(--serif);
}
.tcard__foot { display: flex; align-items: center; gap: 12px; }
.tcard__avatar {
  width: 38px; height: 38px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.88rem;
  flex-shrink: 0;
}
.tcard__name   { font-size: 0.86rem; font-weight: 700; }
.tcard__result { font-size: 0.75rem; color: var(--gold); font-weight: 700; margin-top: 2px; }

.review-banner {
  margin-top: 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-banner img {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
  object-position: center;
}

/* ─── 16. FINAL CTA ─────────────────────────────────── */
.fcta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.fcta__left h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 20px;
}
.fcta__left p {
  font-size: 0.95rem;
  color: rgba(255,255,255,.7);
  line-height: 1.8;
  margin-bottom: 12px;
}
.fcta__left p strong { color: var(--white); }

.channels { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }
.channel {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r);
  color: rgba(255,255,255,.8);
  font-size: 0.88rem;
  transition: background var(--ease), color var(--ease);
}
.channel:hover { background: rgba(255,255,255,.1); color: var(--white); }
.channel__ico {
  width: 32px; height: 32px;
  background: var(--gold);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  color: var(--black);
}

/* Form card */
.fcard {
  background: var(--white);
  border-radius: 8px;
  padding: 38px;
}
.fcard h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
}
.fcard .sub { font-size: 0.85rem; color: var(--muted); margin-bottom: 26px; }

.fg { margin-bottom: 14px; }
.fg label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--black);
  margin-bottom: 5px;
}
.fg input:not([type="checkbox"]),
.fg textarea,
.fg select {
  width: 100%;
  padding: 11px 14px;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--black);
  outline: none;
  transition: border-color var(--ease), background var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.fg input:not([type="checkbox"]):focus,
.fg textarea:focus,
.fg select:focus {
  border-color: var(--navy);
  background: var(--white);
}
.fg textarea { resize: vertical; min-height: 96px; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-consent { margin-top: 4px; }
.checkbox-label { display: flex; align-items: flex-start; gap: 10px; font-size: 0.82rem; color: var(--muted); line-height: 1.45; cursor: pointer; }
.checkbox-label input[type="checkbox"] { -webkit-appearance: checkbox; appearance: checkbox; flex-shrink: 0; width: 16px; height: 16px; margin-top: 2px; accent-color: var(--gold); cursor: pointer; padding: 0; }
.checkbox-label a { color: var(--gold); text-decoration: underline; }
.checkbox-label a:hover { color: var(--gold-light); }

.form-note { font-size: 0.73rem; color: var(--muted); text-align: center; margin-top: 10px; }

.form-ok {
  display: none;
  text-align: center;
  padding: 48px 20px;
}
.form-ok.show { display: block; }
.form-ok__ico { font-size: 3rem; margin-bottom: 14px; }
.form-ok h4 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 10px;
}
.form-ok p  { font-size: 0.88rem; color: var(--muted); margin-bottom: 20px; }

/* ─── 17. FOOTER ─────────────────────────────────────── */
.footer {
  background: #111111;
  color: rgba(255,255,255,.45);
  padding: 36px clamp(20px, 4vw, 64px);
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer__logo {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
}
.footer__logo span { color: var(--gold); }
.footer__links { display: flex; gap: 20px; font-size: 0.78rem; }
.footer__links a:hover { color: rgba(255,255,255,.75); }
.footer__legal {
  width: 100%;
  font-size: 0.72rem;
  line-height: 1.6;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 4px;
}

/* ─── 18. WHATSAPP FLOAT ────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 26px; right: 22px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.wa-bubble {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 9px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--black);
  box-shadow: 0 4px 18px rgba(0,0,0,.1);
  white-space: nowrap;
  animation: fadeUp .5s ease 1.2s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.wa-btn {
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform var(--ease), box-shadow var(--ease);
  position: relative;
  text-decoration: none;
}
.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.5);
}
.wa-btn svg { width: 28px; height: 28px; fill: #fff; position: relative; z-index: 1; }
.wa-btn::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: ring 2.8s infinite;
}
@keyframes ring {
  0%   { opacity: .6; transform: scale(1); }
  100% { opacity: 0;  transform: scale(1.55); }
}

/* ─── 19. COOKIE BANNER ─────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 20px clamp(20px, 4vw, 64px);
  z-index: 998;
  box-shadow: 0 -4px 30px rgba(0,0,0,.08);
  transform: translateY(0);
  transition: transform .4s ease;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner__text {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  min-width: 200px;
}
.cookie-banner__text a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ─── 20. SCROLL REVEAL ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .10s; }
.d2 { transition-delay: .20s; }
.d3 { transition-delay: .30s; }
.d4 { transition-delay: .40s; }

/* ─── 21. RESPONSIVE ────────────────────────────────── */
@media (max-width: 1024px) {
  .svcs__grid { grid-template-columns: 1fr 1fr; }
  .proc__steps { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .proc__steps::before { display: none; }
}

@media (max-width: 768px) {
  .hdr__nav, .hdr__cta-desk { display: none; }
  .hdr__ham { display: flex; }

  .hero::after { display: none; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; padding: 36px 20px 56px; }
  .hero__photo-card { position: static; margin-top: 16px; max-width: 100%; }

  .problem__grid,
  .opp__grid,
  .auth__grid,
  .fcta__grid { grid-template-columns: 1fr; gap: 40px; }

  .svcs__grid  { grid-template-columns: 1fr; }
  .testi__grid { grid-template-columns: 1fr; }
  .stats       { grid-template-columns: 1fr 1fr; }

  .proc__steps { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
  .proc__pledge { flex-direction: column; gap: 14px; padding: 24px; }

  .fg-row { grid-template-columns: 1fr; }
  .fcard  { padding: 28px 22px; }

  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .footer__inner { flex-direction: column; align-items: center; text-align: center; }
  .wa-bubble { display: none; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .btn { flex: 1; justify-content: center; }
}

@media (max-width: 480px) {
  .proc__steps { grid-template-columns: 1fr; }
  .stats       { grid-template-columns: 1fr; }
}

/* ─── 22. PRINT ─────────────────────────────────────── */
@media print {
  .hdr, .wa-float, .cookie-banner, .mob-nav, .strip { display: none !important; }
  body { padding-top: 0; background: white; color: black; }
  .section--navy { background: #1E3A5F !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  a::after { content: ' (' attr(href) ')'; font-size: 0.75rem; color: #666; }
  a[href^="http"]::after { content: none; }
}
