:root {
  /* Cores baseadas na landing original */
  --teal: #0d8a8a;
  --teal-dark: #086e6e;
  --teal-deep: #054e4e;
  --orange: #f5a04a;
  --orange-dark: #e88a2c;
  --lime: #7ed321;
  --lime-dark: #6bb81a;
  --lime-deep: #4d8e0e;

  --ink: #0f1a1a;
  --ink-soft: #2a3a3a;
  --muted: #5a6b6b;
  --muted-soft: #8a9595;
  --line: #e6ecec;
  --line-soft: #f1f4f4;
  --bg: #fbfcfc;
  --white: #ffffff;
  --cream: #fffaf3;

  --star: #ffb400;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(15, 26, 26, 0.05), 0 1px 3px rgba(15, 26, 26, 0.04);
  --shadow-md: 0 4px 14px rgba(15, 26, 26, 0.06), 0 2px 4px rgba(15, 26, 26, 0.04);
  --shadow-lg: 0 18px 40px -12px rgba(15, 26, 26, 0.18), 0 6px 14px rgba(15, 26, 26, 0.06);
  --shadow-cta: 0 8px 22px -6px rgba(126, 211, 33, 0.55), 0 2px 6px rgba(126, 211, 33, 0.25);

  --max: 1200px;
  --gutter: clamp(20px, 4vw, 48px);

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

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

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============ TYPE ============ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
  font-weight: 700;
}
h1 { font-size: clamp(28px, 4.4vw, 50px); font-weight: 800; }
h2 { font-size: clamp(26px, 3.4vw, 40px); }
h3 { font-size: clamp(18px, 2vw, 22px); }

p { margin: 0; }

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
}

.section-title {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  text-wrap: balance;
}

.section {
  padding: clamp(56px, 8vw, 96px) 0;
}

/* ============ CTA ============ */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 26px;
  background: var(--lime);
  color: #0a2400;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--r-pill);
  text-decoration: none;
  box-shadow: var(--shadow-cta);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  position: relative;
}
.cta:hover {
  transform: translateY(-2px);
  background: var(--lime-dark);
  box-shadow: 0 12px 28px -8px rgba(126, 211, 33, 0.65), 0 4px 8px rgba(126, 211, 33, 0.3);
}
.cta:active { transform: translateY(0); }
.cta .arrow { transition: transform 0.2s ease; }
.cta:hover .arrow { transform: translateX(3px); }

.cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}
.stars {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.stars .s { color: var(--star); letter-spacing: 1px; }
.stars .sep { opacity: 0.4; }
.stars strong { font-weight: 700; }

/* ============ HERO ============ */
.hero {
  background: linear-gradient(155deg, var(--teal) 0%, var(--teal-dark) 60%, var(--teal-deep) 100%);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 90% 10%, rgba(245, 160, 74, 0.18), transparent 60%),
    radial-gradient(600px 600px at 0% 100%, rgba(126, 211, 33, 0.12), transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  pointer-events: none;
}

.hero-nav {
  position: relative;
  z-index: 2;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero-nav .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  min-width: 0;
}
.hero-nav .brand-logo {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
}
.hero-nav .brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: white;
  color: var(--teal-deep);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 16px;
  font-family: var(--font-display);
}
.hero-nav .nav-tag {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.78;
  font-weight: 500;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
  padding: clamp(32px, 7vw, 72px) 0 clamp(72px, 10vw, 120px);
}
.hero-text .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}
.hero-text .pill .dot {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--lime);
  display: grid; place-items: center;
  color: #0a2400;
  font-size: 11px; font-weight: 800;
}
.hero-text h1 {
  margin-bottom: 18px;
  text-wrap: balance;
}
.hero-text h1 .accent {
  display: inline-block;
  position: relative;
  color: var(--orange);
}
.hero-text p.lead {
  font-size: clamp(15px, 1.4vw, 17px);
  opacity: 0.9;
  max-width: 560px;
  margin-bottom: 28px;
  line-height: 1.6;
}
.hero-text .cta {
  margin-bottom: 16px;
}
.hero-text .stars {
  color: rgba(255,255,255,0.85);
}
.hero-text .stars .sep { color: rgba(255,255,255,0.35); }

