

/*Lawyer Lead Generation*/



 :root{
    --ink:#1B0F45;
    --ink-2:#291863;
    --deep:#140A36;
    --paper:#F6F5FC;
    --paper-2:#FFFFFF;
    --signal:#F25500;
    --signal-deep:#CC4400;
    --mint:#8163FF;
    --mint-deep:#5A2EE5;
    --line:rgba(27,15,69,.12);
    --line-dark:rgba(246,245,252,.16);
    --muted:#5C5575;
    --muted-on-dark:#B7ABDD;

    --d:"Sora", system-ui, sans-serif;
    --b:"Plus Jakarta Sans", system-ui, sans-serif;
    --m:"IBM Plex Mono", ui-monospace, monospace;

    --maxw:1330px;
    --r:18px;
  }





* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--b);
  background: #F6F5FC;
  color: #1B0F45;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

h1,
h2,
h3 {
  font-family: var(--d);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.mono {
  font-family: var(--m);
}
.eyebrow {
  font-family: var(--m);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--signal-deep);
}
.eyebrow.on-dark {
  color: var(--signal);
}


/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--b);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: none !important;
  line-height: 1;
}
.btn-primary {
  background: var(--signal);
  color: #1B0F45;
}
.btn-ghost {
    background: transparent;
    border-color: var(--line-dark) !important;
    color: #F6F5FC;
    border: 1px solid var(--line-dark) !important;
}
.btn-ghost:hover {
  border-color: var(--signal);
  color: var(--signal);
}
.btn-dark {
  background: #1B0F45;
  color: #F6F5FC;
}
.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -12px rgba(27, 15, 69, 0.6);
}
.btn .arrow {
  transition: transform 0.18s ease;
}
.btn:hover .arrow {
  transform: translateX(3px);
}

/* ---------- nav ---------- */
header.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(27, 15, 69, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-dark);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 13px;
  padding: 8px 14px;
  box-shadow: 0 6px 18px -8px rgba(0, 0, 0, 0.45);
}
.logo img {
  height: 30px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav-links a {
  color: var(--muted-on-dark);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover {
  color: #F6F5FC;
}
.nav-cta {
  padding: 11px 20px;
  font-size: 0.92rem;
  color: #fff;
  background: transparent;
  border: 1.5px solid var(--signal);
}
.nav-cta:hover {
  background: var(--signal);
  color: #fff;
  transform: translateY(-1px);
}
@media (max-width: 860px) {
  .nav-links a:not(.nav-cta) {
    display: none;
  }
}

/* ---------- hero ---------- */
.hero {
  background: #1B0F45;
  color: #F6F5FC;
  position: relative;
  overflow: hidden;
  padding: 70px 0;
    margin-top: 130px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      900px 460px at 82% -8%,
      rgba(242, 85, 0, 0.16),
      transparent 60%
    ),
    radial-gradient(
      700px 500px at 6% 108%,
      rgba(124, 92, 255, 0.12),
      transparent 60%
    );
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 54px;
  align-items: center;
}
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

.hero h1 {
  font-size: clamp(2.3rem, 5.4vw, 4.2rem);
  font-weight: 800;
  margin: 18px 0 0;
  line-height: 1.06;
}
.hero h1 .hl {
  color: var(--signal);
  position: relative;
  white-space: nowrap;
}
.hero p.sub {
  font-size: 1.18rem;
  color: var(--muted-on-dark);
  max-width: 34ch;
  margin-top: 22px;
}
.sub-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 26px;
  white-space: nowrap;
  background: var(--paper-2);
  color: #1B0F45;
  font-family: var(--d);
  font-weight: 700;
  font-size: clamp(0.95rem, 3vw, 1.5rem);
  letter-spacing: -0.01em;
  line-height: 1.2;
  max-width: 100%;
  padding: 15px 22px;
  border-radius: 16px;
  box-shadow: 0 24px 54px -22px rgba(0, 0, 0, 0.6),
    0 1px 0 rgba(255, 255, 255, 0.5) inset;
}
.sub-badge .ho {
  color: var(--signal-deep);
}
.sub-badge .tick {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--signal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 6px 16px -6px rgba(242, 85, 0, 0.7);
}
@media (max-width: 400px) {
  .sub-badge {
    padding: 12px 15px;
    gap: 8px;
  }
  .sub-badge .tick {
    width: 24px;
    height: 24px;
    border-radius: 7px;
  }
}
.hero-cta {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid var(--line-dark);
}
.trust-strip .ts {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.trust-strip .num {
  font-family: var(--m);
  font-weight: 700;
  font-size: clamp(1.2rem, 4.2vw, 1.5rem);
  color: #F6F5FC;
  line-height: 1;
}
.trust-strip .lbl {
  font-size: 0.78rem;
  color: var(--muted-on-dark);
  line-height: 1.3;
}
@media (max-width: 520px) {
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }
  .trust-strip {
 gap: 12px;
        border-top: none;
        margin-top: 0;
    }
}

