:root {
  --black: #070707;
  --ink: #10100f;
  --graphite: #151515;
  --white: #ffffff;
  --paper: #f4f1ea;
  --muted: #67645d;
  --gold: #c8a65c;
  --gold-2: #e3cb7a;
  --red: #751219;
  --green: #18bf63;
  --line: rgba(200, 166, 92, 0.24);
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.2);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.loaded .loader { opacity: 0; pointer-events: none; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: var(--black);
  transition: opacity 0.45s ease;
}

.loader span {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 7, 7, 0.66);
  backdrop-filter: blur(20px);
  box-shadow: 0 14px 46px rgba(0, 0, 0, 0.22);
  transition: background 0.24s ease, box-shadow 0.24s ease;
}

.brand img {
  width: 188px;
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.42));
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  transition: color 0.22s ease;
}

.desktop-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.desktop-nav a:hover { color: var(--gold); }
.desktop-nav a:hover::after { transform: scaleX(1); }

.nav-cta {
  padding: 12px 16px;
  border: 1px solid rgba(200, 166, 92, 0.62);
  border-radius: 8px;
  color: var(--gold) !important;
  background: rgba(200, 166, 92, 0.08);
}

.section-dark,
.section-graphite,
.section-light {
  position: relative;
  padding: 104px 0;
}

.section-dark { background: var(--black); }

.section-graphite {
  background:
    linear-gradient(135deg, rgba(117, 18, 25, 0.2), transparent 36%),
    linear-gradient(180deg, #171717, #070707);
}

.section-light {
  background: var(--paper);
  color: var(--ink);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 124px 0 112px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.99) 0%, rgba(7, 7, 7, 0.88) 45%, rgba(7, 7, 7, 0.5) 100%),
    url("../images/courthouse.png") center / cover;
  opacity: 0.95;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 18%, rgba(200, 166, 92, 0.2), transparent 28%),
    linear-gradient(0deg, rgba(7, 7, 7, 0.58), transparent 46%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 860px);
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow.dark { color: var(--red); }

h1,
h2,
h3 {
  margin: 0;
  font-family: Sora, Inter, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.55rem, 5.4vw, 5.35rem);
  line-height: 0.95;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
}

.hero-subtitle {
  max-width: 760px;
  margin: 24px 0 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.66;
}

.impact {
  margin: 0 0 24px;
  color: var(--gold-2);
  font-size: clamp(1.04rem, 1.8vw, 1.36rem);
  font-weight: 800;
}

.hero-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  width: 100%;
  max-width: 760px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.hero-checks li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.hero-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(24, 191, 99, 0.5);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  width: 100%;
  max-width: 760px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn-large { min-height: 68px; padding: 0 34px; }

.btn-whatsapp {
  background: linear-gradient(180deg, #21d574, var(--green));
  color: #031207;
  box-shadow: 0 0 0 1px rgba(24, 191, 99, 0.36), 0 18px 46px rgba(24, 191, 99, 0.34), 0 0 32px rgba(24, 191, 99, 0.16);
}

.btn-whatsapp::before,
.footer-whatsapp::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-right: 9px;
  background: currentColor;
  clip-path: path("M17.5 14.4c-.3-.1-1.8-.9-2-.9-.3-.1-.5-.2-.7.1-.2.3-.8 1-.9 1.2-.2.2-.4.2-.7.1-1.8-.9-3-2-3.8-3.7-.2-.3 0-.5.1-.7.2-.1.3-.3.5-.5.1-.2.2-.3.3-.5.1-.2 0-.4 0-.5-.1-.2-.7-1.6-.9-2.2-.2-.6-.5-.5-.7-.5h-.6c-.2 0-.5.1-.8.4-.3.3-1 1-1 2.5s1.1 2.9 1.2 3.1c.1.2 2.1 3.2 5.1 4.5.7.3 1.3.5 1.7.6.7.2 1.4.2 1.9.1.6-.1 1.8-.7 2-1.4.2-.7.2-1.3.2-1.4-.1-.1-.3-.2-.6-.4ZM12 22a10 10 0 0 1-5.1-1.4L3 21.7l1-3.8A10 10 0 1 1 12 22Z");
}

.btn-whatsapp:hover {
  background: linear-gradient(180deg, #35e684, #16b85e);
  box-shadow: 0 0 0 1px rgba(24, 191, 99, 0.48), 0 24px 58px rgba(24, 191, 99, 0.44), 0 0 44px rgba(24, 191, 99, 0.24);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
}

.legal-marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  overflow: hidden;
  border-top: 1px solid rgba(200, 166, 92, 0.18);
  border-bottom: 1px solid rgba(200, 166, 92, 0.18);
  background: rgba(7, 7, 7, 0.92);
}

.legal-marquee::before,
.legal-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 120px;
  pointer-events: none;
}

.legal-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--black), transparent);
}

.legal-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--black), transparent);
}

.legal-marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: legal-marquee 28s linear infinite;
}