/* Phone mockup */
.phone {
  position: relative;
  width: min(320px, 90%);
  margin: 0 auto;
  aspect-ratio: 9/19;
  background: #0a1414;
  border-radius: 42px;
  padding: 12px;
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,0.55),
    0 12px 30px -10px rgba(0,0,0,0.45),
    inset 0 0 0 1.5px rgba(255,255,255,0.08);
}
.phone::before {
  content: "";
  position: absolute;
  top: 18px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 22px;
  background: #050a0a;
  border-radius: 14px;
  z-index: 3;
}
.phone-screen {
  position: absolute;
  inset: 12px;
  border-radius: 32px;
  background: white;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.phone-status {
  height: 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 22px 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
}
.phone-status .icons { display: flex; gap: 4px; }
.phone-status .icons span { width: 12px; height: 8px; background: var(--ink); border-radius: 1px; opacity: 0.7; }

.phone-content {
  flex: 1;
  padding: 16px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.phone-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  color: var(--teal);
  letter-spacing: -0.01em;
}
.phone-logo .mark {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--teal);
  color: white;
  display: grid; place-items: center;
  font-size: 10px;
}
.phone-card {
  background: #f4f6f7;
  border-radius: 12px;
  padding: 12px;
  font-size: 10px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.phone-card .head {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--orange-dark);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.phone-card .head::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange);
}
.phone-card h4 {
  font-size: 11px;
  margin-bottom: 6px;
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 700;
}
.phone-bars {
  display: flex; flex-direction: column; gap: 5px;
}
.phone-bars span {
  display: block;
  height: 5px;
  background: #dde3e3;
  border-radius: 3px;
}
.phone-bars span:nth-child(1) { width: 100%; }
.phone-bars span:nth-child(2) { width: 88%; }
.phone-bars span:nth-child(3) { width: 70%; }
.phone-cta {
  margin-top: auto;
  background: var(--lime);
  color: #0a2400;
  font-weight: 800;
  font-size: 9px;
  text-align: center;
  padding: 10px;
  border-radius: var(--r-pill);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.phone-quote {
  font-size: 9px;
  color: var(--muted);
  text-align: center;
  font-style: italic;
}

/* Floating badges around phone */
.phone-wrap { position: relative; }
.badge {
  position: absolute;
  background: white;
  color: var(--ink);
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: var(--shadow-lg);
  font-size: 12px;
  font-weight: 600;
  display: flex; align-items: center; gap: 9px;
  z-index: 4;
}
.badge .ic {
  width: 26px; height: 26px; border-radius: 8px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.badge.b1 { top: 12%; left: -8%; }
.badge.b1 .ic { background: rgba(245, 160, 74, 0.15); color: var(--orange-dark); }
.badge.b2 { bottom: 14%; right: -8%; }
.badge.b2 .ic { background: rgba(126, 211, 33, 0.18); color: var(--lime-deep); }
.badge { white-space: nowrap; }
.badge .v { font-family: var(--font-display); font-weight: 800; font-size: 14px; line-height: 1.1; }
.badge .l { font-size: 10px; color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600; line-height: 1.2; margin-top: 2px; }

/* ============ ORANGE BANNER ============ */
.orange-band {
  background: linear-gradient(180deg, var(--orange) 0%, #f59537 100%);
  color: white;
  padding: clamp(56px, 8vw, 88px) 0;
  position: relative;
  overflow: hidden;
}
.orange-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(1000px 600px at 50% -10%, rgba(255,255,255,0.16), transparent 60%);
  pointer-events: none;
}
.orange-band h2 {
  text-align: center;
  margin: 0 auto 48px;
  max-width: 880px;
  text-wrap: balance;
  color: white;
}
.orange-list {
  display: grid;
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
  position: relative;
}
.orange-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  align-items: flex-start;
  padding: 20px 22px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-md);
  backdrop-filter: blur(4px);
  transition: transform 0.2s ease, background 0.2s ease;
}
.orange-item:hover { background: rgba(255,255,255,0.12); transform: translateX(4px); }
.orange-item .ic {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  display: grid; place-items: center;
  border: 3px solid rgba(255,255,255,0.2);
  flex-shrink: 0;
}
.orange-item .ic svg { width: 28px; height: 28px; }
.orange-item p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.95);
  margin: 0;
}
.orange-item p strong { font-weight: 700; color: white; }

