/* ============================================================
   Justicia Vital — Design System
   ============================================================ */

:root {
  --navy-950: #060f24;
  --navy-900: #0a1e42;
  --navy-800: #11294f;
  --navy-700: #1c3966;
  --gold-500: #c6a15b;
  --gold-400: #d4b876;
  --gold-100: #f2e8d5;
  --ivory: #f8f6f1;
  --white: #ffffff;
  --ink: #1c2430;
  --ink-soft: #566079;
  --line: rgba(10, 30, 66, 0.1);

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

  --container: 1180px;
  --radius: 14px;
  --shadow-soft: 0 20px 60px -25px rgba(10, 30, 66, 0.35);
  --shadow-card: 0 12px 32px -18px rgba(10, 30, 66, 0.25);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  margin: 0;
  color: var(--navy-900);
}

p { margin: 0; line-height: 1.7; color: var(--ink-soft); }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-500);
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold-500);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-950);
  box-shadow: 0 14px 30px -12px rgba(198, 161, 91, 0.65);
}
.btn-gold:hover { box-shadow: 0 18px 38px -12px rgba(198, 161, 91, 0.8); }

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-outline-dark {
  background: transparent;
  border-color: var(--line);
  color: var(--navy-900);
}
.btn-outline-dark:hover { border-color: var(--navy-900); background: rgba(10,30,66,0.04); }

.btn-sm { padding: 11px 22px; font-size: 0.85rem; }

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header.is-scrolled {
  padding: 12px 0;
  background: rgba(6, 15, 36, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 8px 30px -18px rgba(0, 0, 0, 0.45);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img { height: 46px; width: auto; transition: height 0.4s var(--ease); }
.site-header.is-scrolled .brand img { height: 38px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-actions { display: flex; align-items: center; gap: 18px; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  display: block;
  width: 18px; height: 2px;
  background: var(--white);
  position: relative;
  transition: all 0.3s var(--ease);
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

/* Hero */
.hero {
  position: relative;
  background: radial-gradient(ellipse 120% 90% at 15% -10%, var(--navy-700), var(--navy-900) 55%, var(--navy-950));
  color: var(--white);
  padding: 190px 0 140px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(198,161,91,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(198,161,91,0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 60% 20%, black, transparent 75%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  width: 640px; height: 640px;
  right: -180px; top: -160px;
  background: radial-gradient(circle, rgba(198,161,91,0.18), transparent 70%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 4.6vw, 3.9rem);
  color: var(--white);
  margin-bottom: 26px;
}

.hero-copy h1 em {
  font-style: normal;
  color: var(--gold-400);
}

.hero-copy p.lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.78);
  max-width: 540px;
  margin-bottom: 40px;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 56px; }

.hero-stats {
  display: flex;
  gap: 44px;
  padding-top: 34px;
  border-top: 1px solid rgba(255,255,255,0.14);
}

.hero-stats div strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold-400);
}
.hero-stats div span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
}

.hero-emblem {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-emblem .ring {
  position: absolute;
  border: 1px solid rgba(198,161,91,0.35);
  border-radius: 50%;
}
.hero-emblem .ring.r1 { width: 420px; height: 420px; }
.hero-emblem .ring.r2 { width: 320px; height: 320px; border-style: dashed; opacity: 0.5; }

.hero-emblem img {
  width: 260px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.45));
  animation: float 7s var(--ease) infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

/* Section basics */
section { padding: 120px 0; }

.section-head {
  max-width: 640px;
  margin: 0 0 60px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 3.4vw, 2.7rem); margin: 14px 0 18px; }
.section-head p { font-size: 1.05rem; }

/* Nosotros */
.about { background: var(--white); }
.about .container { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; align-items: center; }

.about-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--navy-800), var(--navy-950));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
}
.about-visual img { width: 46%; opacity: 0.95; }
.about-visual .frame {
  position: absolute; inset: 18px;
  border: 1px solid rgba(198,161,91,0.4);
  border-radius: calc(var(--radius) - 4px);
}

.about-values { list-style: none; margin: 34px 0 0; padding: 0; display: grid; gap: 22px; }
.about-values li { display: flex; gap: 16px; align-items: flex-start; }
.about-values .num {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold-500);
  flex-shrink: 0;
  width: 40px;
}
.about-values h4 { font-size: 1.08rem; margin-bottom: 4px; }
.about-values p { font-size: 0.95rem; }