.legal-marquee span {
  position: relative;
  min-height: 42px;
  padding: 0 42px;
  display: inline-flex;
  align-items: center;
  border-right: 1px solid rgba(200, 166, 92, 0.1);
  color: var(--gold);
  font-family: Sora, Inter, sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.legal-marquee span::before {
  content: "·";
  position: absolute;
  left: 16px;
  color: rgba(200, 166, 92, 0.48);
}

.legal-marquee:hover .legal-marquee-track { animation-play-state: running; }

.section-heading {
  max-width: 820px;
  margin-bottom: 44px;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.result-card,
.authority-card,
.practice-card,
.process-card {
  border-radius: 8px;
}

.result-card {
  min-height: 188px;
  padding: 28px;
  border: 1px solid rgba(200, 166, 92, 0.38);
  background: linear-gradient(145deg, #ffffff, #faf7ef);
  box-shadow: 0 18px 42px rgba(7, 7, 7, 0.08), inset 0 0 0 1px rgba(200, 166, 92, 0.13);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.result-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-family: Sora, Inter, sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 1;
}

.result-card span {
  color: #494640;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.result-card,
.practice-card,
.process-card,
.benefit-panel,
.footer,
.faq-item {
  text-align: left;
}

.result-card:hover,
.practice-card:hover,
.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 64px rgba(7, 7, 7, 0.18);
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 40px;
}

.split-heading p:last-child,
.execution-grid p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.practice-card {
  position: relative;
  min-height: 188px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.115), rgba(255, 255, 255, 0.035)),
    linear-gradient(135deg, rgba(200, 166, 92, 0.18), transparent 52%);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 40px rgba(0, 0, 0, 0.16);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.practice-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent 48%);
}

.practice-card::after {
  content: "§";
  position: absolute;
  right: 14px;
  top: 12px;
  color: rgba(200, 166, 92, 0.16);
  font-family: Georgia, serif;
  font-size: 3rem;
}

.practice-card span {
  display: block;
  min-height: 18px;
  color: var(--gold-2);
  font-family: Sora, Inter, sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
}

.practice-card strong {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 44px;
  margin-top: 10px;
  font-family: Sora, Inter, sans-serif;
  font-size: 1.02rem;
  line-height: 1.25;
}

.practice-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
  line-height: 1.55;
}

.practice-card:hover {
  border-color: rgba(200, 166, 92, 0.58);
  background:
    linear-gradient(145deg, rgba(200, 166, 92, 0.2), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.05);
}

.two-columns,
.execution-grid,
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
}

.lead,
.about-copy p:not(.eyebrow) {
  color: #55524c;
  font-size: 1.04rem;
  line-height: 1.78;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 16px 18px 16px 48px;
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(7, 7, 7, 0.06);
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
}

.execution-grid h2,
.execution-grid p { margin-bottom: 24px; }

.benefit-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(14px);
}