/* ---------- signature: $0 ledger ---------- */
.ledger {
  background: linear-gradient(180deg, var(--paper-2), #eef1ef);
  color: #1B0F45;
  border-radius: 22px;
  padding: 30px 28px 26px;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.6),
    0 1px 0 rgba(255, 255, 255, 0.5) inset;
  position: relative;
}
.ledger-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 2px solid #1B0F45;
  padding-bottom: 12px;
}
.ledger-head .t {
  font-family: var(--d);
  font-weight: 700;
  font-size: 1.05rem;
}
.ledger-head .meta {
  font-family: var(--m);
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 2px;
  border-bottom: 1px dashed var(--line);
}
.line .desc {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 500;
}
.line .desc .noflag {
  color: var(--mint-deep);
  font-weight: 700;
}
.line .desc s {
  text-decoration-thickness: 2px;
  text-decoration-color: var(--signal-deep);
  color: var(--muted);
}
.line .desc .ic {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: var(--mint-deep);
}
.line .amt {
  font-family: var(--m);
  font-weight: 700;
  font-size: 1.05rem;
  position: relative;
}
.line .amt.zero {
  color: var(--mint-deep);
}
.line.is-zero .desc {
  color: var(--muted);
}
.line.pay {
  background: linear-gradient(90deg, rgba(242, 85, 0, 0.14), transparent);
  border-radius: 12px;
  border-bottom: 1px dashed transparent;
  padding: 16px 12px;
  margin-top: 6px;
}
.line.pay .desc {
  color: #1B0F45;
  font-weight: 700;
}
.line.pay .desc .ic {
  color: var(--signal-deep);
}
.line.pay .amt {
  color: var(--signal-deep);
}
.ledger-foot {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.stamp {
  font-family: var(--m);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mint-deep);
  border: 2px solid var(--mint-deep);
  border-radius: 8px;
  padding: 7px 11px;
}
.ledger-foot .note {
  font-size: 0.86rem;
  color: var(--muted);
  max-width: 20ch;
}

/* reveal states (added by JS) */
/*.ledger.go .line {*/
/*  animation: lineIn 0.5s forwards;*/
/*}*/
/*.ledger.go .line:nth-child(2) {*/
/*  animation-delay: 0.15s;*/
/*}*/
/*.ledger.go .line:nth-child(3) {*/
/*  animation-delay: 0.35s;*/
/*}*/
/*.ledger.go .line:nth-child(4) {*/
/*  animation-delay: 0.55s;*/
/*}*/
/*.ledger.go .line:nth-child(5) {*/
/*  animation-delay: 0.75s;*/
/*}*/
/*.ledger.go .line.pay {*/
/*  animation-delay: 1s;*/
/*}*/
/*.ledger.go .stamp {*/
/*  animation: stampIn 0.4s 0.95s forwards;*/
/*}*/
@keyframes lineIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes stampIn {
  to {
    opacity: 1;
    transform: rotate(-5deg) scale(1);
  }
}