/* ============ REASONS (3 cards) ============ */
.reasons {
  background: var(--white);
}
.reasons .section-title { margin-bottom: 56px; }
.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.reason-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.reason-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245, 160, 74, 0.4);
}
.reason-card .num {
  position: absolute;
  top: 24px; right: 24px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(245, 160, 74, 0.12);
  color: var(--orange-dark);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
}
.reason-card .ic {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--orange), #f5b06a);
  color: white;
  display: grid; place-items: center;
  margin-bottom: 22px;
  box-shadow: 0 8px 18px -6px rgba(245, 160, 74, 0.5);
}
.reason-card .ic svg { width: 24px; height: 24px; }
.reason-card h3 {
  margin-bottom: 10px;
  font-size: 19px;
}
.reason-card p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.65;
}
.reasons .pre-cta {
  text-align: center;
  font-size: 18px;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 18px;
  font-family: var(--font-display);
}

/* ============ RECOVER (video + 4 steps) ============ */
.recover {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.recover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 400px at 100% 0%, rgba(245, 160, 74, 0.06), transparent 60%);
  pointer-events: none;
}
.recover .section-title { margin-bottom: 48px; }
.video-wrap {
  max-width: 880px;
  margin: 0 auto 56px;
  aspect-ratio: 16/9;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  background: #111;
}
.video-wrap iframe { width: 100%; height: 100%; border: 0; }
.video-poster {
  width: 100%; height: 100%;
  border: 0; padding: 0; margin: 0;
  position: relative;
  cursor: pointer;
  background: #111;
  display: block;
}
.video-poster img { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-poster::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.video-play {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 84px; height: 84px;
  background: var(--lime);
  color: #0a2400;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 12px 32px -6px rgba(0,0,0,0.5);
  transition: transform 0.2s ease, background 0.2s ease;
  z-index: 1;
}
.video-poster:hover .video-play { transform: translate(-50%, -50%) scale(1.08); background: var(--lime-dark); }
.video-play svg { margin-left: 4px; }
.video-label {
  position: absolute;
  bottom: 24px; left: 28px;
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(15px, 2vw, 20px);
  text-shadow: 0 2px 14px rgba(0,0,0,0.5);
  z-index: 1;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
}
.step-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.step-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.step-card .step-num {
  position: absolute;
  top: -22px;
  left: 28px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 6px 14px -4px rgba(13, 138, 138, 0.5);
  border: 4px solid var(--cream);
}
.step-card h3 {
  margin: 8px 0 12px;
  color: var(--teal-deep);
}
.step-card p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 10px;
}
.step-card p:last-child { margin-bottom: 0; }

/* ============ LAWYER ============ */
.lawyer {
  background: white;
}
.lawyer .section-title { margin-bottom: 56px; }
.lawyer-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--teal-deep), var(--teal-dark));
  color: white;
  border-radius: var(--r-xl);
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.lawyer-card::before {
  content: "";
  position: absolute;
  top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245, 160, 74, 0.18), transparent 70%);
  pointer-events: none;
}
.lawyer-photo {
  width: 280px; height: 280px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a4a4a, #1a3a3a);
  border: 6px solid rgba(255,255,255,0.1);
  display: grid; place-items: center;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  z-index: 1;
}
.lawyer-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; position: relative; z-index: 1; }
.lawyer-photo .placeholder {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  font-weight: 500;
}
.lawyer-photo .placeholder svg { margin: 0 auto 8px; opacity: 0.5; }
.lawyer-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 14px, rgba(255,255,255,0.04) 14px, rgba(255,255,255,0.04) 28px);
  pointer-events: none;
}
.lawyer-info { position: relative; z-index: 1; }
.lawyer-info .role {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 8px;
}
.lawyer-info h3 {
  font-size: clamp(28px, 3vw, 36px);
  margin-bottom: 16px;
  color: white;
}
.lawyer-info p.bio {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.lawyer-info .oab {
  display: inline-block;
  white-space: nowrap;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

/* ============ WHY US ============ */
.why-us {
  background: var(--bg);
}
.why-us .section-title { margin-bottom: 56px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.why-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 36px 28px;
  text-align: left;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.why-card .stat {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 6px;
}
.why-card .stat-label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-dark);
  font-weight: 700;
  margin-bottom: 18px;
}
.why-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}
.why-card p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.65;
}
.why-card .corner {
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: linear-gradient(135deg, transparent 50%, rgba(245, 160, 74, 0.1) 50%);
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  background: var(--teal-deep);
  color: white;
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 400px at 0% 0%, rgba(245, 160, 74, 0.12), transparent 60%),
    radial-gradient(600px 600px at 100% 100%, rgba(126, 211, 33, 0.08), transparent 60%);
  pointer-events: none;
}
.testimonials .head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}
.testimonials h2 { color: white; max-width: 520px; }
.testimonials .head .stat {
  text-align: right;
}
.testimonials .head .stat .num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.testimonials .head .stat .lbl {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.test-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  padding: 28px;
  backdrop-filter: blur(6px);
  display: flex; flex-direction: column;
  gap: 18px;
}
.test-card .stars-row { color: var(--star); font-size: 14px; letter-spacing: 1.5px; }
.test-card blockquote {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.92);
}
.test-card .who {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.test-card .avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: white;
  flex-shrink: 0;
}
.test-card .name { font-weight: 600; font-size: 14px; }
.test-card .city { font-size: 12px; color: rgba(255,255,255,0.6); }

