:root {
  --bg: #f3f7fb;
  --ink: #17202d;
  --muted: #5f7189;
  --line: #d8e3ee;
  --panel: #ffffff;
  --soft: #eaf2f8;
  --blue: #0b4460;
  --teal: #008c86;
  --rose: #d94f70;
  --amber: #ff9f0a;
  --green: #20865a;
  --dark: #071d2c;
  --shadow: 0 20px 55px rgba(13, 40, 61, 0.12);
  --action: #ff9f0a;
  --action-hover: #eb8d00;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[hidden] { display: none !important; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

::selection {
  background: var(--blue);
  color: #fff;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 228, 237, 0.86);
  backdrop-filter: blur(18px);
}

.brand, .topbar > nav:not(.mobile-nav), .hero-actions, .legend p, footer {
  display: flex;
  align-items: center;
}

.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  color: var(--ink);
  flex-shrink: 0;
}

.mobile-nav {
  display: none;
}

.mobile-nav[hidden] {
  display: none;
}

.brand { gap: 10px; font-weight: 800; }
.brand-mark {
  display: block;
  width: 46px;
  height: 46px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.topbar nav:not(.mobile-nav) {
  justify-content: center;
  gap: 22px;
  color: #33455c;
  font-size: 14px;
  font-weight: 700;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > button {
  border: 0;
  color: #33455c;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  padding: 4px 0;
  transition: color 0.2s;
}

.nav-dropdown > button:hover {
  color: var(--blue);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 40;
  display: grid;
  min-width: 225px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px) scale(0.97);
  transition: opacity 0.2s, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.2s;
  transform-origin: top center;
}

.dropdown-menu a {
  padding: 12px 10px;
  color: var(--ink);
  border-radius: 8px;
}

.dropdown-menu a:hover {
  background: var(--soft);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.language-switch select {
  width: auto;
  min-height: 40px;
  padding: 0 30px 0 10px;
  font-weight: 800;
}

.top-action, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
}

.top-action {
  min-height: 42px;
  padding: 0 16px;
  color: #071d2c;
  background: var(--action);
  font-size: 14px;
  box-shadow: 0 10px 22px rgba(255, 159, 10, 0.24);
}

.top-action {
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.top-action:hover,
.button.primary:hover {
  background: var(--action-hover);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(255, 159, 10, 0.3);
}

.button {
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.button.secondary:hover {
  background: #0d5577;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(11, 68, 96, 0.25);
}

.button.primary:active,
.button.secondary:active,
.top-action:active {
  transform: translateY(0);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  min-height: calc(100vh - 67px);
  padding: clamp(34px, 5vw, 74px) clamp(18px, 4vw, 58px) 26px;
  background: linear-gradient(180deg, #eef6fb 0%, #f7fafc 100%);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 840px;
  margin-bottom: 20px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}
h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}
h3 { margin-bottom: 10px; font-size: 18px; }

.lead, .section-head p, .contact-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.contact-pane {
  margin-top: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.contact-channels {
  display: grid;
}

.contact-channels article {
  display: grid;
  gap: 4px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s;
}

.contact-channels article:last-child {
  border-bottom: none;
}

.contact-channels article:hover {
  background: var(--soft);
}

.contact-channels span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-channels strong {
  font-size: 17px;
  color: var(--ink);
}

.contact-channels a {
  color: var(--blue);
  font-weight: 600;
  font-size: 14px;
  overflow-wrap: anywhere;
}

.pane-divider {
  height: 1px;
  background: var(--line);
}

.register-section {
  display: grid;
  gap: 10px;
  padding: 20px 24px;
  background: #f6f9fc;
}

.contact-copy .register-heading {
  margin: 0;
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.register-details {
  display: grid;
  gap: 4px;
  padding-left: 12px;
  border-left: 3px solid var(--teal);
}

.register-details span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.register-details span:last-child {
  color: var(--ink);
  font-weight: 600;
}

.fraud-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
  min-height: auto;
  margin: 24px clamp(18px, 4vw, 58px) 0;
  padding: clamp(38px, 5vw, 64px);
  background: #eaf4fb;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(24, 38, 55, 0.08);
}

.fraud-copy {
  max-width: 720px;
}

.success-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin: 10px 0 22px;
  padding: 0 18px;
  color: #17202a;
  background: #fff7e8;
  border: 1px solid #f4c36f;
  border-radius: 999px;
  font-weight: 800;
}

.success-icon {
  display: inline-grid;
  min-width: 30px;
  min-height: 22px;
  margin-right: 8px;
  place-items: center;
  color: #fff;
  background: var(--teal);
  border-radius: 999px;
  font-size: 11px;
  line-height: 1;
}

.fraud-copy h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1.04;
}

.fraud-lawyer {
  justify-self: end;
  margin: 0;
  width: min(100%, 430px);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.fraud-lawyer img {
  display: block;
  width: 100%;
  height: 350px;
  background: #f7f9fb;
  object-fit: contain;
  object-position: center center;
}

.fraud-lawyer figcaption {
  width: auto;
  padding: 18px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.fraud-lawyer figcaption p {
  color: #5e6f86;
  font-size: 14px;
  line-height: 1.55;
}

.fraud-stats,
.fraud-info,
.fraud-cta {
  padding: 46px clamp(18px, 4vw, 58px);
}

.fraud-metrics {
  padding: 0;
}

.fraud-info {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 16px;
  align-items: start;
}

.fraud-info article {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.fraud-info .fraud-main {
  grid-row: auto;
}

.fraud-info p,
.fraud-list p,
.fraud-cta p {
  color: var(--muted);
  line-height: 1.65;
}

.fraud-list {
  display: grid;
  gap: 12px;
}

.fraud-list div {
  padding: 14px;
  background: var(--soft);
  border-radius: 8px;
}

.fraud-list h3 {
  margin-bottom: 6px;
}

.fraud-cta {
  display: grid;
  justify-items: start;
  gap: 10px;
  background: #edf3f7;
}

.hero-actions { flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { min-height: 46px; padding: 0 18px; }
.button.primary {
  color: #071d2c;
  background: var(--action);
  box-shadow: 0 12px 26px rgba(255, 159, 10, 0.24);
}
.button.secondary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 12px 26px rgba(11, 68, 96, 0.18);
}
.button.small { width: 100%; min-height: 42px; margin-top: 8px; }
.trust-note { margin: 20px 0 0; color: var(--muted); font-weight: 700; }

.hero-lab {
  overflow: hidden;
  min-height: 510px;
  background: #071d2c;
  border: 1px solid #17394f;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lab-top, .lab-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.09);
}
.lab-top { border-bottom: 1px solid rgba(255, 255, 255, 0.09); }
.lab-bottom { border-top: 1px solid rgba(255, 255, 255, 0.09); }
.lab-top span, .lab-bottom span {
  display: block;
  margin-bottom: 4px;
  color: #9fb0c5;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.lab-bottom strong { font-size: 14px; }
#heroGraph { width: 100%; height: 390px; }

.metrics, .lawyer-section, .tracking-section, .scam-section, .reviews-section, .consultation-section, .faq-section, .team-section, .contact-section, .page-hero, .contact-cta {
  padding: 70px clamp(18px, 4vw, 58px);
}

.page-hero {
  padding-bottom: 34px;
}

.page-hero .lead {
  max-width: 860px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding-top: 28px;
}
.metrics article, .control-panel, .detail-panel, .scam-grid article, .process article, .reviews article, .case-form, .faq-list details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.metrics article {
  padding: 24px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.metrics article:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(13, 40, 61, 0.1);
}

.metrics strong {
  display: block;
  margin-bottom: 6px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1;
}
.metrics span, .scam-grid p, .process p, .reviews p, .reviews span, .faq-list p, footer span {
  color: var(--muted);
  line-height: 1.6;
}

.lawyer-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: clamp(24px, 5vw, 68px);
  align-items: center;
  background: #eaf4fb;
}

.lawyer-copy {
  max-width: 850px;
}

.lawyer-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.lawyer-points {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.lawyer-points span {
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.lawyer-card {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lawyer-card img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.lawyer-card figcaption {
  display: grid;
  gap: 3px;
  padding: 16px;
}

.lawyer-card strong {
  font-size: 20px;
}

.lawyer-card span {
  color: var(--muted);
  font-weight: 800;
}

.section-head { max-width: 850px; margin-bottom: 28px; }
.tracker {
  display: grid;
  grid-template-columns: 265px minmax(0, 1fr) 305px;
  gap: 16px;
  align-items: stretch;
}

.control-panel, .detail-panel { padding: 18px; }
.control-panel {
  display: grid;
  align-content: start;
  gap: 22px;
}
.case-tabs, .segmented { display: grid; gap: 8px; }
.case-tab, .filter {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: var(--soft);
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.case-tab:hover, .filter:hover {
  background: #dce8f2;
}
.case-tab.active, .filter.active {
  color: #071d2c;
  background: var(--action);
  border-color: var(--action);
}

.legend { display: grid; gap: 9px; }
.legend p { margin: 0; color: var(--muted); font-weight: 700; }
.dot { width: 12px; height: 12px; margin-right: 9px; border-radius: 999px; }
.dot.victim { background: var(--blue); }
.dot.wallet { background: var(--rose); }
.dot.platform { background: var(--amber); }
.dot.evidence { background: var(--green); }

.graph-shell {
  overflow: hidden;
  min-height: 620px;
  background: #fbfcfe;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.graph-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}
.icon-button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  cursor: pointer;
  font-size: 20px;
  font-weight: 800;
}
#caseGraph { width: 100%; height: 565px; }
marker path { fill: #7e8da0; }

.edge {
  fill: none;
  stroke: #8493a8;
  stroke-width: 2.2;
  opacity: 0.72;
  transition: opacity 0.25s, stroke 0.25s, stroke-width 0.25s;
}
.edge.payment { stroke: var(--blue); }
.edge.flow { stroke: #77869b; }
.edge.risk { stroke: var(--rose); }
.edge.evidence { stroke: var(--green); stroke-dasharray: 7 7; }
.edge.active {
  stroke: var(--blue);
  stroke-width: 4.6;
  opacity: 1;
  stroke-dasharray: 18 10;
  animation: flow 1s linear infinite;
}
.edge.dimmed, .node.dimmed { opacity: 0.14; }
.edge-label {
  fill: #536273;
  font-size: 12px;
  font-weight: 800;
  text-anchor: middle;
  paint-order: stroke;
  stroke: #fbfcfe;
  stroke-width: 5px;
}
.node {
  cursor: pointer;
  transition: opacity 0.25s;
}
.node circle, .node rect {
  stroke: #fff;
  stroke-width: 5px;
  filter: drop-shadow(0 8px 12px rgba(25, 34, 48, 0.2));
}
.node text {
  fill: #fff;
  font-size: 13px;
  font-weight: 800;
  text-anchor: middle;
  pointer-events: none;
}
.node.victim circle { fill: var(--blue); }
.node.wallet circle { fill: var(--rose); }
.node.platform circle { fill: var(--amber); }
.node.evidence rect { fill: var(--green); }
.node.selected circle, .node.selected rect { stroke: var(--dark); stroke-width: 7px; }

.detail-panel dl { display: grid; gap: 12px; margin: 24px 0 0; }
.detail-panel div {
  padding: 14px;
  background: var(--soft);
  border-radius: 8px;
}
.detail-panel dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.detail-panel dd { margin: 5px 0 0; font-weight: 800; }
.detail-panel p { color: var(--muted); line-height: 1.6; }

.scam-grid, .process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.process { grid-template-columns: repeat(4, 1fr); }
.scam-grid article, .process article {
  padding: 22px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.scam-grid article:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(13, 40, 61, 0.1);
}
.scam-grid span, .process span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  place-items: center;
  color: #071d2c;
  background: var(--action);
  border-radius: 8px;
  font-weight: 800;
}

.reviews-section, .contact-section, .contact-cta { background: #f8fafc; }

.reviews-head {
  max-width: 720px;
  margin: 0 auto 46px;
  text-align: center;
}

.reviews-head p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.reviews-carousel {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  gap: 22px;
  align-items: center;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.review-card {
  display: grid;
  min-height: 430px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(24, 38, 55, 0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(24, 38, 55, 0.1);
}

.quote-mark {
  height: 54px;
  color: #cbd6df;
  font-size: 62px;
  font-weight: 800;
  line-height: 0.8;
}

.quote-mark::before {
  content: "''";
}

.review-card p {
  color: #66758c;
  font-size: 17px;
  font-style: italic;
  line-height: 1.55;
}

.review-meta {
  display: grid;
  gap: 11px;
  align-self: end;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.recovered,
.duration {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #607089;
}

.recovered span,
.recovered strong {
  color: #ff9800;
}

.recovered strong {
  font-size: 15px;
}

.recovered em,
.duration em {
  font-style: normal;
}

.review-stars {
  color: #ff9f0a;
  font-size: 16px;
  letter-spacing: 2px;
}

.review-person {
  display: grid;
  gap: 3px;
  margin-top: 20px;
}

.review-person strong {
  color: var(--ink);
}

.review-person span {
  color: #607089;
}

.review-arrow {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 4px 14px rgba(24, 38, 55, 0.08);
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
}

.consultation-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  background: #eaf4fb;
}

.consultation-copy {
  max-width: 720px;
}

.consultation-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.consultation-points {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.consultation-points span {
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.consultation-slider {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.consultation-slider figure {
  margin: 0;
}

.consultation-slider img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.consultation-slider figcaption {
  padding: 16px 72px 18px;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.consultation-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(220, 228, 237, 0.88);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(24, 38, 55, 0.14);
  cursor: pointer;
  font-size: 22px;
  font-weight: 800;
  transform: translateY(-50%);
}

#consultPrev {
  left: 16px;
}

#consultNext {
  right: 16px;
}

.consultation-dots {
  position: absolute;
  left: 50%;
  bottom: 58px;
  display: flex;
  gap: 7px;
  transform: translateX(-50%);
}

.consultation-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.consultation-dots button.active {
  width: 24px;
  background: var(--action);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
}
.faq-list details {
  padding: 18px 20px;
  transition: box-shadow 0.25s;
}

.faq-list details[open] {
  box-shadow: 0 8px 25px rgba(13, 40, 61, 0.08);
}
.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}
.faq-list p { margin: 12px 0 0; }

.team-section {
  background: #f8fafc;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.team-featured {
  max-width: 580px;
  margin: 0 auto 36px;
}

.team-featured-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  align-items: center;
  padding: 24px;
  background: #fff;
  border: 2px solid #ffd38a;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(13, 40, 61, 0.14);
}

.team-featured-card .member-photo {
  aspect-ratio: 1;
  border-radius: 12px;
}

.team-featured-card h3 {
  font-size: 22px;
  margin-bottom: 4px;
}

.team-featured-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.team-card {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(24, 38, 55, 0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}

.team-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(24, 38, 55, 0.1);
}

.team-card .member-photo {
  aspect-ratio: 4 / 3;
}

.member-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #071d2c, #0b4460);
  border-radius: 8px;
}

.member-photo span {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: 0;
}

.member-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-photo.fallback img {
  display: none;
}

.team-card h3 {
  margin-bottom: 4px;
}

.team-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.lead-badge {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 10px;
  color: #071d2c;
  background: var(--action);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.law-advisors {
  margin-top: 52px;
}

.law-advisors .section-head {
  margin-bottom: 18px;
}

.advisor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.advisor-grid article {
  padding: 18px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(24, 38, 55, 0.05);
  transition: transform 0.25s, box-shadow 0.25s;
}

.advisor-grid article:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(24, 38, 55, 0.1);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: 42px;
  align-items: start;
}

.contact-cta {
  display: grid;
  justify-items: start;
  gap: 8px;
}

.contact-cta p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.65;
}

.contact-cta,
.fraud-cta {
  color: #fff;
  background: #071d2c;
}

.contact-cta p,
.fraud-cta p {
  color: #c4d3df;
}

.contact-cta .eyebrow,
.fraud-cta .eyebrow {
  color: var(--action);
}

.case-portal-hero,
.case-admin-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: 70px clamp(18px, 4vw, 58px);
  background: #eaf4fb;
}

.case-portal-hero {
  grid-template-columns: minmax(280px, 520px);
  justify-content: center;
  min-height: calc(100vh - 150px);
  text-align: center;
}

.case-portal-hero .portal-lookup {
  text-align: left;
}

.portal-lookup h1 {
  margin-bottom: 16px;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.02;
}

.portal-lookup .lead {
  font-size: 17px;
}

.case-admin-hero {
  grid-template-columns: 1fr;
  padding-bottom: 30px;
}

.portal-lookup {
  box-shadow: var(--shadow);
}

.case-result,
.case-admin-layout,
.case-login-section {
  display: grid;
  gap: 18px;
  padding: 42px clamp(18px, 4vw, 58px) 70px;
}

.case-login-section {
  min-height: 460px;
  place-items: start center;
  background: #eaf4fb;
}

.case-login-card {
  width: min(100%, 560px);
  box-shadow: var(--shadow);
}

.case-status-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 24px;
  align-items: center;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.case-status-card p,
.case-panel p,
.muted {
  color: var(--muted);
  line-height: 1.6;
}

.progress-ring {
  display: grid;
  width: 132px;
  height: 132px;
  place-items: center;
  justify-self: end;
  color: var(--ink);
  background: radial-gradient(circle at center, #fff 55%, transparent 57%), conic-gradient(var(--action) 0 70%, #e4ebf2 70% 100%);
  border-radius: 999px;
}

.progress-ring strong {
  font-size: 28px;
  line-height: 1;
}

.progress-ring span {
  margin-top: -34px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.case-two-column,
.case-admin-layout {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.65fr);
  align-items: start;
}

.case-panel {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(24, 38, 55, 0.06);
}

.upload-form {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.upload-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.timeline,
.upload-list,
.admin-case-list {
  display: grid;
  gap: 10px;
}

.timeline-item,
.upload-item {
  padding: 14px;
  background: var(--soft);
  border-radius: 8px;
}

.timeline-item span,
.upload-item span,
.admin-case-item span,
.admin-case-item em {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.timeline-item strong,
.upload-item strong {
  display: block;
  margin: 5px 0;
}

.timeline-item em {
  display: block;
  margin-top: 8px;
  color: var(--blue);
  font-style: normal;
  font-weight: 800;
}

.admin-case-form {
  box-shadow: var(--shadow);
}

.agent-session {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  color: var(--muted);
  background: var(--soft);
  border-radius: 8px;
  font-weight: 800;
}

.agent-session strong {
  margin-right: auto;
  color: var(--ink);
}

.agent-session .button {
  width: auto;
  margin-top: 0;
}

.selected-agent-note {
  margin: 0;
  padding: 13px 14px;
  color: #0b4460;
  background: #fff8e8;
  border: 1px solid #ffd38a;
  border-radius: 8px;
  font-weight: 800;
}

.admin-list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.admin-list-head h2 {
  margin: 0;
  font-size: 30px;
}

.admin-case-item {
  display: grid;
  gap: 5px;
  width: 100%;
  padding: 14px;
  text-align: left;
  background: var(--soft);
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
}

.admin-case-item:hover {
  border-color: var(--action);
  background: #fff;
}

.admin-case-item strong {
  color: var(--ink);
  font-size: 16px;
}

.admin-case-item b {
  color: var(--blue);
}

.standalone {
  padding-top: 24px;
}
.case-form {
  display: grid;
  gap: 16px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.case-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}
input, select, textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfcfe;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

input:hover, select:hover, textarea:hover {
  border-color: #bccddb;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(11, 68, 96, 0.1);
  outline: none;
}

textarea { resize: vertical; }
.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
  line-height: 1.5;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.bot-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(17, 26, 35, 0.72);
  backdrop-filter: blur(10px);
}

.bot-gate[hidden] {
  display: none;
}

.bot-card {
  width: min(100%, 480px);
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.bot-card h2 {
  font-size: 28px;
}

.bot-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0;
  color: var(--ink);
  font-weight: 800;
}

.bot-check input {
  width: 18px;
  height: 18px;
}

body.locked {
  overflow: hidden;
}

footer {
  justify-content: space-between;
  gap: 16px;
  padding: 34px clamp(18px, 4vw, 58px);
  color: #fff;
  background: #061b29;
  border-top: 4px solid var(--action);
}

footer span {
  max-width: 960px;
}

@keyframes flow {
  to { stroke-dashoffset: -28; }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section {
  animation: fadeUp 0.5s ease both;
}

section:nth-child(2) { animation-delay: 0.08s; }
section:nth-child(3) { animation-delay: 0.16s; }
section:nth-child(4) { animation-delay: 0.24s; }
section:nth-child(5) { animation-delay: 0.32s; }
section:nth-child(6) { animation-delay: 0.4s; }
section:nth-child(7) { animation-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
  section {
    animation: none;
  }
}

@media (max-width: 1150px) {
  .tracker { grid-template-columns: 1fr; }
  .control-panel { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 920px) {
  .topbar {
    grid-template-columns: auto 1fr;
    gap: 12px;
    padding: 10px 14px;
  }

  .brand span:last-child {
    display: none;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .topbar > nav:not(.mobile-nav) {
    display: none;
  }

  .header-actions {
    justify-content: end;
    gap: 8px;
  }

  .hamburger {
    display: inline-flex;
  }

  .mobile-nav {
    position: fixed;
    top: 62px;
    right: 0;
    z-index: 30;
    display: grid;
    gap: 4px;
    width: min(100%, 320px);
    max-height: calc(100vh - 62px);
    padding: 12px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 0 0 8px 8px;
    box-shadow: var(--shadow);
  }

  .mobile-nav a {
    padding: 14px 12px;
    border-radius: 8px;
    font-weight: 700;
  }

  .mobile-nav a:hover {
    background: var(--soft);
  }

  .mobile-nav .nav-dropdown > button {
    width: 100%;
    padding: 14px 12px;
    text-align: left;
    border-radius: 8px;
  }

  .mobile-nav .nav-dropdown > button:hover {
    background: var(--soft);
  }

  .mobile-nav .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    padding: 0 0 0 16px;
    min-width: auto;
  }

  .mobile-nav .dropdown-menu a {
    padding: 10px 12px;
  }

  .language-switch span {
    display: none;
  }

  .language-switch select {
    min-height: 38px;
    padding: 0 24px 0 8px;
    font-size: 13px;
  }

  .top-action {
    display: inline-flex;
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
    white-space: nowrap;
  }

  .hero, .contact-section, .consultation-section, .case-portal-hero, .case-two-column, .case-admin-layout { grid-template-columns: 1fr; min-height: auto; }
  .fraud-hero, .fraud-info { grid-template-columns: 1fr; min-height: auto; }
  .fraud-lawyer { justify-self: start; max-width: 400px; }
  .fraud-lawyer img { height: 320px; }
  .lawyer-section { grid-template-columns: 1fr; }
  .lawyer-card { max-width: 360px; }
  .metrics, .scam-grid, .process, .advisor-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .lawyer-card { max-width: 360px; }
  .team-featured-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .team-featured-card .member-photo {
    max-width: 150px;
    margin: 0 auto;
  }
  .reviews-carousel { grid-template-columns: 1fr; }
  .review-arrow { display: none; }
  .reviews { grid-template-columns: 1fr; }
  .control-panel { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  h1 { font-size: 40px; }
  h2 { font-size: 30px; }
  .hero,
  .fraud-hero,
  .metrics,
  .lawyer-section,
  .tracking-section,
  .scam-section,
  .reviews-section,
  .consultation-section,
  .faq-section,
  .team-section,
  .contact-section,
  .case-portal-hero,
  .case-admin-hero,
  .case-result,
  .case-admin-layout,
  .case-login-section,
  .page-hero,
  .contact-cta,
  .fraud-stats,
  .fraud-info,
  .fraud-cta {
    padding-left: 16px;
    padding-right: 16px;
  }

.fraud-hero {
    margin-left: 16px;
    margin-right: 16px;
    padding: 24px;
  }

  .hero {
    gap: 22px;
  }

  .hero-lab { min-height: 420px; }
  #heroGraph { height: 295px; }
  .lab-bottom { display: grid; }
  .hero-actions .button { width: 100%; }
  .metrics, .scam-grid, .process, .advisor-grid, .form-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .graph-shell { min-height: 500px; }
  #caseGraph { height: 445px; }
  .tracker { gap: 12px; }
  .review-card { min-height: auto; }
  .fraud-lawyer { max-width: 100%; }
  .fraud-lawyer img { height: 290px; }
  .consultation-slider figcaption { padding: 14px 16px 42px; }
  .consultation-dots { bottom: 16px; }
  .consultation-arrow {
    top: 42%;
    width: 36px;
    height: 36px;
  }
  .contact-emails article,
  .case-form,
  .case-panel,
  .case-status-card,
  .fraud-info article {
    padding: 18px;
  }
  .case-status-card { grid-template-columns: 1fr; }
  .progress-ring { justify-self: start; }
  .agent-session { display: grid; }
  footer {
    display: grid;
    gap: 14px;
    text-align: center;
    justify-items: center;
  }
}

@media (max-width: 380px) {
  .top-action {
    padding: 0 9px;
    font-size: 12px;
  }

  .language-switch select {
    max-width: 64px;
  }
}