/* ---------- generic section ---------- */
/*section {*/
/*  padding: 88px 0;*/
/*}*/
.sec-head {
  max-width: 62ch;
}
.sec-head h2 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  margin-top: 14px;
}
.sec-head p.lead {
    font-size: 16px;
    color: var(--muted);
    margin-top: 16px;
}

/* ---------- video ---------- */
#video {
  background: var(--ink-2);
  color: #F6F5FC;
padding: 70px 0;
}
#video .sec-head h2 {
  color: #F6F5FC;
}
#video .sec-head p.lead {
  color: var(--muted-on-dark);
}
.video-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.video-text h2 {
  margin-top: 14px;
}
.video-text .lead {
    color: #fff;
    font-size: 16px;
}
.video-text .video-cta {
  margin-top: 28px;
}
.player {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: radial-gradient(
      600px 300px at 70% 30%,
      rgba(242, 85, 0, 0.2),
      transparent 60%
    ),
    linear-gradient(135deg, #0a1715, #15413a);
  border: 1px solid var(--line-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.player video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.play-btn {
  position: relative;
  z-index: 2;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--signal);
  color: #1B0F45;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 50px -12px rgba(242, 85, 0, 0.7);
  transition: transform 0.2s ease;
}
.player:hover .play-btn {
  transform: scale(1.08);
}
.play-btn svg {
  margin-left: 5px;
}
.player .vcap {
  position: absolute;
  left: 22px;
  bottom: 18px;
  z-index: 2;
  font-family: var(--m);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: #F6F5FC;
  text-transform: uppercase;
  opacity: 0.9;
}
.video-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.video-cta .small {
  font-size: 0.9rem;
  color: var(--muted-on-dark);
}

/* ---------- win-win cards ---------- */
.ww-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 42px;
}
@media (max-width: 900px) {
  .ww-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .ww-grid {
    grid-template-columns: 1fr;
  }
}
.ww {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px 22px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ww:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -28px rgba(27, 15, 69, 0.4);
}
.ww .fee {
  font-family: var(--m);
  font-weight: 700;
  font-size: 2.1rem;
  color: #1B0F45;
  line-height: 1;
}
.ww .fee s {
  color: var(--muted);
  text-decoration-thickness: 2px;
}
.ww .zero-tag {
  display: inline-block;
  font-family: var(--m);
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--mint-deep);
  border: 1.5px solid var(--mint-deep);
  border-radius: 7px;
  padding: 4px 8px;
  margin-top: 12px;
  letter-spacing: 0.06em;
}
.ww h3 {
  font-size: 1.12rem;
  margin: 16px 0 6px;
}
.ww p {
  font-size: 0.94rem;
  color: var(--muted);
}
.ww.pay-card {
  background: #1B0F45;
  color: #F6F5FC;
  border-color: transparent;
}
.ww.pay-card .fee {
  color: var(--signal);
}
.ww.pay-card h3 {
  color: #F6F5FC;
}
.ww.pay-card p {
  color: var(--muted-on-dark);
}
.ww.pay-card .zero-tag {
  color: #1B0F45;
  background: var(--signal);
  border-color: var(--signal);
}