/* Practice areas */
.practice { background: var(--ivory); }
.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.practice-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 38px 32px;
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.practice-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: transparent;
}
.practice-card .icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-950));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.practice-card .icon svg { width: 24px; height: 24px; stroke: var(--gold-400); }
.practice-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.practice-card p { font-size: 0.94rem; }

/* Salud focus band */
.salud {
  position: relative;
  background: linear-gradient(160deg, var(--navy-900), var(--navy-950));
  color: var(--white);
  overflow: hidden;
}
.salud .container {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
  position: relative;
}
.salud .eyebrow { color: var(--gold-400); }
.salud h2 { color: var(--white); margin: 14px 0 20px; font-size: clamp(2rem, 3.2vw, 2.6rem); }
.salud .lede { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 10px; }

.salud-list { list-style: none; margin: 34px 0 0; padding: 0; display: grid; gap: 18px; }
.salud-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
}
.salud-list svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; stroke: var(--gold-400); }
.salud-list p { color: rgba(255,255,255,0.85); font-size: 0.96rem; }
.salud-list strong { color: var(--white); }

.salud-audience {
  display: grid;
  gap: 16px;
}
.audience-card {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 26px 28px;
  display: flex;
  gap: 18px;
  align-items: center;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
}
.audience-card:hover { background: rgba(198,161,91,0.08); border-color: rgba(198,161,91,0.35); }
.audience-card .icon {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(198,161,91,0.14);
  display: flex; align-items: center; justify-content: center;
}
.audience-card .icon svg { width: 22px; height: 22px; stroke: var(--gold-400); }
.audience-card h4 { color: var(--white); font-size: 1.02rem; margin-bottom: 4px; }
.audience-card p { color: rgba(255,255,255,0.65); font-size: 0.9rem; }

/* Trust / casos reales */
.trust { background: var(--white); }
.trust-case {
  position: relative;
  max-width: 860px;
  margin: 0 auto 56px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold-500);
  border-radius: var(--radius);
  padding: 34px 40px;
}
.trust-case-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-900);
  background: var(--gold-100);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.trust-case p { font-size: 1.05rem; color: var(--ink); line-height: 1.75; }
.trust-case strong { color: var(--navy-900); }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.trust-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
}
.trust-card h4 { font-size: 1.05rem; margin-bottom: 8px; }
.trust-card p { font-size: 0.92rem; }

/* FAQ */
.faq { background: var(--ivory); }
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-900);
}
.faq-chevron { width: 18px; height: 18px; flex-shrink: 0; color: var(--gold-500); transition: transform 0.35s var(--ease); }
.faq-item.is-open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-item.is-open .faq-a { max-height: 240px; }
.faq-a p { padding: 0 24px 22px; font-size: 0.95rem; }

/* Process */
.process { background: var(--white); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  counter-reset: step;
}
.process-step { position: relative; padding-top: 16px; }
.process-step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-serif);
  font-size: 2.6rem;
  color: var(--gold-100);
  -webkit-text-stroke: 1.5px var(--gold-500);
  display: block;
  margin-bottom: 18px;
}
.process-step h4 { font-size: 1.05rem; margin-bottom: 8px; }
.process-step p { font-size: 0.92rem; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-950);
  padding: 80px 0;
}
.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-band h2 { font-size: clamp(1.7rem, 2.6vw, 2.3rem); color: var(--navy-950); max-width: 560px; }
.cta-band p { color: rgba(10,30,66,0.72); margin-top: 10px; }
.cta-band .btn-gold { background: var(--navy-950); color: var(--white); box-shadow: 0 14px 30px -12px rgba(6,15,36,0.5); }
.cta-band .btn-gold:hover { box-shadow: 0 18px 38px -12px rgba(6,15,36,0.6); }

/* Footer */
.site-footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.6);
  padding: 80px 0 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 42px; margin-bottom: 18px; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.92rem; max-width: 280px; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.16);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.footer-social a:hover { background: var(--gold-500); border-color: var(--gold-500); transform: translateY(-3px); }
.footer-social svg { width: 17px; height: 17px; stroke: var(--white); }