.benefit-panel span {
  min-height: 82px;
  display: flex;
  align-items: center;
  padding: 18px;
  border-radius: 8px;
  background: rgba(7, 7, 7, 0.42);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.about-section { background: #ffffff; }

.about-photo {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
  box-shadow: 0 32px 86px rgba(7, 7, 7, 0.18);
}

.about-photo::before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 2;
  border: 1px solid rgba(227, 203, 122, 0.42);
  border-radius: 6px;
  pointer-events: none;
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.18), transparent 50%), radial-gradient(circle at 58% 18%, rgba(227, 203, 122, 0.16), transparent 34%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.about-photo img {
  width: 100%;
  height: min(640px, 72vw);
  min-height: 460px;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(0.08) contrast(1.16) saturate(0.88) brightness(0.94);
}

.about-copy p:not(.eyebrow) { margin: 22px 0 0; }

.about-signature {
  margin-top: 30px;
  padding: 20px 22px;
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  background: var(--paper);
}

.about-signature strong,
.about-signature span { display: block; }
.about-signature strong { margin-bottom: 6px; color: var(--red); font-family: Sora, Inter, sans-serif; }
.about-signature span { color: #555; font-weight: 800; }

.faq-wrap { max-width: 900px; }
.faq-list { display: grid; gap: 12px; }

.faq-item {
  width: 100%;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--white);
  text-align: left;
  overflow: hidden;
}

.faq-item span {
  position: relative;
  display: block;
  padding: 22px 58px 22px 24px;
  font-family: Sora, Inter, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.faq-item span::after {
  content: "+";
  position: absolute;
  right: 24px;
  color: var(--gold);
}

.faq-item.open span::after { content: "-"; }

.faq-item p {
  max-height: 0;
  margin: 0;
  padding: 0 24px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  opacity: 0;
  transition: max-height 0.28s ease, padding 0.28s ease, opacity 0.2s ease;
}

.faq-item.open p {
  max-height: 220px;
  padding: 0 24px 22px;
  opacity: 1;
}

.process-section { background: var(--paper); }
.process-heading { max-width: 900px; margin: 0 auto 24px; text-align: center; }

.process-action {
  display: grid;
  justify-items: center;
  gap: 18px;
  max-width: 720px;
  margin: 34px auto 0;
  text-align: center;
}

.process-action p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.process-card {
  position: relative;
  min-height: 250px;
  padding: 30px 26px 28px;
  overflow: hidden;
  border: 1px solid rgba(7, 7, 7, 0.08);
  border-top: 3px solid var(--gold);
  background: linear-gradient(145deg, #ffffff, #fbfaf7);
  box-shadow: 0 16px 42px rgba(7, 7, 7, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.process-card::after {
  content: attr(data-ghost);
  position: absolute;
  right: -8px;
  bottom: -34px;
  color: rgba(200, 166, 92, 0.13);
  font-family: Sora, Inter, sans-serif;
  font-size: 6.8rem;
  font-weight: 800;
  line-height: 1;
}

.process-card:nth-child(1)::after { content: "01"; }
.process-card:nth-child(2)::after { content: "02"; }
.process-card:nth-child(3)::after { content: "03"; }
.process-card:nth-child(4)::after { content: "04"; }

.process-card span {
  display: block;
  margin-bottom: 20px;
  color: var(--gold);
  font-family: Sora, Inter, sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
}

.process-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.35;
}

.process-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer {
  padding: 76px 0 28px;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(200, 166, 92, 0.08), transparent 34%),
    var(--black);
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.9fr 0.78fr 1.15fr;
  gap: clamp(28px, 4vw, 54px);
  align-items: start;
}

.footer img {
  width: 230px;
  height: auto;
  margin-bottom: 18px;
}

.footer strong,
.footer a,
.footer span,
.footer p {
  display: block;
  margin: 0 0 10px;
}

.footer p,
.footer a,
.footer span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.94rem;
  font-weight: 400;
  line-height: 1.65;
}

.footer strong {
  color: var(--gold);
  font-family: Sora, Inter, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer a:hover { color: var(--gold); }
.footer-role { color: rgba(255, 255, 255, 0.82) !important; font-weight: 700 !important; }
.footer-intro { max-width: 340px; margin-top: 16px !important; color: rgba(255, 255, 255, 0.7) !important; }

.instagram-link {
  display: inline-flex !important;
  align-items: center;
  gap: 9px;
  color: var(--gold) !important;
  font-weight: 700 !important;
}

.instagram-link svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  overflow: visible;
}

.instagram-link rect,
.instagram-link circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.instagram-link circle:last-child {
  fill: currentColor;
  stroke: none;
}

.map-wrap {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(200, 166, 92, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.map-caption {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-bottom: 1px solid rgba(200, 166, 92, 0.14);
  background: linear-gradient(90deg, rgba(200, 166, 92, 0.1), rgba(255, 255, 255, 0.025));
}

.map-caption span {
  color: rgba(255, 255, 255, 0.86);
  font-family: Sora, Inter, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.25;
}

.map-caption a {
  display: inline-flex;
  width: fit-content;
  padding: 9px 11px;
  border: 1px solid rgba(200, 166, 92, 0.34);
  border-radius: 8px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.2;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
  filter: grayscale(1) invert(0.9) contrast(0.85);
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 44px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-bottom p,
.footer-bottom span {
  margin: 0;
  display: block;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.76rem;
  line-height: 1.7;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  min-width: 64px;
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #21d574, var(--green));
  color: #031207;
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 16px 38px rgba(24, 191, 99, 0.42);
  animation: pulse 1.9s ease-in-out infinite;
}

.floating-whatsapp svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes legal-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
@keyframes pulse {
  50% {
    transform: scale(1.04);
    box-shadow: 0 20px 52px rgba(24, 191, 99, 0.6);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .legal-marquee-track {
    animation-name: legal-marquee !important;
    animation-duration: 28s !important;
    animation-timing-function: linear !important;
    animation-iteration-count: infinite !important;
  }
}

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .site-header { justify-content: center; }
  .hero-grid,
  .split-heading,
  .two-columns,
  .about-grid,
  .execution-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .results-grid,
  .process-grid,
  .practice-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1180px); }
  .site-header { height: 68px; }
  .brand img { width: 154px; }
  .section-dark,
  .section-graphite,
  .section-light { padding: 76px 0; }
  .hero {
    min-height: 96vh;
    padding: 96px 0 92px;
  }
  h1 { font-size: clamp(2.15rem, 11vw, 3.2rem); }
  h2 { font-size: clamp(1.85rem, 9vw, 2.8rem); }
  .hero-subtitle {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.55;
  }
  .hero-checks { grid-template-columns: 1fr; gap: 9px; margin-bottom: 24px; }
  .hero-actions,
  .hero-actions .btn { width: 100%; }
  .btn-large { min-height: 64px; padding: 0 20px; }
  .legal-marquee span {
    min-height: 38px;
    padding: 0 28px;
    font-size: 0.64rem;
    letter-spacing: 0.14em;
  }
  .results-grid,
  .practice-grid,
  .process-grid,
  .benefit-panel { grid-template-columns: 1fr; }
  .result-card,
  .practice-card,
  .process-card { min-height: auto; }
  .practice-card strong {
    min-height: auto;
    margin-top: 6px;
  }
  .about-photo img {
    height: 520px;
    min-height: 0;
  }
  .map-wrap { width: 100%; max-width: 380px; }
  .floating-whatsapp {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    min-height: 62px;
  }
  .footer { padding-bottom: 96px; }
}