/* ---------- win-win full-width ---------- */
#winwin {
  padding: 70px 0;
}
.winwin-head {
  max-width: none;
  text-align: center;
  margin: 0 auto;
}
.winwin-title {
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  font-weight: 800;
  margin-top: 14px;
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
}
.winwin-title .ho {
  color: var(--signal);
}
.winwin-head .lead {
  margin-left: auto;
  margin-right: auto;
  max-width: 60ch;
}
.payfull {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1.55fr 0.85fr;
  background: #1B0F45;
  color: #F6F5FC;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 50px 100px -40px rgba(27, 15, 69, 0.7);
}
@media (max-width: 820px) {
  .payfull {
    grid-template-columns: 1fr;
  }
}
.pf-left {
  padding: 44px 42px;
}
@media (max-width: 520px) {
  .pf-left {
    padding: 32px 22px;
  }
}
.pf-tag {
  display: inline-block;
  font-family: var(--m);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  background: var(--signal);
  padding: 7px 13px;
  border-radius: 8px;
}
.pf-left h3 {
  font-size: clamp(1.4rem, 3vw, 2.05rem);
  margin: 18px 0 12px;
  line-height: 1.18;
  color: #F6F5FC;
}
.pf-left > p {
  color: var(--muted-on-dark);
  font-size: 1.02rem;
  max-width: 54ch;
}
.pf-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 28px;
}
.pf-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: #F6F5FC;
  background: rgba(246, 245, 252, 0.06);
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 9px 15px;
}
.pf-chip b {
  font-family: var(--m);
  color: var(--mint);
}
.pf-chip.pay {
  background: rgba(242, 85, 0, 0.16);
  border-color: rgba(242, 85, 0, 0.5);
}
.pf-chip.pay b {
  color: var(--signal);
}
.pf-right {
  background: linear-gradient(160deg, var(--ink-2), var(--deep));
  border-left: 1px solid var(--line-dark);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (max-width: 820px) {
  .pf-right {
    border-left: none;
    border-top: 1px solid var(--line-dark);
  }
}
.pf-big {
  font-family: var(--m);
  font-weight: 700;
  font-size: clamp(3.6rem, 9vw, 5.5rem);
  color: var(--signal);
  line-height: 1;
}
.pf-big-l {
  font-family: var(--d);
  font-weight: 700;
  font-size: 1.25rem;
  margin-top: 4px;
  color: #F6F5FC;
}
.pf-sep {
  width: 44px;
  height: 3px;
  background: var(--mint-deep);
  border-radius: 2px;
  margin: 20px 0;
}
.pf-note {
  color: var(--muted-on-dark);
  font-size: 0.95rem;
  max-width: 22ch;
}

/* ---------- why choose ---------- */
#why {
  background: var(--paper-2);
      padding: 70px 0;
}
section#why .why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
  margin-top: 30px;
}
@media (max-width: 900px) {
  section#why .why-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}
.why-feature {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.why-feature:first-child {
  border-top: none;
}
.why-feature .idx {
  font-family: var(--m);
  font-weight: 700;
  color: var(--signal-deep);
  font-size: 18px;
  padding-top: 3px;
  flex: 0 0 auto;
}
.why-feature h3 {
  font-size: 1.22rem;
}
.why-feature p {
  font-size: 0.98rem;
  color: var(--muted);
  margin-top: 6px;
}
.why-badge {
  background: #1B0F45;
  color: #F6F5FC;
  border-radius: 24px;
  padding: 38px 34px;
  box-shadow: 0 40px 80px -36px rgba(27, 15, 69, 0.7);
  position: relative;
  overflow: hidden;
}
.why-badge::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 85, 0, 0.22), transparent 65%);
  right: -90px;
  top: -90px;
}
.why-badge .big {
  font-family: var(--m);
  font-weight: 700;
  font-size: 4.4rem;
  line-height: 1;
  color: var(--signal);
}
.why-badge .big small {
  font-size: 2rem;
}
.why-badge .cap {
  font-family: var(--d);
  font-weight: 700;
  font-size: 1.5rem;
  margin-top: 6px;
}
.why-badge p {
  color: var(--muted-on-dark);
  margin-top: 14px;
  font-size: 0.98rem;
  max-width: 30ch;
}
.why-badge .mini {
  display: flex;
  gap: 26px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  position: relative;
  z-index: 2;
}
.why-badge .mini .n {
  font-family: var(--m);
  font-weight: 700;
  font-size: 1.4rem;
  color: #F6F5FC;
}
.why-badge .mini .l {
  font-size: 0.78rem;
  color: var(--muted-on-dark);
}