/* === Google Reviews widget === */
.google-card {
  max-width: 760px;
  margin: 0 auto 40px;
  background: white;
  color: var(--ink);
  border-radius: var(--r-xl);
  padding: 36px clamp(24px, 4vw, 44px);
  display: grid;
  gap: 24px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.4);
  position: relative;
}
.google-card .g-left { display: flex; align-items: center; gap: 16px; }
.google-card .g-logo { flex-shrink: 0; }
.google-card .g-title { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--ink); }
.google-card .g-sub { font-size: 13px; color: var(--muted); margin-top: 2px; }

.google-card .g-rating-row {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.google-card .g-score {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.04em;
}
.google-card .g-stars {
  font-size: 22px;
  color: var(--star);
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.google-card .g-reviews { font-size: 14px; color: var(--muted); }
.google-card .g-reviews strong { color: var(--ink); font-weight: 700; }

.google-card .g-breakdown { display: flex; flex-direction: column; gap: 8px; }
.google-card .g-row {
  display: grid;
  grid-template-columns: 32px 1fr 44px;
  gap: 12px;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
}
.google-card .g-row-label { font-weight: 600; color: var(--ink-soft); }
.google-card .g-bar {
  display: block;
  height: 8px;
  background: var(--line-soft);
  border-radius: var(--r-pill);
  overflow: hidden;
  position: relative;
}
.google-card .g-bar span {
  display: block;
  height: 100%;
  background: var(--star);
  border-radius: var(--r-pill);
}
.google-card .g-row-pct { text-align: right; font-variant-numeric: tabular-nums; }

.google-card .g-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-deep);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  padding-top: 6px;
  width: fit-content;
}
.google-card .g-link:hover { color: var(--teal); }
.google-card .g-link .arrow { transition: transform 0.2s ease; }
.google-card .g-link:hover .arrow { transform: translateX(3px); }

/* Trust strip */
.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 56px);
  flex-wrap: wrap;
  padding: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  max-width: 880px;
  margin: 0 auto;
}
.trust-item { text-align: center; min-width: 120px; }
.trust-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.02em;
}
.trust-lbl {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
  font-weight: 500;
}
.trust-sep {
  width: 1px; height: 32px;
  background: rgba(255,255,255,0.18);
}

@media (max-width: 720px) {
  .google-card { padding: 28px 22px; }
  .google-card .g-rating-row { gap: 16px; }
  .google-card .g-score { font-size: 48px; }
  .trust-sep { display: none; }
}