.footer-col h5 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer-col a, .footer-col span { font-size: 0.92rem; color: rgba(255,255,255,0.6); transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--gold-400); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--gold-400); }

/* Floating WhatsApp */
.float-whatsapp {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 90;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2fd66a, #21b558);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 16px 34px -12px rgba(33,181,88,0.65);
  transition: transform 0.35s var(--ease);
}
.float-whatsapp:hover { transform: scale(1.08); }
.float-whatsapp svg { width: 30px; height: 30px; fill: var(--white); }

/* Reveal animation */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ============ Link tree page ============ */
.linktree-page {
  min-height: 100vh;
  background: radial-gradient(ellipse 120% 80% at 50% -10%, var(--navy-700), var(--navy-950) 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}
.linktree-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(198,161,91,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(198,161,91,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black, transparent 75%);
}

.linktree-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  text-align: center;
}

.linktree-emblem {
  position: relative;
  width: 128px;
  height: 128px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.linktree-emblem .ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(198,161,91,0.3);
  border-radius: 50%;
}
.linktree-emblem .ring.r1 { width: 128px; height: 128px; }
.linktree-emblem .ring.r2 { width: 100px; height: 100px; border-style: dashed; opacity: 0.5; }

.linktree-icon { width: 58px; height: auto; position: relative; }

.linktree-card h1 {
  color: var(--white);
  font-size: 2.1rem;
  margin-bottom: 8px;
}
.linktree-card .role {
  color: var(--gold-400);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}
.linktree-card .bio {
  color: rgba(255,255,255,0.66);
  font-size: 0.98rem;
  max-width: 360px;
  margin: 18px auto 40px;
}

.link-list { list-style: none; margin: 0 0 30px; padding: 0; display: grid; gap: 14px; }

.link-item a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 17px 22px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.link-item a:hover {
  transform: translateY(-3px) scale(1.01);
  background: rgba(198,161,91,0.1);
  border-color: rgba(198,161,91,0.5);
}
.link-item.featured a {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-950);
  border-color: transparent;
  box-shadow: 0 16px 34px -14px rgba(198,161,91,0.7);
}
.link-item .link-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.link-item.featured .link-icon { background: rgba(10,30,66,0.15); }
.link-item .link-icon svg { width: 20px; height: 20px; }
.link-item span.label { flex: 1; text-align: left; }
.link-item .arrow { opacity: 0.55; width: 16px; height: 16px; }

.link-item.disabled a {
  opacity: 0.45;
  pointer-events: none;
}
.link-item .soon {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-400);
  border: 1px solid rgba(198,161,91,0.4);
  padding: 3px 9px;
  border-radius: 999px;
}

.linktree-foot {
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
}
.linktree-foot a { color: rgba(255,255,255,0.6); }
.linktree-foot a:hover { color: var(--gold-400); }

/* 404 */
.state-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--navy-950);
  color: var(--white);
  padding: 40px 20px;
}
.state-page .code {
  font-family: var(--font-serif);
  font-size: 6rem;
  color: var(--gold-500);
  margin-bottom: 10px;
}

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-copy p.lead { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-emblem { order: -1; margin-bottom: 20px; }
  .hero-emblem img { width: 190px; }
  .hero-emblem .ring.r1 { width: 320px; height: 320px; }
  .hero-emblem .ring.r2 { width: 250px; height: 250px; }

  .about .container { grid-template-columns: 1fr; }
  .about-visual { max-width: 380px; margin: 0 auto; }

  .practice-grid { grid-template-columns: repeat(2, 1fr); }

  .salud .container { grid-template-columns: 1fr; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-case { padding: 28px 26px; }

  .process-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav-links, .header-actions .btn-outline { display: none; }
  .nav-toggle { display: flex; }
  section { padding: 84px 0; }
  .hero { padding: 150px 0 100px; }
  .practice-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 34px; }
  .cta-band .container { flex-direction: column; text-align: center; }
  .float-whatsapp { right: 16px; bottom: 16px; width: 56px; height: 56px; }
}

/* Mobile nav drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  background: var(--navy-950);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
}
.nav-drawer.is-open { transform: translateY(0); }
.nav-drawer a {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.6rem;
}
.nav-drawer .btn { margin-top: 10px; }
.nav-drawer-close {
  position: absolute;
  top: 26px; right: 26px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  background: transparent;
}