/* ---------- case study ---------- */
#case {
  background: #1B0F45;
  color: #F6F5FC;
      padding: 70px 0;
}
section#testimonials {
    padding: 70px 0;
}
#case .sec-head h2 {
  color: #F6F5FC;
}
#case .sec-head p.lead {
  color: var(--muted-on-dark);
}
.case-card {
  margin-top: 38px;
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
}
@media (max-width: 900px) {
  .case-card {
    grid-template-columns: 1fr;
  }
}
.case-chart {
  padding: 34px 32px;
}
.case-chart .tag {
  font-family: var(--m);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--signal);
}
.case-chart h3 {
  font-size: 1.5rem;
  margin: 10px 0 4px;
}
.case-chart .who {
  color: var(--muted-on-dark);
  font-size: 0.94rem;
  margin-bottom: 24px;
}
.chart {
  position: relative;
  height: 230px;
  border-left: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  display: flex;
  align-items: flex-end;
  gap: 10px;
  padding: 0 6px 0 10px;
}
.bar-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}
.bar {
  width: 100%;
  max-width: 42px;
  border-radius: 7px 7px 0 0;
  height: 0;
  transition: height 1.1s cubic-bezier(0.2, 0.8, 0.2, 1);
  background: linear-gradient(180deg, var(--mint), var(--mint-deep));
}
.bar.peak {
  background: linear-gradient(180deg, var(--signal), var(--signal-deep));
}
.bar-wrap .mlabel {
  font-family: var(--m);
  font-size: 0.68rem;
  color: var(--muted-on-dark);
  margin-top: 8px;
}
.case-stats {
  background: var(--deep);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  border-left: 1px solid var(--line-dark);
}
.cstat .v {
  font-family: var(--m);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--mint);
}
.cstat .v.amber {
  color: var(--signal);
}
.cstat .k {
  font-size: 0.9rem;
  color: var(--muted-on-dark);
  margin-top: 2px;
}
.case-foot {
  margin-top: 18px;
  font-size: 0.8rem;
  color: var(--muted-on-dark);
  font-style: italic;
}
.linechart {
  margin-top: 10px;
  width: 100%;
}
.linechart svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}
.lc-line {
  stroke-dasharray: 760;
  stroke-dashoffset: 760;
}
.lc-area {
  opacity: 0;
}
.lc-dots circle {
  opacity: 0;
}
.linechart.go .lc-line {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1.8s cubic-bezier(0.22, 0.8, 0.2, 1);
}
.linechart.go .lc-area {
  opacity: 1;
  transition: opacity 0.9s ease 0.4s;
}
.linechart.go .lc-dots circle {
  opacity: 1;
  transition: opacity 0.5s ease 1.2s;
}
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  background: rgba(124, 92, 255, 0.14);
  border: 1px solid rgba(124, 92, 255, 0.55);
  color: #F6F5FC;
  border-radius: 999px;
  padding: 10px 17px;
  font-family: var(--m);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  line-height: 1.3;
}
.verified-badge .vb-ic {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--mint-deep);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex: 0 0 auto;
}