/* === Results section === */
.results { background: white; }
.results .head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  max-width: var(--max);
}
.results h2 { max-width: 560px; text-wrap: balance; }
.results .lead {
  color: var(--muted);
  font-size: 16px;
  max-width: 380px;
  line-height: 1.65;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.result-card {
  background: linear-gradient(180deg, var(--white) 0%, #fbfdfd 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 26px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.result-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}
.result-card .big {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.result-card .big .unit { font-size: 0.55em; color: var(--orange-dark); margin-left: 2px; }
.result-card .small {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-dark);
  font-weight: 700;
  margin-bottom: 14px;
}
.result-card .desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.result-card .acc {
  position: absolute;
  top: 18px; right: 18px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(126, 211, 33, 0.18);
}
@media (max-width: 960px) { .results-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .results-grid { grid-template-columns: 1fr; } }

/* ============ FAQ ============ */
.faq { background: white; }
.faq .section-title { margin-bottom: 48px; }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item[data-open="true"] {
  border-color: var(--teal);
  box-shadow: 0 6px 18px -8px rgba(13, 138, 138, 0.25);
}
.faq-q {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  padding: 22px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
}
.faq-q .plus {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--line-soft);
  color: var(--teal);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform 0.25s ease, background 0.25s ease;
  font-size: 18px;
  font-weight: 400;
}
.faq-item[data-open="true"] .plus {
  background: var(--teal);
  color: white;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.faq-item[data-open="true"] .faq-a {
  max-height: 320px;
  padding-bottom: 22px;
}

/* ============ FORM ============ */
.form-section {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal-deep));
  color: white;
  position: relative;
  overflow: hidden;
}
.form-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  pointer-events: none;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
}
.form-grid h2 { color: white; margin-bottom: 18px; text-wrap: balance; }
.form-grid .lead {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin-bottom: 28px;
}
.form-points { display: flex; flex-direction: column; gap: 12px; }
.form-point {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: rgba(255,255,255,0.92);
}
.form-point .check {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--lime);
  color: #0a2400;
  display: grid; place-items: center;
  flex-shrink: 0;
  font-weight: 800;
  font-size: 14px;
}

.form-card {
  background: white;
  color: var(--ink);
  padding: 36px;
  border-radius: var(--r-xl);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.4);
}
.form-card h3 {
  margin-bottom: 6px;
  color: var(--teal-deep);
  font-size: 22px;
}
.form-card .sub {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 22px;
}
.form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-row label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}
.form-row input, .form-row textarea, .form-row select {
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: white;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13, 138, 138, 0.12);
}
.form-row textarea { min-height: 90px; resize: vertical; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-row.two > div { display: flex; flex-direction: column; gap: 6px; }
.form-card button.cta { width: 100%; margin-top: 8px; }
.form-card .privacy {
  font-size: 11px;
  color: var(--muted-soft);
  margin-top: 14px;
  text-align: center;
  line-height: 1.5;
}
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success .ok {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(126, 211, 33, 0.15);
  color: var(--lime-deep);
  display: grid; place-items: center;
  margin: 0 auto 18px;
}
.form-success h3 { color: var(--teal-deep); margin-bottom: 8px; }
.form-success p { color: var(--muted); font-size: 14px; }

/* ============ FOOTER ============ */
footer.site {
  background: #0a1414;
  color: rgba(255,255,255,0.7);
  padding: 56px 0 30px;
  font-size: 13.5px;
}
.foot-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.foot-brand {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
}
.foot-brand .mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--teal);
  display: grid; place-items: center;
  color: white; font-weight: 800;
}
.foot-top p { line-height: 1.6; max-width: 360px; font-size: 13px; opacity: 0.65; }
.foot-col h4 {
  font-family: var(--font-sans);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: white;
  margin-bottom: 16px;
  font-weight: 600;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-col a, .foot-col li { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.2s ease; }
.foot-col a:hover { color: var(--lime); }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.foot-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .phone-wrap { margin-top: 30px; }
  .reason-grid, .why-grid, .test-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .lawyer-card { grid-template-columns: 1fr; padding: 36px 28px; gap: 28px; }
  .lawyer-photo { width: 220px; height: 220px; margin: 0 auto; }
  .form-grid { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr; gap: 28px; }
  .badge.b1 { left: 0; }
  .badge.b2 { right: 0; }
  .testimonials .head { flex-direction: column; align-items: flex-start; }
  .testimonials .head .stat { text-align: left; }
}
@media (max-width: 560px) {
  .hero-nav .nav-tag { display: none; }
  .form-row.two { grid-template-columns: 1fr; }
  .form-card { padding: 28px 22px; }
  .badge { font-size: 11px; padding: 8px 11px; }
  .badge.b1 { top: 6%; }
  .badge.b2 { bottom: 8%; }
  .orange-item { grid-template-columns: 48px 1fr; gap: 14px; padding: 16px; }
  .orange-item .ic { width: 48px; height: 48px; }
  .orange-item .ic svg { width: 22px; height: 22px; }
  .step-card { padding: 28px 22px; }
}