/* ---------- case study video cards ---------- */
.case-video-card {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  overflow: hidden;
  margin-top: 28px;
}
@media (max-width: 900px) {
  .case-video-card {
    grid-template-columns: 1fr;
  }
}
.case-video-card .player {
  border-radius: 0;
  aspect-ratio: auto;
  height: 100%;
  min-height: 320px;
}
@media (max-width: 900px) {
  .case-video-card .player {
    min-height: 240px;
    aspect-ratio: 16/9;
  }
}
.cv-panel {
  padding: 34px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
  border-left: 1px solid var(--line-dark);
}
@media (max-width: 900px) {
  .cv-panel {
    border-left: none;
    border-top: 1px solid var(--line-dark);
  }
}
@media (max-width: 520px) {
  .cv-panel {
    padding: 28px 22px;
  }
}
.cv-panel h3 {
  font-size: 1.6rem;
  color: #F6F5FC;
  margin: 2px 0 0;
}
.cv-domain {
  font-family: var(--m);
  font-size: 0.84rem;
  color: var(--mint);
  font-weight: 700;
}
.cv-domain:hover {
  color: var(--signal);
}
.cv-metric {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.cvm-block {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cvm-label {
  font-family: var(--m);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
}
.cvm-num {
  font-family: var(--m);
  font-weight: 700;
  font-size: 2.3rem;
  color: #F6F5FC;
  line-height: 1;
}
.cvm-num.up {
  color: var(--signal);
}
.cvm-arrow {
  font-size: 1.7rem;
  color: var(--mint);
  padding-bottom: 6px;
}
.cvm-unit {
  flex-basis: 100%;
  font-size: 0.85rem;
  color: var(--muted-on-dark);
}
.cv-spark {
  margin-top: 2px;
}
.cv-spark svg {
  width: 240px;
  max-width: 100%;
  height: auto;
  display: block;
}
.cv-sub {
  display: flex;
  gap: 26px;
  margin-top: 6px;
}
.cv-sub .n {
  font-family: var(--m);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--mint);
}
.cv-sub div > .n[data-static] {
  color: var(--signal);
}
.cv-sub .l {
  font-size: 0.76rem;
  color: var(--muted-on-dark);
  margin-top: 2px;
}

/* ---------- testimonials ---------- */
.tg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 42px;
}
@media (max-width: 900px) {
  .tg {
    grid-template-columns: 1fr;
  }
}
.tg.tg-2 {
  grid-template-columns: repeat(2, 1fr);
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 760px) {
  .tg.tg-2 {
    grid-template-columns: 1fr;
  }
}
.avatar-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
  border: 2px solid var(--mint);
  background: #1B0F45;
}
.tcard {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
}
.stars {
  color: var(--signal);
  letter-spacing: 3px;
  font-size: 1.05rem;
}
.tcard blockquote {
  font-size: 1.05rem;
  line-height: 1.5;
  margin: 14px 0 0;
  color: #1B0F45;
}
.tcard .who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.tcard .who img {
    width: 50px;
    border-radius: 50%;
}
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1B0F45;
  color: var(--signal);
  font-family: var(--d);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex: 0 0 auto;
}
.who .nm {
  font-weight: 700;
  font-size: 0.96rem;
}
.who .fr {
  font-size: 0.84rem;
  color: var(--muted);
}
.vmark {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 7px;
  font-family: var(--m);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.01em;
  color: var(--mint-deep);
  line-height: 1.3;
}
.vmark .vdot {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--mint-deep);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
}

/* ---------- faq ---------- */
#faq {
  background: var(--paper-2);
      padding: 70px 0;
}
.faq-list {
  margin-top: 36px;
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--d);
  font-weight: 700;
  font-size: 1.12rem;
}
summary::-webkit-details-marker {
  display: none;
}
summary .pm {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1.5px solid #1B0F45;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background 0.2s;
    padding-bottom: 3px;
}
details[open] summary .pm {
  background: var(--signal);
  border-color: var(--signal);
  transform: rotate(135deg);
color: #fff;
}
details .ans {
    padding: 0 24px 24px 6px;
    color: var(--muted);
    font-size: 1rem;
}

/* ---------- practice area directory ---------- */
#practice-areas {
  background: var(--paper-2);
    padding: 0 0 70px 0;
}
.pa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 40px;
}
@media (max-width: 820px) {
  .pa-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .pa-grid {
    grid-template-columns: 1fr;
  }
}
.pa-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #F6F5FC;
  font-family: var(--d);
  font-weight: 600;
  font-size: 1rem;
  color: #1B0F45;
  transition: transform 0.16s ease, box-shadow 0.16s ease,
    border-color 0.16s ease, background 0.16s ease;
}
.pa-grid a:hover {
  transform: translateY(-3px);
  border-color: var(--mint-deep);
  background: #fff;
  box-shadow: 0 18px 38px -22px rgba(27, 15, 69, 0.5);
}
.pa-grid .pa-go {
  color: var(--signal);
  font-family: var(--b);
  transition: transform 0.16s ease;
}
.pa-grid a:hover .pa-go {
  transform: translateX(4px);
}

/* ---------- final cta / book ---------- */
#book {
  background: #1B0F45;
  color: #F6F5FC;
  position: relative;
  overflow: hidden;
      padding: 70px 0;
}
#book::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    700px 380px at 50% -10%,
    rgba(242, 85, 0, 0.18),
    transparent 60%
  );
  pointer-events: none;
}
.book-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 900px) {
  .book-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}
#book h2 {
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  color: #F6F5FC;
}
#book .sub {
  color: var(--muted-on-dark);
  font-size: 1.14rem;
  margin-top: 18px;
  max-width: 40ch;
}
.reassure {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.reassure .r {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}
.reassure .r .ck {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(124, 92, 255, 0.16);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.book-card {
  background: var(--paper-2);
  color: #1B0F45;
  border-radius: 24px;
  padding: 34px 32px;
  box-shadow: 0 40px 90px -34px rgba(0, 0, 0, 0.7);
}
.book-card h3 {
  font-size: 1.4rem;
}
.book-card p.bp {
  color: var(--muted);
  font-size: 0.96rem;
  margin-top: 6px;
}
.field {
  margin-top: 16px;
}
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.field input,
.field select {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-family: var(--b);
  font-size: 1rem;
  background: #fff;
  color: #1B0F45;
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--signal);
  box-shadow: 0 0 0 4px rgba(242, 85, 0, 0.15);
}
.book-card .btn-primary {
  width: 100%;
  justify-content: center;
  margin-top: 22px;
}
.book-card .fineprint {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  margin-top: 14px;
}

/* ---------- footer ---------- */
footer {
  background: var(--deep);
  color: var(--muted-on-dark);
  padding: 62px 0 32px;
  font-size: 0.92rem;
}
.foot-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line-dark);
}


@media (max-width: 1199px) {

.hero {
    margin-top: 110px;
}
}
@media (max-width: 760px) {
  .foot-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .video-media.reveal.in iframe {
    width: auto;
}
}

@media (max-width: 575px) {

    .hero {
            margin-top: 95px;
        padding: 20px 0;
    }
#video {
    padding: 40px 0;
}
#winwin {
    padding: 40px 0;
}
#why {
    padding: 40px 0;
}
#case {
    padding: 40px 0;
}
section#testimonials {
    padding: 40px 0;
}
#faq {
    padding: 40px 0;
}
#practice-areas {
    padding: 0 0 40px 0;
}
#book {
    padding: 40px 0;
}
.play-btn {
    display: none;
}
.book-card {
    padding: 15px;
}
.video-grid {
    margin-top: 30px !important;
    display: contents !important;
text-align: center;
    }




}

footer .logo {
  margin-bottom: 14px;
}
footer p.about {
  max-width: 42ch;
  line-height: 1.6;
}
footer h4 {
  color: #F6F5FC;
  font-family: var(--d);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.kw-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.kw-cloud a {
  font-size: 0.78rem;
  color: var(--muted-on-dark);
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 5px 11px;
  transition: 0.15s;
}
.kw-cloud a:hover {
  color: var(--signal);
  border-color: var(--signal);
}
.foot-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.82rem;
}

/* ---------- reveal on scroll ---------- */
/*.reveal {*/
/*  opacity: 0;*/
/*  transform: translateY(22px);*/
/*  transition: opacity 0.7s ease, transform 0.7s ease;*/
/*}*/
/*.reveal.in {*/
/*  opacity: 1;*/
/*  transform: none;*/
/*}*/
.sec-head.reveal.in {
    max-width: 100% !important;
    text-align: center;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .ledger .line {
    opacity: 1;
    transform: none;
  }
  .ledger .stamp {
    opacity: 1;
    transform: rotate(-5deg);
  }
  .bar {
    height: var(--final) !important;
  }
  .lc-line {
    stroke-dashoffset: 0 !important;
  }
  .lc-area,
  .lc-dots circle {
    opacity: 1 !important;
  }
}


@media (max-width:767px){
    .video-grid {
    margin-top: 30px;
    display: contents;

}
}

